From 2f2f7d4c92db9796ca88966c581c05c151e7a2b2 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 16 Jan 2023 12:36:39 +0400 Subject: [PATCH 1/6] Add `spellcheck="false"` on password fields to avoid data leaks to spell checking services Ref: https://www.otto-js.com/news/article/chrome-and-edge-enhanced-spellcheck-features-expose-pii-even-your-passwords Signed-off-by: William Desportes --- examples/signon.php | 2 +- templates/config/form_display/input.twig | 2 +- templates/login/form.twig | 2 +- templates/server/privileges/change_password.twig | 4 ++-- templates/server/privileges/login_information_fields.twig | 4 ++-- templates/server/replication/change_primary.twig | 2 +- templates/server/replication/primary_add_replica_user.twig | 4 ++-- test/classes/Plugins/Auth/AuthenticationCookieTest.php | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/signon.php b/examples/signon.php index 18818af1f8..3cb9a82855 100644 --- a/examples/signon.php +++ b/examples/signon.php @@ -60,7 +60,7 @@ if (isset($_POST['user'])) { echo '
Username:
-Password:
+Password:
Host: (will use the one from config.inc.php by default)
Port: (will use the one from config.inc.php by default) diff --git a/templates/config/form_display/input.twig b/templates/config/form_display/input.twig index 09b42c03b7..48b9aa695f 100644 --- a/templates/config/form_display/input.twig +++ b/templates/config/form_display/input.twig @@ -26,7 +26,7 @@ {% if type == 'text' %} {% elseif type == 'password' %} - + {% elseif type == 'short_text' and value is not iterable %} {# https://github.com/phpmyadmin/phpmyadmin/issues/11505 #} diff --git a/templates/login/form.twig b/templates/login/form.twig index 0e58ec7684..a592b9028a 100644 --- a/templates/login/form.twig +++ b/templates/login/form.twig @@ -85,7 +85,7 @@ {% trans 'Password:' %}
- +
diff --git a/templates/server/privileges/change_password.twig b/templates/server/privileges/change_password.twig index 2fe6ad1aac..7216ec674e 100644 --- a/templates/server/privileges/change_password.twig +++ b/templates/server/privileges/change_password.twig @@ -22,7 +22,7 @@ {% trans 'Enter:' %}      - {% trans %}Strength:{% context %}Password strength{% endtrans %} @@ -30,7 +30,7 @@
{% trans 'Re-type:' %}  - + diff --git a/templates/server/privileges/login_information_fields.twig b/templates/server/privileges/login_information_fields.twig index 6e59e43ffb..69b2de0185 100644 --- a/templates/server/privileges/login_information_fields.twig +++ b/templates/server/privileges/login_information_fields.twig @@ -50,7 +50,7 @@ - + {% trans %}Strength:{% context %}Password strength{% endtrans %} @@ -59,7 +59,7 @@
  - +
diff --git a/templates/server/replication/change_primary.twig b/templates/server/replication/change_primary.twig index 0d0c2debeb..38304171d8 100644 --- a/templates/server/replication/change_primary.twig +++ b/templates/server/replication/change_primary.twig @@ -16,7 +16,7 @@
- +
diff --git a/templates/server/replication/primary_add_replica_user.twig b/templates/server/replication/primary_add_replica_user.twig index bd82403e10..5dc9574aa4 100644 --- a/templates/server/replication/primary_add_replica_user.twig +++ b/templates/server/replication/primary_add_replica_user.twig @@ -54,7 +54,7 @@ - +
@@ -62,7 +62,7 @@ {% trans 'Re-type:' %} - +
diff --git a/test/classes/Plugins/Auth/AuthenticationCookieTest.php b/test/classes/Plugins/Auth/AuthenticationCookieTest.php index 2f693930bb..a8bedf551d 100644 --- a/test/classes/Plugins/Auth/AuthenticationCookieTest.php +++ b/test/classes/Plugins/Auth/AuthenticationCookieTest.php @@ -227,7 +227,7 @@ class AuthenticationCookieTest extends AbstractNetworkTestCase $this->assertStringContainsString( '', + 'value="" class="form-control" autocomplete="current-password" spellcheck="false">', $result ); From 6d42cd80172da0a1aef852e553406e6820e2a4f5 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 16 Jan 2023 12:43:54 +0400 Subject: [PATCH 2/6] Add `spellcheck="false"` on some login text fields to avoid data leaks to spell checking services Ref: https://www.otto-js.com/news/article/chrome-and-edge-enhanced-spellcheck-features-expose-pii-even-your-passwords Signed-off-by: William Desportes --- examples/signon.php | 2 +- templates/login/form.twig | 2 +- templates/server/privileges/login_information_fields.twig | 2 +- templates/server/replication/primary_add_replica_user.twig | 2 +- test/classes/Plugins/Auth/AuthenticationCookieTest.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/signon.php b/examples/signon.php index 3cb9a82855..f3754fb4c7 100644 --- a/examples/signon.php +++ b/examples/signon.php @@ -59,7 +59,7 @@ if (isset($_POST['user'])) { } echo ' -Username:
+Username:
Password:
Host: (will use the one from config.inc.php by default)
diff --git a/templates/login/form.twig b/templates/login/form.twig index a592b9028a..59574ea2a8 100644 --- a/templates/login/form.twig +++ b/templates/login/form.twig @@ -76,7 +76,7 @@ {% trans 'Username:' %}
- +
diff --git a/templates/server/privileges/login_information_fields.twig b/templates/server/privileges/login_information_fields.twig index 69b2de0185..01ac279a62 100644 --- a/templates/server/privileges/login_information_fields.twig +++ b/templates/server/privileges/login_information_fields.twig @@ -8,7 +8,7 @@ - diff --git a/templates/server/replication/primary_add_replica_user.twig b/templates/server/replication/primary_add_replica_user.twig index 5dc9574aa4..6140bcde4e 100644 --- a/templates/server/replication/primary_add_replica_user.twig +++ b/templates/server/replication/primary_add_replica_user.twig @@ -21,7 +21,7 @@ - +
diff --git a/test/classes/Plugins/Auth/AuthenticationCookieTest.php b/test/classes/Plugins/Auth/AuthenticationCookieTest.php index a8bedf551d..b1c8379ab5 100644 --- a/test/classes/Plugins/Auth/AuthenticationCookieTest.php +++ b/test/classes/Plugins/Auth/AuthenticationCookieTest.php @@ -221,7 +221,7 @@ class AuthenticationCookieTest extends AbstractNetworkTestCase $this->assertStringContainsString( '', + 'value="pmauser" class="form-control" autocomplete="username" spellcheck="false">', $result ); From d0fc1da4327f69454c243b01645e1b93f1a9057b Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 16 Jan 2023 12:47:30 +0400 Subject: [PATCH 3/6] Add a ChangeLog entry for 2f2f7d4c92db9 and 6d42cd8017 Ref: 2f2f7d4c92db9796ca88966c581c05c151e7a2b2 Ref: 6d42cd80172da0a1aef852e553406e6820e2a4f5 Signed-off-by: William Desportes --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 31a167ff6e..6603a2f575 100644 --- a/ChangeLog +++ b/ChangeLog @@ -75,6 +75,7 @@ phpMyAdmin - ChangeLog - issue #17927 Fix key navigation between select inputs (drop an old Firefox workaround) - issue #17967 Fix missing icon for collapse all button - issue #18006 Fixed UUID columns can't be moved +- issue Add `spellcheck="false"` to all password fields and some text fields to avoid spell-jacking data leaks 5.2.0 (2022-05-10) - issue #16521 Upgrade Bootstrap to version 5 From f143d2a709c65d2ee46e76e07f3f3e215c67d4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Mon, 19 Dec 2022 19:51:38 -0300 Subject: [PATCH 4/6] Add support for Web Authentication API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a two factor authentication plugin that supports FIDO2/WebAuthn security keys. Signed-off-by: Maurício Meneghini Fauth --- composer.json | 6 +- js/src/webauthn.js | 133 +++++ .../JavaScriptMessagesController.php | 4 + libraries/classes/Plugins/TwoFactor/Key.php | 2 +- .../classes/Plugins/TwoFactor/WebAuthn.php | 246 +++++++++ libraries/classes/TwoFactor.php | 2 + libraries/classes/WebAuthn/CBORDecoder.php | 289 ++++++++++ libraries/classes/WebAuthn/CustomServer.php | 497 ++++++++++++++++++ libraries/classes/WebAuthn/DataStream.php | 68 +++ libraries/classes/WebAuthn/Server.php | 78 +++ .../classes/WebAuthn/WebAuthnException.php | 11 + .../classes/WebAuthn/WebauthnLibServer.php | 277 ++++++++++ psalm.xml | 1 + scripts/create-release.sh | 19 +- .../login/twofactor/webauthn_creation.twig | 3 + .../login/twofactor/webauthn_request.twig | 3 + templates/preferences/two_factor/main.twig | 11 + .../Plugins/TwoFactor/WebAuthnTest.php | 299 +++++++++++ test/classes/WebAuthn/CBORDecoderTest.php | 198 +++++++ .../WebAuthn/WebauthnLibServerTest.php | 83 +++ 20 files changed, 2225 insertions(+), 5 deletions(-) create mode 100644 js/src/webauthn.js create mode 100644 libraries/classes/Plugins/TwoFactor/WebAuthn.php create mode 100644 libraries/classes/WebAuthn/CBORDecoder.php create mode 100644 libraries/classes/WebAuthn/CustomServer.php create mode 100644 libraries/classes/WebAuthn/DataStream.php create mode 100644 libraries/classes/WebAuthn/Server.php create mode 100644 libraries/classes/WebAuthn/WebAuthnException.php create mode 100644 libraries/classes/WebAuthn/WebauthnLibServer.php create mode 100644 templates/login/twofactor/webauthn_creation.twig create mode 100644 templates/login/twofactor/webauthn_request.twig create mode 100644 test/classes/Plugins/TwoFactor/WebAuthnTest.php create mode 100644 test/classes/WebAuthn/CBORDecoderTest.php create mode 100644 test/classes/WebAuthn/WebauthnLibServerTest.php diff --git a/composer.json b/composer.json index 56e386f0d5..8438ae14c2 100644 --- a/composer.json +++ b/composer.json @@ -93,7 +93,8 @@ "tecnickcom/tcpdf": "For PDF support", "pragmarx/google2fa-qrcode": "^2.1 - For 2FA authentication", "bacon/bacon-qr-code": "^2.0 - For 2FA authentication", - "code-lts/u2f-php-server": "For FIDO U2F authentication" + "code-lts/u2f-php-server": "For FIDO U2F authentication", + "web-auth/webauthn-lib": "For better WebAuthn/FIDO2 authentication support" }, "require-dev": { "bacon/bacon-qr-code": "^2.0", @@ -111,7 +112,8 @@ "squizlabs/php_codesniffer": "~3.6.0", "symfony/console": "^5.2.3", "tecnickcom/tcpdf": "^6.4.4", - "vimeo/psalm": "^4.22" + "vimeo/psalm": "^4.22", + "web-auth/webauthn-lib": "^3.3" }, "extra": { "branch-alias": { diff --git a/js/src/webauthn.js b/js/src/webauthn.js new file mode 100644 index 0000000000..5f63e82227 --- /dev/null +++ b/js/src/webauthn.js @@ -0,0 +1,133 @@ +/** + * @param {ArrayBuffer} buffer + * + * @return {string} + */ +const arrayBufferToBase64 = buffer => { + const bytes = new Uint8Array(buffer); + let string = ''; + for (const byte of bytes) { + string += String.fromCharCode(byte); + } + + return window.btoa(string); +}; + +/** + * @param {string} string + * + * @return {Uint8Array} + */ +const base64ToUint8Array = string => { + return Uint8Array.from(window.atob(string), char => char.charCodeAt(0)); +}; + +/** + * @param {JQuery} $input + * + * @return {void} + */ +const handleCreation = $input => { + const $form = $input.parents('form'); + $form.find('input[type=submit]').hide(); + + const creationOptionsJson = $input.attr('data-creation-options'); + const creationOptions = JSON.parse(creationOptionsJson); + + const publicKey = creationOptions; + publicKey.challenge = base64ToUint8Array(creationOptions.challenge); + publicKey.user.id = base64ToUint8Array(creationOptions.user.id); + if (creationOptions.excludeCredentials) { + const excludedCredentials = []; + for (let value of creationOptions.excludeCredentials) { + let excludedCredential = value; + excludedCredential.id = base64ToUint8Array(value.id); + excludedCredentials.push(excludedCredential); + } + publicKey.excludeCredentials = excludedCredentials; + } + + // eslint-disable-next-line compat/compat + navigator.credentials.create({ publicKey: publicKey }) + .then((credential) => { + const credentialJson = JSON.stringify({ + id: credential.id, + rawId: arrayBufferToBase64(credential.rawId), + type: credential.type, + response: { + clientDataJSON: arrayBufferToBase64(credential.response.clientDataJSON), + attestationObject: arrayBufferToBase64(credential.response.attestationObject), + } + }); + $input.val(credentialJson); + $form.trigger('submit'); + }) + .catch((error) => Functions.ajaxShowMessage(error, false, 'error')); +}; + +/** + * @param {JQuery} $input + * + * @return {void} + */ +const handleRequest = $input => { + const $form = $input.parents('form'); + $form.find('input[type=submit]').hide(); + + const requestOptionsJson = $input.attr('data-request-options'); + const requestOptions = JSON.parse(requestOptionsJson); + + const publicKey = requestOptions; + publicKey.challenge = base64ToUint8Array(requestOptions.challenge); + if (requestOptions.allowCredentials) { + const allowedCredentials = []; + for (let value of requestOptions.allowCredentials) { + let allowedCredential = value; + allowedCredential.id = base64ToUint8Array(value.id); + allowedCredentials.push(allowedCredential); + } + publicKey.allowCredentials = allowedCredentials; + } + + // eslint-disable-next-line compat/compat + navigator.credentials.get({ publicKey: publicKey }) + .then((credential) => { + const credentialJson = JSON.stringify({ + id: credential.id, + rawId: arrayBufferToBase64(credential.rawId), + type: credential.type, + response: { + authenticatorData: arrayBufferToBase64(credential.response.authenticatorData), + clientDataJSON: arrayBufferToBase64(credential.response.clientDataJSON), + signature: arrayBufferToBase64(credential.response.signature), + userHandle: arrayBufferToBase64(credential.response.userHandle), + } + }); + $input.val(credentialJson); + $form.trigger('submit'); + }) + .catch((error) => Functions.ajaxShowMessage(error, false, 'error')); +}; + +AJAX.registerOnload('webauthn.js', function () { + if ( + ! navigator.credentials + || ! navigator.credentials.create + || ! navigator.credentials.get + || ! window.PublicKeyCredential + ) { + Functions.ajaxShowMessage(Messages.webAuthnNotSupported, false, 'error'); + + return; + } + + const $creationInput = $('#webauthn_creation_response'); + if ($creationInput.length > 0) { + handleCreation($creationInput); + } + + const $requestInput = $('#webauthn_request_response'); + if ($requestInput.length > 0) { + handleRequest($requestInput); + } +}); diff --git a/libraries/classes/Controllers/JavaScriptMessagesController.php b/libraries/classes/Controllers/JavaScriptMessagesController.php index 6501557b1c..d56736bea8 100644 --- a/libraries/classes/Controllers/JavaScriptMessagesController.php +++ b/libraries/classes/Controllers/JavaScriptMessagesController.php @@ -692,6 +692,10 @@ final class JavaScriptMessagesController // l10n: error code 4 (from U2F API) on authanticate 'strU2FErrorAuthenticate' => _pgettext('U2F error', 'Invalid security key.'), + 'webAuthnNotSupported' => __( + 'WebAuthn is not available. Please use a supported browser in a secure context (HTTPS).' + ), + /* Designer */ 'strIndexedDBNotWorking' => __( 'You can not open, save or delete your page layout, as IndexedDB is not working' diff --git a/libraries/classes/Plugins/TwoFactor/Key.php b/libraries/classes/Plugins/TwoFactor/Key.php index 60fdbb2b0d..ad4b3eebb7 100644 --- a/libraries/classes/Plugins/TwoFactor/Key.php +++ b/libraries/classes/Plugins/TwoFactor/Key.php @@ -215,6 +215,6 @@ class Key extends TwoFactorPlugin */ public static function getDescription() { - return __('Provides authentication using hardware security tokens supporting FIDO U2F, such as a Yubikey.'); + return __('Provides authentication using hardware security tokens supporting FIDO U2F, such as a YubiKey.'); } } diff --git a/libraries/classes/Plugins/TwoFactor/WebAuthn.php b/libraries/classes/Plugins/TwoFactor/WebAuthn.php new file mode 100644 index 0000000000..2cca7e0b13 --- /dev/null +++ b/libraries/classes/Plugins/TwoFactor/WebAuthn.php @@ -0,0 +1,246 @@ +twofactor->config['settings']['userHandle']) + || ! is_string($this->twofactor->config['settings']['userHandle']) + ) { + $this->twofactor->config['settings']['userHandle'] = ''; + } + + if ( + ! isset($this->twofactor->config['settings']['credentials']) + || ! is_array($this->twofactor->config['settings']['credentials']) + ) { + $this->twofactor->config['settings']['credentials'] = []; + } + + $this->server = $this->createServer(); + } + + private function createServer(): Server + { + return class_exists(WebauthnServer::class) ? new WebauthnLibServer($this->twofactor) : new CustomServer(); + } + + public function setServer(Server $server): void + { + $this->server = $server; + } + + public function render(): string + { + $request = $GLOBALS['request']; + $userHandle = sodium_base642bin($this->getUserHandleFromSettings(), SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + $requestOptions = $this->server->getCredentialRequestOptions( + $this->twofactor->user, + $userHandle, + $request->getUri()->getHost(), + $this->getAllowedCredentials() + ); + $requestOptionsEncoded = json_encode($requestOptions); + $_SESSION['WebAuthnCredentialRequestOptions'] = $requestOptionsEncoded; + $this->loadScripts(); + + return $this->template->render( + 'login/twofactor/webauthn_request', + ['request_options' => $requestOptionsEncoded] + ); + } + + public function check(): bool + { + $this->provided = false; + $request = $GLOBALS['request']; + $authenticatorResponse = $request->getParsedBodyParam('webauthn_request_response', ''); + if ($authenticatorResponse === '' || ! isset($_SESSION['WebAuthnCredentialRequestOptions'])) { + return false; + } + + $this->provided = true; + + /** @var mixed $credentialRequestOptions */ + $credentialRequestOptions = $_SESSION['WebAuthnCredentialRequestOptions']; + unset($_SESSION['WebAuthnCredentialRequestOptions']); + + try { + Assert::stringNotEmpty($authenticatorResponse); + Assert::stringNotEmpty($credentialRequestOptions); + $requestOptions = json_decode($credentialRequestOptions, true); + Assert::isArray($requestOptions); + Assert::keyExists($requestOptions, 'challenge'); + Assert::stringNotEmpty($requestOptions['challenge']); + $this->server->parseAndValidateAssertionResponse( + $authenticatorResponse, + $this->getAllowedCredentials(), + $requestOptions['challenge'], + $request + ); + } catch (Throwable $exception) { + $this->message = $exception->getMessage(); + + return false; + } + + return true; + } + + public function setup(): string + { + $request = $GLOBALS['request']; + $userId = sodium_bin2base64(random_bytes(32), SODIUM_BASE64_VARIANT_ORIGINAL); + $host = $request->getUri()->getHost(); + $creationOptions = $this->server->getCredentialCreationOptions($this->twofactor->user, $userId, $host); + $creationOptionsEncoded = json_encode($creationOptions); + $_SESSION['WebAuthnCredentialCreationOptions'] = $creationOptionsEncoded; + $this->loadScripts(); + + return $this->template->render( + 'login/twofactor/webauthn_creation', + ['creation_options' => $creationOptionsEncoded] + ); + } + + public function configure(): bool + { + $this->provided = false; + $request = $GLOBALS['request']; + $authenticatorResponse = $request->getParsedBodyParam('webauthn_creation_response', ''); + if ($authenticatorResponse === '' || ! isset($_SESSION['WebAuthnCredentialCreationOptions'])) { + return false; + } + + $this->provided = true; + + /** @var mixed $credentialCreationOptions */ + $credentialCreationOptions = $_SESSION['WebAuthnCredentialCreationOptions']; + unset($_SESSION['WebAuthnCredentialCreationOptions']); + + try { + Assert::stringNotEmpty($authenticatorResponse); + Assert::stringNotEmpty($credentialCreationOptions); + $credential = $this->server->parseAndValidateAttestationResponse( + $authenticatorResponse, + $credentialCreationOptions, + $request + ); + $this->saveCredential($credential); + } catch (Throwable $exception) { + $this->message = $exception->getMessage(); + + return false; + } + + return true; + } + + public static function getName(): string + { + return __('Hardware Security Key (WebAuthn/FIDO2)'); + } + + public static function getDescription(): string + { + return __( + 'Provides authentication using hardware security tokens supporting the WebAuthn/FIDO2 protocol,' + . ' such as a YubiKey.' + ); + } + + private function loadScripts(): void + { + $response = ResponseRenderer::getInstance(); + $scripts = $response->getHeader()->getScripts(); + $scripts->addFile('webauthn.js'); + } + + /** + * @psalm-return list + */ + private function getAllowedCredentials(): array + { + $allowedCredentials = []; + /** @psalm-var array> $credentials */ + $credentials = $this->twofactor->config['settings']['credentials']; + foreach ($credentials as $credential) { + if ( + ! is_string($credential['publicKeyCredentialId']) || $credential['publicKeyCredentialId'] === '' + || ! is_string($credential['type']) || $credential['type'] === '' + ) { + continue; + } + + $allowedCredentials[] = ['type' => $credential['type'], 'id' => $credential['publicKeyCredentialId']]; + } + + return $allowedCredentials; + } + + /** + * @psalm-param mixed[] $credential + * + * @throws SodiumException + */ + private function saveCredential(array $credential): void + { + Assert::keyExists($credential, 'publicKeyCredentialId'); + Assert::stringNotEmpty($credential['publicKeyCredentialId']); + Assert::keyExists($credential, 'userHandle'); + Assert::string($credential['userHandle']); + Assert::isArray($this->twofactor->config['settings']['credentials']); + $id = sodium_bin2base64( + sodium_base642bin($credential['publicKeyCredentialId'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING), + SODIUM_BASE64_VARIANT_ORIGINAL + ); + $this->twofactor->config['settings']['credentials'][$id] = $credential; + $this->twofactor->config['settings']['userHandle'] = $credential['userHandle']; + } + + private function getUserHandleFromSettings(): string + { + Assert::string($this->twofactor->config['settings']['userHandle']); + + return $this->twofactor->config['settings']['userHandle']; + } +} diff --git a/libraries/classes/TwoFactor.php b/libraries/classes/TwoFactor.php index 8f8a9ee0ea..da77d083f2 100644 --- a/libraries/classes/TwoFactor.php +++ b/libraries/classes/TwoFactor.php @@ -141,6 +141,8 @@ class TwoFactor $result[] = 'application'; } + $result[] = 'WebAuthn'; + if (class_exists(U2FServer::class)) { $result[] = 'key'; } diff --git a/libraries/classes/WebAuthn/CBORDecoder.php b/libraries/classes/WebAuthn/CBORDecoder.php new file mode 100644 index 0000000000..407fd12fc9 --- /dev/null +++ b/libraries/classes/WebAuthn/CBORDecoder.php @@ -0,0 +1,289 @@ +wellFormed($stream); + } + + /** + * @see https://www.rfc-editor.org/rfc/rfc7049#appendix-C + * + * @return mixed + * + * @throws WebAuthnException + */ + private function wellFormed(DataStream $stream) + { + // process initial bytes + $initialByte = ord($stream->take(1)); + $majorType = $initialByte >> 5; + $value = $additionalInformation = $initialByte & 0x1f; + switch ($additionalInformation) { + case 24: + if ($majorType !== 7) { + $value = ord($stream->take(1)); + } + + break; + case 25: + if ($majorType !== 7) { + $unpackedValue = unpack('n', $stream->take(2)); + Assert::isArray($unpackedValue); + Assert::keyExists($unpackedValue, 1); + Assert::integer($unpackedValue[1]); + $value = $unpackedValue[1]; + } + + break; + case 26: + if ($majorType !== 7) { + $unpackedValue = unpack('N', $stream->take(4)); + Assert::isArray($unpackedValue); + Assert::keyExists($unpackedValue, 1); + Assert::integer($unpackedValue[1]); + $value = $unpackedValue[1]; + } + + break; + case 27: + if ($majorType !== 7) { + $unpackedValue = unpack('J', $stream->take(8)); + Assert::isArray($unpackedValue); + Assert::keyExists($unpackedValue, 1); + Assert::integer($unpackedValue[1]); + $value = $unpackedValue[1]; + } + + break; + case 28: + case 29: + case 30: + case 31: + throw new WebAuthnException(); + } + + // process content + switch ($majorType) { + case 0: + return $this->getUnsignedInteger($value); + + case 1: + return $this->getNegativeInteger($value); + + case 2: + return $this->getByteString($stream, $value); + + case 3: + return $this->getTextString($stream, $value); + + case 4: + return $this->getList($stream, $value); + + case 5: + return $this->getMap($stream, $value); + + case 6: + return $this->getTag($stream); + + case 7: + return $this->getFloatNumberOrSimpleValue($stream, $value, $additionalInformation); + + default: + throw new WebAuthnException(); + } + } + + private function getUnsignedInteger(int $value): int + { + return $value; + } + + private function getNegativeInteger(int $value): int + { + return -1 - $value; + } + + /** + * @throws WebAuthnException + */ + private function getByteString(DataStream $stream, int $value): string + { + return $stream->take($value); + } + + /** + * @throws WebAuthnException + */ + private function getTextString(DataStream $stream, int $value): string + { + return $stream->take($value); + } + + /** + * @psalm-return list + * + * @throws WebAuthnException + */ + private function getList(DataStream $stream, int $value): array + { + $list = []; + for ($i = 0; $i < $value; $i++) { + /** @psalm-suppress MixedAssignment */ + $list[] = $this->wellFormed($stream); + } + + return $list; + } + + /** + * @psalm-return array + * + * @throws WebAuthnException + */ + private function getMap(DataStream $stream, int $value): array + { + $map = []; + for ($i = 0; $i < $value; $i++) { + /** @psalm-suppress MixedAssignment, MixedArrayOffset */ + $map[$this->wellFormed($stream)] = $this->wellFormed($stream); + } + + return $map; + } + + /** + * @return mixed + * + * @throws WebAuthnException + */ + private function getTag(DataStream $stream) + { + // 1 embedded data item + return $this->wellFormed($stream); + } + + /** + * @return mixed + * + * @throws WebAuthnException + */ + private function getFloatNumberOrSimpleValue(DataStream $stream, int $value, int $additionalInformation) + { + switch ($additionalInformation) { + case 20: + return true; + + case 21: + return false; + + case 22: + return null; + + case 24: + // simple value + return ord($stream->take(1)); + + case 25: + return $this->getHalfFloat($stream); + + case 26: + return $this->getSingleFloat($stream); + + case 27: + return $this->getDoubleFloat($stream); + + case 31: + // "break" stop code for indefinite-length items + throw new WebAuthnException(); + + default: + return $value; + } + } + + /** + * IEEE 754 Half-Precision Float (16 bits follow) + * + * @see https://www.rfc-editor.org/rfc/rfc7049#appendix-D + * + * @throws WebAuthnException + */ + private function getHalfFloat(DataStream $stream): float + { + $value = unpack('n', $stream->take(2)); + Assert::isArray($value); + Assert::keyExists($value, 1); + Assert::integer($value[1]); + + $half = $value[1]; + $exp = ($half >> 10) & 0x1f; + $mant = $half & 0x3ff; + + if ($exp === 0) { + $val = $mant * (2 ** -24); + } elseif ($exp !== 31) { + $val = ($mant + 1024) * (2 ** ($exp - 25)); + } else { + $val = $mant === 0 ? INF : NAN; + } + + return $half & 0x8000 ? -$val : $val; + } + + /** + * IEEE 754 Single-Precision Float (32 bits follow) + * + * @throws WebAuthnException + */ + private function getSingleFloat(DataStream $stream): float + { + $value = unpack('G', $stream->take(4)); + Assert::isArray($value); + Assert::keyExists($value, 1); + Assert::float($value[1]); + + return $value[1]; + } + + /** + * IEEE 754 Double-Precision Float (64 bits follow) + * + * @throws WebAuthnException + */ + private function getDoubleFloat(DataStream $stream): float + { + $value = unpack('E', $stream->take(8)); + Assert::isArray($value); + Assert::keyExists($value, 1); + Assert::float($value[1]); + + return $value[1]; + } +} diff --git a/libraries/classes/WebAuthn/CustomServer.php b/libraries/classes/WebAuthn/CustomServer.php new file mode 100644 index 0000000000..75a78342de --- /dev/null +++ b/libraries/classes/WebAuthn/CustomServer.php @@ -0,0 +1,497 @@ + $this->generateChallenge(), + 'rp' => ['name' => 'phpMyAdmin (' . $relyingPartyId . ')', 'id' => $relyingPartyId], + 'user' => ['id' => $userId, 'name' => $userName, 'displayName' => $userName], + 'pubKeyCredParams' => $this->getCredentialParameters(), + 'authenticatorSelection' => [ + 'authenticatorAttachment' => 'cross-platform', + 'userVerification' => 'discouraged', + ], + 'timeout' => 60000, + 'attestation' => 'none', + ]; + } + + public function getCredentialRequestOptions( + string $userName, + string $userId, + string $relyingPartyId, + array $allowedCredentials + ): array { + foreach ($allowedCredentials as $key => $credential) { + $allowedCredentials[$key]['id'] = sodium_bin2base64( + sodium_base642bin($credential['id'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING), + SODIUM_BASE64_VARIANT_ORIGINAL + ); + } + + return [ + 'challenge' => $this->generateChallenge(), + 'allowCredentials' => $allowedCredentials, + 'timeout' => 60000, + 'attestation' => 'none', + 'userVerification' => 'discouraged', + ]; + } + + public function parseAndValidateAssertionResponse( + string $assertionResponseJson, + array $allowedCredentials, + string $challenge, + ServerRequestInterface $request + ): void { + $assertionCredential = $this->getAssertionCredential($assertionResponseJson); + + if ($allowedCredentials !== []) { + Assert::true($this->isCredentialIdAllowed($assertionCredential['rawId'], $allowedCredentials)); + } + + $authenticatorData = $this->getAuthenticatorData($assertionCredential['response']['authenticatorData']); + + $clientData = $this->getCollectedClientData($assertionCredential['response']['clientDataJSON']); + Assert::same($clientData['type'], 'webauthn.get'); + + try { + $knownChallenge = sodium_base642bin($challenge, SODIUM_BASE64_VARIANT_ORIGINAL); + $cDataChallenge = sodium_base642bin($clientData['challenge'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + } catch (SodiumException $exception) { + throw new WebAuthnException((string) $exception); + } + + Assert::true(hash_equals($knownChallenge, $cDataChallenge)); + + $host = $request->getUri()->getHost(); + Assert::same($host, parse_url($clientData['origin'], PHP_URL_HOST)); + + $rpIdHash = hash('sha256', $host, true); + Assert::true(hash_equals($rpIdHash, $authenticatorData['rpIdHash'])); + + $isUserPresent = (ord($authenticatorData['flags']) & 1) !== 0; + Assert::true($isUserPresent); + } + + public function parseAndValidateAttestationResponse( + string $attestationResponse, + string $credentialCreationOptions, + ServerRequestInterface $request + ): array { + try { + $attestationCredential = $this->getAttestationCredential($attestationResponse); + } catch (Throwable $exception) { + throw new WebAuthnException('Invalid authenticator response.'); + } + + $creationOptions = json_decode($credentialCreationOptions, true); + Assert::isArray($creationOptions); + Assert::keyExists($creationOptions, 'challenge'); + Assert::string($creationOptions['challenge']); + Assert::keyExists($creationOptions, 'user'); + Assert::isArray($creationOptions['user']); + Assert::keyExists($creationOptions['user'], 'id'); + Assert::string($creationOptions['user']['id']); + + $clientData = $this->getCollectedClientData($attestationCredential['response']['clientDataJSON']); + + // Verify that the value of C.type is webauthn.create. + Assert::same($clientData['type'], 'webauthn.create'); + + // Verify that the value of C.challenge equals the base64url encoding of options.challenge. + $optionsChallenge = sodium_base642bin($creationOptions['challenge'], SODIUM_BASE64_VARIANT_ORIGINAL); + $clientDataChallenge = sodium_base642bin($clientData['challenge'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + Assert::true(hash_equals($optionsChallenge, $clientDataChallenge)); + + // Verify that the value of C.origin matches the Relying Party's origin. + $host = $request->getUri()->getHost(); + Assert::same($host, parse_url($clientData['origin'], PHP_URL_HOST), 'Invalid origin.'); + + // Perform CBOR decoding on the attestationObject field. + $attestationObject = $this->getAttestationObject($attestationCredential['response']['attestationObject']); + + $authenticatorData = $this->getAuthenticatorData($attestationObject['authData']); + Assert::notNull($authenticatorData['attestedCredentialData']); + + // Verify that the rpIdHash in authData is the SHA-256 hash of the RP ID expected by the Relying Party. + $rpIdHash = hash('sha256', $host, true); + Assert::true(hash_equals($rpIdHash, $authenticatorData['rpIdHash']), 'Invalid rpIdHash.'); + + // Verify that the User Present bit of the flags in authData is set. + $isUserPresent = (ord($authenticatorData['flags']) & 1) !== 0; + Assert::true($isUserPresent); + + Assert::same($attestationObject['fmt'], 'none'); + Assert::same($attestationObject['attStmt'], []); + + $encodedCredentialId = sodium_bin2base64( + $authenticatorData['attestedCredentialData']['credentialId'], + SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING + ); + $encodedCredentialPublicKey = sodium_bin2base64( + $authenticatorData['attestedCredentialData']['credentialPublicKey'], + SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING + ); + $userHandle = sodium_bin2base64( + sodium_base642bin($creationOptions['user']['id'], SODIUM_BASE64_VARIANT_ORIGINAL), + SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING + ); + + return [ + 'publicKeyCredentialId' => $encodedCredentialId, + 'type' => 'public-key', + 'transports' => [], + 'attestationType' => $attestationObject['fmt'], + 'aaguid' => $authenticatorData['attestedCredentialData']['aaguid'], + 'credentialPublicKey' => $encodedCredentialPublicKey, + 'userHandle' => $userHandle, + 'counter' => $authenticatorData['signCount'], + ]; + } + + /** + * In order to prevent replay attacks, the challenges MUST contain enough entropy to make guessing them infeasible. + * Challenges SHOULD therefore be at least 16 bytes long. + * + * @see https://www.w3.org/TR/webauthn-3/#sctn-cryptographic-challenges + * + * @psalm-return non-empty-string + * + * @throws WebAuthnException + */ + private function generateChallenge(): string + { + try { + return sodium_bin2base64(random_bytes(32), SODIUM_BASE64_VARIANT_ORIGINAL); + } catch (Throwable $throwable) { // @codeCoverageIgnore + throw new WebAuthnException('Error when generating challenge.'); // @codeCoverageIgnore + } + } + + /** + * @see https://www.w3.org/TR/webauthn-3/#sctn-authenticator-data + * + * @psalm-return array{ + * rpIdHash: string, + * flags: string, + * signCount: int, + * attestedCredentialData: array{ + * aaguid: string, + * credentialId: string, + * credentialPublicKey: string, + * credentialPublicKeyDecoded: mixed[] + * }|null, + * extensions: string|null + * } + * + * @throws WebAuthnException + */ + private function getAuthenticatorData(string $authData): array + { + $authDataLength = mb_strlen($authData, '8bit'); + Assert::true($authDataLength >= 37); + $authDataStream = new DataStream($authData); + + $rpIdHash = $authDataStream->take(32); + $flags = $authDataStream->take(1); + + // 32-bit unsigned big-endian integer + $unpackedSignCount = unpack('N', $authDataStream->take(4)); + Assert::isArray($unpackedSignCount); + Assert::keyExists($unpackedSignCount, 1); + Assert::integer($unpackedSignCount[1]); + $signCount = $unpackedSignCount[1]; + + $attestedCredentialData = null; + // Bit 6: Attested credential data included (AT). + if ((ord($flags) & 64) !== 0) { + /** Authenticator Attestation GUID */ + $aaguid = $authDataStream->take(16); + + // 16-bit unsigned big-endian integer + $unpackedCredentialIdLength = unpack('n', $authDataStream->take(2)); + Assert::isArray($unpackedCredentialIdLength); + Assert::keyExists($unpackedCredentialIdLength, 1); + Assert::integer($unpackedCredentialIdLength[1]); + $credentialIdLength = $unpackedCredentialIdLength[1]; + + $credentialId = $authDataStream->take($credentialIdLength); + + $credentialPublicKeyDecoded = (new CBORDecoder())->decode($authDataStream); + Assert::isArray($credentialPublicKeyDecoded); + $credentialPublicKey = mb_substr( + $authData, + 37 + 18 + $credentialIdLength, + $authDataStream->getPosition(), + '8bit' + ); + + $attestedCredentialData = [ + 'aaguid' => $aaguid, + 'credentialId' => $credentialId, + 'credentialPublicKey' => $credentialPublicKey, + 'credentialPublicKeyDecoded' => $credentialPublicKeyDecoded, + ]; + } + + return [ + 'rpIdHash' => $rpIdHash, + 'flags' => $flags, + 'signCount' => $signCount, + 'attestedCredentialData' => $attestedCredentialData, + 'extensions' => null, + ]; + } + + /** + * @psalm-param non-empty-string $id + * @psalm-param list $allowedCredentials + * + * @throws WebAuthnException + */ + private function isCredentialIdAllowed(string $id, array $allowedCredentials): bool + { + foreach ($allowedCredentials as $credential) { + try { + $credentialId = sodium_base642bin($credential['id'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + } catch (SodiumException $exception) { + throw new WebAuthnException(); + } + + if (hash_equals($credentialId, $id)) { + return true; + } + } + + return false; + } + + /** + * @see https://www.iana.org/assignments/cose/cose.xhtml#algorithms + * + * @psalm-return list + */ + private function getCredentialParameters(): array + { + return [ + ['alg' => -257, 'type' => 'public-key'], // RS256 + ['alg' => -259, 'type' => 'public-key'], // RS512 + ['alg' => -37, 'type' => 'public-key'], // PS256 + ['alg' => -39, 'type' => 'public-key'], // PS512 + ['alg' => -7, 'type' => 'public-key'], // ES256 + ['alg' => -36, 'type' => 'public-key'], // ES512 + ['alg' => -8, 'type' => 'public-key'], // EdDSA + ]; + } + + /** + * @psalm-param non-empty-string $assertionResponseJson + * + * @psalm-return array{ + * id: non-empty-string, + * type: 'public-key', + * rawId: non-empty-string, + * response: array{ + * clientDataJSON: non-empty-string, + * authenticatorData: non-empty-string, + * signature: non-empty-string, + * } + * } + * + * @throws SodiumException + * @throws InvalidArgumentException + */ + private function getAssertionCredential(string $assertionResponseJson): array + { + $credential = json_decode($assertionResponseJson, true); + Assert::isArray($credential); + Assert::keyExists($credential, 'id'); + Assert::stringNotEmpty($credential['id']); + Assert::keyExists($credential, 'type'); + Assert::same($credential['type'], 'public-key'); + Assert::keyExists($credential, 'rawId'); + Assert::stringNotEmpty($credential['rawId']); + Assert::keyExists($credential, 'response'); + Assert::isArray($credential['response']); + Assert::keyExists($credential['response'], 'clientDataJSON'); + Assert::stringNotEmpty($credential['response']['clientDataJSON']); + Assert::keyExists($credential['response'], 'authenticatorData'); + Assert::stringNotEmpty($credential['response']['authenticatorData']); + Assert::keyExists($credential['response'], 'signature'); + Assert::stringNotEmpty($credential['response']['signature']); + + $id = sodium_base642bin($credential['id'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + $rawId = sodium_base642bin($credential['rawId'], SODIUM_BASE64_VARIANT_ORIGINAL); + Assert::stringNotEmpty($id); + Assert::stringNotEmpty($rawId); + Assert::true(hash_equals($rawId, $id)); + + $clientDataJSON = sodium_base642bin($credential['response']['clientDataJSON'], SODIUM_BASE64_VARIANT_ORIGINAL); + Assert::stringNotEmpty($clientDataJSON); + $authenticatorData = sodium_base642bin( + $credential['response']['authenticatorData'], + SODIUM_BASE64_VARIANT_ORIGINAL + ); + Assert::stringNotEmpty($authenticatorData); + $signature = sodium_base642bin($credential['response']['signature'], SODIUM_BASE64_VARIANT_ORIGINAL); + Assert::stringNotEmpty($signature); + + return [ + 'id' => $credential['id'], + 'type' => 'public-key', + 'rawId' => $rawId, + 'response' => [ + 'clientDataJSON' => $clientDataJSON, + 'authenticatorData' => $authenticatorData, + 'signature' => $signature, + ], + ]; + } + + /** + * @see https://www.w3.org/TR/webauthn-3/#iface-authenticatorattestationresponse + * + * @psalm-param non-empty-string $attestationResponse + * + * @psalm-return array{ + * id: non-empty-string, + * rawId: non-empty-string, + * type: 'public-key', + * response: array{clientDataJSON: non-empty-string, attestationObject: non-empty-string} + * } + * + * @throws SodiumException + * @throws InvalidArgumentException + */ + private function getAttestationCredential(string $attestationResponse): array + { + $credential = json_decode($attestationResponse, true); + Assert::isArray($credential); + Assert::keyExists($credential, 'id'); + Assert::stringNotEmpty($credential['id']); + Assert::keyExists($credential, 'rawId'); + Assert::stringNotEmpty($credential['rawId']); + Assert::keyExists($credential, 'type'); + Assert::string($credential['type']); + Assert::same($credential['type'], 'public-key'); + Assert::keyExists($credential, 'response'); + Assert::isArray($credential['response']); + Assert::keyExists($credential['response'], 'clientDataJSON'); + Assert::stringNotEmpty($credential['response']['clientDataJSON']); + Assert::keyExists($credential['response'], 'attestationObject'); + Assert::stringNotEmpty($credential['response']['attestationObject']); + + $id = sodium_base642bin($credential['id'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING); + $rawId = sodium_base642bin($credential['rawId'], SODIUM_BASE64_VARIANT_ORIGINAL); + Assert::stringNotEmpty($id); + Assert::stringNotEmpty($rawId); + Assert::true(hash_equals($rawId, $id)); + + $clientDataJSON = sodium_base642bin($credential['response']['clientDataJSON'], SODIUM_BASE64_VARIANT_ORIGINAL); + Assert::stringNotEmpty($clientDataJSON); + $attestationObject = sodium_base642bin( + $credential['response']['attestationObject'], + SODIUM_BASE64_VARIANT_ORIGINAL + ); + Assert::stringNotEmpty($attestationObject); + + return [ + 'id' => $credential['id'], + 'rawId' => $rawId, + 'type' => 'public-key', + 'response' => [ + 'clientDataJSON' => $clientDataJSON, + 'attestationObject' => $attestationObject, + ], + ]; + } + + /** + * @see https://www.w3.org/TR/webauthn-3/#dictionary-client-data + * + * @psalm-param non-empty-string $clientDataJSON + * + * @return array{ + * type: 'webauthn.create'|'webauthn.get', + * challenge: non-empty-string, + * origin: non-empty-string + * } + */ + private function getCollectedClientData(string $clientDataJSON): array + { + $clientData = json_decode($clientDataJSON, true); + + Assert::isArray($clientData); + Assert::keyExists($clientData, 'type'); + Assert::stringNotEmpty($clientData['type']); + Assert::inArray($clientData['type'], ['webauthn.create', 'webauthn.get']); + Assert::keyExists($clientData, 'challenge'); + Assert::stringNotEmpty($clientData['challenge']); + Assert::keyExists($clientData, 'origin'); + Assert::stringNotEmpty($clientData['origin']); + + return [ + 'type' => $clientData['type'], + 'challenge' => $clientData['challenge'], + 'origin' => $clientData['origin'], + ]; + } + + /** + * @psalm-param non-empty-string $attestationObjectEncoded + * + * @psalm-return array{fmt: string, attStmt: mixed[], authData: string} + * + * @throws WebAuthnException + */ + private function getAttestationObject(string $attestationObjectEncoded): array + { + $decoded = (new CBORDecoder())->decode(new DataStream($attestationObjectEncoded)); + + Assert::isArray($decoded); + Assert::keyExists($decoded, 'fmt'); + Assert::string($decoded['fmt']); + Assert::keyExists($decoded, 'attStmt'); + Assert::isArray($decoded['attStmt']); + Assert::keyExists($decoded, 'authData'); + Assert::string($decoded['authData']); + + return $decoded; + } +} diff --git a/libraries/classes/WebAuthn/DataStream.php b/libraries/classes/WebAuthn/DataStream.php new file mode 100644 index 0000000000..a445b0deb8 --- /dev/null +++ b/libraries/classes/WebAuthn/DataStream.php @@ -0,0 +1,68 @@ +stream = $resource; + } + + /** + * @throws WebAuthnException + */ + public function take(int $length): string + { + if ($length < 0) { + throw new WebAuthnException(); + } + + if ($length === 0) { + return ''; + } + + $string = fread($this->stream, $length); + if ($string === false) { + throw new WebAuthnException(); + } + + return $string; + } + + /** + * @throws WebAuthnException + */ + public function getPosition(): int + { + $position = ftell($this->stream); + if ($position === false) { + throw new WebAuthnException(); + } + + return $position; + } +} diff --git a/libraries/classes/WebAuthn/Server.php b/libraries/classes/WebAuthn/Server.php new file mode 100644 index 0000000000..7ce6b11b9b --- /dev/null +++ b/libraries/classes/WebAuthn/Server.php @@ -0,0 +1,78 @@ +, + * authenticatorSelection: array, + * timeout: positive-int, + * attestation: non-empty-string + * } + * + * @throws WebAuthnException + */ + public function getCredentialCreationOptions(string $userName, string $userId, string $relyingPartyId): array; + + /** + * @psalm-param list $allowedCredentials + * + * @return array>|int|string> + * + * @throws WebAuthnException + */ + public function getCredentialRequestOptions( + string $userName, + string $userId, + string $relyingPartyId, + array $allowedCredentials + ): array; + + /** + * @see https://www.w3.org/TR/webauthn-3/#sctn-verifying-assertion + * + * @psalm-param non-empty-string $assertionResponseJson + * @psalm-param list $allowedCredentials + * @psalm-param non-empty-string $challenge + * + * @throws WebAuthnException + */ + public function parseAndValidateAssertionResponse( + string $assertionResponseJson, + array $allowedCredentials, + string $challenge, + ServerRequestInterface $request + ): void; + + /** + * @see https://www.w3.org/TR/webauthn-3/#sctn-registering-a-new-credential + * + * @psalm-param non-empty-string $attestationResponse + * @psalm-param non-empty-string $credentialCreationOptions + * + * @return mixed[] + * + * @throws WebAuthnException + */ + public function parseAndValidateAttestationResponse( + string $attestationResponse, + string $credentialCreationOptions, + ServerRequestInterface $request + ): array; +} diff --git a/libraries/classes/WebAuthn/WebAuthnException.php b/libraries/classes/WebAuthn/WebAuthnException.php new file mode 100644 index 0000000000..1254eef51f --- /dev/null +++ b/libraries/classes/WebAuthn/WebAuthnException.php @@ -0,0 +1,11 @@ +twofactor = $twofactor; + } + + public function getCredentialCreationOptions(string $userName, string $userId, string $relyingPartyId): array + { + $userEntity = new PublicKeyCredentialUserEntity($userName, $userId, $userName); + $relyingPartyEntity = new PublicKeyCredentialRpEntity('phpMyAdmin (' . $relyingPartyId . ')', $relyingPartyId); + $publicKeyCredentialSourceRepository = $this->createPublicKeyCredentialSourceRepository(); + $server = new WebauthnServer($relyingPartyEntity, $publicKeyCredentialSourceRepository); + $publicKeyCredentialCreationOptions = $server->generatePublicKeyCredentialCreationOptions( + $userEntity, + PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE, + [], + AuthenticatorSelectionCriteria::createFromArray([ + 'authenticatorAttachment' => 'cross-platform', + 'userVerification' => 'discouraged', + ]) + ); + /** @psalm-var array{ + * challenge: non-empty-string, + * rp: array{name: non-empty-string, id: non-empty-string}, + * user: array{id: non-empty-string, name: non-empty-string, displayName: non-empty-string}, + * pubKeyCredParams: list, + * authenticatorSelection: array, + * timeout: positive-int, + * attestation: non-empty-string + * } $creationOptions */ + $creationOptions = $publicKeyCredentialCreationOptions->jsonSerialize(); + $creationOptions['challenge'] = sodium_bin2base64( + sodium_base642bin($creationOptions['challenge'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING), + SODIUM_BASE64_VARIANT_ORIGINAL + ); + Assert::stringNotEmpty($creationOptions['challenge']); + + return $creationOptions; + } + + public function getCredentialRequestOptions( + string $userName, + string $userId, + string $relyingPartyId, + array $allowedCredentials + ): array { + $userEntity = new PublicKeyCredentialUserEntity($userName, $userId, $userName); + $relyingPartyEntity = new PublicKeyCredentialRpEntity('phpMyAdmin (' . $relyingPartyId . ')', $relyingPartyId); + $publicKeyCredentialSourceRepository = $this->createPublicKeyCredentialSourceRepository(); + $server = new WebauthnServer($relyingPartyEntity, $publicKeyCredentialSourceRepository); + $credentialSources = $publicKeyCredentialSourceRepository->findAllForUserEntity($userEntity); + $allowedCredentials = array_map( + static function (PublicKeyCredentialSource $credential): PublicKeyCredentialDescriptor { + return $credential->getPublicKeyCredentialDescriptor(); + }, + $credentialSources + ); + $publicKeyCredentialRequestOptions = $server->generatePublicKeyCredentialRequestOptions( + 'discouraged', + $allowedCredentials + ); + /** + * @psalm-var array{ + * challenge: string, + * allowCredentials?: list + * } $requestOptions + */ + $requestOptions = $publicKeyCredentialRequestOptions->jsonSerialize(); + $requestOptions['challenge'] = sodium_bin2base64( + sodium_base642bin($requestOptions['challenge'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING), + SODIUM_BASE64_VARIANT_ORIGINAL + ); + if (isset($requestOptions['allowCredentials'])) { + foreach ($requestOptions['allowCredentials'] as $key => $credential) { + $requestOptions['allowCredentials'][$key]['id'] = sodium_bin2base64( + sodium_base642bin($credential['id'], SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING), + SODIUM_BASE64_VARIANT_ORIGINAL + ); + } + } + + return $requestOptions; + } + + public function parseAndValidateAssertionResponse( + string $assertionResponseJson, + array $allowedCredentials, + string $challenge, + ServerRequestInterface $request + ): void { + Assert::string($this->twofactor->config['settings']['userHandle']); + $userHandle = sodium_base642bin( + $this->twofactor->config['settings']['userHandle'], + SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING + ); + $userEntity = new PublicKeyCredentialUserEntity( + $this->twofactor->user, + $userHandle, + $this->twofactor->user + ); + $host = $request->getUri()->getHost(); + $relyingPartyEntity = new PublicKeyCredentialRpEntity('phpMyAdmin (' . $host . ')', $host); + $publicKeyCredentialSourceRepository = $this->createPublicKeyCredentialSourceRepository(); + $server = new WebauthnServer($relyingPartyEntity, $publicKeyCredentialSourceRepository); + $requestOptions = PublicKeyCredentialRequestOptions::createFromArray([ + 'challenge' => $challenge, + 'allowCredentials' => $allowedCredentials, + 'rpId' => $host, + 'timeout' => 60000, + ]); + Assert::isInstanceOf($requestOptions, PublicKeyCredentialRequestOptions::class); + $server->loadAndCheckAssertionResponse( + $assertionResponseJson, + $requestOptions, + $userEntity, + $request + ); + } + + public function parseAndValidateAttestationResponse( + string $attestationResponse, + string $credentialCreationOptions, + ServerRequestInterface $request + ): array { + $creationOptions = json_decode($credentialCreationOptions, true); + Assert::isArray($creationOptions); + Assert::keyExists($creationOptions, 'challenge'); + Assert::keyExists($creationOptions, 'user'); + Assert::isArray($creationOptions['user']); + Assert::keyExists($creationOptions['user'], 'id'); + $host = $request->getUri()->getHost(); + $relyingPartyEntity = new PublicKeyCredentialRpEntity('phpMyAdmin (' . $host . ')', $host); + $publicKeyCredentialSourceRepository = $this->createPublicKeyCredentialSourceRepository(); + $server = new WebauthnServer($relyingPartyEntity, $publicKeyCredentialSourceRepository); + $creationOptionsArray = [ + 'rp' => ['name' => 'phpMyAdmin (' . $host . ')', 'id' => $host], + 'pubKeyCredParams' => [ + ['alg' => -257, 'type' => 'public-key'], // RS256 + ['alg' => -259, 'type' => 'public-key'], // RS512 + ['alg' => -37, 'type' => 'public-key'], // PS256 + ['alg' => -39, 'type' => 'public-key'], // PS512 + ['alg' => -7, 'type' => 'public-key'], // ES256 + ['alg' => -36, 'type' => 'public-key'], // ES512 + ['alg' => -8, 'type' => 'public-key'], // EdDSA + ], + 'challenge' => $creationOptions['challenge'], + 'attestation' => 'none', + 'user' => [ + 'name' => $this->twofactor->user, + 'id' => $creationOptions['user']['id'], + 'displayName' => $this->twofactor->user, + ], + 'authenticatorSelection' => [ + 'authenticatorAttachment' => 'cross-platform', + 'userVerification' => 'discouraged', + ], + 'timeout' => 60000, + ]; + $credentialCreationOptions = PublicKeyCredentialCreationOptions::createFromArray($creationOptionsArray); + Assert::isInstanceOf($credentialCreationOptions, PublicKeyCredentialCreationOptions::class); + $publicKeyCredentialSource = $server->loadAndCheckAttestationResponse( + $attestationResponse, + $credentialCreationOptions, + $request + ); + + return $publicKeyCredentialSource->jsonSerialize(); + } + + private function createPublicKeyCredentialSourceRepository(): PublicKeyCredentialSourceRepository + { + return new class ($this->twofactor) implements PublicKeyCredentialSourceRepository { + /** @var TwoFactor */ + private $twoFactor; + + public function __construct(TwoFactor $twoFactor) + { + $this->twoFactor = $twoFactor; + } + + public function findOneByCredentialId(string $publicKeyCredentialId): ?PublicKeyCredentialSource + { + $data = $this->read(); + if (isset($data[base64_encode($publicKeyCredentialId)])) { + return PublicKeyCredentialSource::createFromArray($data[base64_encode($publicKeyCredentialId)]); + } + + return null; + } + + /** + * @return PublicKeyCredentialSource[] + */ + public function findAllForUserEntity(PublicKeyCredentialUserEntity $publicKeyCredentialUserEntity): array + { + $sources = []; + foreach ($this->read() as $data) { + $source = PublicKeyCredentialSource::createFromArray($data); + if ($source->getUserHandle() !== $publicKeyCredentialUserEntity->getId()) { + continue; + } + + $sources[] = $source; + } + + return $sources; + } + + public function saveCredentialSource(PublicKeyCredentialSource $publicKeyCredentialSource): void + { + $data = $this->read(); + $id = $publicKeyCredentialSource->getPublicKeyCredentialId(); + $data[base64_encode($id)] = $publicKeyCredentialSource->jsonSerialize(); + $this->write($data); + } + + /** + * @return mixed[][] + */ + private function read(): array + { + /** @psalm-var list $credentials */ + $credentials = $this->twoFactor->config['settings']['credentials']; + foreach ($credentials as &$credential) { + if (isset($credential['trustPath'])) { + continue; + } + + $credential['trustPath'] = ['type' => EmptyTrustPath::class]; + } + + return $credentials; + } + + /** + * @param mixed[] $data + */ + private function write(array $data): void + { + $this->twoFactor->config['settings']['credentials'] = $data; + } + }; + } +} diff --git a/psalm.xml b/psalm.xml index c09d3109a2..fe939fff3d 100644 --- a/psalm.xml +++ b/psalm.xml @@ -373,6 +373,7 @@ proc_priv: bool, querytime: float|int, read_limit: int, + request: PhpMyAdmin\Http\ServerRequest, save_on_server: bool, server: int, SESSION_KEY: string, diff --git a/scripts/create-release.sh b/scripts/create-release.sh index 3aa2dbc2db..623ce8fc3c 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -244,7 +244,18 @@ cleanup_composer_vendors() { vendor/phpmyadmin/shapefile/CONTRIBUTING.md \ vendor/phpmyadmin/shapefile/CODE_OF_CONDUCT.md \ vendor/phpmyadmin/sql-parser/CODE_OF_CONDUCT.md \ - vendor/phpmyadmin/sql-parser/CONTRIBUTING.md + vendor/phpmyadmin/sql-parser/CONTRIBUTING.md \ + vendor/beberlei/assert/.github/ \ + vendor/brick/math/SECURITY.md \ + vendor/brick/math/psalm-baseline.xml \ + vendor/brick/math/psalm.xml \ + vendor/ramsey/collection/SECURITY.md \ + vendor/spomky-labs/base64url/.github/ \ + vendor/spomky-labs/cbor-php/.php_cs.dist \ + vendor/spomky-labs/cbor-php/CODE_OF_CONDUCT.md \ + vendor/spomky-labs/cbor-php/infection.json.dist \ + vendor/spomky-labs/cbor-php/phpstan.neon \ + vendor/thecodingmachine/safe/generated/Exceptions/.gitkeep find vendor/tecnickcom/tcpdf/fonts/ -maxdepth 1 -type f \ -not -name 'dejavusans.*' \ -not -name 'dejavusansb.*' \ @@ -292,6 +303,10 @@ security_checkup() { echo 'TCPDF should be installed, detection failed !' exit 1; fi + if [ ! -f vendor/web-auth/webauthn-lib/src/Server.php ]; then + echo 'Webauthn-lib should be installed, detection failed !' + exit 1; + fi if [ ! -f vendor/code-lts/u2f-php-server/src/U2FServer.php ]; then echo 'U2F-server should be installed, detection failed !' exit 1; @@ -500,7 +515,7 @@ composer update --no-interaction --no-dev # Parse the required versions from composer.json PACKAGES_VERSIONS='' -PACKAGE_LIST='tecnickcom/tcpdf pragmarx/google2fa-qrcode bacon/bacon-qr-code code-lts/u2f-php-server' +PACKAGE_LIST='tecnickcom/tcpdf pragmarx/google2fa-qrcode bacon/bacon-qr-code code-lts/u2f-php-server web-auth/webauthn-lib' for PACKAGES in $PACKAGE_LIST do diff --git a/templates/login/twofactor/webauthn_creation.twig b/templates/login/twofactor/webauthn_creation.twig new file mode 100644 index 0000000000..552a966976 --- /dev/null +++ b/templates/login/twofactor/webauthn_creation.twig @@ -0,0 +1,3 @@ +

{{ 'Please connect your WebAuthn/FIDO2 device. Then confirm registration on the device.'|trans }}

+ + diff --git a/templates/login/twofactor/webauthn_request.twig b/templates/login/twofactor/webauthn_request.twig new file mode 100644 index 0000000000..5b13e7c246 --- /dev/null +++ b/templates/login/twofactor/webauthn_request.twig @@ -0,0 +1,3 @@ +

{{ 'Please connect your WebAuthn/FIDO2 device. Then confirm login on the device.'|trans }}

+ + diff --git a/templates/preferences/two_factor/main.twig b/templates/preferences/two_factor/main.twig index 17ada02e25..9feba8833d 100644 --- a/templates/preferences/two_factor/main.twig +++ b/templates/preferences/two_factor/main.twig @@ -21,6 +21,17 @@ {% else %}

{% trans "Two-factor authentication is available, but not configured for this account." %}

{% endif %} + {% if missing|length > 0 %} +

+ {{ 'Please install optional dependencies to enable more authentication backends.'|trans }} + {{ 'Following composer packages are missing:'|trans }} +

+
    + {% for item in missing %} +
  • {{ item.dep }} ({{ item.class }})
  • + {% endfor %} +
+ {% endif %} {% endif %} {% else %}

{% trans "Two-factor authentication is not available, enable phpMyAdmin configuration storage to use it." %}

diff --git a/test/classes/Plugins/TwoFactor/WebAuthnTest.php b/test/classes/Plugins/TwoFactor/WebAuthnTest.php new file mode 100644 index 0000000000..8c1b52ff97 --- /dev/null +++ b/test/classes/Plugins/TwoFactor/WebAuthnTest.php @@ -0,0 +1,299 @@ +assertSame('WebAuthn', WebAuthn::$id); + $this->assertSame('Hardware Security Key (WebAuthn/FIDO2)', WebAuthn::getName()); + $this->assertSame( + 'Provides authentication using hardware security tokens supporting the WebAuthn/FIDO2 protocol,' + . ' such as a YubiKey.', + WebAuthn::getDescription() + ); + } + + public function testRender(): void + { + $GLOBALS['lang'] = 'en'; + $GLOBALS['server'] = 1; + $GLOBALS['text_dir'] = 'ltr'; + $GLOBALS['PMA_PHP_SELF'] = 'index.php'; + + $uri = $this->createStub(UriInterface::class); + $uri->method('getHost')->willReturn('test.localhost'); + $request = $this->createStub(ServerRequest::class); + $request->method('getUri')->willReturn($uri); + $GLOBALS['request'] = $request; + + $twoFactor = $this->createStub(TwoFactor::class); + $twoFactor->user = 'test_user'; + $twoFactor->config = [ + 'backend' => 'WebAuthn', + 'settings' => [ + 'credentials' => [ + // base64 of publicKeyCredentialId1 + 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ==' => [ + // base64url of publicKeyCredentialId1 + 'publicKeyCredentialId' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ', + 'type' => 'public-key', + ], + // base64 of publicKeyCredentialId2 + 'cHVibGljS2V5Q3JlZGVudGlhbElkMg==' => ['publicKeyCredentialId' => '', 'type' => ''], + ], + ], + ]; + + $expectedRequestOptions = [ + 'challenge' => 'challenge', + 'allowCredentials' => [['type' => 'public-key', 'id' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ']], + 'timeout' => 60000, + ]; + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('getCredentialRequestOptions')->with( + $this->equalTo('test_user'), + $this->anything(), + $this->equalTo('test.localhost'), + $this->equalTo([['type' => 'public-key', 'id' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ']]) + )->willReturn($expectedRequestOptions); + + $webAuthn = new WebAuthn($twoFactor); + $webAuthn->setServer($server); + $actual = $webAuthn->render(); + + $optionsFromSession = $_SESSION['WebAuthnCredentialRequestOptions'] ?? null; + $this->assertIsString($optionsFromSession); + $this->assertJson($optionsFromSession); + $this->assertEquals($expectedRequestOptions, json_decode($optionsFromSession, true)); + + $this->assertStringContainsString('id="webauthn_request_response"', $actual); + $this->assertStringContainsString('name="webauthn_request_response"', $actual); + $this->assertStringContainsString('value=""', $actual); + $this->assertStringContainsString('data-request-options="', $actual); + $this->assertSame('', $webAuthn->getError()); + + $files = ResponseRenderer::getInstance()->getHeader()->getScripts()->getFiles(); + $this->assertContains('webauthn.js', array_column($files, 'name')); + } + + public function testSetup(): void + { + $GLOBALS['lang'] = 'en'; + $GLOBALS['server'] = 1; + $GLOBALS['text_dir'] = 'ltr'; + $GLOBALS['PMA_PHP_SELF'] = 'index.php'; + + $uri = $this->createStub(UriInterface::class); + $uri->method('getHost')->willReturn('test.localhost'); + $request = $this->createStub(ServerRequest::class); + $request->method('getUri')->willReturn($uri); + $GLOBALS['request'] = $request; + + $twoFactor = $this->createStub(TwoFactor::class); + $twoFactor->user = 'test_user'; + + $expectedCreationOptions = [ + 'challenge' => 'challenge', + 'rp' => ['name' => 'phpMyAdmin (test.localhost)', 'id' => 'test.localhost'], + 'user' => ['id' => 'user_id', 'name' => 'test_user', 'displayName' => 'test_user'], + 'pubKeyCredParams' => [['alg' => -8, 'type' => 'public-key']], + 'authenticatorSelection' => ['authenticatorAttachment' => 'cross-platform'], + 'timeout' => 60000, + 'attestation' => 'none', + ]; + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('getCredentialCreationOptions')->with( + $this->equalTo('test_user'), + $this->anything(), + $this->equalTo('test.localhost') + )->willReturn($expectedCreationOptions); + + $webAuthn = new WebAuthn($twoFactor); + $webAuthn->setServer($server); + $actual = $webAuthn->setup(); + + $optionsFromSession = $_SESSION['WebAuthnCredentialCreationOptions'] ?? null; + $this->assertIsString($optionsFromSession); + $this->assertJson($optionsFromSession); + $this->assertEquals($expectedCreationOptions, json_decode($optionsFromSession, true)); + + $this->assertStringContainsString('id="webauthn_creation_response"', $actual); + $this->assertStringContainsString('name="webauthn_creation_response"', $actual); + $this->assertStringContainsString('value=""', $actual); + $this->assertStringContainsString('data-creation-options="', $actual); + $this->assertSame('', $webAuthn->getError()); + + $files = ResponseRenderer::getInstance()->getHeader()->getScripts()->getFiles(); + $this->assertContains('webauthn.js', array_column($files, 'name')); + } + + public function testConfigure(): void + { + $_SESSION = []; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_creation_response', '', '']]); + $GLOBALS['request'] = $request; + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $this->assertFalse($webAuthn->configure()); + $this->assertSame('', $webAuthn->getError()); + } + + public function testConfigure2(): void + { + $_SESSION['WebAuthnCredentialCreationOptions'] = ''; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_creation_response', '', '{}']]); + $GLOBALS['request'] = $request; + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $this->assertFalse($webAuthn->configure()); + $this->assertStringContainsString('Two-factor authentication failed:', $webAuthn->getError()); + } + + public function testConfigure3(): void + { + $_SESSION['WebAuthnCredentialCreationOptions'] = '{}'; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_creation_response', '', '{}']]); + $GLOBALS['request'] = $request; + + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('parseAndValidateAttestationResponse') + ->willThrowException(new WebAuthnException()); + + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $webAuthn->setServer($server); + $this->assertFalse($webAuthn->configure()); + $this->assertStringContainsString('Two-factor authentication failed.', $webAuthn->getError()); + } + + public function testConfigure4(): void + { + $_SESSION['WebAuthnCredentialCreationOptions'] = '{}'; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_creation_response', '', '{}']]); + $GLOBALS['request'] = $request; + + $twoFactor = $this->createStub(TwoFactor::class); + $twoFactor->config = ['backend' => '', 'settings' => []]; + + // base64url of publicKeyCredentialId1 + $credential = ['publicKeyCredentialId' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ', 'userHandle' => 'userHandle']; + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('parseAndValidateAttestationResponse')->with( + $this->equalTo('{}'), + $this->equalTo('{}'), + $this->equalTo($request) + )->willReturn($credential); + + $webAuthn = new WebAuthn($twoFactor); + $webAuthn->setServer($server); + $this->assertTrue($webAuthn->configure()); + /** @psalm-var array{backend: string, settings: mixed[]} $config */ + $config = $twoFactor->config; + $this->assertSame( + [ + 'backend' => '', + 'settings' => [ + 'userHandle' => 'userHandle', + 'credentials' => ['cHVibGljS2V5Q3JlZGVudGlhbElkMQ==' => $credential], + ], + ], + $config + ); + } + + public function testCheck(): void + { + $_SESSION = []; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_request_response', '', '']]); + $GLOBALS['request'] = $request; + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $this->assertFalse($webAuthn->check()); + $this->assertSame('', $webAuthn->getError()); + } + + public function testCheck2(): void + { + $_SESSION['WebAuthnCredentialRequestOptions'] = ''; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_request_response', '', '{}']]); + $GLOBALS['request'] = $request; + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $this->assertFalse($webAuthn->check()); + $this->assertStringContainsString('Two-factor authentication failed:', $webAuthn->getError()); + } + + public function testCheck3(): void + { + $_SESSION['WebAuthnCredentialRequestOptions'] = '{"challenge":"challenge"}'; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_request_response', '', '{}']]); + $GLOBALS['request'] = $request; + + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('parseAndValidateAssertionResponse') + ->willThrowException(new WebAuthnException()); + + $webAuthn = new WebAuthn($this->createStub(TwoFactor::class)); + $webAuthn->setServer($server); + $this->assertFalse($webAuthn->check()); + $this->assertStringContainsString('Two-factor authentication failed.', $webAuthn->getError()); + } + + public function testCheck4(): void + { + $_SESSION['WebAuthnCredentialRequestOptions'] = '{"challenge":"challenge"}'; + $request = $this->createStub(ServerRequest::class); + $request->method('getParsedBodyParam')->willReturnMap([['webauthn_request_response', '', '{}']]); + $GLOBALS['request'] = $request; + + $twoFactor = $this->createStub(TwoFactor::class); + $twoFactor->config = [ + 'backend' => 'WebAuthn', + 'settings' => [ + 'credentials' => [ + // base64 of publicKeyCredentialId1 + 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ==' => [ + // base64url of publicKeyCredentialId1 + 'publicKeyCredentialId' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ', + 'type' => 'public-key', + ], + ], + ], + ]; + + $server = $this->createMock(Server::class); + $server->expects($this->once())->method('parseAndValidateAssertionResponse')->with( + $this->equalTo('{}'), + $this->equalTo([['type' => 'public-key', 'id' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ']]), + $this->equalTo('challenge'), + $this->equalTo($request) + ); + + $webAuthn = new WebAuthn($twoFactor); + $webAuthn->setServer($server); + $this->assertTrue($webAuthn->check()); + } +} diff --git a/test/classes/WebAuthn/CBORDecoderTest.php b/test/classes/WebAuthn/CBORDecoderTest.php new file mode 100644 index 0000000000..f43e43a25e --- /dev/null +++ b/test/classes/WebAuthn/CBORDecoderTest.php @@ -0,0 +1,198 @@ +assertNotFalse($data); + $this->assertSame($expected, $decoder->decode(new DataStream($data))); + } + + /** + * @psalm-return iterable + */ + public function dataProviderForTestDecode(): iterable + { + return [ + ['00', 0], + ['01', 1], + ['0a', 10], + ['17', 23], + ['1818', 24], + ['1819', 25], + ['1864', 100], + ['1903e8', 1000], + ['1a000f4240', 1000000], + //['1b000000e8d4a51000', 1000000000000], + //['1bffffffffffffffff', 18446744073709551615], + //['c249010000000000000000', 18446744073709551616], + //['3bffffffffffffffff', -18446744073709551616], + //['c349010000000000000000', -18446744073709551617], + ['20', -1], + ['29', -10], + ['3863', -100], + ['3903e7', -1000], + ['f90000', 0.0], + ['f98000', -0.0], + ['f93c00', 1.0], + ['fb3ff199999999999a', 1.1], + ['f93e00', 1.5], + ['f97bff', 65504.0], + ['fa47c35000', 100000.0], + ['fa7f7fffff', 3.4028234663852886e+38], + ['fb7e37e43c8800759c', 1.0e+300], + ['f90001', 5.960464477539063e-8], + ['f90400', 0.00006103515625], + ['f9c400', -4.0], + ['fbc010666666666666', -4.1], + ['f97c00', INF], + ['f9fc00', -INF], + ['fa7f800000', INF], + ['faff800000', -INF], + ['fb7ff0000000000000', INF], + ['fbfff0000000000000', -INF], + ['f4', true], + ['f5', false], + ['f6', null], + //['f7', 'undefined'], + ['f0', 16], + ['f818', 24], + ['f8ff', 255], + ['c074323031332d30332d32315432303a30343a30305a', '2013-03-21T20:04:00Z'], + ['c11a514b67b0', 1363896240], + ['c1fb41d452d9ec200000', 1363896240.5], + ['d74401020304', hex2bin('01020304')], + ['d818456449455446', hex2bin('6449455446')], + ['d82076687474703a2f2f7777772e6578616d706c652e636f6d', 'http://www.example.com'], + ['40', hex2bin('')], + ['4401020304', hex2bin('01020304')], + ['60', ''], + ['6161', 'a'], + ['6449455446', 'IETF'], + ['62225c', '"\\'], + ['62c3bc', "\u{00fc}"], + ['63e6b0b4', "\u{6c34}"], + ['64f0908591', "\u{10151}"], // "\u{d800}\u{dd51}" + ['80', []], + ['83010203', [1, 2, 3]], + ['8301820203820405', [1, [2, 3], [4, 5]]], + [ + '98190102030405060708090a0b0c0d0e0f101112131415161718181819', + [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25], + ], + ['a0', []], + ['a201020304', [1 => 2, 3 => 4]], + ['a26161016162820203', ['a' => 1, 'b' => [2, 3]]], + ['826161a161626163', ['a', ['b' => 'c']]], + [ + 'a56161614161626142616361436164614461656145', + ['a' => 'A', 'b' => 'B', 'c' => 'C', 'd' => 'D', 'e' => 'E'], + ], + ['a1646e616d656441636d65', ['name' => 'Acme']], + [ + 'a462696458203082019330820138a0030201023082019330820138a003020102' + . '3082019330826469636f6e782b68747470733a2f2f706963732e6578616d706c' + . '652e636f6d2f30302f702f61426a6a6a707150622e706e67646e616d65766a6f' + . '686e70736d697468406578616d706c652e636f6d6b646973706c61794e616d65' + . '6d4a6f686e20502e20536d697468a462696458203082019330820138a0030201' + . '023082019330820138a0030201023082019330826469636f6e782b6874747073' + . '3a2f2f706963732e6578616d706c652e636f6d2f30302f702f61426a6a6a7071' + . '50622e706e67646e616d65766a6f686e70736d697468406578616d706c652e63' + . '6f6d6b646973706c61794e616d656d4a6f686e20502e20536d697468', + [ + 'id' => base64_decode('MIIBkzCCATigAwIBAjCCAZMwggE4oAMCAQIwggGTMII='), + 'icon' => 'https://pics.example.com/00/p/aBjjjpqPb.png', + 'name' => 'johnpsmith@example.com', + 'displayName' => 'John P. Smith', + ], + ], + [ + '82a263616c672664747970656a7075626C69632D6B6579a263616c6739010064747970656a7075626C69632D6B6579', + [ + ['alg' => -7, 'type' => 'public-key'], + ['alg' => -257, 'type' => 'public-key'], + ], + ], + [ + 'A501020326200121582065eda5a12577c2bae829437fe338701a10aaa375e1bb5b5de108de439c08551d' + . '2258201e52ed75701163f7f9e40ddf9f341b3dc9ba860af7e0ca7ca7e9eecd0084d19c', + [ + 1 => 2, + 3 => -7, + -1 => 1, + -2 => hex2bin('65eda5a12577c2bae829437fe338701a10aaa375e1bb5b5de108de439c08551d'), + -3 => hex2bin('1e52ed75701163f7f9e40ddf9f341b3dc9ba860af7e0ca7ca7e9eecd0084d19c'), + ], + ], + ]; + } + + public function testDecodeForNaNValues(): void + { + $decoder = new CBORDecoder(); + $nanValues = ['f97e00', 'fa7fc00000', 'fb7ff8000000000000']; + foreach ($nanValues as $value) { + $data = hex2bin($value); + $this->assertNotFalse($data); + $this->assertNan($decoder->decode(new DataStream($data))); + } + } + + /** + * @dataProvider indefiniteLengthValuesProvider + */ + public function testDecodeForNotSupportedValues(string $encoded): void + { + $decoder = new CBORDecoder(); + $data = hex2bin($encoded); + $this->assertNotFalse($data); + $this->expectException(WebAuthnException::class); + $decoder->decode(new DataStream($data)); + } + + /** + * @psalm-return iterable + */ + public function indefiniteLengthValuesProvider(): iterable + { + return [ + ['5f42010243030405ff'], // (_ h'0102', h'030405') + ['7f657374726561646d696e67ff'], // (_ "strea", "ming") + ['9fff'], // [_ ] + ['9f018202039f0405ffff'], // [_ 1, [2, 3], [_ 4, 5]] + ['9f01820203820405ff'], // [_ 1, [2, 3], [4, 5]] + ['83018202039f0405ff'], // [1, [2, 3], [_ 4, 5]] + ['83019f0203ff820405'], // [1, [_ 2, 3], [4, 5]] + // [_ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] + ['9f0102030405060708090a0b0c0d0e0f101112131415161718181819ff'], + ['bf61610161629f0203ffff'], // {_ "a": 1, "b": [_ 2, 3]} + ['826161bf61626163ff'], // ["a", {_ "b": "c"}] + ['bf6346756ef563416d7421ff'], // {_ "Fun": true, "Amt": -2} + ]; + } +} diff --git a/test/classes/WebAuthn/WebauthnLibServerTest.php b/test/classes/WebAuthn/WebauthnLibServerTest.php new file mode 100644 index 0000000000..5ff7f315bf --- /dev/null +++ b/test/classes/WebAuthn/WebauthnLibServerTest.php @@ -0,0 +1,83 @@ +markTestSkipped('Package "web-auth/webauthn-lib" is required.'); + } + + public function testGetCredentialCreationOptions(): void + { + $server = new WebauthnLibServer($this->createStub(TwoFactor::class)); + $options = $server->getCredentialCreationOptions('user_name', 'user_id', 'test.localhost'); + $this->assertArrayHasKey('challenge', $options); + $this->assertNotEmpty($options['challenge']); + $this->assertArrayHasKey('pubKeyCredParams', $options); + $this->assertNotEmpty($options['pubKeyCredParams']); + $this->assertArrayHasKey('attestation', $options); + $this->assertNotEmpty($options['attestation']); + $this->assertSame('phpMyAdmin (test.localhost)', $options['rp']['name']); + $this->assertSame('test.localhost', $options['rp']['id']); + $this->assertSame('user_name', $options['user']['name']); + $this->assertSame('user_name', $options['user']['displayName']); + $this->assertSame(base64_encode('user_id'), $options['user']['id']); + $this->assertArrayHasKey('authenticatorAttachment', $options['authenticatorSelection']); + $this->assertSame('cross-platform', $options['authenticatorSelection']['authenticatorAttachment']); + } + + public function testGetCredentialRequestOptions(): void + { + $twoFactor = $this->createStub(TwoFactor::class); + $twoFactor->config = [ + 'backend' => 'WebAuthn', + 'settings' => [ + 'credentials' => [ + // base64 of publicKeyCredentialId1 + 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ==' => [ + // base64url for publicKeyCredentialId1 + 'publicKeyCredentialId' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ', + 'type' => 'public-key', + 'transports' => [], + 'attestationType' => 'none', + 'trustPath' => ['type' => 'Webauthn\\TrustPath\\EmptyTrustPath'], + 'aaguid' => '00000000-0000-0000-0000-000000000000', + 'credentialPublicKey' => 'Y3JlZGVudGlhbFB1YmxpY0tleTE', // base64url for credentialPublicKey1 + 'userHandle' => 'dXNlckhhbmRsZTE=', // base64 for userHandle1 + 'counter' => 0, + 'otherUI' => null, + ], + ], + ], + ]; + + $server = new WebauthnLibServer($twoFactor); + $options = $server->getCredentialRequestOptions('user_name', 'userHandle1', 'test.localhost', []); + $this->assertNotEmpty($options['challenge']); + $this->assertSame('test.localhost', $options['rpId']); + $this->assertEquals( + [['type' => 'public-key', 'id' => 'cHVibGljS2V5Q3JlZGVudGlhbElkMQ==']], + $options['allowCredentials'] + ); + } +} From e2f45d3df590c5cb1ce6a335ea9e33e0993f988b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Mon, 16 Jan 2023 18:39:08 -0300 Subject: [PATCH 5/6] Update po files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ci skip] Signed-off-by: Maurício Meneghini Fauth --- po/af.po | 755 +++++++++++++++++++------------------ po/am.po | 751 ++++++++++++++++++------------------ po/ar.po | 751 ++++++++++++++++++------------------ po/ar_LY.po | 751 ++++++++++++++++++------------------ po/az.po | 751 ++++++++++++++++++------------------ po/be.po | 751 ++++++++++++++++++------------------ po/be@latin.po | 755 +++++++++++++++++++------------------ po/ber.po | 751 ++++++++++++++++++------------------ po/bg.po | 756 +++++++++++++++++++------------------ po/bn.po | 760 +++++++++++++++++++------------------ po/br.po | 755 +++++++++++++++++++------------------ po/brx.po | 751 ++++++++++++++++++------------------ po/bs.po | 755 +++++++++++++++++++------------------ po/ca.po | 782 ++++++++++++++++++++------------------ po/ckb.po | 751 ++++++++++++++++++------------------ po/cs.po | 790 ++++++++++++++++++++------------------ po/cy.po | 755 +++++++++++++++++++------------------ po/da.po | 758 +++++++++++++++++++------------------ po/de.po | 786 ++++++++++++++++++++------------------ po/el.po | 778 ++++++++++++++++++++------------------ po/en_GB.po | 939 +++++++++++++++++++++++++--------------------- po/enm.po | 751 ++++++++++++++++++------------------ po/eo.po | 751 ++++++++++++++++++------------------ po/es.po | 786 ++++++++++++++++++++------------------ po/et.po | 785 ++++++++++++++++++++------------------ po/eu.po | 755 +++++++++++++++++++------------------ po/fa.po | 755 +++++++++++++++++++------------------ po/fi.po | 756 +++++++++++++++++++------------------ po/fil.po | 751 ++++++++++++++++++------------------ po/fr.po | 786 ++++++++++++++++++++------------------ po/fy.po | 751 ++++++++++++++++++------------------ po/gl.po | 756 +++++++++++++++++++------------------ po/gu.po | 751 ++++++++++++++++++------------------ po/he.po | 751 ++++++++++++++++++------------------ po/hi.po | 767 +++++++++++++++++++------------------ po/hr.po | 755 +++++++++++++++++++------------------ po/hu.po | 756 +++++++++++++++++++------------------ po/hy.po | 751 ++++++++++++++++++------------------ po/ia.po | 760 +++++++++++++++++++------------------ po/id.po | 786 ++++++++++++++++++++------------------ po/ig.po | 751 ++++++++++++++++++------------------ po/it.po | 786 ++++++++++++++++++++------------------ po/ja.po | 790 ++++++++++++++++++++------------------ po/ka.po | 751 ++++++++++++++++++------------------ po/kab.po | 753 +++++++++++++++++++------------------ po/kk.po | 777 ++++++++++++++++++++------------------ po/km.po | 755 +++++++++++++++++++------------------ po/kn.po | 751 ++++++++++++++++++------------------ po/ko.po | 759 +++++++++++++++++++------------------ po/ksh.po | 751 ++++++++++++++++++------------------ po/ku.po | 751 ++++++++++++++++++------------------ po/ky.po | 751 ++++++++++++++++++------------------ po/li.po | 751 ++++++++++++++++++------------------ po/lt.po | 755 +++++++++++++++++++------------------ po/lv.po | 755 +++++++++++++++++++------------------ po/mk.po | 763 +++++++++++++++++++------------------ po/ml.po | 755 +++++++++++++++++++------------------ po/mn.po | 755 +++++++++++++++++++------------------ po/ms.po | 755 +++++++++++++++++++------------------ po/my.po | 751 ++++++++++++++++++------------------ po/nb.po | 756 +++++++++++++++++++------------------ po/ne.po | 751 ++++++++++++++++++------------------ po/nl.po | 790 ++++++++++++++++++++------------------ po/nn.po | 751 ++++++++++++++++++------------------ po/pa.po | 751 ++++++++++++++++++------------------ po/phpmyadmin.pot | 753 +++++++++++++++++++------------------ po/pl.po | 780 ++++++++++++++++++++------------------ po/pt.po | 786 ++++++++++++++++++++------------------ po/pt_BR.po | 792 ++++++++++++++++++++------------------ po/rcf.po | 751 ++++++++++++++++++------------------ po/ro.po | 796 +++++++++++++++++++++------------------ po/ru.po | 790 ++++++++++++++++++++------------------ po/si.po | 760 +++++++++++++++++++------------------ po/sk.po | 756 +++++++++++++++++++------------------ po/sl.po | 794 +++++++++++++++++++++------------------ po/sq.po | 759 +++++++++++++++++++------------------ po/sr.po | 755 +++++++++++++++++++------------------ po/sr@latin.po | 755 +++++++++++++++++++------------------ po/sv.po | 756 +++++++++++++++++++------------------ po/ta.po | 751 ++++++++++++++++++------------------ po/te.po | 757 +++++++++++++++++++------------------ po/th.po | 766 +++++++++++++++++++------------------ po/tk.po | 751 ++++++++++++++++++------------------ po/tr.po | 786 ++++++++++++++++++++------------------ po/tt.po | 755 +++++++++++++++++++------------------ po/tzm.po | 751 ++++++++++++++++++------------------ po/ug.po | 755 +++++++++++++++++++------------------ po/uk.po | 790 ++++++++++++++++++++------------------ po/ur.po | 755 +++++++++++++++++++------------------ po/uz.po | 755 +++++++++++++++++++------------------ po/uz@latin.po | 755 +++++++++++++++++++------------------ po/vi.po | 751 ++++++++++++++++++------------------ po/vls.po | 751 ++++++++++++++++++------------------ po/zh_CN.po | 782 ++++++++++++++++++++------------------ po/zh_TW.po | 817 +++++++++++++++++++++------------------- 95 files changed, 38529 insertions(+), 34039 deletions(-) diff --git a/po/af.po b/po/af.po index 4a793af8f0..cc8e77bf68 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Afrikaans \n" "Language-Team: Amharic \n" "Language-Team: Arabic %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9576,8 +9585,8 @@ msgstr "استعراض" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9589,7 +9598,7 @@ msgstr "إبحث" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9599,8 +9608,8 @@ msgid "Insert" msgstr "إدخال" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9609,14 +9618,14 @@ msgid "Privileges" msgstr "الإمتيازات" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "عمليات" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "تتبع" @@ -9624,12 +9633,12 @@ msgstr "تتبع" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "القوادح" @@ -9639,11 +9648,11 @@ msgstr "القوادح" msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "روتينات" @@ -9653,15 +9662,15 @@ msgstr "روتينات" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "أحداث" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "المصمم" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "الأعمدة المركزية" @@ -9671,12 +9680,12 @@ msgid "User accounts" msgstr "حسابات المستخدمين" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9684,21 +9693,21 @@ msgid "Replication" msgstr "إستنساخ" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "متغيرات" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "محركات" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "القوابس" @@ -9816,11 +9825,11 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9838,7 +9847,7 @@ msgstr "" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9868,8 +9877,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10270,7 +10279,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "إسقاط" @@ -10514,18 +10523,18 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10537,7 +10546,7 @@ msgstr "إرجاع أو استيراد بيانات الجدول" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10546,11 +10555,11 @@ msgstr "خالي" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10567,9 +10576,9 @@ msgid "Default" msgstr "إفتراضي" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10578,8 +10587,8 @@ msgid "Links to" msgstr "مرتبط بـ" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10595,8 +10604,8 @@ msgid "Name" msgstr "الاسم" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10607,23 +10616,23 @@ msgid "Definition" msgstr "الوصف" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10752,13 +10761,13 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #, fuzzy #| msgid "Data" msgid "Data:" msgstr "بيانات" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 #, fuzzy #| msgid "Structure" msgid "Structure:" @@ -10795,19 +10804,19 @@ msgstr "استورد الملفات" msgid "Dumping data" msgstr "إرجاع أو استيراد بيانات الجدول" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "نتائج الاستعلام" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "بناء" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -10883,7 +10892,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -10952,7 +10961,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11039,20 +11048,20 @@ msgstr "" msgid "RELATIONSHIPS FOR TABLE" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Allows reading data." msgid "Error reading data for table %s:" @@ -11370,7 +11379,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" @@ -11587,14 +11596,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11626,6 +11635,16 @@ msgstr "تغيير كلمة السر" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12395,7 +12414,7 @@ msgstr "%s معطل في خادم MySQL هذا." msgid "This MySQL server does not support the %s storage engine." msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا \"PRIMARY\"!" @@ -12408,48 +12427,48 @@ msgstr "" msgid "Unknown table status:" msgstr "حالة الجدول غير معروفة:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات المصدر `%s`!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات الهدف `%s`!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "قاعدة بيانات غير صالحة:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "اسم الجدول غير صالح :" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "فشل في إعادة تسمية الجدول %1$s إلى %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "تمّت تسمية الجدول %1$s إلى %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "لا يمكن حفظ تفضيلات جدول UI" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12457,15 +12476,15 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12627,129 +12646,129 @@ msgstr "انشئ إصدار %s لـ %s.s%s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "تاريخ ما، إن النطاق المسموح به هو من %1$s إلى %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "تركيبة تاريخ و زمان، النطاق المسموح به هو من %1$s إلى %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "زمن ما، النطاق يكون من %1$s إلى %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12757,7 +12776,7 @@ msgstr "" "عمود تكست يبلغ طوله الأقصى 16،777،215 حرفا (2 ^ 24 - 1)، ويتم تخزينه مع " "بادئة ثلاثة بايتات تشير إلى طول القيمة بالبايت" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12766,107 +12785,111 @@ msgstr "" "عمود تكست يبلغ الحد الأقصى لطوله 4،294،967،295 أو 4 غيغابايت (2 ^ 32 - 1)، " "ويتم تخزينه مع بادئة أربعة بايتات تشير إلى طول القيمة بالبايت" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "قيمة واحدة مختارة من مجموعة لحد 64 أعضاء" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "نقطة في فضاء ذات أبعاد ثنائية" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "منحنى مع الاستيفاء الخطي بين النقاط" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "مضلع" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "مجموعة من النقاط" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "مجموعة من المضلعات" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "مجموعة كائنات الهندسة من أي نوع" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "رقمية" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "التاريخ والوقت" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -12899,85 +12922,85 @@ msgstr "" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "تم تعطيل phpMyAdmin لتهيئة التخزين . لمعرفة السبب اضغط %sهنا%s." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "كبير: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "يناير" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "فبراير" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "مارس" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "يونيو" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "يوليو" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "ديسمبر" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -12985,55 +13008,55 @@ msgid "Sun" msgstr "الأحد" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "السبت" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "مساء" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "صباحا" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "المستخدمون" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "ترتيب" @@ -13208,7 +13231,7 @@ msgstr "كلاهما" msgid "neither of the above" msgstr "لاشيء منهم" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13247,7 +13270,7 @@ msgstr "لا شيء" msgid "As defined:" msgstr "كما هو معرف:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -13255,43 +13278,43 @@ msgid "" "to the documentation for more details" msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "فريد" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "النص كاملا" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "الضغط" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" @@ -13449,7 +13472,7 @@ msgstr "محركات" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13538,7 +13561,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13874,7 +13897,7 @@ msgid "Search this table" msgstr "ابحث في هذا الجدول" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "إضافة عمود" @@ -13903,7 +13926,7 @@ msgstr "اضغط للترتيب." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13937,24 +13960,24 @@ msgstr "ملاحظة قاعدة البيانات" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "طباعة" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "محزم" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "الأصلية (عدد العناصر في المجموعة)" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "لم يتم تعريف الفهرس!" @@ -14895,6 +14918,11 @@ msgstr[5] "%s جدول" msgid "Sum" msgstr "المجموع" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "استمر" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy #| msgid "Fri" @@ -15000,16 +15028,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "أعمدة مربع النص لـ CHAR" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "استمر" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "هل أنت متأكد؟" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15158,7 +15181,7 @@ msgstr "الجداول الغير متتبعة" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "تتبع الجدول" @@ -15936,19 +15959,19 @@ msgid "Other options" msgstr "خيارات اخري :" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename table to" msgid "Rename" msgstr "تغيير اسم جدول إلى" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "لقد تم إسقاط المفتاح الأساسي." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "تم حذف إسقاط %s." @@ -16265,6 +16288,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16272,6 +16306,7 @@ msgid "View:" msgstr "عرض :" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16464,8 +16499,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "" @@ -16486,7 +16521,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Change password" msgid "Disable two-factor authentication" @@ -16505,6 +16540,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16518,6 +16554,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -16527,7 +16568,7 @@ msgid "" "storage to use it." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18933,7 +18974,7 @@ msgid "Start row:" msgstr "صف البداية" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "الأقسام" @@ -19037,7 +19078,7 @@ msgstr "أعمدة مربع النص لـ CHAR" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Add columns" msgid "Move columns" @@ -19047,38 +19088,38 @@ msgstr "إضافة أعمدة" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "عرض نسخة للطباعة" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "تتبع الجدول" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "في بداية الجدول" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "إنشاء فهرس على %s عمود (أعمدة)" diff --git a/po/ar_LY.po b/po/ar_LY.po index ef833d6ea0..81600a5866 100644 --- a/po/ar_LY.po +++ b/po/ar_LY.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Arabic (Libya) \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian \n" "Language-Team: Belarusian (latin) \n" "Language-Team: Berber \n" "Language-Team: Bulgarian %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9817,8 +9826,8 @@ msgstr "Прелистване" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9830,7 +9839,7 @@ msgstr "Търсене" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9840,8 +9849,8 @@ msgid "Insert" msgstr "Вмъкване" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9850,14 +9859,14 @@ msgid "Privileges" msgstr "Права" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Операции" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Проследяване" @@ -9865,12 +9874,12 @@ msgstr "Проследяване" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Тригери" @@ -9880,11 +9889,11 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Заявка по пример" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Процедури" @@ -9894,15 +9903,15 @@ msgstr "Процедури" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Събития" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Строител" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Централни колони" @@ -9912,12 +9921,12 @@ msgid "User accounts" msgstr "Потребители" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9925,21 +9934,21 @@ msgid "Replication" msgstr "Репликация" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Променливи" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Знакови набори" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Хранилища" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Добавки" @@ -10040,11 +10049,11 @@ msgstr "Нов" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10062,7 +10071,7 @@ msgstr "Нов" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10098,8 +10107,8 @@ msgstr "Нов" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10510,7 +10519,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Изтриване" @@ -10744,18 +10753,18 @@ msgstr "Опции при експортиране на данните" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Схема на данните от таблица" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10767,7 +10776,7 @@ msgstr "Схема на данните от таблица" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10776,11 +10785,11 @@ msgstr "Празно" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10797,9 +10806,9 @@ msgid "Default" msgstr "По подразбиране" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10808,8 +10817,8 @@ msgid "Links to" msgstr "Свързана към" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10825,8 +10834,8 @@ msgid "Name" msgstr "Име" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10835,23 +10844,23 @@ msgid "Definition" msgstr "Описание" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10956,11 +10965,11 @@ msgid "Database:" msgstr "База данни:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Данни:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Структура:" @@ -10989,19 +10998,19 @@ msgstr "Заглавие на доклада:" msgid "Dumping data" msgstr "Схема на данните от таблица" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Резултати от заявката" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "структура" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11076,7 +11085,7 @@ msgid "Data creation options" msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -11161,7 +11170,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11247,20 +11256,20 @@ msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" msgid "RELATIONSHIPS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Грешка при четене на данните за таблица %s:" @@ -11562,7 +11571,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" @@ -11793,14 +11802,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11832,6 +11841,16 @@ msgstr "Смяна на паролата" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12620,7 +12639,7 @@ msgstr "%s е забранено за този MySQL сървър." msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на първичния ключ трябва да е \"PRIMARY\"!" @@ -12633,39 +12652,39 @@ msgstr "Проблем с индексите на таблица `%s`" msgid "Unknown table status:" msgstr "Неизвестно състояние на таблица:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "БД-източник `%s` не е намерена!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Целевата БД `%s` не е намерена!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Невалидна БД:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Невалидно име на таблица:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Грешка при преименуване на таблица %1$s в %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s беше преименувана на %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Таблицата с визуалните настройки не може да бъде запазена!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12674,7 +12693,7 @@ msgstr "" "Неуспех при почистването на предпочитанията за потребителския интерфейс на " "таблицата (вижте $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12685,15 +12704,15 @@ msgstr "" "Извършените промени няма да бъдат устойчиви, след като опресните тази " "страница. Моля, проверете дали структурата на таблицата е променена." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Индексът не може да бъде преименуван на PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12851,14 +12870,14 @@ msgstr "Създаване на версия %1$s от %2$s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-байт цяло число, подписано обхват е -128 до 127, неподписан обхват е от 0 " "до 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12866,7 +12885,7 @@ msgstr "" "2-байт цяло число, подписано обхват е -32,768 до 32,767, неподписан обхват " "от 0 до 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12874,7 +12893,7 @@ msgstr "" "3-байт цяло число, подписано обхват е -8,388,608 до 8,388,607, неподписан " "обхват е от 0 до 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12882,155 +12901,155 @@ msgstr "" "Едно цяло число от 4 байта, подписано в обхвата, е -2,147,483,648 до " "2,147,483,647, неподписан обхват е от 0 до 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Дата, поддържан диапазон е %1$s до %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Комбинация от дата и час, поддържаният диапазон е %1$s до %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Време, диапазонът е %1$s до %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13038,65 +13057,71 @@ msgstr "" "Изброяване, избор от списък с до 65535 стойности или специалната стойност за " "грешка ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Единична стойност, избрана от списък с до 64 възможни" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Тип, който може да съхранява геометрия от всякакъв вид" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Точка в 2-мерното пространство" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Крива с линейна интерполация между точки" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Многоъгълник" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Набор от точки" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Колекция от криви с линейна интерполация между точки" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Набор от многоъгълници" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Набор от геометрични обекти от всякакъв вид" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Съхранява универсално уникален идентификатор (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Цифров" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Дата и час" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Пространствен" @@ -13127,85 +13152,85 @@ msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "" "%sСъздаване%s на phpMyAdmin конфигурационно хранилище в текущата база данни." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "яну" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "фев" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "март" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "юни" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "юли" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "авг" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "септ" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "окт" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "ное" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "дек" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13213,55 +13238,55 @@ msgid "Sun" msgstr "нд" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "пн" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "вт" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "ср" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "чт" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "пт" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "сб" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Потребители" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Сортиране" @@ -13434,7 +13459,7 @@ msgstr "и двете по-горе" msgid "neither of the above" msgstr "никое от горните" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13469,7 +13494,7 @@ msgstr "Няма" msgid "As defined:" msgstr "Дефиниран като:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13477,43 +13502,43 @@ msgstr "" "Нямате достатъчно права за извършване на тази операция; Моля, вижте " "документацията за повече подробности" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Уникално" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Пълнотекстово" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Пространствен" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "Компресия" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "след %s" @@ -13663,7 +13688,7 @@ msgstr "Хранилища" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13744,7 +13769,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14028,7 +14053,7 @@ msgid "Search this table" msgstr "Търсене в таблицата" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Добавяне колона" @@ -14057,7 +14082,7 @@ msgstr "Кликнете за сортиране." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14089,24 +14114,24 @@ msgstr "Коментар към БД:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Печат" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Опаковани" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Кардиналност" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Не е избран индекс!" @@ -14989,6 +15014,11 @@ msgstr[1] "%s таблици" msgid "Sum" msgstr "Сума" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Продължете" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "От" @@ -15092,16 +15122,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "Колони за CHAR текство поле" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Продължете" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Сигурни ли сте?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15245,7 +15270,7 @@ msgstr "Непроследявани таблици" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Следене на таблица" @@ -16004,19 +16029,19 @@ msgid "Other options" msgstr "Други опции:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Преименуване на" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Главният ключ беше изтрит." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s беше изтрит." @@ -16329,6 +16354,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views" @@ -16336,6 +16372,7 @@ msgid "View:" msgstr "Изглед" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16529,8 +16566,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Може да изчистите настройките си до стойностите им по подразбиране." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16555,7 +16592,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16574,6 +16611,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16587,6 +16625,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -16594,7 +16637,7 @@ msgid "" "storage to use it." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19010,7 +19053,7 @@ msgid "Start row:" msgstr "Начален ред:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -19110,7 +19153,7 @@ msgstr "Колони за CHAR текство поле" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Преместване колони" @@ -19118,35 +19161,35 @@ msgstr "Преместване колони" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Изглед за редакция" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Изглед за следене" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Добавяне %s колона(и)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "В началото на таблицата" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -19879,9 +19922,6 @@ msgstr "Име на колона" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Синоним на BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Съхранява универсално уникален идентификатор (UUID)" - #~ msgid "An enumeration, chosen from the list of defined values" #~ msgstr "Изброяване, избор от списък на определените стойности" diff --git a/po/bn.po b/po/bn.po index ea05a80330..23ce649eca 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Bengali \n" "Language-Team: Breton \n" "Language-Team: Bodo \n" "Language-Team: Bosnian \n" "Language-Team: Catalan %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10261,8 +10270,8 @@ msgstr "Navega" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10274,7 +10283,7 @@ msgstr "Cerca" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10284,8 +10293,8 @@ msgid "Insert" msgstr "Insereix" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10294,14 +10303,14 @@ msgid "Privileges" msgstr "Privilegis" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operacions" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Seguiment" @@ -10309,12 +10318,12 @@ msgstr "Seguiment" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Disparadors" @@ -10324,11 +10333,11 @@ msgstr "Disparadors" msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Consulta" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutines" @@ -10338,15 +10347,15 @@ msgstr "Rutines" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Esdeveniments" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Dissenyador" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Columnes centrals" @@ -10356,12 +10365,12 @@ msgid "User accounts" msgstr "Comptes d'usuari" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Registre binari" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10369,21 +10378,21 @@ msgid "Replication" msgstr "Replicació" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variables" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motors" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Connectors" @@ -10484,11 +10493,11 @@ msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10506,7 +10515,7 @@ msgstr "Nou" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10534,8 +10543,8 @@ msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10968,7 +10977,7 @@ msgstr "Truncar" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Elimina" @@ -11201,18 +11210,18 @@ msgstr "Opcions del bolcament de dades" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Bolcament de dades per a la taula" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11224,7 +11233,7 @@ msgstr "Bolcament de dades per a la taula" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11233,11 +11242,11 @@ msgstr "Nul" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11254,9 +11263,9 @@ msgid "Default" msgstr "Per defecte" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11265,8 +11274,8 @@ msgid "Links to" msgstr "Enllaços a" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11282,8 +11291,8 @@ msgid "Name" msgstr "Nom" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11292,23 +11301,23 @@ msgid "Definition" msgstr "Definició" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -11415,11 +11424,11 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Dades:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Estructura:" @@ -11446,17 +11455,17 @@ msgstr "Títol de llistat:" msgid "Dumping data" msgstr "Bolcament de dades" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Resultats de consultes" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Mostra l'estructura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Quedar dintre" @@ -11535,7 +11544,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Trunca la taula abans de la inserció" @@ -11618,7 +11627,7 @@ msgstr "Sembla que la vostra base de dades utilitza rutines;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "l'exportació dels àlies podria no funcionar correctament en tots els casos." @@ -11695,20 +11704,20 @@ msgstr "TIPUS MIME PER LA TAULA" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIONS PER A LA TAULA" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Sembla que la vostra base de dades utilitza disparadors;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estructura per a vista %s exportada com a taula" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(mireu a sota per a la visualització real)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Error en llegir les dades per a la taula %s:" @@ -12026,7 +12035,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" @@ -12260,18 +12269,18 @@ msgstr "" "Proporciona autenticació mitjançant les aplicacions HOTP i TOTP com ara " "FreeOTP, Google Authenticator o Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Clau de seguretat per maquinari (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Proporciona autenticació mitjançant els testimonis de seguretat per " "maquinari que admeten FIDO U2F." @@ -12301,6 +12310,24 @@ msgstr "Autenticació senzilla en dos passos" msgid "For testing purposes only!" msgstr "Només per a propòsits de proves!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Clau de seguretat per maquinari (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Proporciona autenticació mitjançant els testimonis de seguretat per " +"maquinari que admeten FIDO U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13065,7 +13092,7 @@ msgstr "%s s'ha desactivat en aquest servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "El nom de la clau primària ha de ser \"PRIMARY\"!" @@ -13078,40 +13105,40 @@ msgstr "Problemes amb els índexs de la taula `%s`" msgid "Unknown table status:" msgstr "Estat de taula desconegut:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "No s'ha trobat la base de dades origen `%s`!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "No s'ha trobat la base de dades destí `%s`!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Base de dades no vàlida:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nom de taula incorrecte:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Error reanomenant la taula %1$s a %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La taula %1$s ha canviat de nom a %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "" "No s'ha pogut desar la taula de les preferències de la interfície d'usuari!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13120,7 +13147,7 @@ msgstr "" "No s'ha pogut netejar la taula de preferències de la interfície d'usuari " "(vegeu $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13131,15 +13158,15 @@ msgstr "" "no seran persistents després que refresqueu aquesta pàgina. Comproveu si " "l'estructura de la taula ha estat canviada." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "No pots canviar el nom d'un índex a PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error en crear la clau forana a %1$s (comproveu els tipus de dades)" @@ -13298,14 +13325,14 @@ msgstr "Versió %1$s de %2$s esborrada." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %1$s, activat el seguiment per %2$s." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "L'interval d'un enter d'1 byte, amb signe és de -128 fins a 127, sense signe " "és de 0 fins a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13313,7 +13340,7 @@ msgstr "" "L'interval d'un enter de 2 bytes, amb signe és de -32.768 fins a 32.767, " "sense signe és de 0 fins a 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13321,7 +13348,7 @@ msgstr "" "L'interval d'un enter de 3 bytes, amb signe és de -8.388.608 fins a " "8.388.607, sense signe és de 0 fins a 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13329,7 +13356,7 @@ msgstr "" "L'interval d'un enter de 4 bytes, amb signe és de -2.147.483.648 fins a " "2.147.483.647, sense signe és de 0 fins a 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13338,7 +13365,7 @@ msgstr "" "fins a 9.223.372.036.854.775.807, sense signe és de 0 fins a " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13346,7 +13373,7 @@ msgstr "" "Un nombre decimal fix (M,D) - el nombre màxim de dígits (M) és 65 (per " "defecte 10), el nombre màxim de decimals (D) és 30 (per defecte 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13354,7 +13381,7 @@ msgstr "" "Un nombre de coma flotant petit, els valors permesos són de -3.402823466E+38 " "a -1.175494351E-38, 0, i de 1.175494351E-38 a 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13364,7 +13391,7 @@ msgstr "" "-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de " "2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13372,7 +13399,7 @@ msgstr "" "Sinònim de DOUBLE (excepció: en el mode SQL REAL_AS_FLOAT és un sinònim de " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13380,7 +13407,7 @@ msgstr "" "Una màscara de bits (M), emmagatzemant M bits per valor (per defecte és 1 i " "el màxim és 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13388,21 +13415,21 @@ msgstr "" "Un sinònim de TINYINT(1), un valor de zero es considera fals, qualsevol " "valor diferent de zero es considera cert" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un àlies per BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "L'interval d'una data és de %1$s fins a %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "L'interval d'una combinació de data i hora és de %1$s fins a %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13411,12 +13438,12 @@ msgstr "" "2038-01-09 03:14:07 UTC, s'emmagatzema com el nombre de segons des de " "l'època UNIX (1970.01.01 00:00:00 UTC )" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "L'interval d'una hora és de %1$s fins a %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13425,7 +13452,7 @@ msgstr "" "valors permesos són de 70 (1970) fins a 69 (2069) o de 1901 fins a 2155 i " "0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13433,7 +13460,7 @@ msgstr "" "Una cadena de longitud fixa (0-255, per defecte 1) que sempre s'omple amb " "espais a la dreta fins a la longitud especificada quan es desa" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13442,7 +13469,7 @@ msgstr "" "Una cadena de longitud variable (%s), la longitud efectiva màxima està " "subjecta a la mida màxima d'una fila" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13451,7 +13478,7 @@ msgstr "" "emmagatzemats amb un prefix d'un byte que indica la longitud del valor en " "bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13460,7 +13487,7 @@ msgstr "" "emmagatzemats amb un prefix de 2 bytes que indica la longitud del valor en " "bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13469,7 +13496,7 @@ msgstr "" "emmagatzemats amb un prefix de 3 bytes que indica la longitud del valor en " "bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13479,7 +13506,7 @@ msgstr "" "caràcters, emmagatzemats amb un prefix de 4 bytes que indica la longitud del " "valor en bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13487,7 +13514,7 @@ msgstr "" "Similar al tipus CHAR, però emmagatzema cadenes binàries de bytes en lloc de " "cadenes de caràcters no binaris" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13495,7 +13522,7 @@ msgstr "" "Similar al tipus VARCHAR, però emmagatzema cadenes binàries de bytes en lloc " "de cadenes de caràcters no binaris" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13503,7 +13530,7 @@ msgstr "" "Una columna BLOB amb una longitud màxima de 255 (2^8-1) bytes, emmagatzemats " "amb un prefix d'un byte que indica la longitud del valor" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13511,7 +13538,7 @@ msgstr "" "Una columna BLOB amb una longitud màxima de 16.777.215 (2^24-1) bytes, " "emmagatzemats amb un prefix de 3 bytes que indica la longitud del valor" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13519,7 +13546,7 @@ msgstr "" "Una columna BLOB amb una longitud màxima de 65.535 (2^16-1) bytes, " "emmagatzemats amb un prefix de 2 bytes que indica la longitud del valor" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13528,7 +13555,7 @@ msgstr "" "bytes, emmagatzemats amb un prefix de 4 bytes que indica la longitud del " "valor" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13536,43 +13563,43 @@ msgstr "" "Una enumeració, triada d'una llista de fins a 65.535 valors o el valor " "especial d'error ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Un únic valor triat d'un conjunt de fins a 64 membres" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un tipus que pot emmagatzemar una geometria de qualsevol tipus" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un punt en un espai de 2 dimensions" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Una corba amb interpolació lineal entre punts" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un polígon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Una col·lecció de punts" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Una col·lecció de corbes amb interpolació lineal entre punts" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Una col·lecció de polígons" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Una col·lecció d'objectes geomètrics de qualsevol tipus" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13580,23 +13607,29 @@ msgstr "" "Emmagatzema i permet un accés eficient a les dades de documents JSON " "(notació d'objecte de JavaScript)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Emmagatzema identificadors únics universals (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numèric" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data i hora" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -13626,85 +13659,85 @@ msgstr "" "%sCrea%s l'emmagatzematge de la configuració de phpMyAdmin a la base de " "dades actual." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Màx.: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "gen." #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "febr." #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "març" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "abr." #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "maig" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "juny" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "jul." #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "ag." #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "set." #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "oct." #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov." #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "des." #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13712,55 +13745,55 @@ msgid "Sun" msgstr "dg." #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "dl." #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "dt." #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "dc." #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "dj." #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "dv." #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "ds." -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Usuaris" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordena" @@ -13933,7 +13966,7 @@ msgstr "ambdós anteriors" msgid "neither of the above" msgstr "cap dels anteriors" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Ja existeix la configuració i s'ha inhabilitat la preparació!" @@ -13968,7 +14001,7 @@ msgstr "Cap" msgid "As defined:" msgstr "Com definit:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13976,41 +14009,41 @@ msgstr "" "No teniu prou privilegis per realitzar aquesta operació; si us plau, " "consulteu la documentació per a més detalls" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Única" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Text complet" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Espacial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expressió" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primer" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "després de %s" @@ -14144,7 +14177,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14221,7 +14254,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14497,7 +14530,7 @@ msgid "Search this table" msgstr "Cerca aquesta taula" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Afegeix columna(es)" @@ -14526,7 +14559,7 @@ msgstr "Feu clic per ordenar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14560,24 +14593,24 @@ msgstr "Comentaris de la base de dades" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimeix" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Empaquetat" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalitat" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "No s'ha definit l'índex!" @@ -15408,6 +15441,11 @@ msgstr[1] "%s taules" msgid "Sum" msgstr "Suma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continua" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "De" @@ -15499,16 +15537,11 @@ msgstr "Eliminar columnes de la llista central" msgid "Make consistent with central list" msgstr "Fer consistent amb la llista central" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continua" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Esteu segur?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15650,7 +15683,7 @@ msgstr "Taules no seguides" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Segueix taula" @@ -16417,19 +16450,19 @@ msgid "Other options" msgstr "Altres opcions:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Reanomena a" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "S'ha esborrat la clau primària." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "S'ha esborrat l'índex %s." @@ -16756,6 +16789,29 @@ msgstr "" msgid "Verify" msgstr "Verifica" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Connecteu el vostre dispositiu FIDO U2F al port USB de l'ordinador. A " +"continuació, confirmeu la inscripció al dispositiu." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Connecteu el vostre dispositiu FIDO U2F al port USB de l'ordinador. A " +"continuació, confirmeu la identificació al dispositiu." + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16763,6 +16819,7 @@ msgid "View:" msgstr "Vistes:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16944,8 +17001,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Podeu restablir tots els vostres paràmetres als valors predeterminats." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configura l'autenticació en dos passos" @@ -16966,7 +17023,7 @@ msgstr "" "vos només amb la contrasenya." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Inhabilita l'autenticació en dos passos" @@ -16983,6 +17040,7 @@ msgstr "" "opcionals per habilitar els dorsals d'autenticació." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Falten els paquets següents de composer:" @@ -17000,6 +17058,17 @@ msgstr "" "aquest compte." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"No està disponible l'autenticació en dos passos, instal·leu les dependències " +"opcionals per habilitar els dorsals d'autenticació." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -17007,7 +17076,7 @@ msgstr "" "No està disponible l'autenticació en dos passos, habiliteu l'emmagatzematge " "de la configuració de phpMyAdmin per utilitzar-la." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Heu habilitat l'autenticació de dos factors." @@ -19385,7 +19454,7 @@ msgid "Start row:" msgstr "Fila inicial:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Particions" @@ -19469,7 +19538,7 @@ msgstr "Afegeix a les columnes centrals" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mou les columnes" @@ -19477,33 +19546,33 @@ msgstr "Mou les columnes" msgid "Move the columns by dragging them up and down." msgstr "Moveu les columnes arrossegant-les amunt i avall." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Edita la vista" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalitza" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Vista de seguiment" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Afegeix %s columna(es)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "al començament de la taula" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20362,9 +20431,6 @@ msgstr "Nom de les columnes" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un sinònim de BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Emmagatzema identificadors únics universals (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ckb.po b/po/ckb.po index 6f44726ce2..bf5a07b97d 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Kurdish (Central) \n" -"Language-Team: Czech " -"\n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1365,7 +1365,7 @@ msgstr "Vyhledat:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1377,8 +1377,8 @@ msgstr "Vyhledat:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Proveď" @@ -1386,7 +1386,7 @@ msgstr "Proveď" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Název klíče" @@ -3288,9 +3288,9 @@ msgstr "Použít titulek tabulky" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3319,8 +3319,8 @@ msgstr "Návěstí" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3473,7 +3473,7 @@ msgstr "První den kalendáře" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3590,8 +3590,8 @@ msgstr "Sledování změn" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3616,7 +3616,7 @@ msgid "Database structure" msgstr "Struktura databáze" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Struktura tabulky" @@ -4242,9 +4242,9 @@ msgstr "Přeskočit zamčené tabulky" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4262,17 +4262,17 @@ msgstr "Přeskočit zamčené tabulky" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Upravit" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Vysvětlit SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4280,7 +4280,7 @@ msgid "Refresh" msgstr "Obnovit" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Vytvořit PHP kód" @@ -4546,14 +4546,14 @@ msgstr "Vlastní" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4597,8 +4597,8 @@ msgstr "Text OpenDocument" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4641,8 +4641,8 @@ msgstr "CSV pomocí LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4660,22 +4660,22 @@ msgstr "" "Nepodařilo se uložit nastavení, odeslaný konfigurační formulář obsahuje " "chyby!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný " "pro všechny!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Nepodařilo se načíst konfigurační soubor!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4683,12 +4683,12 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Server %d" @@ -4994,7 +4994,7 @@ msgstr "" "Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5088,7 +5088,7 @@ msgid "Table %s has been emptied." msgstr "Tabulka %s byla vyprázdněna." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5109,9 +5109,9 @@ msgstr "neznámý" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5133,7 +5133,7 @@ msgstr "neznámý" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5147,7 +5147,7 @@ msgstr "Ano" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Žádná změna" @@ -5202,7 +5202,7 @@ msgid "You may want to refresh the page." msgstr "Možná budete potřebovat obnovit tuto stránku." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Chybný typ!" @@ -5334,15 +5334,15 @@ msgstr "" "Rozšíření curl nebylo nalezeno a allow_url_fopen je vypnuto. Kvůli tomuto " "jsou některé funkce, jako hlášení chyb a kontrola verze, vypnuty." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Chybí parametry" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Úspěch" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Chyba" @@ -5357,16 +5357,16 @@ msgstr "" "prosím %sdokumentaci%s, jak toto omezení obejít." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5376,7 +5376,7 @@ msgstr "" "nebo jeho velikost překročila maximální velikost povolenou v nastavení PHP. " "Viz [doc@faq1-16]FAQ 1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -5384,7 +5384,7 @@ msgstr[0] "Import byl úspěšně dokončen, byl proveden %d dotaz." msgstr[1] "Import byl úspěšně dokončen, byly provedeny %d dotazy." msgstr[2] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5393,7 +5393,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím %sodešlete formulář%s znovu se stejným " "souborem a import bude pokračovat." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5402,7 +5402,7 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -5652,11 +5652,12 @@ msgstr "Vyberte sloupce, které chcete přidat do indexu." #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "Náhled SQL" @@ -5670,7 +5671,7 @@ msgid "Matched rows:" msgstr "Odpovídající záznamy:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL dotaz:" @@ -5744,7 +5745,8 @@ msgstr "Odstraňuji vybrané uživatele" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5798,13 +5800,13 @@ msgstr "Ostatní" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr " " #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "," @@ -5912,45 +5914,45 @@ msgstr "Procesy" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EiB" @@ -5970,7 +5972,7 @@ msgid "Traffic" msgstr "Provoz" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Nastavení" @@ -5986,11 +5988,11 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6202,7 +6204,7 @@ msgstr "Vysvětlení dotazu" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6212,8 +6214,8 @@ msgstr "Stav" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6367,10 +6369,10 @@ msgstr "Nebyly nalezeny parametry!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6394,6 +6396,7 @@ msgstr "Použít" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Nahrávám…" @@ -6453,7 +6456,7 @@ msgstr "Přidávám primární klíč" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "OK" @@ -6477,9 +6480,9 @@ msgstr "Měním znakovou sadu" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6501,7 +6504,7 @@ msgstr "Měním znakovou sadu" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6586,7 +6589,7 @@ msgid "Show query box" msgstr "Zobrazit pole pro dotaz" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6718,7 +6721,7 @@ msgid "No partial dependencies selected!" msgstr "Nebyly vybrány žádné částečné závislosti!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6849,13 +6852,13 @@ msgstr "Obsah datového bodu" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Ignorovat" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7418,7 +7421,13 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Neplatný bezpečnostní klíč." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " @@ -7427,20 +7436,20 @@ msgstr "" "Nemůžete otevřit, uložit nebo smazat rozvržení stránky, protože ve vašem " "prohlížeči nefunguje IndexedDB a úložiště phpMyAdmina pro to není nastavené." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Skrýt" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7463,20 +7472,20 @@ msgid "No such column" msgstr "Žádný ze sloupců" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "Řetězce" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "Fragment konfigurace phpMyAdmina" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Tuto hodnotu vložte do souboru config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Nepodařilo se nahrát konfiguraci" @@ -7501,7 +7510,7 @@ msgstr "Řádků" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Indexy" @@ -8262,7 +8271,7 @@ msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Chybějící parametr:" @@ -8364,7 +8373,7 @@ msgstr "Tabulka %s již existuje!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "Váš SQL-dotaz byl úspěšně vykonán." @@ -8430,10 +8439,10 @@ msgstr "Pohled" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Chyba" @@ -8456,7 +8465,7 @@ msgid "Failed to get description of column %s!" msgstr "Chyba při čtení popisu sloupce %s!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8467,7 +8476,7 @@ msgstr "Primární" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8477,7 +8486,7 @@ msgstr "Primární" msgid "Index" msgstr "Index" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "Vybrané sloupce byly úspěšně přesunuty." @@ -8526,7 +8535,7 @@ msgstr "Nemáte dostatečná práva na provedení této akce!" msgid "View name can not be empty!" msgstr "Název pohledu nemůže být prázdný!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." @@ -8650,7 +8659,7 @@ msgstr "Následující dotaz selhal: „%s“" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL hlásí: " @@ -8740,7 +8749,7 @@ msgstr "" "Chyba při zpracování požadavku: V databázi %2$s nebyla nalezena žádná " "událost s názvem %1$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8751,20 +8760,20 @@ msgstr "" "nastavení konfigurace [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin aktuálně používá výchozí časové pásmo databázového serveru." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Nepodařilo se nastavit nakonfigurované kódování pro připojení!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Chybí parametry připojení!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Více informací naleznete %sv naší dokumentaci%s." @@ -8787,23 +8796,23 @@ msgstr "Přidat" msgid "Del" msgstr "Smazat" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Uložená vyhledávání:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Nová záložka" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Uložit vyhledávání" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Upravit uložené vyhledávání" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Odstranit uložené vyhledávání" @@ -9056,8 +9065,8 @@ msgid "Full texts" msgstr "Celé texty" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9070,8 +9079,8 @@ msgid "Descending" msgstr "Sestupně" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9083,41 +9092,41 @@ msgstr "Sestupně" msgid "Ascending" msgstr "Vzestupně" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "Řádek byl smazán." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "Ukončit" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Zobrazeny záznamy %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d celkem, %2$d v dotazu" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "%d celkem" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Dotaz trval %01.4f sekund." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Odkaz nebyl nalezen!" @@ -9451,7 +9460,7 @@ msgstr "" "soubory vymazány. Jinak jsou soubory přejmenovány a označeny vyšším číslem." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9481,13 +9490,13 @@ msgstr "Nahlásit" msgid "Automatically send report next time" msgstr "Příště odeslat hlášení automaticky" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9495,18 +9504,18 @@ msgstr "" "Soubor %s již na serveru existuje, změňte název souboru nebo zvolte přepsání " "souboru." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "Tento způsob exportu neumožňuje exportovat surové dotazy." @@ -9581,74 +9590,74 @@ msgstr "" msgid "Session not found." msgstr "Relace nebyla nalezena." -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "Přejít na databázi „%s“." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "SSL se nepoužívá" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "SSL se používá se zakázaným ověřením" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "SSL se používá bez certifikační autority" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "SSL se používá" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "PHP funkce password_hash() s výchozími volbami." -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "PHP funkce password_hash()" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "Analyzovat výstup příkazu EXPLAIN na %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Provést dotaz" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Profilování" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upravit zde v řádku" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "Při analýze bylo nalezeno %d chyb." @@ -9758,11 +9767,11 @@ msgstr "Funkce" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9782,7 +9791,7 @@ msgstr "Funkce" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9835,7 +9844,7 @@ msgstr "%1$s (poblíž %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9845,8 +9854,8 @@ msgstr "Projít" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9858,7 +9867,7 @@ msgstr "Vyhledávání" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9868,8 +9877,8 @@ msgid "Insert" msgstr "Vložit" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9878,14 +9887,14 @@ msgid "Privileges" msgstr "Oprávnění" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Úpravy" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Sledování" @@ -9893,12 +9902,12 @@ msgstr "Sledování" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Triggery" @@ -9908,11 +9917,11 @@ msgstr "Triggery" msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Dotaz" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutiny" @@ -9922,15 +9931,15 @@ msgstr "Rutiny" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Události" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Návrhář" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Centrální sloupce" @@ -9940,12 +9949,12 @@ msgid "User accounts" msgstr "Uživatelské účty" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binární log" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9953,21 +9962,21 @@ msgid "Replication" msgstr "Replikace" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Proměnné" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Znakové sady" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Úložiště" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Rozšíření" @@ -10070,11 +10079,11 @@ msgstr "Nové" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10092,7 +10101,7 @@ msgstr "Nové" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10120,8 +10129,8 @@ msgstr "Nová" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10547,7 +10556,7 @@ msgstr "Vyprázdnit" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Odstranit" @@ -10782,18 +10791,18 @@ msgstr "Nastavení výpisu dat" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10805,7 +10814,7 @@ msgstr "Vypisuji data pro tabulku" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10814,11 +10823,11 @@ msgstr "Prázdný" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10835,9 +10844,9 @@ msgid "Default" msgstr "Výchozí" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10846,8 +10855,8 @@ msgid "Links to" msgstr "Odkazuje na" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10863,8 +10872,8 @@ msgid "Name" msgstr "Název" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10873,23 +10882,23 @@ msgid "Definition" msgstr "Definice" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10992,11 +11001,11 @@ msgid "Database:" msgstr "Databáze:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Data:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktura:" @@ -11021,15 +11030,15 @@ msgstr "Název výpisu:" msgid "Dumping data" msgstr "Vypisuji data" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Data výsledku dotazu" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Zobrazit strukturu" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Nahrazení" @@ -11106,7 +11115,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -11189,7 +11198,7 @@ msgstr "Vaše databáze zřejmě využívá rutiny;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "je možné, že export aliasů v některých případech neproběhne správně." @@ -11263,20 +11272,20 @@ msgstr "TYPY MÉDIÍ PRO TABULKU" msgid "RELATIONSHIPS FOR TABLE" msgstr "VZTAHY TABULKY" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Zdá se, že Vaše tabulka používá triggery;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Vlastní pohled viz níže)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Chyba při čtení dat pro tabulku %s:" @@ -11588,7 +11597,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" @@ -11802,14 +11811,18 @@ msgstr "" "Poskytuje ověření pomocí HOTP a TOTP aplikací jako je FreeOTP, Google " "Authenticator nebo Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Hardwarový bezpečnostní klíč (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Poskytuje ověření pomocí hardwarových bezpečnostních tokenů podporujících " "FIDO U2F, například Yubikey." @@ -11839,6 +11852,24 @@ msgstr "Jednoduché dvoustupňové ověřování" msgid "For testing purposes only!" msgstr "Pouze pro testovací účely!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Hardwarový bezpečnostní klíč (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Poskytuje ověření pomocí hardwarových bezpečnostních tokenů podporujících " +"FIDO U2F, například Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12575,7 +12606,7 @@ msgstr "Úložiště %s je na tomto MySQL serveru vypnuté." msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložiště %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Název primárního klíče musí být „PRIMARY“!" @@ -12588,39 +12619,39 @@ msgstr "Problémy s indexy v tabulce „%s\"" msgid "Unknown table status:" msgstr "Neznámý stav tabulky:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáze „%s“ nebyla nalezena!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Cílová databáze „%s“ nebyla nalezena!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Chybný název databáze:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Chybný název tabulky:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Chyba při přejmenování tabulky %1$s na %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabulka %1$s byla přejmenována na %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Nepodařilo se uložit nastavení prohlížení tabulky!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12629,7 +12660,7 @@ msgstr "" "Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12639,15 +12670,15 @@ msgstr "" "Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení " "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Index nelze přejmenovat na „PRIMARY“!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nebyla zadána žádná část indexu!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkontrolujte datové typy)" @@ -12806,13 +12837,13 @@ msgstr "Verze %1$s z %2$s byla odstraněna." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Jednobajtové číslo, se znaménkem v rozsahu -128 až 127, bez znaménka 0 až 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12820,7 +12851,7 @@ msgstr "" "Dvoubajtové číslo, se znaménkem v rozsahu -32768 až 32767, bez znaménka 0 až " "65535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12828,7 +12859,7 @@ msgstr "" "Tříbajtové číslo, se znaménkem v rozsahu -8388608 až 8388607, bez znaménka 0 " "až 16777215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12836,7 +12867,7 @@ msgstr "" "Čtyřbajtové číslo, se znaménkem v rozsahu -2147483648 až 2147483647, bez " "znaménka 0 až 4294967295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12844,7 +12875,7 @@ msgstr "" "Osmibajtové číslo, se znaménkem v rozsahu -9223372036854775808 až " "9223372036854775807, bez znaménka 0 až 18446744073709551615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12852,7 +12883,7 @@ msgstr "" "Číslo s pevnou desetinnou čárkou (M, D) - maximální počet číslic (M) je 65 " "(výchozí 10), maximální počet desetinných míst (D) je 30 (výchozí 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12861,7 +12892,7 @@ msgstr "" "-3.402823466E+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12871,20 +12902,20 @@ msgstr "" "-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " "2.2250738585072014E-308 do 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "Synonymum pro DOUBLE (v případě SQL režimu REAL_AS_FLOAT pro FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "Bitové pole (M), ukládající M bitů v záznam (výchozí je 1, maximum je 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12892,21 +12923,21 @@ msgstr "" "Synonymum pro TINYINT(1), nula je považována ze nepravdu, jakékoliv jiné " "hodnoty za pravdu" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Zkratka pro BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Datum, podporovaný rozsah od %1$s do %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Datum a čas, podporovaný rozsah od %1$s do %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12914,12 +12945,12 @@ msgstr "" "Časová značka v rozsahu od 1970-01-01 00:00:01 UTC do 2038-01-09 03:14:07 " "UTC, ukládaná jako počet sekund od počátku epochy (1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Čas, podporovaný rozsah od %1$s do %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12927,7 +12958,7 @@ msgstr "" "Rok buď ve čtyřciferném (4, výchozí) nebo dvouciferném (2) formátu, povolené " "hodnoty jsou 70 (1970) až 69 (2069) nebo 1901 až 2155 a 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12935,7 +12966,7 @@ msgstr "" "Řetězec s pevnou délkou (0-255, výchozí je 1), který je vždy při ukládání " "zprava doplněn mezerami do požadované délky" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12944,7 +12975,7 @@ msgstr "" "Řetězec s proměnlivou délkou (%s), skutečná maximální velikost může být " "ovlivněna maximální velikostí řádku" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12952,7 +12983,7 @@ msgstr "" "Textový sloupec s maximální délkou 255 (2⁸ - 1) znaků, uložen s " "jednobajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12960,7 +12991,7 @@ msgstr "" "Textový sloupec s maximální délkou 65535 (2¹⁶ - 1) znaků, uložen s " "dvoubajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12968,7 +12999,7 @@ msgstr "" "Textový sloupec s maximální délkou 16777215 (2²⁴ - 1) znaků, uložen s " "tříbajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12977,19 +13008,19 @@ msgstr "" "Textový sloupec s maximální délkou 4294967295 nebo 4GiB (2³² - 1) znaků, " "uložen s čtyřbajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "Podobné jako typ CHAR, jen ukládá binární řetězce" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "Podobné jako typ VARCHAR, jen ukládá binární řetězce" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12997,7 +13028,7 @@ msgstr "" "Datový sloupec s maximální délkou 255 (2⁸ - 1) znaků, uložen s jednobajtovým " "číslem určujícím jeho délku" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13005,7 +13036,7 @@ msgstr "" "Datový sloupec s maximální délkou 16777215 (2²⁴ - 1) znaků, uložen s " "tříbajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13013,7 +13044,7 @@ msgstr "" "Datový sloupec s maximální délkou 65535 (2¹⁶ - 1) znaků, uložen s " "dvoubajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13021,7 +13052,7 @@ msgstr "" "Datový sloupec s maximální délkou 4294967295 nebo 4GiB (2³² - 1) znaků, " "uložen s čtyřbajtovým číslem určujícím jeho délku" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13029,43 +13060,43 @@ msgstr "" "Výčtový typ, umožňující výběr až z 65535 hodnot nebo speciální chybovou " "hodnotou ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Jedna hodnota vybraná z množiny až 64 možností" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Geometrický útvar libovolného typu" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Bod v dvourozměrném prostoru" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Křivka s lineární interpolací mezi body" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Mnohoúhelník" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Množina bodů" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Množina křivek s lineární interpolací mezi body" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Množina mnohoúhelníků" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Množina libovolných geometrických útvarů" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13073,7 +13104,7 @@ msgstr "" "Ukládá data a umožňuje efektivní přístup k nim v dokumentech JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13081,17 +13112,23 @@ msgstr "" "Určeno pro ukládání adres IPv6 i adres IPv4 za předpokladu konvenčního " "mapování adres IPv4 na adresy IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Univerzální Unikátní Identifikátor (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Čísla" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Datum a čas" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Prostorové" @@ -13116,139 +13153,139 @@ msgstr "Nepodařilo se uložit nastavení" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "Nelze přistoupit k databázi nastavení phpMyAdmina." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "led" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "úno" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "bře" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "čen" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "čec" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "srp" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "zář" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "říj" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "lis" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "pro" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Ned" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Pon" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Úte" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Stř" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Pát" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sob" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "odp." -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "dop." -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Uživatelé" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Řadit" @@ -13421,7 +13458,7 @@ msgstr "oba výše uvedené" msgid "neither of the above" msgstr "ani jeden z výše uvedených" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfigurace již existuje, nastavení je zakázáno!" @@ -13456,7 +13493,7 @@ msgstr "Žádná" msgid "As defined:" msgstr "Dle zadání:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13464,41 +13501,41 @@ msgstr "" "Nemáte dostatečná práva k provedení této akce; Prohlédněte si dokumentaci " "pro více detailů" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unikátní" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Fulltext" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Prostorový" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Výraz" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "první" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "po %s" @@ -13628,7 +13665,7 @@ msgstr "Úložiště" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13699,7 +13736,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13968,7 +14005,7 @@ msgid "Search this table" msgstr "Vyhledávání v této tabulce" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Přidat sloupec" @@ -13997,7 +14034,7 @@ msgstr "Klikněte pro seřazení." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14027,24 +14064,24 @@ msgstr "Komentář k databázi:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Vytisknout" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Zabaleno" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Mohutnost" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Není definován žádný index!" @@ -14849,6 +14886,11 @@ msgstr[2] "%s tabulek" msgid "Sum" msgstr "Celkem" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Pokračovat" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Z" @@ -14940,16 +14982,11 @@ msgstr "Odstranit sloupce z centrálního seznamu" msgid "Make consistent with central list" msgstr "Uvést do souladu s centrálním seznamem" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Pokračovat" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Jste si jistý?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15088,7 +15125,7 @@ msgstr "Nesledované tabulky" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Sledovat tabulku" @@ -15803,17 +15840,17 @@ msgid "Other options" msgstr "Další možnosti" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Přejmenovat" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Primární klíč byl odstraněn." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Index %s byl odstraněn." @@ -16133,11 +16170,35 @@ msgstr "" msgid "Verify" msgstr "Ověřit" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Připojte zařízení FIDO U2F k USB portu počítače. Poté na zařízení potvrďte " +"registraci." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Připojte zařízení FIDO U2F k portu USB počítače. Poté v zařízení potvrďte " +"přihlášení." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Pohled:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Jít zpět" @@ -16308,8 +16369,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Můžete vymazat vaše nastavení a vrátit se k výchozím hodnotám." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Nastavit dvoustupňové ověřování" @@ -16330,7 +16391,7 @@ msgstr "" "pomocí hesla." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Zakázat dvoustupňové ověřování" @@ -16347,6 +16408,7 @@ msgstr "" "nainstalujte prosím volitelné závislosti." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Chybí následující balíčky composeru:" @@ -16360,6 +16422,17 @@ msgid "" msgstr "Pro tento účet je dostupné dvoustupňové ověřování, ale není nastavené." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Dvoustupňové ověřování není k dispozici. Abyste ho mohli povolit, " +"nainstalujte prosím volitelné závislosti." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16367,7 +16440,7 @@ msgstr "" "Dvoustupňové ověřování není k dispozici. Pokud ho chcete používat, povolte " "úložiště konfigurace phpMyAdmin." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Povolili jste dvoustupňové ověřování." @@ -18501,7 +18574,7 @@ msgid "Start row:" msgstr "Počáteční řádek:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Oddíly" @@ -18583,7 +18656,7 @@ msgstr "Přidat do centrálních sloupců" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Přesunout sloupce" @@ -18591,33 +18664,33 @@ msgstr "Přesunout sloupce" msgid "Move the columns by dragging them up and down." msgstr "Přesuňte sloupce tažením nahoru nebo dolů." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Upravit pohled" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizovat" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Sledovat pohled" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s sloupců" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "na začátku tabulky" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Vytvořit index na %s sloupcích" @@ -19395,9 +19468,6 @@ msgstr "Názvy sloupců" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Zkratka pro BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Univerzální Unikátní Identifikátor (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/cy.po b/po/cy.po index 7985a98043..a1c5ff9e13 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Welsh \n" "Language-Team: Danish %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10062,8 +10071,8 @@ msgstr "Vis" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10075,7 +10084,7 @@ msgstr "Søg" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10085,8 +10094,8 @@ msgid "Insert" msgstr "Indsæt" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10095,14 +10104,14 @@ msgid "Privileges" msgstr "Privilegier" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operationer" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Sporing" @@ -10110,12 +10119,12 @@ msgstr "Sporing" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Triggers/udløsere" @@ -10125,11 +10134,11 @@ msgstr "Triggers/udløsere" msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Foresp. via eks" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutiner" @@ -10139,15 +10148,15 @@ msgstr "Rutiner" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Hændelser" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Centerkolonner" @@ -10157,12 +10166,12 @@ msgid "User accounts" msgstr "Brugerkonti" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binær log" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10170,21 +10179,21 @@ msgid "Replication" msgstr "Replikation" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variable" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Lagring" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Udvidelsesmoduler" @@ -10285,11 +10294,11 @@ msgstr "Ny" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10307,7 +10316,7 @@ msgstr "Ny" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10335,8 +10344,8 @@ msgstr "Ny" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10766,7 +10775,7 @@ msgstr "Afkort" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Slet" @@ -10996,18 +11005,18 @@ msgstr "Database eksportindstillinger" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Data dump for tabellen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11019,7 +11028,7 @@ msgstr "Data dump for tabellen" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11028,11 +11037,11 @@ msgstr "Nulværdi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11049,9 +11058,9 @@ msgid "Default" msgstr "Standardværdi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11060,8 +11069,8 @@ msgid "Links to" msgstr "Linker til" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11077,8 +11086,8 @@ msgid "Name" msgstr "Navn" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11087,23 +11096,23 @@ msgid "Definition" msgstr "Definition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -11208,11 +11217,11 @@ msgid "Database:" msgstr "Database:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Data:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktur:" @@ -11239,17 +11248,17 @@ msgstr "Rapporttitel:" msgid "Dumping data" msgstr "Data dump" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Forespørgselsresultater" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Vis struktur" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Stand-in" @@ -11326,7 +11335,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -11409,7 +11418,7 @@ msgstr "Det ser ud til at din database bruger funktioner;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -11486,20 +11495,20 @@ msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONER FOR TABEL" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur for visningen %s blev eksporteret som en tabel" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Se nedenfor for det aktuelle view)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Fejl ved læsning af data i tabel %s:" @@ -11813,7 +11822,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" @@ -12041,14 +12050,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Hardware sikkerhedsnøgle (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12078,6 +12087,18 @@ msgstr "Simpel to-faktor autentificering" msgid "For testing purposes only!" msgstr "Kun til testformål!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Hardware sikkerhedsnøgle (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12839,7 +12860,7 @@ msgstr "%s er slået fra på denne MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL-server understøtter ikke %s datalager." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet på primærnøglen skal være \"PRIMARY\"!" @@ -12852,39 +12873,39 @@ msgstr "Problemer med indeksene på tabel `%s`" msgid "Unknown table status:" msgstr "Ukendt tabel status:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen '%s' blev ikke fundet!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Mål-databasen '%s' blev ikke fundet!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Ugyldig database:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Ugyldigt tabelnavn:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fejl ved omdøbning af tabel %1$s til %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s er nu omdøbt til %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Kunne ikke gemme indstillinger af brugergrænseflade for tabel!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12893,7 +12914,7 @@ msgstr "" "Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12904,15 +12925,15 @@ msgstr "" "efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet " "ændret." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke omdøbe indeks til PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fejl ved dannelse af fremmednøgle på %1$s (tjek datatyper)" @@ -13070,14 +13091,14 @@ msgstr "Version %1$s af %2$s blev slettet." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Et heltal på 1 byte, signeret interval er -128 til 127, usigneret interval " "er 0 til 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13085,7 +13106,7 @@ msgstr "" "Et heltal på 2 byte, signeret interval er -32.768 til 32.767, usigneret " "interval er 0 til 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13093,7 +13114,7 @@ msgstr "" "Et heltal på 3 byte, signeret interval er -8.388.608 til 8.388.607, " "usigneret interval er 0 til 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13101,7 +13122,7 @@ msgstr "" "Et heltal på 4 byte, signeret interval er -2.147.483.648 til 2.147.483.647, " "usigneret interval er 0 til 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13110,7 +13131,7 @@ msgstr "" "9.223.372.036.854.755.807, usigneret interval er 0 til " "18.446.744.073.709.55.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13118,7 +13139,7 @@ msgstr "" "Et fast decimaltal (M, D) - det maksimale antal af tal (M) er 65 (standard " "10), det maksimale antal decimaler (D) er 30 (standard 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13126,7 +13147,7 @@ msgstr "" "Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til " "-1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13136,7 +13157,7 @@ msgstr "" "-1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " "2.2250738585072014E-308 til 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13144,7 +13165,7 @@ msgstr "" "Synonym for DOUBLE (undtagelse: i REAL_AS_FLOAT SQL-tilstanden er det et " "synonym for FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13152,7 +13173,7 @@ msgstr "" "Et bit-felttype (M), der lagrer M bits per værdi (standard er 1, maksimum er " "64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13160,21 +13181,21 @@ msgstr "" "Et synonym for TINYINT(1), en værdi på nul anses som falsk, værdier som ikke " "er nul anses som sande" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Et alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "En dato, understøttet interval er %1$s til %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "En kombination af dato og tid, understøttet interval er %1$s til %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13183,12 +13204,12 @@ msgstr "" "03:14:07 UTC, lagret som antallet af sekunder siden epoken (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Et tidspunkt, interval er %1$s til %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13196,7 +13217,7 @@ msgstr "" "Et år med formater på fire cifre (4, standard) eller to cifre (2), hvor " "tilladte værdier er 70 (1970) til 69 (2069) eller 1901 til 2155 og 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13204,7 +13225,7 @@ msgstr "" "En streng med fast længde (0-255, standard er 1), der altid har mellemrum " "til højre i den angivet længde når den lagres" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13213,7 +13234,7 @@ msgstr "" "En streng med variabel længde (%s). Den effektive, maksimale længde er " "subjektet for din maksimale rækkestørrelse" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13221,7 +13242,7 @@ msgstr "" "En TEXT-kolonne med en maksimal længde på 255 (2^8 - 1) tegn, lagret med et " "præfiks på én byte, der indikerer længden af værdien i bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13229,7 +13250,7 @@ msgstr "" "En TEXT-kolonne med en maksimal længde på 65.535 (2^16 - 1) tegn, lagret med " "et præfiks på to bytes, der indikerer længden af værdien i bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13237,7 +13258,7 @@ msgstr "" "En TEXT-kolonne med en maksimal længde på 16.777.215 (2^24 - 1) tegn, lagret " "med et præfiks på tre bytes, der indikerer længden af værdien i bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13246,7 +13267,7 @@ msgstr "" "En TEXT-kolonne med en maksimal længde på 4.294.967.295 (2^32 - 1) tegn, " "lagret med et præfiks på fire bytes, der indikerer længden af værdien i bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13254,7 +13275,7 @@ msgstr "" "Ligner CHAR-typen, men lagrer binære byte-strenge i stedet for ikkebinære " "tegnstrenge" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13262,7 +13283,7 @@ msgstr "" "Ligner typen VARCHAR, men lagrer binære byte-strenge frem for ikkebinære " "tegn-strenge" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13270,7 +13291,7 @@ msgstr "" "En BLOB-kolonne med en maksimal længde på 255 (2^8 - 1) byte, lagret med et " "præfiks på én byte som indikerer længden af værdien" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13278,7 +13299,7 @@ msgstr "" "En BLOB-kolonne med en maksimal længde på 16.777.215 (2^24 - 1) byte, lagret " "med et præfiks på tre byte som indikerer længden af værdien" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13286,7 +13307,7 @@ msgstr "" "En BLOB-kolonne med en maksimal længde på 65.535 (2^16 - 1) byte, lagret med " "et præfiks på to byte som indikerer længden af værdien" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13294,7 +13315,7 @@ msgstr "" "En BLOB-kolonne med en maksimal længde på 4.294.967.295 (2^32 - 1) byte, " "lagret med et præfiks på fire byte som indikerer længden af værdien" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13302,43 +13323,43 @@ msgstr "" "En optælling, udvalgt fra listen med op til 65.535 værdier eller den særlige " "''-fejlværdi" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "En enkelt værdi udvalgt fra et sæt på op til 64 medlemmer" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "En type som kan lagre en hvilken som helst type geometri" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Et punkt i et 2-dimensionelt rum" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "En kurve med lineær interpolering mellem punkterne" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "En polygon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "En samling af punkter" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "En samling af kurver med lineære interpoleringer mellem punkterne" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "En samling af polygoner" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "En samling af geometriske objekter af enhver type" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13346,23 +13367,29 @@ msgstr "" "Lagrer og muliggør effektiv tilgang til data i JSON (JavaScript Object " "Notation) dokumenter" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Lagrer en Universally Unique Identifier (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerisk" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Dato og tid" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -13390,85 +13417,85 @@ msgstr "Kunne ikke gemme konfiguration" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13476,55 +13503,55 @@ msgid "Sun" msgstr "søn" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "man" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "tir" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "ons" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "tor" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "fre" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "lør" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Brugere" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sortér" @@ -13699,7 +13726,7 @@ msgstr "begge de ovenfor anførte" msgid "neither of the above" msgstr "ingen af de ovenfor anførte" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfiguration eksisterer allerede, opsætningen er deaktiveret!" @@ -13734,7 +13761,7 @@ msgstr "Ingen" msgid "As defined:" msgstr "Som defineret:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13742,41 +13769,41 @@ msgstr "" "Du har ikke tilstrækkelige rettigheder til at være her! Læs dokumentationen " "for mere" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unik" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Fuldtekst" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Udtryk" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "første" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "efter %s" @@ -13910,7 +13937,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13981,7 +14008,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14262,7 +14289,7 @@ msgid "Search this table" msgstr "Søg i denne tabel" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Tilføj kolonne" @@ -14291,7 +14318,7 @@ msgstr "Klik for at sortere." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14325,24 +14352,24 @@ msgstr "Databasekommentar" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Udskriv" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Pakket" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinalitet" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Intet indeks defineret!" @@ -15200,6 +15227,11 @@ msgstr[1] "%s tabeller" msgid "Sum" msgstr "Sum" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Fortsæt" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Fra" @@ -15293,16 +15325,11 @@ msgstr "Fjern kolonner fra centerliste" msgid "Make consistent with central list" msgstr "Gør konsistent med central liste" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Fortsæt" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Er du sikker?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15444,7 +15471,7 @@ msgstr "Ikke-sporede tabeller" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Sporingstabel" @@ -16219,19 +16246,19 @@ msgid "Other options" msgstr "Andre indstillinger:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Omdøb til" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Primærnøglen er slettet." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s er blevet slettet." @@ -16555,6 +16582,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16562,6 +16600,7 @@ msgid "View:" msgstr "Views:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16741,8 +16780,8 @@ msgstr "" "Du kan nulstille alle dine indstillinger og gendanne dem med standardværdier." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Konfigurere to-faktor autentificering" @@ -16761,7 +16800,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Deaktiver to-faktor autentificering" @@ -16776,6 +16815,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16792,6 +16832,11 @@ msgstr "" "denne konto." #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -16801,7 +16846,7 @@ msgstr "" "To-faktor autentificering ikke er til rådighed, aktiverer phpMyAdmin " "konfiguration storage til at bruge den." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Du har aktiveret to faktor-autentificering." @@ -19162,7 +19207,7 @@ msgid "Start row:" msgstr "Startrække:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitioner" @@ -19246,7 +19291,7 @@ msgstr "Tilføj kolonner" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Flyt kolonner" @@ -19254,33 +19299,33 @@ msgstr "Flyt kolonner" msgid "Move the columns by dragging them up and down." msgstr "Flyt kolonnerne ved at trække dem op og ned." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Rediger view" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normaliser" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Spor visning" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Tilføj %s kolonne(r)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "i begyndelsen af tabellen" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20172,9 +20217,6 @@ msgstr "Kolonnenavne" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Et alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Lagrer en Universally Unique Identifier (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/de.po b/po/de.po index fcf41e9fff..06c1fb1cbd 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-11-27 12:48+0000\n" "Last-Translator: Justin Nogossek \n" "Language-Team: German %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10131,8 +10140,8 @@ msgstr "Anzeigen" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10144,7 +10153,7 @@ msgstr "Suche" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10154,8 +10163,8 @@ msgid "Insert" msgstr "Einfügen" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10164,14 +10173,14 @@ msgid "Privileges" msgstr "Rechte" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operationen" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Nachverfolgung" @@ -10179,12 +10188,12 @@ msgstr "Nachverfolgung" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Trigger" @@ -10194,11 +10203,11 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Abfrage" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routinen" @@ -10208,15 +10217,15 @@ msgstr "Routinen" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Ereignisse" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Zentrale Spalten" @@ -10226,12 +10235,12 @@ msgid "User accounts" msgstr "Benutzerkonten" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10239,21 +10248,21 @@ msgid "Replication" msgstr "Replikation" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variablen" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Formate" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Erweiterungen" @@ -10353,11 +10362,11 @@ msgstr "Neu" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10375,7 +10384,7 @@ msgstr "Neu" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10403,8 +10412,8 @@ msgstr "Neu" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10841,7 +10850,7 @@ msgstr "Leeren" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Löschen" @@ -11082,18 +11091,18 @@ msgstr "Datenexport-Optionen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Daten für Tabelle" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11105,7 +11114,7 @@ msgstr "Daten für Tabelle" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11114,11 +11123,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11135,9 +11144,9 @@ msgid "Default" msgstr "Standard" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11146,8 +11155,8 @@ msgid "Links to" msgstr "Verweise" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11163,8 +11172,8 @@ msgid "Name" msgstr "Name" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11173,23 +11182,23 @@ msgid "Definition" msgstr "Definition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -11293,11 +11302,11 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Daten:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktur:" @@ -11322,15 +11331,15 @@ msgstr "Titel des Reports:" msgid "Dumping data" msgstr "Datendump" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Abfrageergebnisdaten" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Ansichtsstruktur" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Ersatz" @@ -11411,7 +11420,7 @@ msgid "Data creation options" msgstr "Datenerstellungsoptionen" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -11496,7 +11505,7 @@ msgstr "Es scheint, dass Ihre Datenbank Routinen verwendet;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -11571,20 +11580,20 @@ msgstr "MEDIENTYPEN DER TABELLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Siehe unten für die tatsächliche Ansicht)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Fehler beim Lesen der Daten von Tabelle %s:" @@ -11903,7 +11912,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" @@ -12133,14 +12142,18 @@ msgstr "" "Bietet Authentifizierung mit HOTP- und TOTP-Anwendungen wie FreeOTP, Google " "Authenticator oder Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Hardware-Sicherheitsschlüssel (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Bietet Authentifizierung mit Hardware-Sicherheitstoken, die FIDO U2F " "unterstützen, wie z. B. ein Yubikey." @@ -12170,6 +12183,24 @@ msgstr "Einfache Zwei-Faktor-Authentifizierung" msgid "For testing purposes only!" msgstr "Nur für Testzwecke!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Hardware-Sicherheitsschlüssel (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Bietet Authentifizierung mit Hardware-Sicherheitstoken, die FIDO U2F " +"unterstützen, wie z. B. ein Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12915,7 +12946,7 @@ msgstr "%s wurde auf diesem MySQL-Server deaktiviert." msgid "This MySQL server does not support the %s storage engine." msgstr "Dieser MySQL-Server unterstützt %s nicht." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Der Name des Primärschlüssels muss \"PRIMARY\" lauten!" @@ -12929,39 +12960,39 @@ msgid "Unknown table status:" msgstr "Unbekannter Tabellenstatus:" # source != search / Source != Suche -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Ungültige Datenbank:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Ungültiger Tabellenname:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fehler beim Umbenennen von Tabelle %1$s nach %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelle %1$s wurde in %2$s umbenannt." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Konnte die Darstellungs-Einstellungen der Tabelle nicht speichern!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12970,7 +13001,7 @@ msgstr "" "Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12981,15 +13012,15 @@ msgstr "" "Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. " "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Kann Index nicht in PRIMARY umbenennen!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Keine Indizes definiert!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13151,14 +13182,14 @@ msgstr "Version %1$s von %2$s wurde gelöscht." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Ein 1-Byte-Integer, Bereich mit Vorzeichen ist -128 bis 127, ohne Vorzeichen " "0 bis 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13166,7 +13197,7 @@ msgstr "" "Ein 2-Byte-Integer, Bereich mit Vorzeichen ist -32.768 bis 32.767, ohne " "Vorzeichen 0 bis 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13174,7 +13205,7 @@ msgstr "" "Ein 3-Byte-Integer, Bereich mit Vorzeichen ist -8.388.608 bis 8.388.607, " "ohne Vorzeichen 0 bis 16.277.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13182,7 +13213,7 @@ msgstr "" "Ein 4-Byte-Integer, Bereich mit Vorzeichen ist -2.147.483.648 bis " "2.147.483.647, ohne Vorzeichen 0 bis 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13191,7 +13222,7 @@ msgstr "" "bis 9.223.372.036.854.775.807, ohne Vorzeichen 0 bis " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13199,7 +13230,7 @@ msgstr "" "Eine Fixkommazahl (M, D) - die maximale Anzahl Ziffern (M) ist 65 (Standard " "10), die maximale Anzahl Dezimale (D) ist 30 (Standard 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13207,7 +13238,7 @@ msgstr "" "Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis " "-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13217,7 +13248,7 @@ msgstr "" "-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " "2,2250738585072014E-308 bis 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13225,7 +13256,7 @@ msgstr "" "Synonym für DOUBLE (Ausnahme: im SQL-Modus REAL_AS_FLOAT ein Synonym für " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13233,7 +13264,7 @@ msgstr "" "Ein Bitfeld-Typ (M), der M Bits pro Wert speichert (Standard ist 1, Maximum " "ist 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13241,23 +13272,23 @@ msgstr "" "Ein Synonym für TINYINT(1), ein Null-Wert wird als falsch angesehen, Nicht-" "Null-Werte werden als wahr angesehen" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Ein Alias für BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis " "%2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13266,12 +13297,12 @@ msgstr "" "UTC, gespeichert als Anzahl Sekunden seit Beginn der UNIX-Epoche (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Eine Uhrzeit, Bereich ist %1$s bis %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13279,7 +13310,7 @@ msgstr "" "Ein Jahr im vier- (4, Standard) oder zweistelligen (2) Format, die erlaubten " "Werte sind 70 (1970) bis 69 (2069) oder 1901 bis 2155 und 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13287,7 +13318,7 @@ msgstr "" "Eine Zeichenkette mit fester Länge (0-255, Standard 1), die rechts beim " "Speichern immer mit Leerzeichen auf die angegebene Länge aufgefüllt wird" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13296,7 +13327,7 @@ msgstr "" "Eine Zeichenkette mit variabler Länge (%s), die tatsächliche maximale Länge " "hängt von der maximalen Anzahl Zeilen ab" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13305,7 +13336,7 @@ msgstr "" "gespeichert mit einem Ein-Byte-Präfix, der die Länge des Wertes in Bytes " "angibt" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13314,7 +13345,7 @@ msgstr "" "gespeichert mit einem Zwei-Byte-Präfix, der die Länge des Wertes in Bytes " "angibt" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13323,7 +13354,7 @@ msgstr "" "Zeichen, gespeichert mit einem Drei-Byte-Präfix, der die Länge des Wertes in " "Bytes angibt" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13333,7 +13364,7 @@ msgstr "" "- 1) Zeichen, gespeichert mit einem Vier-Byte-Präfix, der die Länge des " "Wertes in Bytes angibt" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13341,7 +13372,7 @@ msgstr "" "Ähnlich wie der CHAR-Typ, speichert aber binäre Byte-Zeichenketten anstelle " "von nicht-binären Buchstaben-Zeichenketten" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13349,7 +13380,7 @@ msgstr "" "Ähnlich wie der VARCHAR-Typ, speichert aber binäre Byte-Zeichenketten " "anstelle von nicht-binären Buchstaben-Zeichenketten" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13357,7 +13388,7 @@ msgstr "" "Eine BLOB-Spalte mit einer maximalen Länge von 255 (2^8 - 1) Bytes, " "gespeichert mit einem Ein-Byte-Präfix, der die Länge des Wertes angibt" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13365,7 +13396,7 @@ msgstr "" "Eine BLOB-Spalte mit einer maximalen Länge von 16.777.215 (2^24 - 1) Bytes, " "gespeichert mit einem Drei-Byte-Präfix, der die Länge des Wertes angibt" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13373,7 +13404,7 @@ msgstr "" "Eine BLOB-Spalte mit einer maximalen Länge von 65.535 (2^16 - 1) Bytes, " "gespeichert mit einem Zwei-Byte-Präfix, der die Länge des Wertes angibt" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13382,7 +13413,7 @@ msgstr "" "- 1) Bytes, gespeichert mit einem Vier-Byte-Präfix, der die Länge des Wertes " "angibt" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13390,43 +13421,43 @@ msgstr "" "Eine Aufzählung, gewählt aus der Liste von bis zu 65.535 Werten oder dem " "besonderen '' Fehler-Wert" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Ein einzelner Wert gewählt aus einem Satz von bis zu 64 Einträgen" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Ein Typ, der die Geometrie irgendeines Typs speichern kann" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Ein Punkt im 2-dimensionalen Raum" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Eine Kurve mit linearer Interpolation zwischen Punkten" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Ein Vieleck (Polygon)" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Eine Punkte-Sammlung" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Eine Kurven-Sammlung mit linearer Interpolation zwischen Punkten" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Eine Polygon-Sammlung" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Eine Sammlung von Geometrie-Objekten irgendeines Typs" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13434,7 +13465,7 @@ msgstr "" "Speichert und erlaubt effizienten Zugriff auf Daten in JSON (JavaScript " "Object Notation)-Dokumenten" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13443,17 +13474,23 @@ msgstr "" "unter der Annahme einer konventionellen Zuordnung von IPv4-Adressen zu IPv6-" "Adressen" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Speichert einen universell eindeutigen Identifizierer (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerisch" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Datum und Uhrzeit" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Räumlich" @@ -13480,139 +13517,139 @@ msgstr "" "Auf die phpMyAdmin-Konfigurationsspeicherdatenbank konnte nicht zugegriffen " "werden." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maximal: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mrz" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dez" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "So" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Mo" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Di" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mi" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Do" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Fr" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sa" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Benutzer" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sortierung" @@ -13785,7 +13822,7 @@ msgstr "Beide der Obigen" msgid "neither of the above" msgstr "Keines der Obigen" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfiguration existiert bereits, Installation ist deaktiviert!" @@ -13820,7 +13857,7 @@ msgstr "Kein(e)" msgid "As defined:" msgstr "Wie definiert:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13828,41 +13865,41 @@ msgstr "" "Sie haben nicht genug Rechte um fortzufahren; Bitte wenden Sie sich für mehr " "Details an die Dokumentation" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unique" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Volltext" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Räumlich" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Ausdruck" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "an den Anfang" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "nach %s" @@ -13992,7 +14029,7 @@ msgstr "Format" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14063,7 +14100,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14332,7 +14369,7 @@ msgid "Search this table" msgstr "Diese Tabelle durchsuchen" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Spalte hinzufügen" @@ -14361,7 +14398,7 @@ msgstr "Zum Sortieren klicken." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14391,24 +14428,24 @@ msgstr "Datenbankkommentar:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Drucken" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Gepackt" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinalität" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Kein Index definiert!" @@ -15210,6 +15247,11 @@ msgstr[1] "%s Tabellen" msgid "Sum" msgstr "Gesamt" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Weiter" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Von" @@ -15301,16 +15343,11 @@ msgstr "Entfernen von Spalten aus der zentralen Liste" msgid "Make consistent with central list" msgstr "Konsistent mit zentraler Liste machen" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Weiter" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Sind sie sicher?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15451,7 +15488,7 @@ msgstr "Nicht verfolgte Tabellen" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Tabelle verfolgen" @@ -16174,17 +16211,17 @@ msgid "Other options" msgstr "Andere Optionen" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Umbenennen" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Der Primärschlüssel wurde gelöscht." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Index %s wurde entfernt." @@ -16508,11 +16545,35 @@ msgstr "" msgid "Verify" msgstr "Bestätigen" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Bitte schließen Sie Ihr FIDO U2F-Gerät an den USB-Anschluss Ihres Computers " +"an. Bestätigen Sie dann die Registrierung am Gerät." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Bitte schließen Sie Ihr FIDO U2F-Gerät an den USB-Anschluss Ihres Computers " +"an. Bestätigen Sie dann die Anmeldung am Gerät." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Ansicht:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Zurück" @@ -16685,8 +16746,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Sie können alle Einstellungen auf die Standardwerte zurücksetzen." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Zwei-Faktor-Authentifizierung konfigurieren" @@ -16707,7 +16768,7 @@ msgstr "" "wieder nur mit einem Passwort anmelden." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Zwei-Faktor-Authentifizierung deaktivieren" @@ -16724,6 +16785,7 @@ msgstr "" "optionale Abhängigkeiten, um die Authentifizierungs-Backends zu aktivieren." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Folgende Composer-Pakete fehlen:" @@ -16741,6 +16803,17 @@ msgstr "" "konfiguriert." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Zwei-Faktor-Authentifizierung ist nicht verfügbar, bitte installieren Sie " +"optionale Abhängigkeiten, um die Authentifizierungs-Backends zu aktivieren." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16748,7 +16821,7 @@ msgstr "" "Zwei-Faktor-Authentifizierung ist nicht verfügbar, aktivieren Sie den " "phpMyAdmin Konfigurationsspeicher, um sie zu verwenden." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Sie haben Zwei-Faktor-Authentifizierung aktiviert." @@ -18924,7 +18997,7 @@ msgid "Start row:" msgstr "Anfangs-Datensatz:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitionen" @@ -19006,7 +19079,7 @@ msgstr "Zu zentralen Spalten hinzufügen" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Spalten verschieben" @@ -19014,33 +19087,33 @@ msgstr "Spalten verschieben" msgid "Move the columns by dragging them up and down." msgstr "Verschieben Sie die Spalten, indem Sie sie nach oben und unten ziehen." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "View/Ansicht bearbeiten" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalisieren" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Verfolge Ansicht" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "am Tabellenanfang" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Erstelle Index über %s Spalten" @@ -19908,9 +19981,6 @@ msgstr "Spaltennamen" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Ein Alias für BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Speichert einen universell eindeutigen Identifizierer (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/el.po b/po/el.po index c5073ec965..97cb0eba34 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Greek %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10268,8 +10277,8 @@ msgstr "Περιήγηση" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10281,7 +10290,7 @@ msgstr "Αναζήτηση" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10291,8 +10300,8 @@ msgid "Insert" msgstr "Προσθήκη" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10301,14 +10310,14 @@ msgid "Privileges" msgstr "Δικαιώματα" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Λειτουργίες" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Παρακολούθηση" @@ -10316,12 +10325,12 @@ msgstr "Παρακολούθηση" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Δείκτες" @@ -10331,11 +10340,11 @@ msgstr "Δείκτες" msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Εργασίες" @@ -10345,15 +10354,15 @@ msgstr "Εργασίες" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Συμβάντα" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Κεντρικές στήλες" @@ -10363,12 +10372,12 @@ msgid "User accounts" msgstr "Λογαριασμοί χρήστη" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10376,21 +10385,21 @@ msgid "Replication" msgstr "Αναπαραγωγή" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Μηχανές" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Πρόσθετα" @@ -10492,11 +10501,11 @@ msgstr "Νέα" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10514,7 +10523,7 @@ msgstr "Νέα" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10542,8 +10551,8 @@ msgstr "Νέο" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10977,7 +10986,7 @@ msgstr "Διαγραφή" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Διαγραφή" @@ -11210,18 +11219,18 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11233,7 +11242,7 @@ msgstr "Άδειασμα δεδομένων του πίνακα" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11242,11 +11251,11 @@ msgstr "Κενό" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11263,9 +11272,9 @@ msgid "Default" msgstr "Προεπιλογή" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11274,8 +11283,8 @@ msgid "Links to" msgstr "Σύνδεση με" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11291,8 +11300,8 @@ msgid "Name" msgstr "Όνομα" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11301,23 +11310,23 @@ msgid "Definition" msgstr "Προσδιορισμός" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -11422,11 +11431,11 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Δεδομένα:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Δομή:" @@ -11453,17 +11462,17 @@ msgstr "Τίτλος αναφοράς:" msgid "Dumping data" msgstr "Άδειασμα δεδομένων" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Ααποτελέσματα ερωτήματος" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Προβολή δομής" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "και μετά" @@ -11544,7 +11553,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -11628,7 +11637,7 @@ msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησι #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -11705,20 +11714,20 @@ msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" msgid "RELATIONSHIPS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Δείτε παρακάτω για την πραγματική προβολή)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Σφάλμα ανάγνωσης δεδομένων για τον πίνακα %s:" @@ -12032,7 +12041,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" @@ -12266,16 +12275,16 @@ msgstr "" "Παρέχει πιστοποίηση χρησιμοποιώντας εφαρμογές HOTP και TOTP, όπως το " "FreeOTP, το Google Authenticator ή το Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 #, fuzzy msgid "Hardware Security Key (FIDO U2F)" msgstr "Υλικό κλειδί ασφαλείας (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Παρέχει πιστοποίηση με χρήση υλικού τεκμηρίου ασφαλείας με υποστήριξη FIDO " "U2F." @@ -12307,6 +12316,20 @@ msgstr "Απλή πιστοποίηση δύο παραγόντων" msgid "For testing purposes only!" msgstr "Μόνο για δοκιμαστικούς σκοπούς!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Υλικό κλειδί ασφαλείας (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Παρέχει πιστοποίηση με χρήση υλικού τεκμηρίου ασφαλείας με υποστήριξη FIDO " +"U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13077,7 +13100,7 @@ msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το δια msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι \"PRIMARY\"!" @@ -13090,39 +13113,39 @@ msgstr "Προβλήματα με τα ευρετήρια στον πίνακα msgid "Unknown table status:" msgstr "Άγνωστη κατάσταση πίνακα:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Η Βάση δεδομένων προέλευσης «%s» δεν βρέθηκε!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Η βάση δεδομένων προορισμού «%s» δεν βρέθηκε!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Μη έγκυρη βάση δεδομένων:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Μη έγκυρο όνομα πίνακα:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Αποτυχία μετονομασίας του πίνακα %1$s σε %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Αδύνατη η αποθήκευση του πίνακα ρυθμίσεων UI!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13131,7 +13154,7 @@ msgstr "" "Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας " "(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13142,15 +13165,15 @@ msgstr "" "παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει " "αλλαχτεί." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Η μετατροπή του ευρετηρίου σε PRIMARY δεν είναι εφικτή!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13311,14 +13334,14 @@ msgstr "Η έκδοση %1$s από %2$s διαγράφτηκε." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Ένας ακέραιος 1-byte, εύρος με πρόσημο είναι -128 έως 127, εύρος χωρίς " "πρόσημο είναι 0 έως 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13326,7 +13349,7 @@ msgstr "" "Ένας ακέραιος 2-byte, εύρος με πρόσημο είναι -32.768 έως 32.767, εύρος χωρίς " "πρόσημο είναι 0 έως 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13334,7 +13357,7 @@ msgstr "" "Ένας ακέραιος 3-byte, εύρος με πρόσημο είναι -8.388.608 έως 8.388.607, εύρος " "χωρίς πρόσημο είναι 0 έως 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13342,7 +13365,7 @@ msgstr "" "Ένας ακέραιος 4-byte, εύρος με πρόσημο είναι -2.147.483.648 έως " "2.147.483.647, εύρος χωρίς πρόσημο είναι 0 έως 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13351,7 +13374,7 @@ msgstr "" "9.223.372.036.854.775.807, εύρος χωρίς πρόσημο είναι 0 έως " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13360,7 +13383,7 @@ msgstr "" "είναι 65 (προεπιλογή 10), ο μέγιστος αριθμός δεκαδικών είναι (Δ) είναι 30 " "(προεπιλογή 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13369,7 +13392,7 @@ msgstr "" "-3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13379,7 +13402,7 @@ msgstr "" "-1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " "2.2250738585072014E-308 έως 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13387,7 +13410,7 @@ msgstr "" "Συνώνυμο για το DOUBLE (εξαίρεση: στην κατάσταση SQL REAL_AS_FLOAT είναι " "συνώνυμο με το FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13395,7 +13418,7 @@ msgstr "" "Ένας τύπος πεδίου bit (M), αποθηκεύονται το πλήθος (M) των bits ανά τιμή " "(προεπιλογή είναι το 1, μέγιστο είναι το 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13403,23 +13426,23 @@ msgstr "" "Ένα συνώνυμο για το TINYINT(1), μια μηδενική τιμή θεωρείτε λάθος, μη " "μηδενικές τιμές θεωρούνται σωστές" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Μια ετικέτα για το BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Μια ημερομηνία, υποστηριζόμενο εύρος είναι από %1$s έως %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Ένας συνδυασμός ημερομηνίας και ώρας, υποστηριζόμενο εύρος είναι από %1$s " "έως %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13428,12 +13451,12 @@ msgstr "" "UTC, αποπθηκεύεται ως ο αριθμός των δευτερολέπτων από την αρχή (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Ένας χρόνος, εύρος είναι από %1$s έως %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13441,7 +13464,7 @@ msgstr "" "Το έτος με τέσσερα ψηφία (4, προεπιλογή) ή μορφή 2 ψηφίων (2), οι επιτρεπτές " "τιμές είναι 70 (1970) έως 69 (2069) ή 1901 έως 2155 και 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13449,7 +13472,7 @@ msgstr "" "Ένα κείμενο σταθερού μήκους (0-255, προεπιλογή 1) που είναι πάντα δεξιά " "στοιχισμένο με κενά στο ορισμένο μήκος όταν αποθηεκύεται" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13458,7 +13481,7 @@ msgstr "" "Ένα κείμενο μεταβλητού μήκους (%s), το δραστικό μέγιστο μήκος είναι σχετικό " "με το μέγιστο μέγεθος της εγγραφής" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13466,7 +13489,7 @@ msgstr "" "Μια στήλη TEXT με μέγιστο μήκος 255 (2⁸ - 1) χαρακτήρες, αποθηκεύεται με " "πρόθεμα 1-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13474,7 +13497,7 @@ msgstr "" "Μια στήλη TEXT με μέγιστο μήκος 65.535 (2¹⁶ - 1) χαρακτήρες, αποθηκεύεται με " "πρόθεμα 2-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13482,7 +13505,7 @@ msgstr "" "Μια στήλη TEXT με μέγιστο μήκος 16.777.215 (2²⁴ - 1) χαρακτήρες, " "αποθηκεύεται με πρόθεμα 3-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13491,7 +13514,7 @@ msgstr "" "Μια στήλη TEXT με μέγιστο μήκος 4.294.967.295 ή 4GB (2³² - 1) χαρακτήρες, " "αποθηκεύεται με πρόθεμα 4-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13499,7 +13522,7 @@ msgstr "" "Παρόμοιο με τον τύπο CHAR, αλλά αποθηκεύει τα κείμενα δυαδικού byte παρά τα " "κείμενα με μη δυαδικούς χαρακτήρες" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13507,7 +13530,7 @@ msgstr "" "Παρόμοιο με τον τύπο VARCHAR, αλλά αποθηκεύει τα κείμενα δυαδικού byte παρά " "τα κείμενα με μη δυαδικούς χαρακτήρες" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13515,7 +13538,7 @@ msgstr "" "Μια στήλη BLOB με μέγιστο μήκος 255 (2⁸ - 1) bytes, αποθηκεύεται με πρόθεμα " "2-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13523,7 +13546,7 @@ msgstr "" "Μια στήλη BLOB με μέγιστο μήκος 16.777.215 (2²⁴ - 1) χαρακτήρες, " "αποθηκεύεται με πρόθεμα 3-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13531,7 +13554,7 @@ msgstr "" "Μια στήλη BLOB με μέγιστο μήκος 65.535 (2¹⁶ - 1) χαρακτήρες, αποθηκεύεται με " "πρόθεμα 2-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13539,7 +13562,7 @@ msgstr "" "Μια στήλη BLOB με μέγιστο μήκος 4.294.967.295 ή 4GB (2³² - 1) χαρακτήρες, " "αποθηκεύεται με πρόθεμα 4-byte δείχνοντας το μήκος της τιμής σε bytes" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13547,43 +13570,43 @@ msgstr "" "Μια απαρίθμηση, η οποία έχει επιλεγεί από τη λίστα των έως και 65.535 τιμές " "ή τις ειδικές \" τιμή σφάλματος" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Μία μόνο τιμή που επιλέγεται από ένα σύνολο έως και 64 μέλη" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Ένας τύπος που μπορεί να αποθηκεύσει μια γεωμετρία οποιουδήποτε τύπου" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Ένα σημείο σε δισδιάστατο χώρο" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Μια καμπύλη με γραμμική παρεμβολή μεταξύ σημείων" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Ένα πολύγωνο" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Μια συλλογή από σημεία" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Μια συλλογή καμπυλών με γραμμική παρεμβολή μεταξύ σημείων" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Μια συλλογή πολυγώνων" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Μια συλλογή γεωμετρικών αντικειμένων οποιουδήποτε τύπου" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13591,23 +13614,29 @@ msgstr "" "Αποθηκεύει και ενεργοποιεί επαρκή πρόσβαση σε δεδομένα σε έγγραφα JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Αποθηκεύει ένα Καθολικά Μοναδικό Αναγνωριστικό (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Αριθμητικό" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Χωρική" @@ -13637,139 +13666,139 @@ msgstr "" "%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην " "τρέχουσα βάση δεδομένων." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Νοε" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Δεκ" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Σάβ" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "μ.μ." -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "π.μ." -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Χρήστες" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ταξινόμηση" @@ -13943,7 +13972,7 @@ msgstr "αμφότερα τα παραπάνω" msgid "neither of the above" msgstr "κανένα από τα παραπάνω" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Η ρύθμιση υπάρχει ήδη, η εγκατάσταση είναι απενεργοποιημένη!" @@ -13978,7 +14007,7 @@ msgstr "Καμία" msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13986,41 +14015,41 @@ msgstr "" "Δεν έχετε αρκετά δικαιώματα για εκτέλεση αυτής της λειτουργίας. Δείτε την " "τεκμηρίωση για περισσότερες λεπτομέρειες" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Μοναδικό" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Χωρική" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Έκφραση" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "πρώτη" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "μετά το %s" @@ -14154,7 +14183,7 @@ msgstr "Μηχανή" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14225,7 +14254,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14506,7 +14535,7 @@ msgid "Search this table" msgstr "Αναζήτηση σε αυτόν τον πίνακα" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Προσθήκη στήλης" @@ -14535,7 +14564,7 @@ msgstr "Πατήστε για ταξινόμηση." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14569,24 +14598,24 @@ msgstr "Σχόλιο βάσης δεδομένων" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Εκτύπωση" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Συμπιεσμένο" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Μοναδικότητα" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" @@ -15425,6 +15454,11 @@ msgstr[1] "%s πίνακες" msgid "Sum" msgstr "Σύνολο" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Συνέχεια" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Από" @@ -15516,16 +15550,11 @@ msgstr "Απομάκρυνση στηλών από την κεντρική λί msgid "Make consistent with central list" msgstr "Συνέπεια με την κεντρική λίστα" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Συνέχεια" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Σίγουρα;" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15667,7 +15696,7 @@ msgstr "Μη παρακολουθούμενοι πίνακες" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Προβολή παρακολούθησης πίνακα" @@ -16440,19 +16469,19 @@ msgid "Other options" msgstr "Άλλες επιλογές:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Μετονομασία σε" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Το πρωτεύον κλειδί διεγράφη." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Το ευρετήριο %s έχει διαγραφεί." @@ -16786,6 +16815,29 @@ msgstr "" msgid "Verify" msgstr "Επαλήθευση" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Παρακαλώ συνδέστε την FIDO U2F συσκευή σας, στην θύρα USB του υπολογιστή " +"σας. Μετά επιβεβαιώστε την εγγραφή στην συσκευή." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Παρακαλώ συνδέστε την FIDO U2F συσκευή σας στην θύρα USB του υπολογιστή σας. " +"Μετά επιβεβαιώστε τη σύνδεση στη συσκευή." + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16793,6 +16845,7 @@ msgid "View:" msgstr "Προβολές:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16975,8 +17028,8 @@ msgstr "" "Μπορείτε να επαναφέρεται όλες σας τις ρυθμίσεις στις προεπιλεγμένες τιμές." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Ρύθμιση πιστοποίησης δύο-παραγόντων" @@ -16997,7 +17050,7 @@ msgstr "" "συνδεθείτε με χρήση μόνο του συνθηματικού." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Απενεργοποίηση πιστοποίησης δύο-παραγόντων" @@ -17014,6 +17067,7 @@ msgstr "" "προαιρετικές εξαρτήσεις για να ενεργοποιήσετε υπηρεσίες πιστοποίησης." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Τα ακόλουθα πακέτα σύνθεσης απουσιάζουν:" @@ -17031,6 +17085,17 @@ msgstr "" "αυτό τον λογαριασμό." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Η πιστοποίηση δύο-παραγόντων δεν είναι διαθέσιμη, παρακαλώ εγκαταστήστε " +"προαιρετικές εξαρτήσεις για να ενεργοποιήσετε υπηρεσίες πιστοποίησης." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -17038,7 +17103,7 @@ msgstr "" "Η πιστοποίηση δύο-παραγόντων δεν είναι διαθέσιμη, ενεργοποιήστε την " "αποθήκευση ρυθμίσεων του phpMyAdmin για να τη χρησιμοποιήσετε." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Έχετε ενεργοποιήσει την πιστοποίηση δύο-παραγόντων." @@ -19430,7 +19495,7 @@ msgid "Start row:" msgstr "Εγγραφή έναρξης:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Κατατμήσεις" @@ -19514,7 +19579,7 @@ msgstr "Προσθήκη στις κεντρικές στήλες" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Απομάκρυνση στήλης" @@ -19522,33 +19587,33 @@ msgstr "Απομάκρυνση στήλης" msgid "Move the columns by dragging them up and down." msgstr "Μετακινήστε τις στήλες, σύροντας τες επάνω και κάτω." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Κανονικοποίηση" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Προβολή παρακολούθησης" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Προσθήκη %s στήλης(ών)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "στην αρχή του πίνακα" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20421,9 +20486,6 @@ msgstr "Ονόματα στηλών" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Μια ετικέτα για BIGINT NOT NULL AUTO_INCREMENT ΜΟΝΑΔΙΚΌ" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Αποθηκεύει ένα Καθολικά Μοναδικό Αναγνωριστικό (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/en_GB.po b/po/en_GB.po index 8901a33ea9..d6363c7c63 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2021-04-24 09:46+0000\n" "Last-Translator: William Desportes \n" "Language-Team: English (United Kingdom) %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9855,8 +9864,8 @@ msgstr "Browse" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9868,7 +9877,7 @@ msgstr "Search" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9878,8 +9887,8 @@ msgid "Insert" msgstr "Insert" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9888,14 +9897,14 @@ msgid "Privileges" msgstr "Privileges" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operations" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Tracking" @@ -9903,12 +9912,12 @@ msgstr "Tracking" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Triggers" @@ -9918,11 +9927,11 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Query" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routines" @@ -9932,15 +9941,15 @@ msgstr "Routines" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Events" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Central columns" @@ -9950,12 +9959,12 @@ msgid "User accounts" msgstr "User accounts" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binary log" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9963,21 +9972,21 @@ msgid "Replication" msgstr "Replication" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variables" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Charsets" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Engines" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plug-ins" @@ -10076,11 +10085,11 @@ msgstr "New" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10098,7 +10107,7 @@ msgstr "New" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10126,8 +10135,8 @@ msgstr "New" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10556,7 +10565,7 @@ msgstr "Truncate" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Drop" @@ -10789,18 +10798,18 @@ msgstr "Data dump options" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Dumping data for table" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10812,7 +10821,7 @@ msgstr "Dumping data for table" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10821,11 +10830,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10842,9 +10851,9 @@ msgid "Default" msgstr "Default" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10853,8 +10862,8 @@ msgid "Links to" msgstr "Links to" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10870,8 +10879,8 @@ msgid "Name" msgstr "Name" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10880,23 +10889,23 @@ msgid "Definition" msgstr "Definition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Structure for view" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10999,11 +11008,11 @@ msgid "Database:" msgstr "Database:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Data:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Structure:" @@ -11028,15 +11037,15 @@ msgstr "Report title:" msgid "Dumping data" msgstr "Dumping data" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Query result data" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "View structure" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Stand in" @@ -11112,7 +11121,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -11195,7 +11204,7 @@ msgstr "It appears your database uses routines;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "alias export may not work reliably in all cases." @@ -11269,20 +11278,20 @@ msgstr "MEDIA TYPES FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONSHIPS FOR TABLE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "It appears your table uses triggers;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure for view %s exported as a table" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(See below for the actual view)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Error reading data for table %s:" @@ -11593,7 +11602,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" @@ -11814,18 +11823,18 @@ msgstr "" "Authy provides authentication services (add security to accounts through a " "code)." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Hardware Sicherheitsschlüssel (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Provides authentication using hardware security tokens supporting FIDO U2F." @@ -11854,6 +11863,23 @@ msgstr "Einfache Authentifizierung in zwei Schritten" msgid "For testing purposes only!" msgstr "For testing purposes only!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Hardware Sicherheitsschlüssel (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Provides authentication using hardware security tokens supporting FIDO U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12605,7 +12631,7 @@ msgstr "%s has been disabled for this MySQL server." msgid "This MySQL server does not support the %s storage engine." msgstr "This MySQL server does not support the %s storage engine." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" @@ -12618,39 +12644,39 @@ msgstr "Problems with indexes of table `%s`" msgid "Unknown table status:" msgstr "Unknown table status:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Source database `%s` was not found!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Target database `%s` was not found!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Invalid database:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Invalid table name:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Failed to rename table %1$s to %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s has been renamed to %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Could not save table UI preferences!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12659,7 +12685,7 @@ msgstr "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12670,15 +12696,15 @@ msgstr "" "after you refresh this page. Please check if the table structure has been " "changed." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" @@ -12836,13 +12862,13 @@ msgstr "Version %1$s of %2$s was deleted." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12850,7 +12876,7 @@ msgstr "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12858,7 +12884,7 @@ msgstr "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12866,7 +12892,7 @@ msgstr "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12874,7 +12900,7 @@ msgstr "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12882,63 +12908,63 @@ msgstr "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" -#: libraries/classes/Types.php:240 -msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" -msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" - -#: libraries/classes/Types.php:247 -msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " -"2.2250738585072014E-308 to 1.7976931348623157E+308" -msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " -"2.2250738585072014E-308 to 1.7976931348623157E+308" - -#: libraries/classes/Types.php:253 -msgid "" -"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " -"FLOAT)" -msgstr "" -"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " -"FLOAT)" - -#: libraries/classes/Types.php:256 -msgid "" -"A bit-field type (M), storing M of bits per value (default is 1, maximum is " -"64)" -msgstr "" -"A bit-field type (M), storing M of bits per value (default is 1, maximum is " -"64)" - -#: libraries/classes/Types.php:260 -msgid "" -"A synonym for TINYINT(1), a value of zero is considered false, nonzero " -"values are considered true" -msgstr "" -"A synonym for TINYINT(1), a value of zero is considered false, nonzero " -"values are considered true" - #: libraries/classes/Types.php:264 +msgid "" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +msgstr "" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" + +#: libraries/classes/Types.php:271 +msgid "" +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"2.2250738585072014E-308 to 1.7976931348623157E+308" +msgstr "" +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"2.2250738585072014E-308 to 1.7976931348623157E+308" + +#: libraries/classes/Types.php:277 +msgid "" +"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " +"FLOAT)" +msgstr "" +"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " +"FLOAT)" + +#: libraries/classes/Types.php:280 +msgid "" +"A bit-field type (M), storing M of bits per value (default is 1, maximum is " +"64)" +msgstr "" +"A bit-field type (M), storing M of bits per value (default is 1, maximum is " +"64)" + +#: libraries/classes/Types.php:284 +msgid "" +"A synonym for TINYINT(1), a value of zero is considered false, nonzero " +"values are considered true" +msgstr "" +"A synonym for TINYINT(1), a value of zero is considered false, nonzero " +"values are considered true" + +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "A date, supported range is %1$s to %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "A date and time combination, supported range is %1$s to %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12946,12 +12972,12 @@ msgstr "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "A time, range is %1$s to %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12959,7 +12985,7 @@ msgstr "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12967,7 +12993,7 @@ msgstr "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12976,7 +13002,7 @@ msgstr "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12984,7 +13010,7 @@ msgstr "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12992,7 +13018,7 @@ msgstr "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13000,109 +13026,109 @@ msgstr "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" -#: libraries/classes/Types.php:338 -msgid "" -"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " -"characters, stored with a four-byte prefix indicating the length of the " -"value in bytes" -msgstr "" -"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " -"characters, stored with a four-byte prefix indicating the length of the " -"value in bytes" - -#: libraries/classes/Types.php:345 -msgid "" -"Similar to the CHAR type, but stores binary byte strings rather than non-" -"binary character strings" -msgstr "" -"Similar to the CHAR type, but stores binary byte strings rather than non-" -"binary character strings" - -#: libraries/classes/Types.php:350 -msgid "" -"Similar to the VARCHAR type, but stores binary byte strings rather than non-" -"binary character strings" -msgstr "" -"Similar to the VARCHAR type, but stores binary byte strings rather than non-" -"binary character strings" - -#: libraries/classes/Types.php:356 -msgid "" -"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " -"one-byte prefix indicating the length of the value" -msgstr "" -"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " -"one-byte prefix indicating the length of the value" - #: libraries/classes/Types.php:362 msgid "" -"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " -"with a three-byte prefix indicating the length of the value" +"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"characters, stored with a four-byte prefix indicating the length of the " +"value in bytes" msgstr "" -"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " -"with a three-byte prefix indicating the length of the value" +"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"characters, stored with a four-byte prefix indicating the length of the " +"value in bytes" #: libraries/classes/Types.php:369 msgid "" -"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " -"a two-byte prefix indicating the length of the value" +"Similar to the CHAR type, but stores binary byte strings rather than non-" +"binary character strings" msgstr "" -"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " -"a two-byte prefix indicating the length of the value" +"Similar to the CHAR type, but stores binary byte strings rather than non-" +"binary character strings" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:374 msgid "" -"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " -"bytes, stored with a four-byte prefix indicating the length of the value" +"Similar to the VARCHAR type, but stores binary byte strings rather than non-" +"binary character strings" msgstr "" -"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " -"bytes, stored with a four-byte prefix indicating the length of the value" +"Similar to the VARCHAR type, but stores binary byte strings rather than non-" +"binary character strings" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:380 msgid "" -"An enumeration, chosen from the list of up to 65,535 values or the special " -"'' error value" +"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " +"one-byte prefix indicating the length of the value" msgstr "" -"An enumeration, chosen from the list of up to 65,535 values or the special " -"'' error value" +"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " +"one-byte prefix indicating the length of the value" #: libraries/classes/Types.php:386 +msgid "" +"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " +"with a three-byte prefix indicating the length of the value" +msgstr "" +"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " +"with a three-byte prefix indicating the length of the value" + +#: libraries/classes/Types.php:393 +msgid "" +"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " +"a two-byte prefix indicating the length of the value" +msgstr "" +"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " +"a two-byte prefix indicating the length of the value" + +#: libraries/classes/Types.php:399 +msgid "" +"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"bytes, stored with a four-byte prefix indicating the length of the value" +msgstr "" +"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"bytes, stored with a four-byte prefix indicating the length of the value" + +#: libraries/classes/Types.php:406 +msgid "" +"An enumeration, chosen from the list of up to 65,535 values or the special " +"'' error value" +msgstr "" +"An enumeration, chosen from the list of up to 65,535 values or the special " +"'' error value" + +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "A single value chosen from a set of up to 64 members" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "A type that can store a geometry of any type" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "A point in 2-dimensional space" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "A curve with linear interpolation between points" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "A polygon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "A collection of points" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "A collection of curves with linear interpolation between points" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "A collection of polygons" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "A collection of geometry objects of any type" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13110,7 +13136,7 @@ msgstr "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13118,17 +13144,23 @@ msgstr "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Stores a Universally Unique Identifier (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeric" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Date and time" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -13157,139 +13189,139 @@ msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "" "%sCreate%s the phpMyAdmin configuration storage in the current database." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Oct" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Sun" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Mon" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Tue" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Wed" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Thu" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Fri" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sat" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Users" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sort" @@ -13462,7 +13494,7 @@ msgstr "both of the above" msgid "neither of the above" msgstr "neither of the above" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Configuration already exists, setup is disabled!" @@ -13497,7 +13529,7 @@ msgstr "None" msgid "As defined:" msgstr "As defined:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13505,41 +13537,41 @@ msgstr "" "You don't have sufficient privileges to perform this operation; please refer " "to the documentation for more details" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unique" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Fulltext" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expression" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "first" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "after %s" @@ -13669,7 +13701,7 @@ msgstr "Engine" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13740,7 +13772,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14010,7 +14042,7 @@ msgid "Search this table" msgstr "Search this table" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Add column" @@ -14039,7 +14071,7 @@ msgstr "Click to sort." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14071,24 +14103,24 @@ msgstr "Database comment:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Print" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Packed" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinality" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "No index defined!" @@ -14896,6 +14928,11 @@ msgstr[1] "%s tables" msgid "Sum" msgstr "Sum" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continue" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "From" @@ -14987,16 +15024,11 @@ msgstr "Remove columns from central list" msgid "Make consistent with central list" msgstr "Make consistent with central list" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continue" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Are you sure?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15136,7 +15168,7 @@ msgstr "Untracked tables" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Track table" @@ -15880,17 +15912,17 @@ msgid "Other options" msgstr "Other options:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Rename" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "The primary key has been dropped." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Index %s has been dropped." @@ -16209,11 +16241,35 @@ msgstr "" msgid "Verify" msgstr "Verify" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Please connect your FIDO U2F device into your computer's USB port. Then " +"confirm registration on the device." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Please connect your FIDO U2F device into your computer's USB port. Then " +"confirm login on the device." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "View:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16384,8 +16440,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "You can reset all your settings and restore them to default values." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configure two-factor authentication" @@ -16406,7 +16462,7 @@ msgstr "" "password only." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Disable two-factor authentication" @@ -16423,6 +16479,7 @@ msgstr "" "dependencies to enable authentication backends." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Following composer packages are missing:" @@ -16438,6 +16495,17 @@ msgstr "" "Two-factor authentication is available, but not configured for this account." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Two-factor authentication is not available, please install optional " +"dependencies to enable authentication backends." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16445,7 +16513,7 @@ msgstr "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "You have enabled two factor authentication." @@ -18689,7 +18757,7 @@ msgid "Start row:" msgstr "Start row:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitions" @@ -18771,7 +18839,7 @@ msgstr "Add to central columns" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Move columns" @@ -18779,33 +18847,33 @@ msgstr "Move columns" msgid "Move the columns by dragging them up and down." msgstr "Move the columns by dragging them up and down." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Edit view" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propose table structure" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalise" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Track view" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "at beginning of table" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Create an index on %s columns" @@ -19611,9 +19679,6 @@ msgstr "Column names" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Stores a Universally Unique Identifier (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/enm.po b/po/enm.po index eefaea6133..706a780cb4 100644 --- a/po/enm.po +++ b/po/enm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-20 13:11+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: English (Middle) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10105,8 +10114,8 @@ msgstr "Examinar" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10118,7 +10127,7 @@ msgstr "Buscar" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10128,8 +10137,8 @@ msgid "Insert" msgstr "Insertar" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10138,14 +10147,14 @@ msgid "Privileges" msgstr "Privilegios" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operaciones" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Seguimiento" @@ -10153,12 +10162,12 @@ msgstr "Seguimiento" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Disparadores" @@ -10168,11 +10177,11 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Generar una consulta" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutinas" @@ -10182,15 +10191,15 @@ msgstr "Rutinas" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Eventos" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Diseñador" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Columnas centrales" @@ -10200,12 +10209,12 @@ msgid "User accounts" msgstr "Cuentas de usuarios" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Registro binario" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10213,21 +10222,21 @@ msgid "Replication" msgstr "Replicación" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variables" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motores" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Complementos" @@ -10328,11 +10337,11 @@ msgstr "Nueva" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10350,7 +10359,7 @@ msgstr "Nueva" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10378,8 +10387,8 @@ msgstr "Nuevo" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10813,7 +10822,7 @@ msgstr "Truncar" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Eliminar" @@ -11050,18 +11059,18 @@ msgstr "Opciones para volcado de datos" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11073,7 +11082,7 @@ msgstr "Volcado de datos para la tabla" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11082,11 +11091,11 @@ msgstr "Nulo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11103,9 +11112,9 @@ msgid "Default" msgstr "Predeterminado" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11114,8 +11123,8 @@ msgid "Links to" msgstr "Enlaces a" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11131,8 +11140,8 @@ msgid "Name" msgstr "Nombre" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11141,23 +11150,23 @@ msgid "Definition" msgstr "Definición" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -11260,11 +11269,11 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Datos:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Estructura:" @@ -11289,15 +11298,15 @@ msgstr "Título del reporte:" msgid "Dumping data" msgstr "Volcado de datos" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Datos del resultado de la consulta" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Ver estructura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Soporte" @@ -11377,7 +11386,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -11460,7 +11469,7 @@ msgstr "Parece que su base de datos utiliza rutinas;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -11535,20 +11544,20 @@ msgstr "TIPOS DE MEDIOS PARA LA TABLA" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estructura para la vista de %s exportada como una tabla" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Véase abajo para la vista actual)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Error leyendo datos de la tabla %s:" @@ -11869,7 +11878,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" @@ -12099,14 +12108,18 @@ msgstr "" "Proporciona autenticación utilizando aplicaciones HOTP y TOTP como FreeOTP, " "Google Authenticator o Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Clave de seguridad de hardware (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Proporciona autenticación mediante tokens de seguridad de hardware " "compatibles con FIDO U2F, como Yubikey." @@ -12138,6 +12151,24 @@ msgstr "Autenticación simple de dos factores" msgid "For testing purposes only!" msgstr "¡Solo para fines de prueba!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Clave de seguridad de hardware (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Proporciona autenticación mediante tokens de seguridad de hardware " +"compatibles con FIDO U2F, como Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12885,7 +12916,7 @@ msgid "This MySQL server does not support the %s storage engine." msgstr "" "Este servidor MySQL no es compatible con el motor de almacenamiento %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "¡El nombre de la clave primaria tiene que ser «PRIMARY»!" @@ -12898,39 +12929,39 @@ msgstr "Problemas con los índices de la tabla `%s`" msgid "Unknown table status:" msgstr "Estado de tabla desconocido:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "¡No se encontró la base de datos de origen «%s»!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "¡No se encontró la base de datos de destino «%s»!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "La base de datos no es válida:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "El nombre de la tabla no es válido:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "¡No se pudo cambiar el nombre de la tabla %1$s a %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabla %1$s ahora se llama %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "¡No se pudieron guardar las preferencias de interfaz!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12939,7 +12970,7 @@ msgstr "" "Falló la limpieza de las preferencia de interfaz de tablas (ver " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12950,15 +12981,15 @@ msgstr "" "no serán persistentes luego de actualizar esta página. Revise si cambió la " "estructura de la tabla." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "¡No se puede cambiar el nombre del índice a PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "No se han definido las partes del índice!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13117,14 +13148,14 @@ msgstr "Se borró la versión %1$s de %2$s." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Un entero de 1 byte; el rango con signo es de -128 a 127, el rango sin signo " "es de 0 a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13132,7 +13163,7 @@ msgstr "" "Un entero de 2 bytes; el rango con signo es de -32768 a 32767, el rango sin " "signo es de 0 a 65535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13140,7 +13171,7 @@ msgstr "" "Un entero de 3 bytes; el rango con signo es de -8388608 a 8388607, el rango " "sin signo es de 0 a 16777215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13148,7 +13179,7 @@ msgstr "" "Un entero de 4 bytes; el rango con signo es de 2147483648 a 2147483647, el " "rango sin signo es de 0 a 4294967295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13156,7 +13187,7 @@ msgstr "" "En entero de 8 bytes; el rango con signo es de -9223372036854775808 a " "9223372036854775807, el rango sin signo es de 0 a 18446744073709551615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13165,7 +13196,7 @@ msgstr "" "(valor predeterminado de 10), el mayor número posible de decimales (D) es 30 " "(valor predeterminado de 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13173,7 +13204,7 @@ msgstr "" "Un número de coma flotante pequeño; los valores posibles son de " "-3.402823466E+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13183,7 +13214,7 @@ msgstr "" "-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 y de " "2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13191,7 +13222,7 @@ msgstr "" "Sinónimo de DOUBLE (excepción: si el modo SQL «REAL_AS_FLOAT» está activo es " "sinónimo de FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13199,7 +13230,7 @@ msgstr "" "Una máscara de bits (M), almacenando M bits por valor (predeterminado de 1, " "máximo de 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13207,23 +13238,23 @@ msgstr "" "Sinónimo de TINYINT(1), un valor de cero es considerado falso, cualquier " "valor distinto de cero es considerado verdadero" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a " "«%2$s»" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13232,12 +13263,12 @@ msgstr "" "03:14:07» UTC almacenados como la cantidad de segundos desde el «epoch» («01-" "Ene-1970 00:00:00» UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Una marca temporal, el rango es de «%1$s» a «%2$s»" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13246,7 +13277,7 @@ msgstr "" "dígitos (2); los valores posibles son de 70 (1970) a 69 (2069) ó de 1901 a " "2155 y 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13255,7 +13286,7 @@ msgstr "" "siempre completada a la derecha con espacios hasta la longitud especificada " "al ser almacenada" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13264,7 +13295,7 @@ msgstr "" "Una cadena de longitud variable (%s), la longitud máxima está asociada al " "tamaño máximo de un registro" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13272,7 +13303,7 @@ msgstr "" "Una columna de texto con una longitud máxima de 255 (2^8 - 1) caracteres, " "almacenado con un prefijo de 1 byte que indica la longitud del valor en bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13281,7 +13312,7 @@ msgstr "" "almacenado con un prefijo de 2 bytes que indica la longitud del valor en " "bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13290,7 +13321,7 @@ msgstr "" "caracteres, almacenado con un prefijo de 3 bytes que indica la longitud del " "valor en bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13300,7 +13331,7 @@ msgstr "" "caracteres, almacenado con un prefijo de 4 bytes que indica la longitud del " "valor en bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13308,7 +13339,7 @@ msgstr "" "Similar al tipo CHAR, pero almacena cadenas binarias de bytes en lugar de " "cadenas de caracteres no binarios" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13316,7 +13347,7 @@ msgstr "" "Similar al tipo VARCHAR, pero almacena cadenas binarias de bytes en lugar de " "cadenas de caracteres no binarios" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13325,7 +13356,7 @@ msgstr "" "- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " "indica la cantidad de bytes en el valor" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13334,7 +13365,7 @@ msgstr "" "(2^24 - 1) bytes, almacenado con un prefijo de 3 bytes que indica la " "longitud del valor" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13343,7 +13374,7 @@ msgstr "" "(2^16 - 1) bytes, almacenado con un prefijo de 2 bytes que indica la " "longitud del valor" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13352,7 +13383,7 @@ msgstr "" "4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que " "indica la longitud del valor" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13360,43 +13391,43 @@ msgstr "" "Una enumeración, elegida de una lista de hasta 65535 valores o el valor " "especial de error ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Un único valor elegido de un conjunto de hasta 64 elementos" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un tipo que puede almacenar una geometría de cualquier tipo" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un punto en espacio de dos dimensiones" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Una curva con interpolación lineal entre puntos" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un polígono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Una colección de puntos" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Una colección de curvas con interpolación lineal entre puntos" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Una colección de polígonos" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Una colección de objetos geométricos de cualquier tipo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13404,7 +13435,7 @@ msgstr "" "Almacena y permite el acceso eficiente a datos en documentos JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13412,17 +13443,23 @@ msgstr "" "Destinado al almacenamiento de direcciones IPv6, así como direcciones IPv4, " "asumiendo el mapeo convencional de direcciones IPv4 en direcciones IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Almacena indentificadores únicos universales («UUID»)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Fecha y marca temporal" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -13449,139 +13486,139 @@ msgstr "" "No se pudo acceder a la base de datos de almacenamiento de configuración de " "phpMyAdmin." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Máximo: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Ene" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ago" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Oct" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dic" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Lun" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Mar" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mie" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Jue" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Vie" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Usuarios" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordenar" @@ -13759,7 +13796,7 @@ msgstr "todo lo anterior" msgid "neither of the above" msgstr "ninguno de los anteriores" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "¡La configuración ya existe y está deshabilitada!" @@ -13796,7 +13833,7 @@ msgstr "Ninguno" msgid "As defined:" msgstr "Personalizado:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13804,41 +13841,41 @@ msgstr "" "Sin privilegios suficientes para realizar esta operación; Por favor, " "consulte la documentación para más detalles" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Único" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texto completo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Espacial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expresión" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primera" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "después de %s" @@ -13968,7 +14005,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14039,7 +14076,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14308,7 +14345,7 @@ msgid "Search this table" msgstr "Buscar en esta tabla" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Añadir columna" @@ -14337,7 +14374,7 @@ msgstr "Pulsar para ordenar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14367,24 +14404,24 @@ msgstr "Comentario de la base de datos:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimir" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Empaquetado" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalidad" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "¡No se ha definido ningún índice!" @@ -15196,6 +15233,11 @@ msgstr[1] "%s tablas" msgid "Sum" msgstr "Número de filas" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continuar" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "De" @@ -15287,16 +15329,11 @@ msgstr "Eliminar columnas de la lista central" msgid "Make consistent with central list" msgstr "Hacer consistente con la lista central" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continuar" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "¿Está seguro?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15436,7 +15473,7 @@ msgstr "Tablas sin seguimiento" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Hacer seguimiento a la tabla" @@ -16160,17 +16197,17 @@ msgid "Other options" msgstr "Otras opciones" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Renombrar" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "La clave primaria ha sido eliminada." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "El índice %s ha sido eliminado." @@ -16493,11 +16530,35 @@ msgstr "" msgid "Verify" msgstr "Verificar" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Conecte el dispositivo FIDO U2F al puerto USB de su ordenador. A " +"continuación, confirme el registro en el dispositivo." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Conecte el dispositivo FIDO U2F al puerto USB de su ordenador. A " +"continuación, confirme el inicio de sesión en el dispositivo." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Vista:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Volver" @@ -16674,8 +16735,8 @@ msgstr "" "predeterminados." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configurar autenticación en dos pasos" @@ -16696,7 +16757,7 @@ msgstr "" "sesión utilizando solo la contraseña." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Desactivar la autenticación de doble factor" @@ -16713,6 +16774,7 @@ msgstr "" "dependencias opcionales para habilitar los backends de autentificación." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Faltan los siguientes paquetes de compositores:" @@ -16730,6 +16792,17 @@ msgstr "" "esta cuenta." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"El factor de doble autentificación no está disponible, por favor instale " +"dependencias opcionales para habilitar los backends de autentificación." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16737,7 +16810,7 @@ msgstr "" "La autenticación de dos factores no está disponible, habilite el " "almacenamiento de configuración de phpMyAdmin para usarla." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Ha activado el doble factor de autentificación." @@ -18913,7 +18986,7 @@ msgid "Start row:" msgstr "Fila de inicio:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Particiones" @@ -18995,7 +19068,7 @@ msgstr "Agregar a columnas centrales" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mover columnas" @@ -19003,33 +19076,33 @@ msgstr "Mover columnas" msgid "Move the columns by dragging them up and down." msgstr "Mueva las columnas arrastrándolas hacia arriba o hacia abajo." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Editar vista" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizar" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Vista de seguimiento" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Agregar %s columna(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "Al comienzo de la tabla" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Crear un índice en %s columna(s)" @@ -19870,9 +19943,6 @@ msgstr "Nombre de las columnas" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Almacena indentificadores únicos universales («UUID»)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/et.po b/po/et.po index c935a2899f..e46fb6d691 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-10-20 10:07+0000\n" "Last-Translator: Kristjan Räts \n" "Language-Team: Estonian %2$s lähedal)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9849,8 +9858,8 @@ msgstr "Vaata" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9862,7 +9871,7 @@ msgstr "Otsi" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9872,8 +9881,8 @@ msgid "Insert" msgstr "Lisa" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9882,14 +9891,14 @@ msgid "Privileges" msgstr "Õigused" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Tegevused" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Jälgimine" @@ -9897,12 +9906,12 @@ msgstr "Jälgimine" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Päästikud" @@ -9912,11 +9921,11 @@ msgstr "Päästikud" msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Päring" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Funktsioonid" @@ -9926,15 +9935,15 @@ msgstr "Funktsioonid" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Sündmused" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Kujundaja" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Kesksed veerud" @@ -9944,12 +9953,12 @@ msgid "User accounts" msgstr "Kasutajate kontod" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binaarne logi" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9957,21 +9966,21 @@ msgid "Replication" msgstr "Paljundamine" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Muutujad" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Mootorid" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Pluginad" @@ -10070,11 +10079,11 @@ msgstr "Uus" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10092,7 +10101,7 @@ msgstr "Uus" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10120,8 +10129,8 @@ msgstr "Uus" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10550,7 +10559,7 @@ msgstr "Kärbi" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Kustuta" @@ -10784,18 +10793,18 @@ msgstr "Andmete tõmmise valikud" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10807,7 +10816,7 @@ msgstr "Andmete tõmmistamine tabelile" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10816,11 +10825,11 @@ msgstr "Tühi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10837,9 +10846,9 @@ msgid "Default" msgstr "Vaikimisi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10848,8 +10857,8 @@ msgid "Links to" msgstr "Viitab aadressile" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10865,8 +10874,8 @@ msgid "Name" msgstr "Nimi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10875,23 +10884,23 @@ msgid "Definition" msgstr "Definitsioon" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10994,11 +11003,11 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Andmed:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktuur:" @@ -11023,15 +11032,15 @@ msgstr "Raporti pealkiri:" msgid "Dumping data" msgstr "Andmete tõmmistamine" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Päringu tulemuse andmed" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Vaata struktuuri" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Asendus" @@ -11109,7 +11118,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -11192,7 +11201,7 @@ msgstr "Tundub, et su andmebaas kasutab protseduure;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -11267,20 +11276,20 @@ msgstr "TABELI MEEDIATÜÜBID" msgid "RELATIONSHIPS FOR TABLE" msgstr "TABELI SEOSED" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Tegelik vaade on allpool)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Viga tabeli %s andmete lugemisel:" @@ -11593,7 +11602,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y kell %I:%M %p" @@ -11811,14 +11820,18 @@ msgstr "" "Võimaldab autentimist kasutades rakendusi HOTP ja TOTP; näiteks FreeOTP, " "Google Authenticator ja Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Riistvaraline turvavõti (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Võimaldab autentimist FIDO U2F toega riistvaralise pääsmikuga (nt Yubikey)." @@ -11847,6 +11860,23 @@ msgstr "Lihtne kaheastmeline autentimine" msgid "For testing purposes only!" msgstr "Ainult testimiseks!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Riistvaraline turvavõti (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Võimaldab autentimist FIDO U2F toega riistvaralise pääsmikuga (nt Yubikey)." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12578,7 +12608,7 @@ msgstr "%s on keelatud selle MySQL serveri jaoks." msgid "This MySQL server does not support the %s storage engine." msgstr "See MySQL server ei toeta %s varundusmootorit." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primaarvõtme nimi peab olema \"PRIMARY\"!" @@ -12591,39 +12621,39 @@ msgstr "Probleemid `%s` tabeli indeksitega" msgid "Unknown table status:" msgstr "Tabeli olek tundmatu:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähteandmebaasi `%s` ei leitud!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Sihtandmebaasi `%s` ei leitud!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Vigane andmebaas:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Vigane tabeli nimi:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Tabeli %1$s ümbernimetamine %2$s'ks ebaõnnestus!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tabeli uueks nimeks sai %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Tabeli kasutajaliidese eelistusi ei saanud salvestada!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12632,7 +12662,7 @@ msgstr "" "Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12642,15 +12672,15 @@ msgstr "" "Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui " "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Ei saa muuta indeksi nimeks PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Indeksi osasid pole defineeritud!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" @@ -12809,14 +12839,14 @@ msgstr "Versioon %1$s kokku %2$s. versioonist kustutati." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Ühebaidine täisarv, märgiga vahemik -128 kuni 127, märgita vahemik on 0 kuni " "255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12824,7 +12854,7 @@ msgstr "" "Kahebaidine täisarv, märgiga vahemik on -32,768 kuni 32,767, märgita vahemik " "is 0 kuni 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12832,7 +12862,7 @@ msgstr "" "Kolmebaidine täisarv, märgiga vahemik on -8,388,608 kuni 8,388,607, märgita " "vahemik on 0 kuni 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12840,7 +12870,7 @@ msgstr "" "Neljabaidine täisarv, märgiga vahemik on -2,147,483,648 kuni 2,147,483,647, " "märgita vahemik on 0 kuni 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12849,7 +12879,7 @@ msgstr "" "9,223,372,036,854,775,807, märgita vahemik on 0 kuni " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12857,7 +12887,7 @@ msgstr "" "Fikseeritud punktiga arv (M, D) - maksimaalne numbrite arv (M) on 65 " "(vaikimisi 10), maksimaalne kümnendkohtade arv (D) on 30 (vaikimisi 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12865,7 +12895,7 @@ msgstr "" "Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni " "-1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12875,14 +12905,14 @@ msgstr "" "-1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 kuni 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" "DOUBLE sünonüüm (erand: REAL_AS_FLOAT SQL režiimis on ta FLOAT'i sünonüüm)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -12890,7 +12920,7 @@ msgstr "" "Bitivälja tüüp (M), salvestab M bitti informatsiooni väärtuse kohta " "(vaikimisi on 1, maksimaalne on 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12898,21 +12928,21 @@ msgstr "" "TINYINT(1) sünonüüm, väärtust null tõlgendatakse väärana, mittenullist " "väärtust tõesena" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE alias" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Kuupäev, sobiv vahemik on %1$s kuni %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Kuupäeva ja aja kombinatsioon, sobiv vahemik on %1$s kuni %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12921,12 +12951,12 @@ msgstr "" "03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest " "(\"1970-01-01 00:00:00\" UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Aeg, vahemik on %1$s kuni %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12934,7 +12964,7 @@ msgstr "" "Neljanumbriline aastaarv (vaikimisi 4) või kahenumbriline (2) formaat. " "Lubatud väärtused on 70 (1970) kuni 69 (2069) või 1901 kuni 2155 ja 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12942,7 +12972,7 @@ msgstr "" "Fikseeritud pikkusega (0-255, vaikimisi 1) sõne, mis salvestamisel " "pikendatakse sobivasse pikkusesse paremal pool asuvate tühikute abil" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12951,7 +12981,7 @@ msgstr "" "Muutuva pikkusega (%s) sõne. Parim sobiv maksimaalne pikkus on rea " "maksimaalne suurus" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12959,7 +12989,7 @@ msgstr "" "TEXT veerg (maksimaalse pikkusega 255 (2^8 - 1) sümbolit) salvestatakse " "ühebitise eesliitega, mis märgib väärtuse pikkust baitides" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12967,7 +12997,7 @@ msgstr "" "TEXT veerg (maksimaalse pikkusega 65,535 (2^16 - 1) sümbolit) salvestatakse " "kahebitise eesliitega, mis märgib väärtuse pikkust baitides" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12975,7 +13005,7 @@ msgstr "" "TEXT veerg (maksimaalse pikkusega 16,777,215 (2^24 - 1) sümbolit) " "salvestatakse kolmebitise eesliitega, mis märgib väärtuse pikkust baitides" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12984,7 +13014,7 @@ msgstr "" "TEXT veerg (maksimaalse pikkusega 4,294,967,295 or 4GiB (2^32 - 1) sümbolit) " "salvestatakse neljabitise eesliitega, mis märgib väärtuse pikkust baitides" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -12992,7 +13022,7 @@ msgstr "" "Sarnane CHAR tüübile, kuid salvestab binaarse baidi sõned pigem " "mittebinaarse sümboli sõnedena" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13000,7 +13030,7 @@ msgstr "" "Sarnane VARCHAR tüübile, kuid salvestab binaarse baidi sõned pigem " "mittebinaarse sümboli sõnedena" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13008,7 +13038,7 @@ msgstr "" "BLOB veerg (maksimaalse pikkusega 255 (2^8 - 1) baiti) salvestatakse " "ühebaidise eesliitega, mis märgib väärtuse pikkust" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13016,7 +13046,7 @@ msgstr "" "BLOB veerg (maksimaalse pikkusega 16,777,215 (2^24 - 1) baiti) salvestatakse " "kolmebaidise eesliitega, mis märgib väärtuse pikkust" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13024,7 +13054,7 @@ msgstr "" "BLOB veerg (maksimaalse pikkusega 65,535 (2^16 - 1) baiti) salvestatakse " "kahebaidise eesliitega, mis märgib väärtuse pikkust" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13032,49 +13062,49 @@ msgstr "" "BLOB veerg (maksimaalse pikkusega 4,294,967,295 or 4GiB (2^32 - 1) baiti) " "salvestatakse neljabaidise eesliitega, mis märgib väärtuse pikkust" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "Loend, valitakse kuni 65535 väärtusest või spetsiaalne '' vea tunnus" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Üks väärtus, mis valitakse kuni 64 elemendiga hulgast" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Tüüp, mis suudab salvestada mistahes tüüpi geomeetriat" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Punkt kahemõõtmelises ruumis" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Punktidevaheline kaar koos sirgjoonega" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Hulktahukas" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Punktide kogum" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Punktidevaheliste sirgjoontega kaarte kogum" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Hulktahukate kogum" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Igat tüüpi geomeetriliste objektide kogum" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13082,7 +13112,7 @@ msgstr "" "Salvestab ja lubab efektiivse juurdepääsu JSON (JavaScript Object Notation) " "dokumentides olevatele andmetele" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13090,17 +13120,23 @@ msgstr "" "Mõeldud IPv6 aadresside salvestamiseks, aga ka IPv4 aadressidele, eeldades " "tavapärast IPv4 aadresside vastendamist IPv6 aadressideks" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Salvestab universaalselt unikaalse identifikaatori (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Arv" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Kuupäev ja aeg" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Ruumiline" @@ -13125,139 +13161,139 @@ msgstr "Ei saanud seadistust salvestada" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "phpMyAdmini häälestuse salvestuskoha andmebaasile puudub ligipääs." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jaan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Veebr" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Märts" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Juuni" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Juuli" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sept" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dets" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Püh" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Esm" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Tei" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Kol" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Nel" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Ree" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Lau" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PL" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "EL" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Kasutajad" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sorteeri" @@ -13430,7 +13466,7 @@ msgstr "mõlemad ülal nimetatuist" msgid "neither of the above" msgstr "mitte kumbki ülal nimetatuist" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Häälestus on juba olemas, häälestamine on keelatud!" @@ -13465,7 +13501,7 @@ msgstr "Puudub" msgid "As defined:" msgstr "Nagu määratud:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13473,41 +13509,41 @@ msgstr "" "Selle operatsiooni teostamiseks puuduvad sul õigused. Täiendavat teavet " "leiad dokumentatsioonist" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Ainulaadne" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Täistekst" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Ruumiline" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Väljend" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "esimene" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "peale %s" @@ -13637,7 +13673,7 @@ msgstr "Mootor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13708,7 +13744,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13977,7 +14013,7 @@ msgid "Search this table" msgstr "Otsi sellest tabelist" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Lisa veerg" @@ -14006,7 +14042,7 @@ msgstr "Kliki sorteerimiseks." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14036,24 +14072,24 @@ msgstr "Andmebaasi kommentaar:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Prindi" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Pakitud" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Hulk" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Indeksit pole määratud!" @@ -14855,6 +14891,11 @@ msgstr[1] "%s tabelit" msgid "Sum" msgstr "Summa" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Jätka" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Kohast" @@ -14946,16 +14987,11 @@ msgstr "Eemalda veerud kesksest nimekirjast" msgid "Make consistent with central list" msgstr "Vii keskse loendiga kooskõlla" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Jätka" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Oled sa kindel?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15095,7 +15131,7 @@ msgstr "Jälgimata tabelid" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Jälgi tabelit" @@ -15809,17 +15845,17 @@ msgid "Other options" msgstr "Muud valikud" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Nimeta ümber" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Primaarvõti on kustutatud." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "%s indeks on kustutatud." @@ -16138,11 +16174,35 @@ msgstr "" msgid "Verify" msgstr "Kinnita" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Palun ühenda oma FIDO U2F seade arvuti USB porti ning kinnita seadme " +"registreerimine." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Palun ühenda oma FIDO U2F seade arvuti USB porti ning kinnita meldimine " +"seadmega." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Vaade:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Mine tagasi" @@ -16313,8 +16373,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Saad lähtestada kõik sätted ja taastada nende vaikeväärtused." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Seadista kaheastmeline autentimine" @@ -16334,7 +16394,7 @@ msgstr "" "Keelates kaheastmelise autentimise saad jälle meldida ainult parooliga." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Keela kaheastmeline autentimine" @@ -16351,6 +16411,7 @@ msgstr "" "sõltuvused, et lubada autentimise taustprogrammid." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Järgmised komponeerija paketid puuduvad:" @@ -16367,6 +16428,17 @@ msgstr "" "häälestatud." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Kaheastmeline autentimine pole saadaval; palun paigalda täiendavad " +"sõltuvused, et lubada autentimise taustprogrammid." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16374,7 +16446,7 @@ msgstr "" "Kaheastmeline autentimine ei ole kasutatav. Selle kasutamieks luba " "phpMyAdmini häälestuse salvestuskoht." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Oled lubanud kaheastmelise autentimise." @@ -18506,7 +18578,7 @@ msgid "Start row:" msgstr "Alusta reaga:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Jaotised" @@ -18588,7 +18660,7 @@ msgstr "Lisa kesksesse nimekirja" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Liiguta veergusid" @@ -18596,33 +18668,33 @@ msgstr "Liiguta veergusid" msgid "Move the columns by dragging them up and down." msgstr "Veergusid saad liigutada nende lohistamisega üles ja alla." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Muuda vaadet" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normaliseeri" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Jälgi vaadet" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Lisa %s veerg(u)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "tabeli alguses" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Loo veergudele %s indeks" @@ -19468,9 +19540,6 @@ msgstr "Veergude nimed" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE alias" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Salvestab universaalselt unikaalse identifikaatori (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/eu.po b/po/eu.po index 7949975241..7606fcb617 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:34+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Basque \n" "Language-Team: Persian \n" "Language-Team: Finnish %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10148,8 +10157,8 @@ msgstr "Selaa" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10161,7 +10170,7 @@ msgstr "Etsi" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10171,8 +10180,8 @@ msgid "Insert" msgstr "Lisää rivi" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10181,14 +10190,14 @@ msgid "Privileges" msgstr "Käyttöoikeudet" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Toiminnot" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Seuranta" @@ -10196,12 +10205,12 @@ msgstr "Seuranta" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Herättimet" @@ -10211,11 +10220,11 @@ msgstr "Herättimet" msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Haku" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutiinit" @@ -10225,15 +10234,15 @@ msgstr "Rutiinit" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Tapahtumat" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Suunnittelija" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Keskisarakkeet" @@ -10243,12 +10252,12 @@ msgid "User accounts" msgstr "Käyttäjätilit" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binääriloki" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10256,21 +10265,21 @@ msgid "Replication" msgstr "Kahdennus" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Muuttujat" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Merkistöt" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Moottorit" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Liitännäiset" @@ -10382,11 +10391,11 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10404,7 +10413,7 @@ msgstr "" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10436,8 +10445,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10843,7 +10852,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Tuhoa" @@ -11085,18 +11094,18 @@ msgstr "Tiedon vedostusasetukset" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Vedos taulusta" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11108,7 +11117,7 @@ msgstr "Vedos taulusta" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11117,11 +11126,11 @@ msgstr "Tyhjä" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11138,9 +11147,9 @@ msgid "Default" msgstr "Oletusarvo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11149,8 +11158,8 @@ msgid "Links to" msgstr "Viittaa sarakkeeseen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11166,8 +11175,8 @@ msgid "Name" msgstr "Nimi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11176,23 +11185,23 @@ msgid "Definition" msgstr "Määritys" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -11313,13 +11322,13 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #, fuzzy #| msgid "Data" msgid "Data:" msgstr "Tietoa" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 #, fuzzy #| msgid "Structure" msgid "Structure:" @@ -11350,19 +11359,19 @@ msgstr "Raportin otsikko:" msgid "Dumping data" msgstr "Vedos taulusta" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Kyselyn tulokset" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "rakenne" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11438,7 +11447,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -11507,7 +11516,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11598,21 +11607,21 @@ msgstr "MIME-TYYPIT TAULULLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Näkymän rakenne" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Allows reading data." msgid "Error reading data for table %s:" @@ -11958,7 +11967,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" @@ -12197,14 +12206,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12239,6 +12248,16 @@ msgstr "Sisäänkirjatumistunnitautuminen" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13051,7 +13070,7 @@ msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." msgid "This MySQL server does not support the %s storage engine." msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Perusavaimen nimen on oltava PRIMARY!" @@ -13064,39 +13083,39 @@ msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" msgid "Unknown table status:" msgstr "Tuntematon taulun tila:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähdetietokanta '%s' ei löytynyt!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Kohde tietokantaa '%s' ei löydy!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Virheellinen tietokanta:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Virheellinen taulukon nimi:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Virhe nimettäessä uudelleen taulua %1$s muotoon %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Taulu %1$s on nimeltään %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Taulukon käyttöliittymäasetuksia ei voida tallentaa!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13105,7 +13124,7 @@ msgstr "" "Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13116,15 +13135,15 @@ msgstr "" "eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne " "muuttunut." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" @@ -13296,14 +13315,14 @@ msgstr "Luo versio %s kohteesta %s.%s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-tavuinen kokonaisluku, etumerkillisenä arvot välillä -128 - 127, " "etumerkittömänä arvot välillä 0 - 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13311,7 +13330,7 @@ msgstr "" "2-tavuinen kokonaisluku, etumerkillisenä arvot olvat -32768 - 32767, " "etumerkittömänä arvot ovat 0 - 65535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13319,7 +13338,7 @@ msgstr "" "3-tavuinen kokonaisluku, etumerkillisenä arvot ovat -8388608 - 8388607, " "etumerkittömänä arvot ovat 0 - 16777215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13327,7 +13346,7 @@ msgstr "" "4-tavuinen kokonaisluku, etumerkillisenä arvot ovat -2147483648 - " "2147483647, etumerkittämänä arvot ovat 0 - 4294967295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13335,7 +13354,7 @@ msgstr "" "8-tavuinen kokonaisluku, etumerkillisenä arvot ovat -9223372036854775808 - " "9223372036854775807, etumerkittämänä arvot ovat 0 - 18446744073709551615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13343,7 +13362,7 @@ msgstr "" "Desimaaliluku (M,D) - kokonaislukuosan numeroiden maksimäärä (M) on 65 " "(oletuksena 10), desimaaliosan numeroiden maksimäärä (D) on 30 (oletuksena 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13351,7 +13370,7 @@ msgstr "" "Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - " "-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13361,7 +13380,7 @@ msgstr "" "-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 - 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13369,7 +13388,7 @@ msgstr "" "Synonyymi DOUBLE:lle (poikkeus: REAL_AS_FLOAT SQL moodissa se on synonyymi " "FLOAT:lle)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13377,7 +13396,7 @@ msgstr "" "Bittikenttä tyyppi (M), sisältää M verran bittejä arvoa kohti (oletuksena on " "1, maksimi on 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13385,21 +13404,21 @@ msgstr "" "Synonyymi TINYINT(1), arvo nolla ilmoitetaan false, muut arvot ilmoitetaan " "true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Alias arvolle BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Päiväys, pitää olla välillä %1$s - %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Päivämäärän ja ajan yhdistelmä, tuettu alue on %1$s - %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13407,12 +13426,12 @@ msgstr "" "Aikaleima, alue on 1970-01-01 00:00:01 UTC 01.09.2038 03:14:07 UTC, " "tallentaa monta sekunteina, koska aikakausi on (1970-01-01 00:00:00 UTC )" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Aika, mahdollinen välillä %1$s - %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13420,7 +13439,7 @@ msgstr "" "Vuosi on nelinumeroinen (4, oletus) tai kaksinumeroinen (2) muodossa, " "sallitut arvot ovat 70 (1970), 69 (2069) tai 1901-2155 ja 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13428,7 +13447,7 @@ msgstr "" "Pituudeltaan (0-255, oletus 1) merkkijono, johon on lisätty välilyöntejä " "määrittämään pituutta tallennettuna" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13436,7 +13455,7 @@ msgid "" msgstr "" "Vaihtelevan pituinen (%s) merkkijono, tehokas enimmäispituus on enimmäisarvo" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13444,7 +13463,7 @@ msgstr "" "A TEXT sarakkeen enimmäispituus 255 (2 ^ 8 - 1) merkkiä, tallennettu " "yksitavuisena etuliitteenä, joka osoittaa arvon pituuden tavuina" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13452,7 +13471,7 @@ msgstr "" "A TEXT sarakkeen enimmäispituus 65,535 (2^16-1) merkkiä, tallennettu " "kaksitavuisena etuliitteenä, joka osoittaa arvon pituuden tavuina" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13460,7 +13479,7 @@ msgstr "" "A TEXT sarakkeen enimmäispituus 16,777,215 (2^24-1) merkkiä, tallennettu " "kolmen tavun etuliitteenä, joka osoittaa arvon pituuden tavuina" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13469,7 +13488,7 @@ msgstr "" "A TEXT sarakkeen enimmäispituus 4,294,967,295 tai 4GiB (2^32-1) merkkiä, " "tallennetaan neljän tavun etuliirteenä, joka osoittaa arvon pituuden tavuina" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13477,7 +13496,7 @@ msgstr "" "Samanlainen kuin CHAR tyyppi, mutta tallentaa binaariset merkkijonot " "mieluummin kuin ei binaariset merkkijonot" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13485,7 +13504,7 @@ msgstr "" "Samanlainen kuin VARCHAR tyyppi, mutta tallentaa binaariset merkkijonot " "mieluummin ei binaariset merkkijonot" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13493,7 +13512,7 @@ msgstr "" "A BLOB sarakkeen enimmäispituus 255 (2^8-1) tavua, tallennettu yksitavuisena " "etuliitteenä, joka ilmaisee arvon pituuden" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13501,7 +13520,7 @@ msgstr "" "A BLOB sarakkeen enimmäispituus 16,777,215 (2^24-1) tavua, tallennetaan " "kolmen tavun etuliiteenä, joka ilmaisee arvon pituuden" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13509,7 +13528,7 @@ msgstr "" "A BLOB sarakkeen enimmäispituus 65,535 (2^16-1) tavua, tallennettu " "kaksitavuisena etuliiteenä, joka ilmaisee arvon pituuden" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13517,50 +13536,50 @@ msgstr "" "A BLOB sarakkeen enimmäispituus 4,294,967,295 tai 4GiB (2^32-1) tavua, " "varastoitu nelitavuisena etuliiteenä, joka ilmaisee arvon pituuden" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" "Luettelo, listalta valittu jopa 65,535 arvoa tai erityinen \" virhe arvo" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Yksittäinen arvo, joka on valittu 64 jäsenen joukosta" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Tyyppi, joka voi tallentaa mitä tahansa geometriaa" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Kohta 2-ulotteisessa avaruudessa" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Käyrän pisteiden välisen lineaarinen interpolointi" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Monikulmio" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Kokoelma pisteitä" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Käyrien pisteiden välisen lineaarisen interpolointi kokoelma" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Kokoelma polygoneja" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Kokoelma mitä tahansa geometrisiä objekteja" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13568,23 +13587,29 @@ msgstr "" "Mahdollistaa tehokkaan pääsyn JSON-tiedostojen (JavaScript Object Notation) " "tietoihin" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Tallentaa maailmanlaajuista yksilöllistä tunnistetta (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Lukuarvo" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Päiväys ja aika" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Geometrinen" @@ -13617,85 +13642,85 @@ msgstr "Asetuksia ei voi ladata tai tallentaa" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "Puuttuvat phpMyAdmin konfiguraatiomuistin taulut" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Tammi" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Helmi" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Maalis" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Kesä" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Heinä" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Elo" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Syys" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Loka" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Marras" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Joulu" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13703,55 +13728,55 @@ msgid "Sun" msgstr "Su" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Ma" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ti" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Ke" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "To" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Pe" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "La" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "IP" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AP" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Käyttäjät" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Järjestä" @@ -13924,7 +13949,7 @@ msgstr "molemmat yltä" msgid "neither of the above" msgstr "ei kumpikaan yltä" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13963,7 +13988,7 @@ msgstr "Ei mitään" msgid "As defined:" msgstr "Määritelty:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -13971,43 +13996,43 @@ msgid "" "to the documentation for more details" msgstr "Sinulla ei ole riittäviä oikeuksia!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Uniikki" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Koko teksti" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Tilaa koskeva" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "Pakkaus" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" @@ -14175,7 +14200,7 @@ msgstr "Moottorit" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14264,7 +14289,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14558,7 +14583,7 @@ msgid "Search this table" msgstr "Hae tästä taulusta" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Lisää sarake" @@ -14587,7 +14612,7 @@ msgstr "Järjestä napsauttamalla." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14621,24 +14646,24 @@ msgstr "Tietokannan kommentti" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Tulosta" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Pakattu" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinaliteetti" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" @@ -15588,6 +15613,11 @@ msgstr[1] "%s taulua" msgid "Sum" msgstr "Summa" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Jatka" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy #| msgid "Fr" @@ -15695,16 +15725,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "CHAR-tekstikentän sarakkeet" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Jatka" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Oletko varma?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15854,7 +15879,7 @@ msgstr "Seuraamattomat taulut" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Seuraa taulua" @@ -16665,18 +16690,18 @@ msgid "Other options" msgstr "Valinnat" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy msgid "Rename" msgstr "Nimeä taulu uudelleen" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Perusavain on poistettu." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indeksi %s on poistettu." @@ -16995,6 +17020,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views" @@ -17002,6 +17038,7 @@ msgid "View:" msgstr "Näkymät" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -17201,8 +17238,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -17227,7 +17264,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -17246,6 +17283,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -17259,6 +17297,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -17269,7 +17312,7 @@ msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " "storage-kantaa" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19804,7 +19847,7 @@ msgid "Start row:" msgstr "Aloitusrivi" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -19913,7 +19956,7 @@ msgstr "CHAR-tekstikentän sarakkeet" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" @@ -19923,40 +19966,40 @@ msgstr "Poista sarake/sarakkeet" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Tulostusversio" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy #| msgid "Track table" msgid "Track view" msgstr "Seuraa taulua" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "Taulun alkuun" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20733,9 +20776,6 @@ msgstr "Sarakkeiden nimet" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Alias arvolle BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Tallentaa maailmanlaajuista yksilöllistä tunnistetta (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/fil.po b/po/fil.po index 257d19547e..f7436afe3e 100644 --- a/po/fil.po +++ b/po/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2021-01-22 03:17+0000\n" "Last-Translator: William Desportes \n" "Language-Team: Filipino \n" "Language-Team: French %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10095,8 +10104,8 @@ msgstr "Parcourir" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10108,7 +10117,7 @@ msgstr "Rechercher" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10118,8 +10127,8 @@ msgid "Insert" msgstr "Insérer" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10128,14 +10137,14 @@ msgid "Privileges" msgstr "Privilèges" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Opérations" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Suivi" @@ -10143,12 +10152,12 @@ msgstr "Suivi" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Déclencheurs" @@ -10158,11 +10167,11 @@ msgstr "Déclencheurs" msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Requête" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Procédures stockées" @@ -10172,15 +10181,15 @@ msgstr "Procédures stockées" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Évènements" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Concepteur" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Colonnes centrales" @@ -10190,12 +10199,12 @@ msgid "User accounts" msgstr "Comptes utilisateurs" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Journal binaire" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10203,21 +10212,21 @@ msgid "Replication" msgstr "Réplication" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variables" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Moteurs" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Extensions" @@ -10317,11 +10326,11 @@ msgstr "Nouvelle colonne" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10339,7 +10348,7 @@ msgstr "Nouvelle colonne" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10367,8 +10376,8 @@ msgstr "Nouvel évènement" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10804,7 +10813,7 @@ msgstr "Tronquer" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Supprimer" @@ -11042,18 +11051,18 @@ msgstr "Options de déchargement des données" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Déchargement des données de la table" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11065,7 +11074,7 @@ msgstr "Déchargement des données de la table" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11074,11 +11083,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11095,9 +11104,9 @@ msgid "Default" msgstr "Valeur par défaut" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11106,8 +11115,8 @@ msgid "Links to" msgstr "Est relié à" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11123,8 +11132,8 @@ msgid "Name" msgstr "Nom" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11133,23 +11142,23 @@ msgid "Definition" msgstr "Définition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -11252,11 +11261,11 @@ msgid "Database:" msgstr "Base de données :" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Données :" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Structure :" @@ -11281,15 +11290,15 @@ msgstr "Titre du rapport :" msgid "Dumping data" msgstr "Déchargement des données" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Résultats de la requête" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Structure des vues" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Remplacement" @@ -11368,7 +11377,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Tronquer la table avant d'insérer" @@ -11452,7 +11461,7 @@ msgstr "Il semble que la base de données utilise des procédures ;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "l'exportation d'alias peut ne pas fonctionner de manière fiable dans tous " @@ -11528,20 +11537,20 @@ msgstr "TYPES MIME POUR LA TABLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Il semble que la table utilise des déclencheurs ;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure de la vue %s exportée comme une table" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Voir ci-dessous la vue réelle)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Erreur de lecture des données pour la table %s :" @@ -11860,7 +11869,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" @@ -12086,14 +12095,18 @@ msgstr "" "Fournit une authentification avec des applications HOTP et TOTP comme " "FreeOTP, Google Authenticator ou Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Clé de sécurité matérielle (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Fournit une authentification avec des jetons de sécurité matériels prenant " "en charge FIDO U2F, tel qu'un Yubikey." @@ -12123,6 +12136,24 @@ msgstr "Authentification simple à deux facteurs" msgid "For testing purposes only!" msgstr "Seulement pour test !" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Clé de sécurité matérielle (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Fournit une authentification avec des jetons de sécurité matériels prenant " +"en charge FIDO U2F, tel qu'un Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12874,7 +12905,7 @@ msgstr "%s a été désactivé sur ce serveur MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ce serveur MySQL ne prend pas en charge le moteur de stockage %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nom d'une clé primaire doit être « PRIMARY » !" @@ -12887,39 +12918,39 @@ msgstr "Il y a des problèmes avec les index de la table « %s »" msgid "Unknown table status:" msgstr "État de la table inconnu :" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "La base de données source « %s » n'existe pas !" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "La base de données cible « %s » n'existe pas !" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Base de données invalide :" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nom de table invalide :" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erreur lors du renommage de %1$s en %2$s !" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La table %1$s se nomme maintenant %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Impossible d'enregistrer les préférences d'interface de tables !" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12928,7 +12959,7 @@ msgstr "" "Échec lors de la tentative de vidage de la table des préférences UI (voir " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12939,15 +12970,15 @@ msgstr "" "sera pas persistant après actualisation de cette page. Merci de vérifier si " "la structure de la table a changé." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "L'index ne peut être renommé en PRIMARY !" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index !" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13109,14 +13140,14 @@ msgstr "La version %1$s de %2$s a été supprimée." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Un nombre entier de 1 octet. La fourchette des nombres avec signe est de " "-128 à 127. Pour les nombres sans signe, c'est de 0 à 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13124,7 +13155,7 @@ msgstr "" "Un nombre entier de 2 octets. La fourchette des nombres avec signe est de " "-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13132,7 +13163,7 @@ msgstr "" "Un nombre entier de 3 octets. La fourchette des nombres avec signe est de -8 " "388 608 à 8 388 607. Pour les nombres sans signe, c'est de 0 à 16 777 215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13141,7 +13172,7 @@ msgstr "" "147 483 648 à 2 147 483 647. Pour les entiers positifs, c'est de 0 à 4 294 " "967 295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13150,7 +13181,7 @@ msgstr "" "223 372 036 854 775 808 à 9 223 372 036 854 775 807. Pour les nombres sans " "signe, c'est de 0 à 18 446 744 073 709 551 615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13159,7 +13190,7 @@ msgstr "" "65 (10 par défaut), le nombre maximum de décimales (D) est de 30 (0 par " "défaut)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13167,7 +13198,7 @@ msgstr "" "Un petit nombre en virgule flottante. La fourchette des valeurs est " "-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13177,7 +13208,7 @@ msgstr "" "est -1.7976931348623157E+308 à -2.2250738585072014E-308, 0, et " "2.2250738585072014E-308 à 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13185,7 +13216,7 @@ msgstr "" "Synonyme de DOUBLE (exception : dans le mode SQL REAL_AS_FLOAT, c'est un " "synonyme de FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13193,7 +13224,7 @@ msgstr "" "Une colonne contenant des bits (M), stockant M bits par valeur (1 par " "défaut, maximum 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13201,22 +13232,22 @@ msgstr "" "Un synonyme de TINYINT(1), une valeur de zéro signifie faux, une valeur non-" "zéro signifie vrai" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un alias pour BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Une date, la fourchette est de «%1$s» à «%2$s»" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Une combinaison date et heure, la fourchette est de « %1$s » à « %2$s »" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13225,12 +13256,12 @@ msgstr "" "2038-01-09 03:14:07 UTC, en nombre de secondes depuis le moment de référence " "(1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Une heure, la fourchette est de %1$s à %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13238,7 +13269,7 @@ msgstr "" "Une année à quatre chiffres (4 par défaut) ou à deux chiffres (2), la " "fourchette est de 70 (1970) à 69 (2069) ou 1901 à 2155 ainsi que 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13246,7 +13277,7 @@ msgstr "" "Une chaîne de longueur fixe (0-255, 1 par défaut) qui est toujours complétée " "à droite par des espaces lorsqu'enregistrée" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13255,7 +13286,7 @@ msgstr "" "Une chaîne de longueur variable (%s), la longueur effective réelle dépend de " "la taille maximale d'une ligne" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13264,7 +13295,7 @@ msgstr "" "caractères, stockée avec un préfixe d'un octet indiquant la longueur de la " "valeur en octets" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13273,7 +13304,7 @@ msgstr "" "stockée avec un préfixe de deux octets indiquant la longueur de la valeur en " "octets" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13282,7 +13313,7 @@ msgstr "" "caractères, stockée avec un préfixe de trois octets indiquant la longueur de " "la valeur en octets" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13292,7 +13323,7 @@ msgstr "" "1) caractères, stockée avec un préfixe de quatre octets indiquant la " "longueur de la valeur en octets" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13300,7 +13331,7 @@ msgstr "" "Similaire au type CHAR, mais stocke des chaînes binaires au lieu de chaînes " "non binaires" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13308,7 +13339,7 @@ msgstr "" "Similaire au type VARCHAR, mais stocke des chaînes binaires au lieu de " "chaînes non binaires" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13316,7 +13347,7 @@ msgstr "" "Une colonne BLOB d'une longueur maximale de 255 (2^8 - 1) octets, stockée " "avec un préfixe d'un octet indiquant la longueur de la valeur" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13324,7 +13355,7 @@ msgstr "" "Une colonne BLOB d'une longueur maximale de 16 777 215 (2^24 - 1) octets, " "stockée avec un préfixe de trois octets indiquant la longueur de la valeur" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13332,7 +13363,7 @@ msgstr "" "Une colonne BLOB d'une longueur maximale de 65 535 (2^16 - 1) octets, " "stockée avec un préfixe de quatre octets indiquant la longueur de la valeur" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13341,7 +13372,7 @@ msgstr "" "1), stockée avec un préfixe de quatre octets indiquant la longueur de la " "valeur" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13349,44 +13380,44 @@ msgstr "" "Une énumération, choisie parmi une liste comportant jusqu'à 65 535 valeurs " "ou la valeur spéciale '' indiquant une erreur" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" "Une valeur unique choisie parmi un ensemble comportant jusqu'à 64 membres" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un type pouvant stocker une valeur géométrique de tout type" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un point dans un espace à deux dimensions" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Une courbe avec interpolation linéaire entre les points" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un polygone" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Une collection de points" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Une collection de courbes avec interpolation linéaire entre les points" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Une collection de polygones" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Une collection d'objets de géométrie de tout type" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13394,7 +13425,7 @@ msgstr "" "Stocke et permet un accès efficace aux données dans les documents JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13402,17 +13433,23 @@ msgstr "" "Destiné au stockage des adresses IPv6, ainsi que des adresses IPv4 en " "supposant un mappage conventionnel des adresses IPv4 en adresses IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Contient un identificateur universellement unique (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numérique" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Date et l'heure" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -13439,139 +13476,139 @@ msgstr "" "La base de données de stockage de configuration de phpMyAdmin n'a pas pu " "être accédée." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Taille maximale : %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "jan." #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "fév." #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mars" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "avr." #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "juin" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "juil." #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "août" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sep." #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "oct." #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov." #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "déc." #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "dim." #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "lun." #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "mar." #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "mer." #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "jeu." #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "ven." #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "sam." -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jour(s), %s heure(s), %s minute(s) et %s seconde(s)" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Utilisateurs" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Tri" @@ -13744,7 +13781,7 @@ msgstr "tous les deux ci-dessus" msgid "neither of the above" msgstr "aucun des deux ci-dessus" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" "Il existe déjà une configuration, le programme d’installation est désactivé !" @@ -13780,7 +13817,7 @@ msgstr "Aucun(e)" msgid "As defined:" msgstr "Tel que défini :" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13788,41 +13825,41 @@ msgstr "" "L'utilisateur n'a pas les privilèges suffisants pour effectuer cette " "opération ; merci de se référer à la documentation pour plus de détails" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unique" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texte entier" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expression" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "en premier" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "après %s" @@ -13952,7 +13989,7 @@ msgstr "Moteur" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14024,7 +14061,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14295,7 +14332,7 @@ msgid "Search this table" msgstr "Chercher dans cette table" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Ajouter une colonne" @@ -14324,7 +14361,7 @@ msgstr "Cliquer pour trier." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14354,24 +14391,24 @@ msgstr "Commentaire de base de données :" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimer" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Compressé" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalité" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Aucun index n'est défini !" @@ -15176,6 +15213,11 @@ msgstr[1] "%s tables" msgid "Sum" msgstr "Somme" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continuer" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Depuis" @@ -15267,16 +15309,11 @@ msgstr "Supprimer les colonnes de la liste centrale" msgid "Make consistent with central list" msgstr "Rendre conforme à la liste centrale" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continuer" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Faut-il confirmer ?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15416,7 +15453,7 @@ msgstr "Tables ne faisant pas l'objet d'un suivi" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Suivre la table" @@ -16138,17 +16175,17 @@ msgid "Other options" msgstr "Autres options" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Renommer" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "La clé primaire a été supprimée." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "L'index %s a été supprimé." @@ -16472,11 +16509,35 @@ msgstr "" msgid "Verify" msgstr "Vérifier" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Merci de connecter le périphérique FIDO U2F à un port USB de l'ordinateur, " +"puis de confirmer l'enregistrement sur l'appareil." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Merci de connecter le périphérique FIDO U2F à un port USB de l'ordinateur, " +"puis de confirmer l'identification sur l'appareil." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Vue :" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Retour" @@ -16653,8 +16714,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Tous les paramètres peuvent être ramenés à leur valeur par défaut." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configurer l'authentification à deux facteurs" @@ -16675,7 +16736,7 @@ msgstr "" "de passe seul sera de nouveau possible." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Désactiver l'authentification à deux facteurs" @@ -16692,6 +16753,7 @@ msgstr "" "les dépendances optionnelles pour activer les services d'authentification." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Les paquets composer suivants sont manquants :" @@ -16709,6 +16771,17 @@ msgstr "" "ce compte." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"L'authentification à deux facteurs n'est pas disponible, merci d'installer " +"les dépendances optionnelles pour activer les services d'authentification." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16716,7 +16789,7 @@ msgstr "" "L'authentification à deux facteurs n'est pas disponible ; activer le " "stockage de configuration phpMyAdmin pour l'utiliser." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "L'authentification à deux facteurs est activée." @@ -18892,7 +18965,7 @@ msgid "Start row:" msgstr "Ligne de départ :" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitions" @@ -18974,7 +19047,7 @@ msgstr "Ajouter à la liste centrale" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Déplacer des colonnes" @@ -18982,33 +19055,33 @@ msgstr "Déplacer des colonnes" msgid "Move the columns by dragging them up and down." msgstr "Déplacer les colonnes en les faisant glisser vers le haut ou le bas." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Éditer la vue" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Suggérer des optimisations de structure" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normaliser" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Suivre la vue" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "en début de table" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Créer un index sur %s colonnes" @@ -19884,9 +19957,6 @@ msgstr "Noms de colonnes" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un alias pour BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Contient un identificateur universellement unique (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/fy.po b/po/fy.po index cd25aaa20b..7ba75a8d8c 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2015-12-24 23:02+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian \n" "Language-Team: Galician %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10556,8 +10565,8 @@ msgstr "Visualizar" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10569,7 +10578,7 @@ msgstr "Buscar" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10579,8 +10588,8 @@ msgid "Insert" msgstr "Inserir" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10589,14 +10598,14 @@ msgid "Privileges" msgstr "Privilexios" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operacións" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Seguimento" @@ -10604,12 +10613,12 @@ msgstr "Seguimento" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Disparadores" @@ -10619,11 +10628,11 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Consulta" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutinas" @@ -10633,15 +10642,15 @@ msgstr "Rutinas" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Acontecementos" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Deseñador" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Columnas centrais" @@ -10651,12 +10660,12 @@ msgid "User accounts" msgstr "Contas de usuario" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Rexistro binario" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10664,21 +10673,21 @@ msgid "Replication" msgstr "Replicación" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variábeis" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motores" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Engadidos" @@ -10790,11 +10799,11 @@ msgstr "Nova" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10812,7 +10821,7 @@ msgstr "Nova" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10847,8 +10856,8 @@ msgstr "Novo" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -11255,7 +11264,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Eliminar" @@ -11492,18 +11501,18 @@ msgstr "Opcións de envorcado dos datos" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11515,7 +11524,7 @@ msgstr "A extraer os datos da táboa" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11524,11 +11533,11 @@ msgstr "Nulo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11545,9 +11554,9 @@ msgid "Default" msgstr "Predeterminado" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11556,8 +11565,8 @@ msgid "Links to" msgstr "Liga a" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11573,8 +11582,8 @@ msgid "Name" msgstr "Nome" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11583,23 +11592,23 @@ msgid "Definition" msgstr "Definición" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -11704,11 +11713,11 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Datos:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Estrutura:" @@ -11737,19 +11746,19 @@ msgstr "Título do informe:" msgid "Dumping data" msgstr "A extraer os datos da táboa" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Resultados da consulta" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "estrutura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11832,7 +11841,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -11916,7 +11925,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -12007,21 +12016,21 @@ msgstr "TIPOS MIME PARA A TÁBOA" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Estrutura para a vista" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Error reading data:" msgid "Error reading data for table %s:" @@ -12348,7 +12357,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" @@ -12591,14 +12600,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12633,6 +12642,16 @@ msgstr "Autenticación mediante Signon" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13438,7 +13457,7 @@ msgstr "%s foi desactivado neste servidor de MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primaria debe ser «PRIMARY»!" @@ -13451,39 +13470,39 @@ msgstr "Problemas cos índices da táboa «%s»" msgid "Unknown table status:" msgstr "Estado da táboa descoñecido:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de orixe «%s»!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de destino «%s»!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "A base de datos non é válida:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "O nome da táboa non é válido:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Produciuse un erro ao mudarlle o nome á táboa %1$s para %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A táboa %1$s foi renomeada a %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Non foi posíbel gardar as preferencias de IU da táboa!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13492,7 +13511,7 @@ msgstr "" "Produciuse un erro ao limpar as preferencias de IU da táboa (vexa " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13503,15 +13522,15 @@ msgstr "" "persistentes despois de anovar esta páxina. Comprobe se se modificou a " "estrutura da táboa." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Non se pode facer que este índice sexa PRIMARIO!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Non se definiron partes do índice!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13673,14 +13692,14 @@ msgstr "Crear versión %1$s de %2$s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Creouse a versión %1$s; activouse o seguimento de %2$s." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Un enteiro de un byte; o intervalo asinado é desde -128 até 127; o intervalo " "sen asinar é desde 0 até 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13688,7 +13707,7 @@ msgstr "" "Un enteiro de dous bytes; o intervalo asinado é desde -32.768 até 32.767; o " "intervalo sen asinar é desde 0 até 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13696,7 +13715,7 @@ msgstr "" "Un enteiro de tres bytes; o intervalo asinado é desde -8.388.608 até " "8.388.607; o intervalo sen asinar é desde 0 até 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13704,7 +13723,7 @@ msgstr "" "Un enteiro de catro bytes; o intervalo asinado é desde -2.147.483.648 até " "2.147.483.647; o intervalo sen asinar é desde 0 até 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13713,7 +13732,7 @@ msgstr "" "-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " "asinar é desde 0 até 18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13721,7 +13740,7 @@ msgstr "" "Un número de punto fixo (M, D) - o número máximo de díxitos (M) é 65 (por " "omisión, 10); o número máximo de decimais (D) é 30 (por omisión, 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13730,7 +13749,7 @@ msgstr "" "-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até " "3,402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13740,7 +13759,7 @@ msgstr "" "son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 " "e2,2250738585072014E-308 até 1,7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13748,7 +13767,7 @@ msgstr "" "Sinónimo de DOUBLE (excepción: no modo de SQL REAL_AS_FLOAT é sinónimo de " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13756,7 +13775,7 @@ msgstr "" "Un tipo de campo de bits (M) que almacena M bits por valor (por omisión é 1; " "o máximo é 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13764,22 +13783,22 @@ msgstr "" "Un sinónimo de TINYINT(1); o valor cero considérase falso; os valores " "diferentes de cero considéranse verdadeiros" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un alias de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Unha data; o intervalo aceptado é desde %1$s até %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Unha combinación de data e hora; o intervalo aceptado é desde %1$s até %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13788,12 +13807,12 @@ msgstr "" "2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época " "(1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Unha hora; o intervalo é desde %1$s até %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13801,7 +13820,7 @@ msgstr "" "Un ano nos formatos de catro díxitos (4, por omisión) ou dous díxitos (2); " "os valores permitidos son 70 (1970) a 69 (2069) ou 1901 a 2155 e 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13809,7 +13828,7 @@ msgstr "" "Unha cadea de lonxitude fixa (0-255, 1 por omisión) que sempre se enche á " "dereita con espazos até a lonxitude indicada cando se almacena" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13818,7 +13837,7 @@ msgstr "" "Unha cadea de lonxitude variábel (%s); a lonxitude efectiva máxima está " "suxeita ao tamaño máximo da fileira" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13826,7 +13845,7 @@ msgstr "" "Unha columna tipo TEXTO cunha lonxitude máxima de 255 (2^8 - 1) caracteres, " "almacenada nun prefixo de un byte que indica a lonxitude do valor en bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13835,7 +13854,7 @@ msgstr "" "caracteres, almacenada nun prefixo de un byte que indica a lonxitude do " "valor en bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13844,7 +13863,7 @@ msgstr "" "caracteres, almacenada nun prefixo de un byte que indica a lonxitude do " "valor en bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13854,7 +13873,7 @@ msgstr "" "(2^32 - 1) caracteres, almacenada nun prefixo de un byte que indica a " "lonxitude do valor en bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13862,7 +13881,7 @@ msgstr "" "Semellante ao tipo CHAR, mais almacena cadeas de bytes binarios no canto de " "cadeas de caracteres non binarios" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13870,7 +13889,7 @@ msgstr "" "Semellante ao tipo VARCHAR, mais almacena cadeas de bytes binarios no canto " "de cadeas de caracteres non binarios" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13878,7 +13897,7 @@ msgstr "" "Unha columna tipo BLOB cunha lonxitude máxima de 255 (2^8 - 1) bytes, " "almacenada nun prefixo de un byte que indica a lonxitude do valor" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13886,7 +13905,7 @@ msgstr "" "Unha columna tipo BLOB cunha lonxitude máxima de 16,777,215 (2^24 - 1) " "bytes, almacenada nun prefixo de tres bytes que indica a lonxitude do valor" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13894,7 +13913,7 @@ msgstr "" "Unha columna tipo BLOB cunha lonxitude máxima de 65,535 (2^16 - 1) bytes, " "almacenada nun prefixo de dous bytes que indica a lonxitude do valor" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13903,7 +13922,7 @@ msgstr "" "(2^32 - 1) bytes, almacenada nun prefixo de catro bytes que indica a " "lonxitude do valor" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13911,43 +13930,43 @@ msgstr "" "Unha enumeración escollida da lista de até 65.535 valores do valor especial " "''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Un único valor escollido dun conxunto de até 64 membros" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un tipo que pode almacenar unha xeometría de calquera tipo" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un punto nun espacio bidimensonal" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Unha curva con interpolación lineal entre puntos" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un polígono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Unha colección de puntos" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Unha colección de curvas con interpolación lineal entre puntos" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Unha colección de polígonos" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Unha colección de obxectos xeométricos de calquera tipo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13955,23 +13974,29 @@ msgstr "" "Almacena e permite o acceso eficiente a datos nos documentos en JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Almacena un identificador único universal (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data e hora" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -14002,85 +14027,85 @@ msgstr "Non foi posíbel gravar a configuración" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Xan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Xuño" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Xullo" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ago" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Set" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Out" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -14088,55 +14113,55 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Lu" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ma" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mé" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Xo" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Ve" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sá" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Usuarios" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordenar" @@ -14309,7 +14334,7 @@ msgstr "todo o anterior" msgid "neither of the above" msgstr "nada do anterior" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -14344,7 +14369,7 @@ msgstr "Ningún" msgid "As defined:" msgstr "Como se define:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -14352,43 +14377,43 @@ msgid "" "to the documentation for more details" msgstr "Non ten dereitos suficientes para estar aquí agora!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Único" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texto completo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Espacial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "Compresión" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "Primeiro" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "despois de %s" @@ -14549,7 +14574,7 @@ msgstr "Motores" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14632,7 +14657,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14927,7 +14952,7 @@ msgid "Search this table" msgstr "Buscar nesta táboa" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Engadir unha columna" @@ -14956,7 +14981,7 @@ msgstr "Prema para ordenar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14990,24 +15015,24 @@ msgstr "Comentario da base de datos" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimir" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Empaquetado" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalidade" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Non se definiu ningún índice!" @@ -15901,6 +15926,11 @@ msgstr[1] "%s táboas" msgid "Sum" msgstr "Suma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Proseguir" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Desde" @@ -16004,16 +16034,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "Columnas de área de texto de CHAR" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Proseguir" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Confírmao?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -16164,7 +16189,7 @@ msgstr "Táboas non seguidas" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Seguir a táboa" @@ -16957,19 +16982,19 @@ msgid "Other options" msgstr "Outras opcións:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Renomear como" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Eliminouse a chave primaria." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Eliminouse o índice %s." @@ -17286,6 +17311,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views" @@ -17293,6 +17329,7 @@ msgid "View:" msgstr "Vistas" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -17490,8 +17527,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "Pode reiniciar a configuración e restaurar os valores predeterminados." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -17516,7 +17553,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -17535,6 +17572,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -17548,6 +17586,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -17555,7 +17598,7 @@ msgid "" "storage to use it." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -20017,7 +20060,7 @@ msgid "Start row:" msgstr "Fila inicial:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -20121,7 +20164,7 @@ msgstr "Columnas de área de texto de CHAR" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mover columna(s)" @@ -20129,37 +20172,37 @@ msgstr "Mover columna(s)" msgid "Move the columns by dragging them up and down." msgstr "Mova as columnas arrastrándoas para riba e para baixo." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Editar a vista" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy #| msgid "Track table" msgid "Track view" msgstr "Seguir a táboa" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Engadir %s columna(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "No comezo da táboa" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -21000,9 +21043,6 @@ msgstr "Nomes das columnas" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un alias de BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Almacena un identificador único universal (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/gu.po b/po/gu.po index 388b7278a6..6716b78cbc 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2019-04-27 17:19+0000\n" "Last-Translator: William Desportes \n" "Language-Team: Gujarati \n" "Language-Team: Hebrew \n" -"Language-Team: Hindi " -"\n" +"Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1312,7 +1312,7 @@ msgstr "खोज करे:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1324,8 +1324,8 @@ msgstr "खोज करे:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "जाएँ" @@ -1333,7 +1333,7 @@ msgstr "जाएँ" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "मुख्यनाम" @@ -3555,9 +3555,9 @@ msgstr "टैब शीर्षक में शामिल" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3586,8 +3586,8 @@ msgstr "लेबल कुंजी" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3755,7 +3755,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3878,8 +3878,8 @@ msgstr "परिवर्तन ट्रैकिंग" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3906,7 +3906,7 @@ msgid "Database structure" msgstr "यूसर के लिए डेटाबेस" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 #, fuzzy #| msgid "Database for user" @@ -4612,9 +4612,9 @@ msgstr "बंद टेबलओं को छोड़" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4632,17 +4632,17 @@ msgstr "बंद टेबलओं को छोड़" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "सम्पादन" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "SQL की व्याख्या" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4650,7 +4650,7 @@ msgid "Refresh" msgstr "ताज़ा करना" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" @@ -4942,14 +4942,14 @@ msgstr "कस्टम" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4997,8 +4997,8 @@ msgstr "दस्तावेज़ खोलें" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -5041,8 +5041,8 @@ msgstr "" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -5062,33 +5062,33 @@ msgstr "सामग्री दिखाने" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "सेटिंग्स को बचा नहीं सकते, प्रस्तुत फार्म में त्रुटि है" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "वर्तमान विन्यास दस्तावेज %s अपठनीय है|" -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" @@ -5374,7 +5374,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "निर्यात plugins लोड नहीं कर सका, अपने अधिष्ठापन को जांचें!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5468,7 +5468,7 @@ msgid "Table %s has been emptied." msgstr "टेबल %s को खाली किया गया है." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5488,9 +5488,9 @@ msgstr "अज्ञात" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5512,7 +5512,7 @@ msgstr "अज्ञात" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5526,7 +5526,7 @@ msgstr "हाँ" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -5581,7 +5581,7 @@ msgid "You may want to refresh the page." msgstr "आप इस पेज को रिफ़्रेश करना चाहेंगे।" #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "खोटा प्रकार!" @@ -5702,15 +5702,15 @@ msgstr "" "कर्ल कमान्ड का allow_url_fopen एक्सटेंशन चालू नही है. इसलिये कुछ सुविधाए जैसे त्रुटि की " "सूचना देना बंद कि गइ है." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "अपूर्ण पैरामीटर" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "सफल रहा" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "असफल रहा" @@ -5725,16 +5725,16 @@ msgstr "" "%sdocumentation%s पढ़ें." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5744,14 +5744,14 @@ msgstr "" "गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. " "[doc@faq1-16] अकसर किये गए सवाल 1.16 [/doc] देखें." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं." msgstr[1] "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5759,7 +5759,7 @@ msgid "" msgstr "" "स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए %sवही फाइल फिर से जमा करें%s." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5767,7 +5767,7 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." @@ -6054,11 +6054,12 @@ msgstr "%s क्षेत्र जोडें" #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "" @@ -6076,7 +6077,7 @@ msgid "Matched rows:" msgstr "प्रभावित पंक्तियाँ:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -6156,7 +6157,8 @@ msgstr "चयनित प्रयोक्ताओं को हटाये #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -6220,13 +6222,13 @@ msgstr "अन्य" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -6346,45 +6348,45 @@ msgstr "प्रक्रियाएँ" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "बिट्स" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "मेगाबाइट" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "अॅग्जाबाइट" @@ -6404,7 +6406,7 @@ msgid "Traffic" msgstr "व्यस्तता" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "सेटिंग्स" @@ -6422,11 +6424,11 @@ msgstr "कृपया, श्रृंखला में कम से कम #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6649,7 +6651,7 @@ msgstr "परिणाम को समझाएँ" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6659,8 +6661,8 @@ msgstr "स्थिति" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6832,10 +6834,10 @@ msgstr "गलत पैरामीटर्स!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6861,6 +6863,7 @@ msgstr "लागू करे" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "लोड हो रहा है…" @@ -6930,7 +6933,7 @@ msgstr "प्राथमिक कुंजी जोड़ें" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "ठीक है" @@ -6960,9 +6963,9 @@ msgstr "वर्ण समूह बदलाव" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6984,7 +6987,7 @@ msgstr "वर्ण समूह बदलाव" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -7076,7 +7079,7 @@ msgid "Show query box" msgstr "क्वॅरी बॉक्स दिखाएँ" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -7214,7 +7217,7 @@ msgid "No partial dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -7357,13 +7360,13 @@ msgstr "डॅटा बिन्दु सामग्री" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "उपेक्षा करें" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7982,14 +7985,20 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "अमान्य निर्यात प्रकार" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, fuzzy, php-format #| msgid "Table %s already exists!" msgctxt "" @@ -7997,13 +8006,13 @@ msgctxt "" msgid "Table %s already exists!" msgstr "टेबल %s पहले से मौजूद है!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "छिपाना" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -8030,24 +8039,24 @@ msgid "No such column" msgstr "काँलम हटाना" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" msgid "String" msgstr "लाईन समाप्त होता है" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "विन्यास आयात नहीं किया जा सका" @@ -8076,7 +8085,7 @@ msgstr "रो" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "सूचकांक" @@ -8748,7 +8757,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" @@ -8855,7 +8864,7 @@ msgstr "टेबल %s पहले से मौजूद है!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 #, fuzzy #| msgid "Your SQL query has been executed successfully." @@ -8927,10 +8936,10 @@ msgstr "दृश्य" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "त्रुटि" @@ -8958,7 +8967,7 @@ msgid "Failed to get description of column %s!" msgstr "हेडर को लाने में विफल" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8969,7 +8978,7 @@ msgstr "प्राथमिक" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8979,7 +8988,7 @@ msgstr "प्राथमिक" msgid "Index" msgstr "सूची" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 #, fuzzy #| msgid "Table %1$s has been altered successfully." msgid "The columns have been moved successfully." @@ -9037,7 +9046,7 @@ msgstr "आपके पास यहाँ उपस्थित होने msgid "View name can not be empty!" msgstr "" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s विस्तार गायब है. कृपया अपने PHP विन्यास की जाँच करें।" @@ -9184,7 +9193,7 @@ msgstr "निम्नलिखित क्वरीों क्रिया #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL ने कहा: " @@ -9285,7 +9294,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -9293,21 +9302,21 @@ msgid "" "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to set configured collation connection!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "संपर्क मापदंड उपलब्ध नहीं है !" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "" @@ -9330,23 +9339,23 @@ msgstr "घुसाएं" msgid "Del" msgstr "हटाइए" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "सहेजे गए संबंधों में ढूंढें:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "नया संबंध" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "संबंध बनायें" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "सम्बन्ध परिवर्तित करें" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "संबंध हटायें" @@ -9631,8 +9640,8 @@ msgid "Full texts" msgstr "पूर्ण पाठ" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9645,8 +9654,8 @@ msgid "Descending" msgstr "अवरोही" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9658,48 +9667,48 @@ msgstr "अवरोही" msgid "Ascending" msgstr "आरोही" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "रौ को डिलीट कर दिया" -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/doc] देखें" -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, fuzzy, php-format #| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "रौ देखिये" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, fuzzy, php-format #| msgid "total" msgid "%d total" msgstr "कुल" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -9995,7 +10004,7 @@ msgid "" msgstr "" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -10027,31 +10036,31 @@ msgstr "आयात करें" msgid "Automatically send report next time" msgstr "स्वतः संस्करण बनाना" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "%s फाइल पहले से ही सर्वर पर मौजूद है, फ़ाइल नाम परिवर्तन अधिलेखित या विकल्प की जाँच करें." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -10128,57 +10137,57 @@ msgstr "" msgid "Session not found." msgstr "SOAP विस्तार नहीं मिला" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, fuzzy, php-format #| msgid "Jump to database \"%s\"." msgid "Jump to database “%s”." msgstr "\"%s\" डेटाबेस पर जायें;." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "php कोड के बिना" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 #, fuzzy @@ -10186,25 +10195,25 @@ msgstr "php कोड के बिना" msgid "Submit query" msgstr "क्वरी भेजें" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "रूपरेखा" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" msgid "Edit inline" msgstr "संपादन मोड" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "स्थिर (static) डॅटा" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "" @@ -10322,11 +10331,11 @@ msgstr "" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -10346,7 +10355,7 @@ msgstr "" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -10399,7 +10408,7 @@ msgstr "" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10409,8 +10418,8 @@ msgstr "ब्राउज़" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10422,7 +10431,7 @@ msgstr "ढूंढें" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10432,8 +10441,8 @@ msgid "Insert" msgstr "इनसर्ट" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10442,14 +10451,14 @@ msgid "Privileges" msgstr "प्रिविलेज" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "कार्रवाई" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "नज़र रखना" @@ -10457,12 +10466,12 @@ msgstr "नज़र रखना" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "ट्रिगर" @@ -10472,11 +10481,11 @@ msgstr "ट्रिगर" msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "क्वरी" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "नियमित कार्य" @@ -10486,15 +10495,15 @@ msgstr "नियमित कार्य" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "डिजाइनर" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 #, fuzzy #| msgid "Textarea columns" @@ -10508,12 +10517,12 @@ msgid "User accounts" msgstr "यूसर" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10521,21 +10530,21 @@ msgid "Replication" msgstr "प्रतिकृति" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "इंजन" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "" @@ -10649,11 +10658,11 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10671,7 +10680,7 @@ msgstr "" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10703,8 +10712,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -11112,7 +11121,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "रद्द" @@ -11360,18 +11369,18 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11383,7 +11392,7 @@ msgstr "" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11392,11 +11401,11 @@ msgstr "शून्य" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11413,9 +11422,9 @@ msgid "Default" msgstr "तयशुदा" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11424,8 +11433,8 @@ msgid "Links to" msgstr "के लिए लिंक" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11441,8 +11450,8 @@ msgid "Name" msgstr "नाम" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11453,23 +11462,23 @@ msgid "Definition" msgstr "वर्णन" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -11594,13 +11603,13 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #, fuzzy #| msgid "Data" msgid "Data:" msgstr "डाटा" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 #, fuzzy #| msgid "Structure" msgid "Structure:" @@ -11633,19 +11642,19 @@ msgstr "" msgid "Dumping data" msgstr "कोइ डाटाबेस नहिं" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "क्वॅरी परिणाम" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "संरचना" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11723,7 +11732,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -11792,7 +11801,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11883,21 +11892,21 @@ msgstr "टेबल के लिए MIME प्रकार" msgid "RELATIONSHIPS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Allows reading data." msgid "Error reading data for table %s:" @@ -12214,7 +12223,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" @@ -12385,14 +12394,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12427,6 +12436,16 @@ msgstr "signon प्रमाणीकरण" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13210,7 +13229,7 @@ msgstr "%s इस MySQL सर्वर के लिए निष्क्र msgid "This MySQL server does not support the %s storage engine." msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "प्राथमिक कुंजी का नाम \"प्राथमिक\" होना चाहिए!" @@ -13225,56 +13244,56 @@ msgstr "`%s` टेबल के अनुक्रमित के साथ msgid "Unknown table status:" msgstr "मास्टर अवस्था" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "स्रोत डेटाबेस" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "अमान्य डेटाबेस" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "अवैध टेबल नाम" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि।" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "टेबल %s का नाम बदल कर %s रखा गया है." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 #, fuzzy #| msgid "Could not save configuration" msgid "Could not save table UI preferences!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13282,16 +13301,16 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "इन्डेक्स को PRIMARY नाम मे नहीं बदल सकते!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 #, fuzzy msgid "No index parts defined!" msgstr "सूचकांक हिस्सा परिभाषित नहीं है!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "विदेशी कुंजी बनाने में त्रुटि %1$s ( डेटा टाइप चेक करें)" @@ -13462,248 +13481,252 @@ msgstr "%s संस्करण बनायें %s.%s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "A date, supported range is %1$s to %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि." -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 #, fuzzy #| msgid "Add column" msgid "A polygon" msgstr "नया काँलम जोडें" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "एक नया इन्डेक्स बनाऐं" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -13736,85 +13759,85 @@ msgstr "विन्यास सहेज नहीं सकते" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "अधिकतम: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "मार्च" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "जून" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "दिसमबर" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -13823,57 +13846,57 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "शनिवार" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 #, fuzzy #| msgid "User" msgid "Users" msgstr "यूसर" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "सॉर्ट" @@ -14062,7 +14085,7 @@ msgstr "ऊपर के दोनों" msgid "neither of the above" msgstr "उपरोक्त में से कोई भी नहीं" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -14101,7 +14124,7 @@ msgstr "डिफ़ॉल्ट के लिए" msgid "As defined:" msgstr "जैसे परिभाषित:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -14109,43 +14132,43 @@ msgid "" "to the documentation for more details" msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "अद्वितीय" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "प्राथमिक" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "संक्षिप्तीकरण" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" @@ -14313,7 +14336,7 @@ msgstr "इंजन" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14390,7 +14413,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14725,7 +14748,7 @@ msgid "Search this table" msgstr "डाटाबेस में खोजें" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "नया काँलम जोडें" @@ -14758,7 +14781,7 @@ msgstr "क्रमानुसार करने के लिए क्ल #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14792,24 +14815,24 @@ msgstr "डाटाबेस टिप्पणि" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "छापें" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "जमा" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "प्रमुखता" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "परिभाषित सूचकांक नहीं पाए गए!" @@ -15773,6 +15796,13 @@ msgstr[1] "%s टेबल" msgid "Sum" msgstr "जोड" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +#, fuzzy +#| msgid "Contribute" +msgid "Continue" +msgstr "योगदान" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy #| msgid "Fr" @@ -15878,18 +15908,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "CHAR textarea कॉलम" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -#, fuzzy -#| msgid "Contribute" -msgid "Continue" -msgstr "योगदान" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "क्या आपको विश्वास है?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -16042,7 +16065,7 @@ msgstr "लापता टेबलएं" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" @@ -16856,19 +16879,19 @@ msgid "Other options" msgstr "विकल्प" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename database to" msgid "Rename" msgstr "नाम बदल कर ____ रखें" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "प्राथमिक कुंजी गिरा दी गयी है ।" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "सूचकांक %s गिरा दिया गया है." @@ -17216,6 +17239,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "View" @@ -17223,6 +17257,7 @@ msgid "View:" msgstr "दृश्य" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -17418,8 +17453,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "आप अपने सभी सेटिंग्स रीसेट और उन मूलभूत मूल्यों को पुनर्स्थापित कर सकते हैं।" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -17444,7 +17479,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -17463,6 +17498,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -17476,6 +17512,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -17483,7 +17524,7 @@ msgid "" "storage to use it." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18465,8 +18506,8 @@ msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -"अब, अपने my.cnf में [mysqld] अनुभाग के अंत में निम्नलिखित पंक्तियाँ जोड़ें " -"और कृपया बाद में MySQL सर्वर को पुनरारंभ करें।" +"अब, अपने my.cnf में [mysqld] अनुभाग के अंत में निम्नलिखित पंक्तियाँ जोड़ें और कृपया बाद में " +"MySQL सर्वर को पुनरारंभ करें।" #: templates/server/replication/primary_configuration.twig:21 msgid "" @@ -18490,8 +18531,8 @@ msgid "" "Only replicas started with the --report-host=host_name option are visible in " "this list." msgstr "" -"इस सूची में केवल --report-host=host_name विकल्प के साथ शुरू की गई " -"प्रतिकृतियां दिखाई दे रही हैं।" +"इस सूची में केवल --report-host=host_name विकल्प के साथ शुरू की गई प्रतिकृतियां दिखाई दे " +"रही हैं।" #: templates/server/replication/replica_configuration.twig:5 msgid "Primary connection:" @@ -19945,7 +19986,7 @@ msgid "Start row:" msgstr "क्षेत्र रोयाँ" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -20051,7 +20092,7 @@ msgstr "CHAR textarea कॉलम" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" @@ -20061,40 +20102,40 @@ msgstr "काँलम हटाना" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "छपाई द्रश्य." -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "टेबल संरचना का प्रस्ताव" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy #| msgid "Track table" msgid "Track view" msgstr "टेबलओं को ट्रैक करें" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "टेबल के शुरू में" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" diff --git a/po/hr.po b/po/hr.po index b6384d9f04..fe39e2aff1 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Croatian \n" "Language-Team: Hungarian %2$s közelében)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10205,8 +10214,8 @@ msgstr "Tartalom" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10218,7 +10227,7 @@ msgstr "Keresés" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10228,8 +10237,8 @@ msgid "Insert" msgstr "Beszúrás" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10238,14 +10247,14 @@ msgid "Privileges" msgstr "Jogok" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Műveletek" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Követés" @@ -10253,12 +10262,12 @@ msgstr "Követés" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Eseményindítók" @@ -10268,11 +10277,11 @@ msgstr "Eseményindítók" msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Lekérdezés" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Eljárások" @@ -10282,15 +10291,15 @@ msgstr "Eljárások" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Események" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Tervező" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Központi oszlopok" @@ -10300,12 +10309,12 @@ msgid "User accounts" msgstr "Felhasználói fiókok" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Bináris napló" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10313,21 +10322,21 @@ msgid "Replication" msgstr "Többszörözés" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Változók" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motorok" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Bővítmények" @@ -10429,11 +10438,11 @@ msgstr "új" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10451,7 +10460,7 @@ msgstr "új" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10479,8 +10488,8 @@ msgstr "új" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10917,7 +10926,7 @@ msgstr "Kiürítés" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Eldobás" @@ -11152,18 +11161,18 @@ msgstr "Adatkiírási beállítások" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11175,7 +11184,7 @@ msgstr "A tábla adatainak kiíratása" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11184,11 +11193,11 @@ msgstr "Nulla" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11205,9 +11214,9 @@ msgid "Default" msgstr "Alapértelmezett" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11216,8 +11225,8 @@ msgid "Links to" msgstr "Hivatkozás" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11233,8 +11242,8 @@ msgid "Name" msgstr "Név" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11243,23 +11252,23 @@ msgid "Definition" msgstr "Meghatározás" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -11365,11 +11374,11 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Adatok:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Szerkezet:" @@ -11396,17 +11405,17 @@ msgstr "A jelentés címe:" msgid "Dumping data" msgstr "Adatok kiíratása" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Lekérdezési eredmények" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Szerkezet megtekintése" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Ebből áll" @@ -11485,7 +11494,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -11568,7 +11577,7 @@ msgstr "Úgy tűnik, az adatbázis rutinokat használ;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "az álnév exportálás nem minden esetben működhet megbízhatóan." @@ -11644,20 +11653,20 @@ msgstr "Tábla MIME-típusok" msgid "RELATIONSHIPS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Úgy tűnik, a tábla eseményindítókat használ;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "%s nézet struktúrája táblaként exportálva" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Lásd alább az aktuális nézetet)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Hiba a(z) %s tábla adatainak olvasásakor:" @@ -11974,7 +11983,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" @@ -12212,14 +12221,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12254,6 +12263,16 @@ msgstr "Signon hitelesítés" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13020,7 +13039,7 @@ msgstr "A(z) %s le lett tiltva ezen a MySQL kiszolgálón." msgid "This MySQL server does not support the %s storage engine." msgstr "Ez a MySQL kiszolgáló nem támogatja a(z) %s tárolómotort." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Az elsődleges kulcs nevének \"PRIMARY\"-nak kell lennie!" @@ -13033,39 +13052,39 @@ msgstr "Probléma a(z) `%s` tábla indexeivel" msgid "Unknown table status:" msgstr "Ismeretlen táblaállapot:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "A(z) „%s” forrás adatbázis nem található!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "A(z) „%s” cél adatbázis nem található!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Érvénytelen adatbázis:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Érvénytelen táblanév:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A(z) %1$s tábla átnevezése %2$s névre megtörtént." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Nem sikerült elmenteni a tábla UI beállításait!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13074,7 +13093,7 @@ msgstr "" "Tábla UI beállításainak tisztítása sikertelen (lásd $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13084,15 +13103,15 @@ msgstr "" "\"%s\" UI érték mentése sikertelen. A változtatás az oldal frissítése után " "nem jelenik meg. Ellenőrizze, hogy a tábla struktúrája megváltozott-e." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Nem nevezhető át PRIMARY-re az index!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13254,14 +13273,14 @@ msgstr "%1$s / %2$s verzió törölve lett." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s verzió létrejött, a %2$s nyomonkövetése aktív." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1 bájtos integer, signed tartomány -128 és 127 között, unsigned tartomány 0 " "és 255 között" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13269,7 +13288,7 @@ msgstr "" "2 bájtos integer, signed tartomány -32 768 és 32 767 között, unsigned " "tartomány 0 és 65 535 között" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13277,7 +13296,7 @@ msgstr "" "3 bájtos integer, signed tartomány -8 388 608 és 8 388 607 között, unsigned " "tartomány 0 és 16 777 215 között" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13285,7 +13304,7 @@ msgstr "" "4 bájtos integer, signed tartomány -2 147 483 648 és 2 147 483 647 közt, " "unsigned tartomány 0 és 4 294 967 295 közt" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13294,7 +13313,7 @@ msgstr "" "036 854 775 807 között, unsigned tartomány 0 és 18 446 744 073 709 551 615 " "között" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13302,7 +13321,7 @@ msgstr "" "Tizedestört szám - az egész jegyek maximális száma 65 (alapértelmezett a " "10), a törtek maximális száma 30 (alapértelmezett a 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13310,7 +13329,7 @@ msgstr "" "Small floating-point szám, értéktartománya -3.402823466E+38 és " "-1.175494351E-38 között, 0, 1.175494351E-38 és 3.402823466E+38 között" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13320,7 +13339,7 @@ msgstr "" "-1.7976931348623157E+308 és -2.2250738585072014E-308 között, 0, " "2.2250738585072014E-308 és 1.7976931348623157E+308 között" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13328,35 +13347,35 @@ msgstr "" "DOUBLE-lal egyenértékű (kivéve: REAL_AS_FLOAT SQL módban a FLAT-tal " "egyenértékű)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "Bit-field típus (M), értékenként M darab bit (alapértelmezett: 1, maximum 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" "TINYINT(1)-gyel egyenértékű, zéró esetén false, nemzéró esetén true érték" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Egy dátum, a támogatott tartomány %1$s és %2$s között van" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Dátum és idő kombináció, értéktartomány %1$s és %2$s között" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13364,12 +13383,12 @@ msgstr "" "Időbélyeg, tartomány 1970-01-01 00:00:01 UTC és 2038-01-09 03:14:07 UTC " "között, másodpercek számaként tárolva a kezdettől" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Egy idő, a tartomány %1$s és %2$s között van" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13377,7 +13396,7 @@ msgstr "" "4 vagy 2 karakteres évszám, megengedett értékei 70 (1970) és 69 (2069), vagy " "1901 és 2155 között és 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13385,7 +13404,7 @@ msgstr "" "Fix hosszúságú (0-255, alapértelmezett 1) sztring, amely szóközökkel van " "jobbról kitöltve a meghatározott hossz eléréséhez" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13394,7 +13413,7 @@ msgstr "" "Változó hosszúságú (%s) sztring, a tényleges maximális hossz függ a " "maximális sormérettől" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13402,7 +13421,7 @@ msgstr "" "TEXT oszlop, maximális hossz 255 karakter, tárolása 1 bájt előtaggal, amely " "az érték hosszát tartalmazza bájtokban" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13410,7 +13429,7 @@ msgstr "" "TEXT oszlop maximum 65 535 karakterhosszúsággal, 2 bájtos előtaggal tárolva, " "amely az érték hosszát tartalmazza bájtokban" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13418,7 +13437,7 @@ msgstr "" "TEXT oszlop 16 777 215 maximális hosszúsággal, három bájt előtaggal tárolva, " "amely az érték hosszát tartalmazza bájtokban" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13427,7 +13446,7 @@ msgstr "" "TEXT oszlop maximum 4 294 967 295 vagy 4 GB hosszal, 4 bájtos előtaggal " "tárolva, amely az érték hosszát tartalmazza bájtokban" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13435,7 +13454,7 @@ msgstr "" "Hasonló a CHAR típushoz, de bináris bájtláncot tárol nem-bináris " "karakterláncok helyett" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13443,7 +13462,7 @@ msgstr "" "Hasonló a VARCHAR típushoz, de bináris bájtláncot tárol nem-bináris " "karakterláncok helyett" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13451,7 +13470,7 @@ msgstr "" "BLOB oszlop maximális hossza 255 (2 ^ 8 - 1) bájt, tárolt érték hosszát " "jelző egybájtos előtaggal" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13459,7 +13478,7 @@ msgstr "" "BLOB-oszlop 16 777 215 maximális hosszal (2 ^ 24 - 1), tárolt érték hosszát " "jelző három byte-os előtaggal" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13467,7 +13486,7 @@ msgstr "" "BLOB oszlop maximális hossza a 65 535 (2 ^ 16 - 1) bájt, tárolt érték " "hosszát jelző két byte-os előtaggal" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13475,50 +13494,50 @@ msgstr "" "BLOB oszlop 4 294 967 295 vagy 4 GB maximális hosszal (2 ^ 32 - 1), tárolt " "érték hosszát jelző négybájtos előtaggal" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" "Felsorolás, legfeljebb 65 535 értékkel vagy a speciális '' hibaértékkel" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Egyetlen érték egy 64 tagú készletből" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Típus, amely bármely típus geometriáját tudja tárolni" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Pont 2 dimenziós pozícióban" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Görbe lineáris interpolációval a pontjai között" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Egy sokszög" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Pontok összessége" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Görbék összessége lineáris interpolációval a pontjaik közt" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Sokszögek összessége" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Bármely típusú geometriai tárgyak összessége" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13526,23 +13545,29 @@ msgstr "" "Eltárolja és bekapcsolja a hatékony hozzáférést a JSON (JavaScript Object " "Notation) dokumentumok adataihoz" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Tárolja az univerzálisan egyedi azonosítót (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "numerikus" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Dátum és idő" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Térbeli" @@ -13570,85 +13595,85 @@ msgstr "Nem menthetők el a módosítások" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Már" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jún" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Júl" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sze" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13656,55 +13681,55 @@ msgid "Sun" msgstr "Vas" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Hét" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ked" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Sze" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Csü" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Pén" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Szo" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "DU" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "DE" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Felhasználók" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Rendezés" @@ -13877,7 +13902,7 @@ msgstr "a fentiekből mindkettő" msgid "neither of the above" msgstr "a fentiekből egyik sem" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13912,7 +13937,7 @@ msgstr "Nincs" msgid "As defined:" msgstr "Mint meghatározva:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13920,41 +13945,41 @@ msgstr "" "Nincs elegendő jogosultsága a művelet végrehajtásához. További részletekért " "nézze meg a dokumentációt" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Egyedi" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Teljes szöveg" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Térbeli" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Kifejezés" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "első" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s után" @@ -14088,7 +14113,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14159,7 +14184,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14439,7 +14464,7 @@ msgid "Search this table" msgstr "Keresés a táblában" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Oszlop hozzáadása" @@ -14468,7 +14493,7 @@ msgstr "Kattintson a rendezéshez." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14502,24 +14527,24 @@ msgstr "Adatbázis megjegyzés" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Nyomtatás" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Csomagolt" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Számosság" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Nincs meghatározott index!" @@ -15383,6 +15408,11 @@ msgstr[1] "%s tábla" msgid "Sum" msgstr "Összesen" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Folytatás" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Ettől" @@ -15474,16 +15504,11 @@ msgstr "Oszlopok eltávolítása a központi listából" msgid "Make consistent with central list" msgstr "Konzisztensé tétel a központi listával" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Folytatás" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Biztos benne?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15625,7 +15650,7 @@ msgstr "Nem követett táblák" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Tábla nyomon követése" @@ -16410,19 +16435,19 @@ msgid "Other options" msgstr "Egyéb beállítások:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Átnevezés" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Az elsődleges kulcs eldobása megtörtént." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "A(z) %s index eldobása megtörtént." @@ -16737,6 +16762,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16744,6 +16780,7 @@ msgid "View:" msgstr "Nézetek:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16928,8 +16965,8 @@ msgstr "" "alapértelmezett értékekre." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16954,7 +16991,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16973,6 +17010,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16986,6 +17024,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -16993,7 +17036,7 @@ msgid "" "storage to use it." msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19366,7 +19409,7 @@ msgid "Start row:" msgstr "Kezdő sor:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partíciók" @@ -19450,7 +19493,7 @@ msgstr "Hozzáadás a központi oszlopokhoz" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Oszlopok mozgatása" @@ -19458,33 +19501,33 @@ msgstr "Oszlopok mozgatása" msgid "Move the columns by dragging them up and down." msgstr "Oszlopok mozgatása fel és le húzással." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Nézet szerkesztése" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Nyomkövetés nézet" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s oszlop hozzáadása" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "a tábla elejénél" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20322,9 +20365,6 @@ msgstr "Oszlopnevek" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Más néven BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Tárolja az univerzálisan egyedi azonosítót (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/hy.po b/po/hy.po index 0dcec75009..88f0489992 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2021-01-22 03:17+0000\n" "Last-Translator: William Desportes \n" "Language-Team: Armenian %2$s-ի մոտ)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9557,8 +9566,8 @@ msgstr "Դիտարկում" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9570,7 +9579,7 @@ msgstr "Որոնում" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9580,8 +9589,8 @@ msgid "Insert" msgstr "Զետեղել" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9590,14 +9599,14 @@ msgid "Privileges" msgstr "Արտոնություններ" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Գործողություններ" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Հետագծում" @@ -9605,12 +9614,12 @@ msgstr "Հետագծում" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Ձգաններ" @@ -9620,11 +9629,11 @@ msgstr "Ձգաններ" msgid "Database seems to be empty!" msgstr "Տվյալների բազան դատարկ է" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Հարցում" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Գործընթացներ" @@ -9634,15 +9643,15 @@ msgstr "Գործընթացներ" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Իրադարձություններ" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Ձևավորող" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Կենտրոնական սյունակներ" @@ -9652,12 +9661,12 @@ msgid "User accounts" msgstr "Օգտվողների հաշիվներ" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Երկուական մատյան" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9665,21 +9674,21 @@ msgid "Replication" msgstr "Կրկնապատկում" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Փոփոխականներ" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Կոդավորումներ" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Պահպանման տեսակներ" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Խրվակներ" @@ -9778,11 +9787,11 @@ msgstr "Նոր" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9800,7 +9809,7 @@ msgstr "Նոր" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9828,8 +9837,8 @@ msgstr "Նոր" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10214,7 +10223,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Ջնջել" @@ -10438,18 +10447,18 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10461,7 +10470,7 @@ msgstr "" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10470,11 +10479,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10491,9 +10500,9 @@ msgid "Default" msgstr "Լռելյան" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10502,8 +10511,8 @@ msgid "Links to" msgstr "Հղումներ դեպի" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10519,8 +10528,8 @@ msgid "Name" msgstr "Անուն" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10529,23 +10538,23 @@ msgid "Definition" msgstr "Սահմանում" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10650,11 +10659,11 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Տվյալներ՝" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Կառուցվածքը՝" @@ -10679,17 +10688,17 @@ msgstr "Զեկույցի վերնագիրը՝" msgid "Dumping data" msgstr "" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results operations" msgid "Query result data" msgstr "Հարցման արդյունքների օգտագործումը" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Դիտել կառուցվածքը" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "" @@ -10758,7 +10767,7 @@ msgid "Data creation options" msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10829,7 +10838,7 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է գոր #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10908,20 +10917,20 @@ msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" msgid "RELATIONSHIPS FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Error reading data:" msgid "Error reading data for table %s:" @@ -11216,7 +11225,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Yթ. ժ. %H:%M" @@ -11387,14 +11396,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11429,6 +11438,16 @@ msgstr "Signon-ով վավերացում" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12163,7 +12182,7 @@ msgstr "%s աղյուսակների տեսակը կասեցվել է այս MySQ msgid "This MySQL server does not support the %s storage engine." msgstr "Այս MySQL սպասարկիչը չի աջակցում աղյուսակների պահպանման %s տեսակը։" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Առաջնային բանալիի անունը պետք է լինի \"PRIMARY\"։" @@ -12176,46 +12195,46 @@ msgstr "Խնդիրներ՝ `%s` աղյուսակի ցուցակագրերի հե msgid "Unknown table status:" msgstr "Աղյուսակի անհայտ կարգավիճակ՝" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` ելակետային տվյալների բազան չի գտնվել։" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` նպատակային տվյալների բազան չի գտնվել։" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Անվավեր տվյալների բազան՝" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Անվավեր աղյուսակի անունը՝" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Չհաջողվեց վերանվանել աղյուսակը %1$s-ից %2$s։" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s աղյուսակը վերանվանվել է %2$s-ին։" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Չհաջողվեց պահպանել աղյուսակի միջերեսի նախընտրանքները։" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12223,15 +12242,15 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Հնարավոր չէ՝ վերանվանել ցուցակագիրը PRIMARY անունով։" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Ցուցակագրի մասերը սահմանված չեն։" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s-ի արտաքին բանալիի ստեղծման սխալ (ստուգեք տվյալների տեսակները)" @@ -12388,14 +12407,14 @@ msgstr "%1$s տարբերակը %2$s-ից ջնջվել է։" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-բայթանոց ամբողջական թիվ, ընդգրկույթը ստորագրումով՝ -128-ից 127, առանց " "ստորագրման՝ 0-ից 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12403,7 +12422,7 @@ msgstr "" "2-բայթանոց ամբողջական թիվ, ընդգրկույթը ստորագրումով՝ -32,768-ից 32,767, " "առանց ստորագրման՝ 0-ից 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12411,7 +12430,7 @@ msgstr "" "3-բայթանոց ամբողջական թիվ, ընդգրկույթը ստորագրումով՝ -8,388,608-ից " "8,388,607, առանց ստորագրման՝ 0-ից 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12419,7 +12438,7 @@ msgstr "" "4-բայթանոց ամբողջական թիվ, ընդգրկույթը ստորագրումով՝ -2,147,483,648-ից " "2,147,483,647, առանց ստորագրման՝ 0-ից 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12428,26 +12447,26 @@ msgstr "" "-9,223,372,036,854,775,808-ից 9,223,372,036,854,775,807, առանց ստորագրման՝ 0-" "ից 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -12455,13 +12474,13 @@ msgstr "" "Հոմանիշ՝ DOUBLE-ի համար (բացառություն. REAL_AS_FLOAT SQL եղանակում այն " "հանդիսանում է FLOAT-ի հոմանիշ)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12469,21 +12488,21 @@ msgstr "" "Հոմանիշ՝ TINYINT(1)-ի համար, զրոյական արժեքը ենթադրում է false, ոչ-" "զրոյականները ենթադրում են true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Այլանուն՝ BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Ամսաթիվ, աջակցվող ընդգրկույթը՝ %1$s-ից %2$s է" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Ամսաթվի և ժամանակի համակցություն, աջակցվող ընդգրկույթը՝ %1$s-ից %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12491,12 +12510,12 @@ msgstr "" "Ժամադրոշմ, ընդգրկույթը՝ 1970-01-01 00:00:01-ից 2038-01-09 03:14:07 (UTC), " "պահպանվում է 1970-01-01 00:00:00-ից անցած վայրկյանների քանակի տեսքով" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Ժամանակ, ընդգրկույթը՝ %1$s-ից %2$s է" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12504,81 +12523,81 @@ msgstr "" "Տարին՝ չորսթվային (4, լռելիությամբ) կամ երկթվային (2) ձևաչափով, թույլատրելի " "արժեքներն են՝ 70-ից (1970) 69-ը (2069), կամ 1901-ից 2155-ը, և 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -12586,65 +12605,69 @@ msgstr "" "Թվարկում, որի արժեքը ընտրվում է մինչև 65,535 արժեքներ պարունակող ցանկից կամ " "պարունակում '' հատուկ սխալի արժեքը" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Այս տեսակը կարող է պահպանել ցանկացած գծագրային տվյալներ" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Կետ՝ երկչափ տարածության մեջ" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Բազմանկյուն" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Կետերի հավաքակազմ" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Բազմակնկյունների հավաքակազմ" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Ցանկացած տեսակների երկրաչափական առարկաների հավաքակազմ" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Թվային" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Ամսաթիվ և ժամանակ" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Տարածական" @@ -12676,85 +12699,85 @@ msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "" "phpMyAdmin-ի կազմաձևի պաշարները կասեցվել են։ %sԻմացեք պատճառը այստեղ%s։" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Առավելագույնը՝ %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Հնս" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Հյս" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Օգս" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Դկտ" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -12762,55 +12785,55 @@ msgid "Sun" msgstr "Կիր" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Երք" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Շբթ" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s օր, %s ժամ, %s րոպե և %s վայրկյան" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Օգտվողներ" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Դասավորել" @@ -12984,7 +13007,7 @@ msgstr "Վերևի երու տարբերակն էլ" msgid "neither of the above" msgstr "նշվածներից ոչ մեկը" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13019,47 +13042,47 @@ msgstr "Չկա" msgid "As defined:" msgstr "Ըստ սահմանվածության՝" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" msgstr "" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Յուրահատուկ" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Ամբողջ գրվածքով" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Տարածական" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Արտահայտություն" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "առաջին" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s-ից հետո" @@ -13195,7 +13218,7 @@ msgstr "Պահպանման տեսակ" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13260,7 +13283,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13533,7 +13556,7 @@ msgid "Search this table" msgstr "Որոնել այս աղյուսակում" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Ավելացնել սյունակ" @@ -13562,7 +13585,7 @@ msgstr "Կտտացրեք՝ դասակարգելու համար։" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13596,24 +13619,24 @@ msgstr "Տվյալների բազայի մեկնաբանությունը" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Տպել" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Փաթեթավորված" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Բազմության հզորություն" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Ցուցակագիրը սահմանված չէ։" @@ -14473,6 +14496,11 @@ msgstr[1] "%s աղյուսակ" msgid "Sum" msgstr "Ընդամենը" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Շարունակել" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Սկիզբ" @@ -14566,16 +14594,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "Համապատասխանեցնել կենտրոնական ցանկին" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Շարունակել" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Համոզվա՞ծ եք։" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14717,7 +14740,7 @@ msgstr "Չհետագծվող աղյուսակներ" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Հետագծել աղյուսակը" @@ -15470,19 +15493,19 @@ msgid "Other options" msgstr "Այլ կայանքներ՝" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Վերանվանել" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Առաջնային բանալին ջնջվեց։" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "%s ցուցակագիրը ջնջվեց։" @@ -15797,6 +15820,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -15804,6 +15838,7 @@ msgid "View:" msgstr "Ներկայացումներ՝" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -15987,8 +16022,8 @@ msgstr "" "դրույթները։" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16013,7 +16048,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16032,6 +16067,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16046,11 +16082,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18341,7 +18382,7 @@ msgid "Start row:" msgstr "Սկզբնական տողը՝" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Մասնաբաժիններ" @@ -18425,7 +18466,7 @@ msgstr "Ավելացնել կենտրոնական սյունակներին" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Տեղափոխել սյունակները" @@ -18433,33 +18474,33 @@ msgstr "Տեղափոխել սյունակները" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Հետագծել ներկայացումը" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Ավելացնել %s սյունակ" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "աղյուսակի սկզբում" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Error: Missing index on column(s)." msgid "Create an index on %s columns" diff --git a/po/ia.po b/po/ia.po index e91e27f767..0f8a15792f 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Interlingua %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9691,8 +9700,8 @@ msgstr "Naviga" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9704,7 +9713,7 @@ msgstr "Cerca" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9714,8 +9723,8 @@ msgid "Insert" msgstr "Inserta" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9724,14 +9733,14 @@ msgid "Privileges" msgstr "Permissiones" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operationes" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Traciamento" @@ -9739,12 +9748,12 @@ msgstr "Traciamento" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Triggers" @@ -9754,11 +9763,11 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Le base de datos sembla esser vacue!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Query" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routines" @@ -9768,15 +9777,15 @@ msgstr "Routines" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Eventos" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designator" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Columnas central" @@ -9786,12 +9795,12 @@ msgid "User accounts" msgstr "Contos de usator" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Registro binari" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9799,21 +9808,21 @@ msgid "Replication" msgstr "Replication" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabiles" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Insimul de characteres" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motores" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plugins" @@ -9913,11 +9922,11 @@ msgstr "Nove" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9935,7 +9944,7 @@ msgstr "Nove" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9963,8 +9972,8 @@ msgstr "Nove" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10398,7 +10407,7 @@ msgstr "Trunca" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Lassa cader" @@ -10629,18 +10638,18 @@ msgstr "Optiones del dump del datos" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Dump del datos per le tabella" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10652,7 +10661,7 @@ msgstr "Dump del datos per le tabella" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10661,11 +10670,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10682,9 +10691,9 @@ msgid "Default" msgstr "Predefinite" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10693,8 +10702,8 @@ msgid "Links to" msgstr "Ligamines a" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10710,8 +10719,8 @@ msgid "Name" msgstr "Nomine" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10720,23 +10729,23 @@ msgid "Definition" msgstr "Definition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Structura de tabella" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Structura per le vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Structura stand-in per le vista" @@ -10841,11 +10850,11 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Datos:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Structura:" @@ -10870,15 +10879,15 @@ msgstr "Titulo de reporto:" msgid "Dumping data" msgstr "Dump (discargamento) de datos" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Datos de exito del query" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Vide structura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Substitue" @@ -10957,7 +10966,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Trunca le tabella ante insertar" @@ -11041,7 +11050,7 @@ msgstr "Il sembla que tu base de datos usa routines;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "exportation de alias pote non functionar de modo correcte in omne casos." @@ -11116,20 +11125,20 @@ msgstr "MEDIA TYPES FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONES PER TABULA" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Il sembla que tu tabella usa triggers;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structura pro vider %s exportate como un tabella" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Vide a basso per le vista actual)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Error quando on lege datos per tabella %s:" @@ -11432,7 +11441,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y a %I:%M %p" @@ -11604,14 +11613,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11639,6 +11648,16 @@ msgstr "Authentication de duo factores simple" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12361,7 +12380,7 @@ msgstr "%s ha essite dishabilitate sur iste servitor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Iste servitor MySQL non supporta lemotor de immagazinage %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nomine del clave primari debe esser \"PRIMARY\"!" @@ -12374,39 +12393,39 @@ msgstr "" msgid "Unknown table status:" msgstr "Stato de tabella incognite:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Il non trovava base de datos de fonte '%s'!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Il non trovava base de datos objectivo '%s'!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Base de datos invalide:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nomine de tabella invalide:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Il falleva renominar tabella ab %1$s a %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabella %1$s ha essite renominate a %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Il non pote salveguarda preferentias UI de tabella!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12415,7 +12434,7 @@ msgstr "" "Il falleva nettar preferentias de UI de tabella (vide $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12426,15 +12445,15 @@ msgstr "" "essera mantenite post que tu recarga iste pagina. Pro favor controla que le " "structura del tabella ha essite modificate." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Non pote renominar indice a PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nulle partes de indice definite!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12591,14 +12610,14 @@ msgstr "Version %1$s de %2$s esseva delite." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Le extension de un integer de 1 byte, signate es ex -128 a 127, si non " "signate es ex 0 a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12606,7 +12625,7 @@ msgstr "" "Le extension de un integer de 2 bytes signate es ex -32,768 a 32,767, si non " "signate es ex 0 a 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12614,7 +12633,7 @@ msgstr "" "Le extension de un integer de 3 bytes signate es ex -8,388,608 a 8,388,607, " "si non signate es ex 0 a 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12622,7 +12641,7 @@ msgstr "" "Le extension de un integer de 4 bytes signate es ex -2,147,483,648 a " "2,147,483,647, si non signate es ex 0 a 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12631,7 +12650,7 @@ msgstr "" "--9,223,372,036,854,775,808 a 9,223,372,036,854,775,807, si non signate es " "ex 0 a 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12640,7 +12659,7 @@ msgstr "" "es 65 (predefinite 10), le maxime numero de decimales (D) es 30 (predefinite " "0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12649,7 +12668,7 @@ msgstr "" "-3.402823466E+38 a -1.175494351E-38, 0, e ex 1.175494351E-38 a " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12659,7 +12678,7 @@ msgstr "" "disponibile es ex -1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e " "ex 2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -12667,7 +12686,7 @@ msgstr "" "Synonymo de DOUBLE (exception in modo REAL_AS_FLOAT illo es un synonymo de " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -12675,7 +12694,7 @@ msgstr "" "Un typo de campo bit (M), immagazinante M bits per valor (predefinite 1, " "maxime es 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12683,22 +12702,22 @@ msgstr "" "Un synonymo de TINYINT(1), un valor de zero es considerate false (false), " "valores de non zero es considerate ver (true)" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Un data, le extension supportate es ex %1$s a %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Un combination de data e tempore, extension supportate es ex %1$s a %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12707,12 +12726,12 @@ msgstr "" "03:14:07 UTC, immagazinate como le numero de secundas ex le epocha " "(1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Un tempore, extension es ab %1$s a %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12720,7 +12739,7 @@ msgstr "" "Un anno in le formato de quatro cifras (4, per definition) o duo cifras, le " "valores permittite es ex 70 (1970) a 69 (2069) o ex 191 a 2155 e 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12728,7 +12747,7 @@ msgstr "" "Un catena de longitude fixate (0-255, 1 predefinite) que es sempre plenate a " "dextera con spatios al longor specificate quando on immagazinava" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12737,7 +12756,7 @@ msgstr "" "Un catena de longitude variabile (%s), le effective maxime longor depende ex " "le maxime grandor de rango" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12745,7 +12764,7 @@ msgstr "" "Un columna de TEXT con un longor maxime de 255 (2^8 - 1) characteres, " "immagazinate con un prefixo de 1 byte indicante le valores in bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12753,7 +12772,7 @@ msgstr "" "Un columna de TEXT con un longor maxime de 65,535 (2^16 - 1) characteres, " "immagazinate con un prefixo de 2 bytes indicante le valores in bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12762,7 +12781,7 @@ msgstr "" "characteres, immagazinate con un prefixo de 3 bytes indicante le valores in " "bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12772,7 +12791,7 @@ msgstr "" "characteres, immagazinate con un prefixo de 4 bytes indicante le valores in " "bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -12780,7 +12799,7 @@ msgstr "" "Como pro le typo CHAR, ma immagazina catenas de byte binari plus tosto que " "catenas de character non binari" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -12788,7 +12807,7 @@ msgstr "" "Como pro le typo VARCHAR, ma immagazina catenas de byte binari plus tosto " "que catenas de character non binari" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12796,7 +12815,7 @@ msgstr "" "Un columna de BLOB con un longitude maxime de 255 (2^8 - 1) bytes, " "immagazinate con un prefixo indicante le longor del valor" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -12804,7 +12823,7 @@ msgstr "" "Un columna de BLOB con un longitude maxime de 16,777,215 (2^24 - 1) bytes, " "immagazinate con un prefixo de 3 bytes indicante le longor del valor" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -12812,7 +12831,7 @@ msgstr "" "Un columna de BLOB con un longitude maxime de 65,535 (2^16 - 1) bytes, " "immagazinate con un prefixo de duo bytes indicante le longor del valor" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -12820,7 +12839,7 @@ msgstr "" "Un columna de BLOB con un longitude maxime de 4,294,967,295 or 4GiB (2^32 - " "1) bytes, immagazinate con un prefixo de 4bytes indicante le longor del valor" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -12828,43 +12847,43 @@ msgstr "" "Un enumeration,seligite ex le lista usque calores de 65,535 o le valor " "special de error \"" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Un singule valor, seligite ex un insimul usque 64 membros" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un typo pote immagazinar un geometria de omne typo" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un puncto in un spatio a duo dimensiones" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Un curva con interpolation linear inter punctos" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un polygono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Un collection de punctos" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Un collection de curvas con interpolation linear inter punctos" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Un collection de polygonos" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Un collection de objectos de geometria de omne typo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -12872,23 +12891,31 @@ msgstr "" "Immagazina e habilita accesso efficiente al datos in documentos de JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" +"Immagazina un Identificator Unic Universal - Universally Unique Identifier " +"(UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeric" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data e tempore" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -12918,139 +12945,139 @@ msgstr "" "%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos " "currente." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Dimension maxime: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Oct" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Lun" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Mar" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mer" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Jov" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Ven" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s horas, %s minutas e %s secundas" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Usatores" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordina" @@ -13224,7 +13251,7 @@ msgstr "ambes del precedentes" msgid "neither of the above" msgstr "necun del precedentes" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13259,7 +13286,7 @@ msgstr "Necun" msgid "As defined:" msgstr "" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13267,41 +13294,41 @@ msgstr "" "Tu non ha bastante privilegios pro executar iste operation; Pro favor refere " "al documentation pro altere detalios" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unic" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texto complete" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expression" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "prime" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "post %s" @@ -13429,7 +13456,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13494,7 +13521,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13761,7 +13788,7 @@ msgid "Search this table" msgstr "Cerca in iste tabella" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Adde columna" @@ -13790,7 +13817,7 @@ msgstr "Pulsa pro ordinar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13822,24 +13849,24 @@ msgstr "Commento del base de datos:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprime" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Comprimite" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalitate" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Necun indice definite!" @@ -14647,6 +14674,11 @@ msgstr[1] "%s tabulas" msgid "Sum" msgstr "Summa" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continua" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Ex" @@ -14738,16 +14770,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "Face consistente con le lista central" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continua" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Tu es secur?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14887,7 +14914,7 @@ msgstr "Tabulas non traciate" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Tracia tabula" @@ -15630,17 +15657,17 @@ msgid "Other options" msgstr "Altere optiones:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Renomina" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Le clave primari ha essite delite." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indice %s ha essite delite." @@ -15947,11 +15974,23 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Vista:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16117,8 +16156,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configura Authentication de duo factores" @@ -16137,7 +16176,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "De-activa Authentication de duo factores" @@ -16152,6 +16191,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16166,13 +16206,18 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" "Authentication de duo factores non es disponibile, activa immagazinage de " "configuration de phpMyAdmin per usar lo." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18284,7 +18329,7 @@ msgid "Start row:" msgstr "Initia rango:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitiones" @@ -18366,7 +18411,7 @@ msgstr "Adde al columnas central" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "" @@ -18374,33 +18419,33 @@ msgstr "" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Vista de tracia" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Adde %s columna(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "a le initio de tabella" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Crea un indice sur %s columnas" @@ -19128,11 +19173,6 @@ msgstr "" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un alias pro BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "" -#~ "Immagazina un Identificator Unic Universal - Universally Unique " -#~ "Identifier (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/id.po b/po/id.po index 4f0fb09790..2e9262dbe8 100644 --- a/po/id.po +++ b/po/id.po @@ -2,11 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-12-30 07:48+0000\n" "Last-Translator: Iwan Haryatno \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1498,7 +1498,7 @@ msgstr "Cari:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1510,8 +1510,8 @@ msgstr "Cari:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Kirim" @@ -1519,7 +1519,7 @@ msgstr "Kirim" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Nama kunci" @@ -3566,9 +3566,9 @@ msgstr "Masukkan judul halaman tabel" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3597,8 +3597,8 @@ msgstr "Kunci nama" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3758,7 +3758,7 @@ msgstr "Hari pertama di kalender" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3875,8 +3875,8 @@ msgstr "Pelacakan perubahan" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3901,7 +3901,7 @@ msgid "Database structure" msgstr "Stuktur basis data" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Struktur tabel" @@ -4532,9 +4532,9 @@ msgstr "Lewati tabel terkunci" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4552,17 +4552,17 @@ msgstr "Lewati tabel terkunci" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Ubah" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Jelaskan SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4570,7 +4570,7 @@ msgid "Refresh" msgstr "Segarkan" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Buat kode PHP" @@ -4871,14 +4871,14 @@ msgstr "Kustom" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4922,8 +4922,8 @@ msgstr "Teks OpenDocument" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4966,8 +4966,8 @@ msgstr "CSV menggunakan LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4985,21 +4985,21 @@ msgstr "" "Pengaturan tidak dapat disimpan, konfigurasi yang diserahkan mengandung " "kesalahan!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File configuration yang ada (%s) tidak dapat di baca." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Gagal membaca file konfigurasi!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5007,12 +5007,12 @@ msgstr "" "Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek " "kesalahan di bawah ini." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Server %d" @@ -5333,7 +5333,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "Tidak dapat memuat plugin export, harap periksa instalasi Anda!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5429,7 +5429,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s telah dikosongkan." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5451,9 +5451,9 @@ msgstr "tidak diketahui" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5475,7 +5475,7 @@ msgstr "tidak diketahui" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5489,7 +5489,7 @@ msgstr "Ya" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Tidak ada perubahan" @@ -5548,7 +5548,7 @@ msgid "You may want to refresh the page." msgstr "Anda mungkin perlu menyegarkan halaman." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Tipe yang buruk!" @@ -5677,15 +5677,15 @@ msgstr "" "Sehingga menyebabkan beberapa fitur seperti laporan kesalahan atau " "pengecekan versi tidak aktif." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Parameter kurang lengkap" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Berhasil" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Gagal" @@ -5700,16 +5700,16 @@ msgstr "" "%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Menampilkan markah" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Markah telah dihapus." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5719,13 +5719,13 @@ msgstr "" "nama berkas yang diberikan, atau ukuran berkas melebihi ukuran maksimum yang " "diizinkan oleh konfigurasi PHP Anda. Lihat [doc@faq1-16]FAQ 1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Impor telah selesai, %d kueri dilakukan." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5734,7 +5734,7 @@ msgstr "" "Masa waktu skrip telah habis, jika Anda ingin menyelesaikan mengimpor, " "%skirim kembali berkas yang sama%s dan impor akan berlanjut." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5743,7 +5743,7 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." @@ -6007,11 +6007,12 @@ msgstr "Pilih kolom untuk di index." #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "Pratinjau SQL" @@ -6025,7 +6026,7 @@ msgid "Matched rows:" msgstr "Baris yang cocok:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "Query SQL:" @@ -6099,7 +6100,8 @@ msgstr "Hapus pengguna yang dipilih" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -6157,13 +6159,13 @@ msgstr "Lainnya" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -6272,45 +6274,45 @@ msgstr "Proses Aktif" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EB" @@ -6330,7 +6332,7 @@ msgid "Traffic" msgstr "Lalu Lintas" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Pengaturan" @@ -6346,11 +6348,11 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6562,7 +6564,7 @@ msgstr "Jelaskan hasil" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6572,8 +6574,8 @@ msgstr "Status" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6730,10 +6732,10 @@ msgstr "Tidak ada parameter ditemukan!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6757,6 +6759,7 @@ msgstr "Terapkan" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Memproses…" @@ -6816,7 +6819,7 @@ msgstr "Menambahkan kunci primer" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "Oke" @@ -6840,9 +6843,9 @@ msgstr "Mengganti Set Karakter" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6864,7 +6867,7 @@ msgstr "Mengganti Set Karakter" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6953,7 +6956,7 @@ msgid "Show query box" msgstr "Tampilkan kotak kueri" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -7082,7 +7085,7 @@ msgid "No partial dependencies selected!" msgstr "Tidak ada dependensi parsial yang dipilih!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -7215,13 +7218,13 @@ msgstr "Isi titk data" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Abaikan" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7806,14 +7809,20 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Kunci keamanan invalid." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, fuzzy, php-format #| msgid "Table %s already exists!" msgctxt "" @@ -7821,13 +7830,13 @@ msgctxt "" msgid "Table %s already exists!" msgstr "Tabel %s sudah ada!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Sembunyikan" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7850,22 +7859,22 @@ msgid "No such column" msgstr "Tidak ada kolom seperti itu" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "String" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Pastel di config.inc.php anda" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Tidak dapat mengimpor konfigurasi" @@ -7894,7 +7903,7 @@ msgstr "Baris" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Indeks" @@ -8750,7 +8759,7 @@ msgid "The number of threads that are not sleeping." msgstr "Jumlah thread yang tidak tidur." #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Parameter yang hilang:" @@ -8858,7 +8867,7 @@ msgstr "Tabel %s sudah ada!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "Kueri SQL Anda berhasil dieksekusi." @@ -8926,10 +8935,10 @@ msgstr "Gambarkan" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Galat" @@ -8953,7 +8962,7 @@ msgid "Failed to get description of column %s!" msgstr "Gagal mengambil jumlah baris sebenarnya." #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8964,7 +8973,7 @@ msgstr "Utama" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8974,7 +8983,7 @@ msgstr "Utama" msgid "Index" msgstr "Indeks" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "Kolom sukses dipindah." @@ -9028,7 +9037,7 @@ msgstr "Hak Akses Anda untuk melanjut tidak cukup!" msgid "View name can not be empty!" msgstr "Lihat nama tidak boleh kosong" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." @@ -9169,7 +9178,7 @@ msgstr "Query berikut telah gagal: \"%s\"" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL menyatakan: " @@ -9266,7 +9275,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "Tidak ada event dengan nama %1$s ditemukan dalam basis data %2$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, fuzzy, php-format #| msgid "" #| "Unable to use timezone %1$s for server %2$d. Please check your " @@ -9283,20 +9292,20 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin saat ini menggunakan zona waktu semula " "dari server database." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Gagal untuk menyetel pemeriksaan koneksi yang telah terkonfigurasi!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Parameter koneksi hilang!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Lihat %sdokumentasi kami%s untuk informasi lebih lanjut." @@ -9319,23 +9328,23 @@ msgstr "Tambahkan" msgid "Del" msgstr "Hapus" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Tersimpan pencarian bookmark:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Bookmark Baru" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Buat bookmark" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Perbarui bookmark" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Hapus bookmark" @@ -9597,8 +9606,8 @@ msgid "Full texts" msgstr "Teks penuh" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9611,8 +9620,8 @@ msgid "Descending" msgstr "Menurun" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9624,41 +9633,41 @@ msgstr "Menurun" msgid "Ascending" msgstr "Menaik" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "Baris telah dihapus." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "Tutup" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Menampilkan baris %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "total %1$d, %2$d dalam kueri" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "total %d" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Pencarian dilakukan dalam %01.4f detik." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Tautan tidak ditemukan!" @@ -10001,7 +10010,7 @@ msgstr "" "berikutnya." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -10031,13 +10040,13 @@ msgstr "Laporan" msgid "Automatically send report next time" msgstr "Selanjutnya kirim laporan otomatis" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -10045,18 +10054,18 @@ msgstr "" "Berkas %s sudah ada pada server. Ganti nama berkas atau centang opsi " "overwrite." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Server web tidak memiliki hak akses untuk menyimpan berkas %s." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "Mengekspor kueri mentah tidak didukung untuk metode ekspor ini." @@ -10132,75 +10141,75 @@ msgstr "" msgid "Session not found." msgstr "Ekstensi SOAP tidak ditemukan" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, fuzzy, php-format #| msgid "Jump to database \"%s\"." msgid "Jump to database “%s”." msgstr "Langsung ke basis data \"%s\"." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "SSL sedang tidak digunakan" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "SSL sedang digunakan tanpa vertifikasi" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "SSL sedang digunakan tanpa ijin sertifikat" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "SSL sedang digunakan" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "Fungsi PHP password_hash () dengan opsi default." -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "Fungsi PHP password_hash()" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "Menganalisis penjelasan di %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Tanpa kode PHP" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Kirim Kueri" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Profil" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Edit dikotak" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Data statis:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "%d kesalahan ditemukan dalam analisis." @@ -10315,11 +10324,11 @@ msgstr "Fungsi" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -10339,7 +10348,7 @@ msgstr "Fungsi" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -10392,7 +10401,7 @@ msgstr "%1$s (dekat %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10402,8 +10411,8 @@ msgstr "Jelajahi" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10415,7 +10424,7 @@ msgstr "Cari" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10425,8 +10434,8 @@ msgid "Insert" msgstr "Tambahkan" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10435,14 +10444,14 @@ msgid "Privileges" msgstr "Hak Akses" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operasi" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Pelacakan" @@ -10450,12 +10459,12 @@ msgstr "Pelacakan" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Trigger" @@ -10465,11 +10474,11 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Kueri" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routine" @@ -10479,15 +10488,15 @@ msgstr "Routine" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Event" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Desainer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Tengah kolom" @@ -10497,12 +10506,12 @@ msgid "User accounts" msgstr "Akun pengguna" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Log biner" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10510,21 +10519,21 @@ msgid "Replication" msgstr "Replikasi" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabel" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Set Karakter" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Mesin" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plugin" @@ -10627,11 +10636,11 @@ msgstr "Baru" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10649,7 +10658,7 @@ msgstr "Baru" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10677,8 +10686,8 @@ msgstr "Baru" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -11143,7 +11152,7 @@ msgstr "Mengosongkan" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Hapus" @@ -11380,18 +11389,18 @@ msgstr "Opsi dump data" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11403,7 +11412,7 @@ msgstr "Dumping data untuk tabel" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11412,11 +11421,11 @@ msgstr "Tak Ternilai" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11433,9 +11442,9 @@ msgid "Default" msgstr "Bawaan" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11444,8 +11453,8 @@ msgid "Links to" msgstr "Tautan ke" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11461,8 +11470,8 @@ msgid "Name" msgstr "Nama" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11471,23 +11480,23 @@ msgid "Definition" msgstr "Definisi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Stand-in struktur untuk tampilan" @@ -11597,11 +11606,11 @@ msgid "Database:" msgstr "Basis data" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Data:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktur:" @@ -11632,17 +11641,17 @@ msgstr "Judul laporan:" msgid "Dumping data" msgstr "Membuang data" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Operasi hasil pertanyaan" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Lihat struktur" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11723,7 +11732,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan data" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Potong tabel sebelum dimasukkan" @@ -11809,7 +11818,7 @@ msgstr "Tampaknya database Anda menggunakan fungsi;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11892,20 +11901,20 @@ msgstr "JENIS MIME UNTUK TABEL" msgid "RELATIONSHIPS FOR TABLE" msgstr "HUBUNGAN RELASI UNTUK TABEL" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Tampaknya tabel Anda menggunakan pemicu;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur untuk view %s diekspor sebagai tabel" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Lihat di bawah untuk tampilan aktual)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Kesalahan membaca data untuk tabel %s:" @@ -12228,7 +12237,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y pada %H.%M" @@ -12468,18 +12477,18 @@ msgstr "" "Gunakan aplikasi HOTP dan TOTP seperti FreeOTP, Google Authenticator atau " "layanan penyedia otentikasi lainnya (tambahkan keamanan akun melalui kode)." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Kunci Keamanan Perangkat Keras (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Menyediakan otentikasi menggunakan token keamanan perangkat keras yang " "mendukung FIDO U2F." @@ -12511,6 +12520,24 @@ msgstr "Autentikasi signon" msgid "For testing purposes only!" msgstr "Hanya untuk keperluan pengujian!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Kunci Keamanan Perangkat Keras (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Menyediakan otentikasi menggunakan token keamanan perangkat keras yang " +"mendukung FIDO U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13306,7 +13333,7 @@ msgstr "%s didinonaktifkan untuk server MySQL ini." msgid "This MySQL server does not support the %s storage engine." msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kunci primer harus \"PRIMARY\"!" @@ -13319,39 +13346,39 @@ msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" msgid "Unknown table status:" msgstr "status tabel tidak diketahui:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Sumber Basis data `%s` tidak ditemukan!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Target Basis data `%s` tidak ditemukan!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Basis data tidak valid:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nama tabel tidak valid:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Gagal mengganti nama table %1$s menjadi %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s telah berubah nama menjadi %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Tidak dapat menyimpan preferensi UI tabel!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13360,7 +13387,7 @@ msgstr "" "Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13371,15 +13398,15 @@ msgstr "" "terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika " "struktur tabel telah berubah." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Gagal ubah nama Indeks ke PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Kesalahan membuat kunci asing pada %1$s (periksa tipe data)" @@ -13546,14 +13573,14 @@ msgstr "Buat versi %s dari %s.%s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-byte integer, berkisar antara -128 sampai 127, unsigned berkisar antara 0 " "sampai 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13561,7 +13588,7 @@ msgstr "" "2-byte integer, berkisar antara -32,768 sampai 32,767, unsigned berkisar " "antara 0 sampai 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13569,7 +13596,7 @@ msgstr "" "3-byte integer, signed berkisar antara -8,388,608 sampai 8,388,607, unsigned " "berkisar antara 0 sampai 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13577,7 +13604,7 @@ msgstr "" "4-byte integer, signed berkisar antara -2,147,483,648 sampai 2,147,483,647, " "unsigned berkisar antara 0 sampai 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13586,7 +13613,7 @@ msgstr "" "9,223,372,036,854,775,807, unsigned berkisar antara 0 sampai " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13594,7 +13621,7 @@ msgstr "" "Sebuah Nomor fixed-point (M, D) - Jumlah maksimum digit (M) adalah 65 " "(standar 10), nomor maksimal desimal (D) adalah 30 (standar 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13602,7 +13629,7 @@ msgstr "" "small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai " "-1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13612,7 +13639,7 @@ msgstr "" "-1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan " "2.2250738585072014E-308 sampai 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13620,7 +13647,7 @@ msgstr "" "Sinonim untuk DOUBLE (kecuali: dalam mode REAL_AS_FLOAT SQL adalah sinonim " "untuk FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13628,7 +13655,7 @@ msgstr "" "Sebuah tipe bit-field (M), menyimpan M dari bit tiap nilai (standar adalah " "1, maksimum adalah 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13636,21 +13663,21 @@ msgstr "" "Sinonim untuk TINYINT(1), nilai nol dianggal false, nilai selain nol " "dianggap true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Sebuah alias untuk BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Sebuah Tanggal, Didukung pada kisaran %1$s sampai %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Kombinasi tanggal dan waktu, didukung pada kisaran %1$s sampai %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13659,12 +13686,12 @@ msgstr "" "03:14:07 UTC, disimpan sebagai jumlah detik sejak awal waktu (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Waktu, berkisar %1$s sampai %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13672,7 +13699,7 @@ msgstr "" "Format tahun dalam 4-digit (4, standar) atau 2 digit (2), mengizinkan nilai " "dari 70 (1970) sampai 69 (2069) atau 1901 sampai 2155 dan 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13680,7 +13707,7 @@ msgstr "" "Sebuah panjang tetap (0-255, standar 1) string yang selalu benar-diisi " "dengan spasi dengan panjang tertentu bila disimpan" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13689,7 +13716,7 @@ msgstr "" "Sebuah pangjang-variabel(%s) string, panjang maksimum efektif tunduk pada " "ukuran baris" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13697,7 +13724,7 @@ msgstr "" "kolom TEXT dengan panjang maksimum karakter 255 (2^8 - 1), disimpan dengan " "awalan satu-byte menunjukkan panjang nilai dalam byte" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13705,7 +13732,7 @@ msgstr "" "Kolom TEXT dengan panjang maksimum karakter 65,535 (2^16 - 1), disimpan " "dengan awalan dua-byte menunjukan panjang nilai dalam byte" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13713,7 +13740,7 @@ msgstr "" "Kolom TEXT dengan panjang maksimum karakter 16,777,215 (2^24 - 1), disimpan " "awalan tiga-byte menunjukan pajang nilai dalam byte" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13723,7 +13750,7 @@ msgstr "" "karakter, disimpan dengan awalan empat byte menunjukkan panjang nilai dalam " "byte" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13731,7 +13758,7 @@ msgstr "" "Serupa dengan tipe CHAR, tetapi string menyimpan karakter string biner byte " "daripada non-biner" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13739,7 +13766,7 @@ msgstr "" "Serupa dengan tipe VARCHAR, tetapi string menyimpan karakter string biner " "byte daripada non-biner" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13747,7 +13774,7 @@ msgstr "" "Sebuah kolom BLOB dengan panjang maksimum 255 (2^8 - 1) byte, disimpan " "dengan awalan satu-byte menunjukkan panjang nilai" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13755,7 +13782,7 @@ msgstr "" "Sebuah kolom BLOB dengan panjang maksimum 16,777,215 (2^24 - 1) byte, " "disimpan dengan awalan tiga byte yang menunjukkan panjang nilai" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13763,7 +13790,7 @@ msgstr "" "Sebuah kolom BLOB dengan panjang maksimum 65,535 (2^16 - 1) byte, disimpan " "dengan awalan dua-byte menunjukkan panjang nilai" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13771,7 +13798,7 @@ msgstr "" "Sebuah kolom BLOB dengan panjang maksimum 4,294,967,295 atau 4GiB (2^32 - 1) " "byte, disimpan dengan awalan empat byte menunjukkan panjang nilai" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13779,43 +13806,43 @@ msgstr "" "Sebuah pencacahan, nilai dipilih dari daftar hingga 65,535 atau nilai khusus " "'' error" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Sebuah nilai tunggal dipilih dari satu set hingga 64 anggota" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Suatu jenis yang dapat menyimpan geometri dari jenis apa pun" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Sebuah titik dalam ruang 2-dimensi" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Kurva dengan interpolasi linier antara titik" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Sebuah poligon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Sebuah koleksi poin" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Sebuah koleksi kurva dengan interpolasi linier antara titik" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Sebuah koleksi poligon" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Sebuah koleksi objek geometri dari jenis apa pun" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13823,7 +13850,7 @@ msgstr "" "Menyimpan dan memungkinkan akses efisien untuk data dalam dokumen JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13831,17 +13858,23 @@ msgstr "" "Ditujukan untuk penyimpanan alamat IPv6, serta alamat IPv4 dengan asumsi " "pemetaan konvensional alamat IPv4 menjadi alamat IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Simpan Universally Unique Identifier (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerik" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Tanggal dan waktu" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spasial" @@ -13868,85 +13901,85 @@ msgstr "Konfigurasi tidak dapat disimpan" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sTabel%s penyimpanan konfigurasi phpMyAdmin tidak ditemukan." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Bulan Mei" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Agu" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Des" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13954,55 +13987,55 @@ msgid "Sun" msgstr "Min" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Sen" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Sel" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Rab" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Kam" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Jum" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Pengguna" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Urutan" @@ -14175,7 +14208,7 @@ msgstr "keduanya dari yang di atas" msgid "neither of the above" msgstr "tidak keduanya dari yang di atas" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfigurasi sudah ada, persiapan di non-aktifkan!" @@ -14211,7 +14244,7 @@ msgstr "Tidak ada" msgid "As defined:" msgstr "Seperti yang didefinisikan:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -14219,41 +14252,41 @@ msgid "" "to the documentation for more details" msgstr "Hak Akses Anda untuk melanjut tidak cukup!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unik" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Teks penuh" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spasial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Ekspresi" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "pertama" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "setelah %s" @@ -14410,7 +14443,7 @@ msgstr "Mesin" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14499,7 +14532,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14818,7 +14851,7 @@ msgid "Search this table" msgstr "Cari di tabel ini" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Tambah kolom" @@ -14847,7 +14880,7 @@ msgstr "Klik untuk mengurutkan." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14881,24 +14914,24 @@ msgstr "Komentar database" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Cetak" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Dipadatkan" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinalitas" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Indeks belum ditentukan!" @@ -15796,6 +15829,11 @@ msgstr[0] "%s tabel" msgid "Sum" msgstr "Jumlah" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Lanjutkan" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Dari" @@ -15901,16 +15939,11 @@ msgstr "Menghapus kolom dari daftar pusat" msgid "Make consistent with central list" msgstr "Kolom textarea CHAR" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Lanjutkan" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Anda yakin?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -16057,7 +16090,7 @@ msgstr "Tabel yang tidak dilacak" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Lacak tabel" @@ -16835,19 +16868,19 @@ msgid "Other options" msgstr "Opsi lain:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Ubah nama menjadi" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Kunci primer telah dihapus." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indeks %s telah dihapus." @@ -17181,6 +17214,29 @@ msgstr "" msgid "Verify" msgstr "Verifikasi" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Sambungkan perangkat FIDO U2F Anda ke port USB komputer Anda. Kemudian " +"konfirmasikan pendaftaran di perangkat." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Sambungkan perangkat FIDO U2F Anda ke port USB komputer Anda. Kemudian " +"konfirmasikan login di perangkat." + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -17188,6 +17244,7 @@ msgid "View:" msgstr "Penonton:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -17374,8 +17431,8 @@ msgstr "" "Anda dapat mengatur ulang semua pengaturan Anda dan memulihkan nilai bawaan." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -17402,7 +17459,7 @@ msgstr "" "menggunakan password saja." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -17423,6 +17480,7 @@ msgstr "" "untuk mengaktifkan backend otentikasi." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Paket composer berikut tidak ada:" @@ -17438,13 +17496,24 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 #, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Otentikasi dua langkah tidak tersedia, silakan pasang dependensi opsional " +"untuk mengaktifkan backend otentikasi." + +#: templates/preferences/two_factor/main.twig:37 +#, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Anda mengaktifkan otentikasi dua langkah." @@ -19911,7 +19980,7 @@ msgid "Start row:" msgstr "Awal baris:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -20015,7 +20084,7 @@ msgstr "Kolom textarea CHAR" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" @@ -20026,37 +20095,37 @@ msgstr "Hapus kolom" msgid "Move the columns by dragging them up and down." msgstr "Pindahkan kolom dengan menyeret mereka naik dan turun." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Tampilan edit" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Usulkan struktur tabel" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalisasi" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy #| msgid "Track table" msgid "Track view" msgstr "Tampilan lacak" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Tambahkan %s kolom" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "Pada Awal Tabel" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -21023,9 +21092,6 @@ msgstr "Nama kolom" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Alias untuk BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Simpan Universally Unique Identifier (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ig.po b/po/ig.po index 97a54d3ac6..9a8d9e77ef 100644 --- a/po/ig.po +++ b/po/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2016-09-01 17:40+0000\n" "Last-Translator: CHINONSO \n" "Language-Team: Igbo \n" "Language-Team: Italian %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10132,8 +10141,8 @@ msgstr "Mostra" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10145,7 +10154,7 @@ msgstr "Cerca" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10155,8 +10164,8 @@ msgid "Insert" msgstr "Inserisci" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10165,14 +10174,14 @@ msgid "Privileges" msgstr "Privilegi" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operazioni" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Monitoraggio" @@ -10180,12 +10189,12 @@ msgstr "Monitoraggio" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Trigger" @@ -10195,11 +10204,11 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Query da esempio" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routine" @@ -10209,15 +10218,15 @@ msgstr "Routine" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Eventi" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Colonne centrali" @@ -10227,12 +10236,12 @@ msgid "User accounts" msgstr "Account utenti" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Log binario" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10240,21 +10249,21 @@ msgid "Replication" msgstr "Replicazione" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabili" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motori" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plugin" @@ -10354,11 +10363,11 @@ msgstr "Nuovo" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10376,7 +10385,7 @@ msgstr "Nuovo" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10404,8 +10413,8 @@ msgstr "Nuovo" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10842,7 +10851,7 @@ msgstr "Tronca" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Elimina" @@ -11079,18 +11088,18 @@ msgstr "Opzioni del dump dei dati" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11102,7 +11111,7 @@ msgstr "Dump dei dati per la tabella" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11111,11 +11120,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11132,9 +11141,9 @@ msgid "Default" msgstr "Predefinito" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11143,8 +11152,8 @@ msgid "Links to" msgstr "Collegamenti a" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11160,8 +11169,8 @@ msgid "Name" msgstr "Nome" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11170,23 +11179,23 @@ msgid "Definition" msgstr "Definizione" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struttura per vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -11291,11 +11300,11 @@ msgid "Database:" msgstr "Database:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Dati:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struttura:" @@ -11320,15 +11329,15 @@ msgstr "Titolo del report:" msgid "Dumping data" msgstr "Dump dei dati" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Dati del risultato della query" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Vedi struttura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Stand in" @@ -11409,7 +11418,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -11492,7 +11501,7 @@ msgstr "Il tuo database sembra utilizzare le funzioni;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -11570,20 +11579,20 @@ msgstr "MEDIA TYPES FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELAZIONI PER TABELLA" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struttura per la vista %s esportata come una tabella" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Vedi sotto per la vista effettiva)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "" @@ -11900,7 +11909,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" @@ -12127,14 +12136,18 @@ msgstr "" "Fornisce l'autenticazione tramite applicazioni HOTP e TOTP quali FreeOTP, " "Google Authenticator o Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Chiave di Sicurezza Hardware (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Fornisce l'autenticazione tramite dispositivi di sicurezza hardware che " "supportano lo standard FIDO U2F, come i dispositivi Yubikey." @@ -12164,6 +12177,24 @@ msgstr "Semplice autenticazione a due fattori" msgid "For testing purposes only!" msgstr "Solo a scopo di test!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Chiave di Sicurezza Hardware (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Fornisce l'autenticazione tramite dispositivi di sicurezza hardware che " +"supportano lo standard FIDO U2F, come i dispositivi Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12904,7 +12935,7 @@ msgstr "%s è stato disabilitato su questo server MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Il nome della chiave primaria deve essere \"PRIMARY\"!" @@ -12917,40 +12948,40 @@ msgstr "Problemi con gli indici della tabella `%s`" msgid "Unknown table status:" msgstr "stato della tabella sconosciuto:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Database di origine `%s` non é stato trovato!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Tema `%s` non é stato trovato!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Database non valido:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nome di tabella non valido:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Errore nel rinominare la tabella %1$s in %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabella %1$s è stata rinominata %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "" "Impossibile salvare la tabella delle preferenze per l'interfaccia utente!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12959,7 +12990,7 @@ msgstr "" "Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12970,15 +13001,15 @@ msgstr "" "saranno mantenuti se ricaricate questa pagina. Controllate se la struttura " "della tabella è cambiata." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Impossibile rinominare l'indice a PRIMARIO!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Errore nel creare una foreign key su %1$s (controlla il tipo di dati)" @@ -13138,14 +13169,14 @@ msgstr "La versione %1$s di %2$s è stata cancellata." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Intero di un byte, con segno l'intervallo va da -128 a 127, senza segno " "l'intervallo va da 0 a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13153,7 +13184,7 @@ msgstr "" "Intero di due byte, con segno l'intervallo va da -32.768 a 32767, senza " "segno l'intervallo va da 0 a 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13161,7 +13192,7 @@ msgstr "" "Intero di 3 byte, con segno l'intervallo va da -8.388.608 a 8.388.607, senza " "segno l'intervallo va da 0 a 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13169,7 +13200,7 @@ msgstr "" "Intero di 4 byte, con segno l'intervallo va da -2.147.483.648 a " "2.147.483.647, senza segno l'intervallo va da 0 a 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13178,7 +13209,7 @@ msgstr "" "9.223.372.036.854.775.807, senza segno l'intervallo va da 0 a " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13186,7 +13217,7 @@ msgstr "" "Un numero in virgola fissa (M, D) - il numero massimo di cifre (M) è 65 " "(default 10), il numero massimo di decimali (D) è 30 (default 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13195,7 +13226,7 @@ msgstr "" "-3.402823466E+38 a -1.175494351E-38, 0, e da 1.175494351E-38 a " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13205,7 +13236,7 @@ msgstr "" "-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e da " "2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13213,14 +13244,14 @@ msgstr "" "Sinonimo per DOUBLE (eccezione: in modalità REAL_AS_FLOAT SQL è sinonimo per " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "Un campo tipo bit (M), memorizza M bit per valore (default 1, massimo 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13228,22 +13259,22 @@ msgstr "" "Sinonimo di TINYINT(1), lo zero è considerato false, i valori diversi da " "zero sono considerati true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Alias per BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Una data, l'intervallo supportato va da %1$s a %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Una combinazione di data e ora, l'intervallo supportato va da %1$s a %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13251,12 +13282,12 @@ msgstr "" "Un timestamp compreso tra 1970-01-01 00:00:01 UTC e 2038-01-09 03:14:07 UTC, " "memorizzato come numero di secondi dal 1970-01-01 00:00:00 UTC" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Un orario, l'intervallo va da %1$s a %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13264,7 +13295,7 @@ msgstr "" "Un anno in formato quattro o due numeri (4 di default), i valori accettati " "vanno da 70 (1970) a 69 (2069) o tra 1901 a 2155 e 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13273,7 +13304,7 @@ msgstr "" "è sempre riempita a destra con spazi bianchi per raggiungere la lunghezza " "specificata" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13282,7 +13313,7 @@ msgstr "" "Una stringa a linghezza variabile (%s), la lunghezza massima effettiva è " "subordinata alla larghezza massima della riga" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13291,7 +13322,7 @@ msgstr "" "memorizzata con un prefisso di 1 byte che indica la lunghezza della stringa " "in byte" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13300,7 +13331,7 @@ msgstr "" "memorizzata con un prefisso di 2 byte che indica la lunghezza della stringa " "in byte" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13309,7 +13340,7 @@ msgstr "" "memorizzata con un prefisso di 3 byte che indica la lunghezza della stringa " "in byte" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13319,14 +13350,14 @@ msgstr "" "o 4GiB , memorizzata con un prefisso di 4 byte che indica la lunghezza della " "stringa in byte" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" "Come il tipo CHAR, ma memorizza stringhe binarie anziché stringhe non-binarie" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13334,7 +13365,7 @@ msgstr "" "Come il tipo VARCHAR, ma memorizza stringhe binarie anziché stringhe non-" "binarie" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13342,7 +13373,7 @@ msgstr "" "Una colonna tipo BLOB con una lunghezza massima di 255 (2^8 - 1) byte, " "memorizzata con un prefisso di 1 byte che indica la lunghezza del valore" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13351,7 +13382,7 @@ msgstr "" "byte, memorizzata con un prefisso di 3 byte che indica la lunghezza del " "valore" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13359,7 +13390,7 @@ msgstr "" "Una colonna tipo BLOB con una lunghezza massima di 65,535 (2^16 - 1) byte, " "memorizzata con un prefisso di 2 byte che indica la lunghezza del valore" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13368,7 +13399,7 @@ msgstr "" "byte o 4Gb, memorizzata con un prefisso di 4 byte che indica la lunghezza " "del valore" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13376,43 +13407,43 @@ msgstr "" "Una enumerazione, scelta fra una lista contenente fino a 65,535 valori " "oppure il valore speciale ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Un valore singolo scelto da un set con un massimo di 64 membri" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un tipo che può archiviare una geometria qualsiasi" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un punto in uno spazio bidimensionale" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Una curva con interpolazioni lineari tra punti" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un poligono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Una collezione di punti" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Una collezione di curve con interpolazioni lineari tra punti" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Una collezione di poligoni" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Una collezione di oggetti geometrici di qualsiasi tipo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13420,7 +13451,7 @@ msgstr "" "Memorizza e abilita un accesso efficiente ai dati nei documenti di tipo JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13429,17 +13460,23 @@ msgstr "" "IPv4 assumendo la mappattura convenzionale degli indirizzi IPv4 all'interno " "di indirizzi IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Archivia un identificatore univoco universale (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerico" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data e ora" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spaziale" @@ -13466,139 +13503,139 @@ msgstr "" "Non è possibile accedere al database di memorizzazione della configurazione " "di phpMyAdmin." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Gen" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Giu" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Lug" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ago" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Set" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Ott" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dic" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Lun" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Mar" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mer" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Gio" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Ven" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Utenti" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordinamento" @@ -13771,7 +13808,7 @@ msgstr "entrambi i precedenti" msgid "neither of the above" msgstr "nessuno dei precedenti" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "La configurazione esiste già, il setup è disabilitato!" @@ -13806,7 +13843,7 @@ msgstr "Nessuno" msgid "As defined:" msgstr "Come definito:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13814,41 +13851,41 @@ msgstr "" "Non hai i permessi per effettuare questa operazione; controlla la " "documentazione per maggiori dettagli" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unica" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Testo completo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spaziale" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Espressione" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primo" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "dopo %s" @@ -13978,7 +14015,7 @@ msgstr "Motore" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14049,7 +14086,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14320,7 +14357,7 @@ msgid "Search this table" msgstr "Cerca nella tabella" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Aggiungi campo" @@ -14349,7 +14386,7 @@ msgstr "Clicca per ordinare." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14379,24 +14416,24 @@ msgstr "Commento al database:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Stampa" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Compresso" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalità" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Nessun indice definito!" @@ -15200,6 +15237,11 @@ msgstr[1] "%s tabelle" msgid "Sum" msgstr "Totali" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continua" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Da" @@ -15291,16 +15333,11 @@ msgstr "Rimuove campi dalla lista centrale" msgid "Make consistent with central list" msgstr "Rendi consistente con la lista centrale" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continua" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Sei sicuro?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15440,7 +15477,7 @@ msgstr "Tabelle non monitorate" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Controlla tabella" @@ -16159,17 +16196,17 @@ msgid "Other options" msgstr "Altre opzioni" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Rinomina" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "La chiave primaria è stata eliminata." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "L'indice %s è stato eliminato." @@ -16492,11 +16529,35 @@ msgstr "" msgid "Verify" msgstr "Verifica" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Collega per favore il tuo dispositivo FIDO U2F alla porta USB del tuo " +"computer. Quindi conferma la registrazione del dispositivo." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Collega per favore il tuo dispositivo FIDO U2F alla porta USB del tuo " +"computer. Quindi conferma la login sul dispositivo." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Vista:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Indietro" @@ -16672,8 +16733,8 @@ msgstr "" "predefiniti." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configura l'autenticazione a due fattori" @@ -16694,7 +16755,7 @@ msgstr "" "login usando la sola password." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Disabilita l'autenticazione a due fattori" @@ -16711,6 +16772,7 @@ msgstr "" "componenti di backend per abilitarla." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "I seguenti pacchetti di Composer sono mancanti:" @@ -16728,6 +16790,17 @@ msgstr "" "questo account." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"L'autenticazione a due fattori non è disponibile, devi installare i " +"componenti di backend per abilitarla." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16735,7 +16808,7 @@ msgstr "" "L'autenticazione a due fattori non è disponibile, abilita PhpMyAdmin " "configuration storage per poterla utilizzare." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Hai abilitato l'autenticazione a due fattori." @@ -18903,7 +18976,7 @@ msgid "Start row:" msgstr "Riga iniziale:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partizioni" @@ -18985,7 +19058,7 @@ msgstr "Aggiungi ai campi centrali" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Muovi campi" @@ -18993,33 +19066,33 @@ msgstr "Muovi campi" msgid "Move the columns by dragging them up and down." msgstr "Sposta i campi trascinandoli su e giù." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Modifica la vista" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizza" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Vista traccia" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Aggiungi %s campo/i" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "All'inizio della tabella" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Crea un indice su %s campi" @@ -19871,9 +19944,6 @@ msgstr "Nomi colonne" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un alias per BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Archivia un identificatore univoco universale (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ja.po b/po/ja.po index 556ca60288..500055de69 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-11-27 12:48+0000\n" "Last-Translator: Masahiro Fujimoto \n" "Language-Team: Japanese %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9830,8 +9839,8 @@ msgstr "表示" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9843,7 +9852,7 @@ msgstr "検索" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9853,8 +9862,8 @@ msgid "Insert" msgstr "挿入" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9863,14 +9872,14 @@ msgid "Privileges" msgstr "権限" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "操作" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "SQL コマンドの追跡" @@ -9878,12 +9887,12 @@ msgstr "SQL コマンドの追跡" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "トリガ" @@ -9893,11 +9902,11 @@ msgstr "トリガ" msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "クエリ" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "ルーチン" @@ -9907,15 +9916,15 @@ msgstr "ルーチン" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "イベント" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "デザイナ" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "主要カラム" @@ -9925,12 +9934,12 @@ msgid "User accounts" msgstr "ユーザアカウント" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "バイナリログ" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9938,21 +9947,21 @@ msgid "Replication" msgstr "レプリケーション" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "変数" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "文字セット" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "エンジン" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "プラグイン" @@ -10048,11 +10057,11 @@ msgstr "新規作成" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10070,7 +10079,7 @@ msgstr "新規作成" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10098,8 +10107,8 @@ msgstr "新規作成" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10513,7 +10522,7 @@ msgstr "切り捨て" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "削除" @@ -10748,18 +10757,18 @@ msgstr "データのダンプオプション" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10771,7 +10780,7 @@ msgstr "テーブルのデータのダンプ" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10780,11 +10789,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10801,9 +10810,9 @@ msgid "Default" msgstr "デフォルト値" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10812,8 +10821,8 @@ msgid "Links to" msgstr "リンク先" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10829,8 +10838,8 @@ msgid "Name" msgstr "名前" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10839,23 +10848,23 @@ msgid "Definition" msgstr "定義" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -10958,11 +10967,11 @@ msgid "Database:" msgstr "データベース:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "データ:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "構造:" @@ -10987,15 +10996,15 @@ msgstr "レポートのタイトル:" msgid "Dumping data" msgstr "データのダンプ" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "クエリ結果のデータ" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "ビュー構造" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Standin" @@ -11068,7 +11077,7 @@ msgid "Data creation options" msgstr "データ作成オプション" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11147,7 +11156,7 @@ msgstr "データベースはルーチンを利用しているようです;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "エイリアスエクスポートは確実に動作しない場合があります。" @@ -11221,20 +11230,20 @@ msgstr "テーブルに含まれているメディアタイプ" msgid "RELATIONSHIPS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "データベースはトリガを利用しているようです;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "ビュー %s の構造をテーブルとしてエクスポート" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(実際のビューを参照するには下にあります)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "テーブル %s のデータ読み取りエラー:" @@ -11545,7 +11554,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" @@ -11764,14 +11773,18 @@ msgstr "" "FreeOTP、Google Authenticator、AuthyなどのHOTPおよびTOTPアプリケーションを使" "用した認証を提供します。" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "ハードウェアセキュリティキー (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "YubikeyなどのFIDO U2Fをサポートするハードウェアセキュリティトークンを使用して" "認証を行います。" @@ -11801,6 +11814,24 @@ msgstr "単純な二要素認証" msgid "For testing purposes only!" msgstr "テスト目的のみ!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "ハードウェアセキュリティキー (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"YubikeyなどのFIDO U2Fをサポートするハードウェアセキュリティトークンを使用して" +"認証を行います。" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12534,7 +12565,7 @@ msgstr "%s は無効になっています。" msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません。" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主キーの名前は PRIMARY でなければなりません!" @@ -12547,39 +12578,39 @@ msgstr "テーブル `%s` のインデックスに問題があります" msgid "Unknown table status:" msgstr "不明なテーブルステータス:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "元にするデータベース `%s` が見つかりません!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "対象先のデータベース `%s` が見つかりません!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "不正なデータベースです:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "不正なテーブル名:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "テーブル 「%1$s」 を 「%2$s」 に名前変更に失敗しました!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "テーブル %1$s の名称を %2$s に変更しました。" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "テーブルに対する環境設定が保存できません!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12588,7 +12619,7 @@ msgstr "" "テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12598,15 +12629,15 @@ msgstr "" "環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "インデックス名を PRIMARY に変更することはできません!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12771,18 +12802,18 @@ msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "1 バイト整数、符号付きは -128 から 127、符号なしは 0 から 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "2 バイト整数、符号付きは -32,768 から 32,767、符号なしは 0 から 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12790,7 +12821,7 @@ msgstr "" "3 バイト整数、符号付きは -8,388,608 から 8,388,607、符号なしは 0 から " "16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12798,7 +12829,7 @@ msgstr "" "4 バイト整数、符号付きは -2,147,483,648 から 2,147,483,647、符号なしは 0 か" "ら 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12806,7 +12837,7 @@ msgstr "" "8 バイト整数、符号付きは -9,223,372,036,854,775,808 から " "9,223,372,036,854,775,807、符号なしは 0 から 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12814,7 +12845,7 @@ msgstr "" "固定小数 (M, D) - 整数部の最大桁数 M は 65 (デフォルトは 10)、小数部のの最大" "桁数 D は 30 (デフォルトは 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12822,7 +12853,7 @@ msgstr "" "単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、" "1.175494351E-38 から 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12832,7 +12863,7 @@ msgstr "" "-2.2250738585072014E-308、0、2.2250738585072014E-308 から " "1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -12840,7 +12871,7 @@ msgstr "" "DOUBLE と同義 (例外:REAL を FLOAT として扱うモード (REAL_AS_FLOAT) では、" "FLOAT と 同義になります)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -12848,29 +12879,29 @@ msgstr "" "ビットフィールドタイプ(M)。値ごとにMビットを保管します(デフォルトは1、最大" "は64です)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "TINYINT(1) と同義、0 が FALSE と見なされ、0 以外が TRUE と見なされます" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、符号なし、" "NULL なし、AUTO_INCREMENT、ユニークキー)" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "日付、有効範囲は %1$s から %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "日時 (日付と時刻)、有効範囲は %1$s から %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12878,12 +12909,12 @@ msgstr "" "タイムスタンプ、範囲は 1970-01-01 00:00:01 UTC から 2038-01-09 03:14:07 UTC " "で、1970-01-01 00:00:00 UTC からの経過秒数を示しています" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "時刻、範囲は %1$s から %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12891,7 +12922,7 @@ msgstr "" "年、4 桁 (デフォルト) または 2 桁、有効な値は 2 桁が 70 (1970) から 69 " "(2069)、4 桁が 1901 から 2155 および 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12899,7 +12930,7 @@ msgstr "" "固定長文字列 (長さは 0-255、デフォルトは 1)、満たない分は右側が空白で埋められ" "ます" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12907,7 +12938,7 @@ msgid "" msgstr "" "可変長文字列 (長さは %s)、長さの有効上限は行の最大サイズの制約を受けます" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12915,7 +12946,7 @@ msgstr "" "TEXT カラム、最大長 255 (2^8 - 1)、これの長さは単位がバイトで、1 バイト値で表" "現できる範囲です" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12923,7 +12954,7 @@ msgstr "" "TEXT カラム、最大長 65,535 (2^16 - 1)、これの長さは単位がバイトで、2 バイト値" "で表現できる範囲です" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12931,7 +12962,7 @@ msgstr "" "TEXT カラム、最大長 16,777,215 (2^24 - 1)、これの長さは単位がバイトで、3 バイ" "ト値で表現できる範囲です" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12940,14 +12971,14 @@ msgstr "" "TEXT カラム、最大長 4,294,967,295 または 4GiB (2^32 - 1)、これの長さは単位が" "バイトで、4 バイト値で表現できる範囲です" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" "CHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されます" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -12955,7 +12986,7 @@ msgstr "" "VARCHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されま" "す" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12963,7 +12994,7 @@ msgstr "" "BLOB カラム、最大 255 (2^8 - 1) バイト、これの長さは 1 バイト値で表現できる範" "囲です" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -12971,7 +13002,7 @@ msgstr "" "BLOB カラム、最大 16,777,215 (2^24 - 1) バイト、これの長さは 3 バイト値で表現" "できる範囲です" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -12979,7 +13010,7 @@ msgstr "" "BLOB カラム、最大 65,535 (2^16 - 1) バイト、これの長さは 2 バイト値で表現でき" "る範囲です" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -12987,7 +13018,7 @@ msgstr "" "BLOB カラム、最大 4,294,967,295 バイトまたは 4GiB (2^32 - 1)、これの長さは 4 " "バイト値で表現できる範囲です" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -12995,43 +13026,43 @@ msgstr "" "列挙型、最大 65,535 個の列挙値または特殊な値 (エラー値 '') を取ることができま" "す" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "最大 64 メンバに対しての有無を一括で扱う単一の値" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "任意の型の幾何データが保存できるデータ型" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "2 次元空間の点" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "多点間の線形補間による曲線" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "ポリゴン" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "座標の集合" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "多点間の線形補間による曲線の集合" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "ポリゴンの集合" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "任意の型の幾何物体の集合" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13039,7 +13070,7 @@ msgstr "" "JSON(JavaScript Object Notation)文書内のデータを格納し、効率的にデータにア" "クセスする" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13047,17 +13078,23 @@ msgstr "" "従来の IPv 4 アドレスから IPv 6 アドレスへのマッピングを想定した IPv 6 アドレ" "スおよび IPv 4 アドレスの格納を目的としています" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "汎用一意識別子 (UUID) 保存用" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "数値" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "日付・時刻" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "空間データ" @@ -13082,139 +13119,139 @@ msgstr "設定が保存できません" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "phpMyAdmin構成ストレージデータベースにアクセスできませんでした。" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "最長: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "1 月" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "2 月" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "3 月" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "6 月" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "7 月" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "8 月" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "9 月" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "10 月" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "11 月" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "12 月" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "日" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "月" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "火" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "水" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "木" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "金" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "土" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "午後" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "午前" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "ユーザ" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "ソート" @@ -13387,7 +13424,7 @@ msgstr "上の両方を行う" msgid "neither of the above" msgstr "上のどちらでもない" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "構成は、既に存際しています。セットアップは無効化された!" @@ -13422,7 +13459,7 @@ msgstr "なし" msgid "As defined:" msgstr "ユーザ定義:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13430,41 +13467,41 @@ msgstr "" "この操作を実行する十分な権限がありません。詳細についてはドキュメンテーション" "を参照してください" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "ユニーク" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "全文" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "空間" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "式" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "最初へ" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s の後へ" @@ -13594,7 +13631,7 @@ msgstr "エンジン" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13664,7 +13701,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13932,7 +13969,7 @@ msgid "Search this table" msgstr "このテーブルを検索" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "カラムを追加する" @@ -13961,7 +13998,7 @@ msgstr "クリックでソート。" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13991,24 +14028,24 @@ msgstr "データベースのコメント:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "印刷" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "圧縮" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "一意な値の数" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "インデックスが定義されていません!" @@ -14807,6 +14844,11 @@ msgstr[0] "%s テーブル" msgid "Sum" msgstr "合計" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "続ける" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "付け替え元" @@ -14898,16 +14940,11 @@ msgstr "主要カラムリストから削除" msgid "Make consistent with central list" msgstr "主要カラムリストと整合を取る" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "続ける" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "本当ですか?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15045,7 +15082,7 @@ msgstr "SQL コマンドを追跡していないテーブル" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "テーブルを追跡する" @@ -15761,17 +15798,17 @@ msgid "Other options" msgstr "その他のオプション" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "名前の変更" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "主キーを削除しました。" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "インデックス %s を削除しました。" @@ -16090,11 +16127,35 @@ msgstr "" msgid "Verify" msgstr "検証" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"FIDO U2FデバイスをコンピューターのUSBポートに接続してください。 その後、装置" +"の登録を確認して下さい。" + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"FIDO U2FデバイスをコンピューターのUSBポートに接続してください。 その後、装置" +"のログインを確認して下さい。" + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "ビュー:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "戻る" @@ -16271,8 +16332,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "すべての設定をリセットして、デフォルト値に復元します。" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "二要素認証を設定する" @@ -16293,7 +16354,7 @@ msgstr "" "す。" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "二要素認証が無効にする" @@ -16310,6 +16371,7 @@ msgstr "" "認証は使用不可能です。" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "以下のComposerパッケージは存在しません:" @@ -16324,13 +16386,24 @@ msgid "" msgstr "このユーザアカウントは二要素認証が設定されていないが、設定は可能です。" #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"二要素認証を関係している依存パッケージがインストールされていないので、二要素" +"認証は使用不可能です。" + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" "二要素認証は使用できません。phpMyAdmin環境保管領域を有効にしてください。" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "二要素認証が有効化しました。" @@ -18466,7 +18539,7 @@ msgid "Start row:" msgstr "開始行:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "パーティション" @@ -18548,7 +18621,7 @@ msgstr "主要カラムに追加" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "カラムを移動させる" @@ -18556,33 +18629,33 @@ msgstr "カラムを移動させる" msgid "Move the columns by dragging them up and down." msgstr "ドラックして上下させ、カラムを移動させてください。" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "ビューを編集する" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "正規化" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "追跡の閲覧" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s 個のカラムを追加する" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "テーブルの先頭" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "%s カラムにインデックスを作成する" @@ -19399,9 +19472,6 @@ msgstr "カラム名" #~ "BIGINT NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、NULL なし、" #~ "AUTO_INCREMENT、ユニークキー)" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "汎用一意識別子 (UUID) 保存用" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ka.po b/po/ka.po index 68686090cb..8dc0bec9ab 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-04-02 14:06+0000\n" "Last-Translator: Malkhazi Dartsmelidze \n" "Language-Team: Georgian \n" "Language-Team: Kabyle \n" "Language-Team: Kazakh %2$s mańynda)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10056,8 +10065,8 @@ msgstr "Sharlaý" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10069,7 +10078,7 @@ msgstr "Izdeý" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10079,8 +10088,8 @@ msgid "Insert" msgstr "Kiristirý" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10089,14 +10098,14 @@ msgid "Privileges" msgstr "Artyqshylyqtar" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Áreketter" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Qadaǵalaý" @@ -10104,12 +10113,12 @@ msgstr "Qadaǵalaý" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Trıgerler" @@ -10119,11 +10128,11 @@ msgstr "Trıgerler" msgid "Database seems to be empty!" msgstr "Derekqor bos sıaqty kórinedi!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Saýal" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rásimder" @@ -10133,15 +10142,15 @@ msgstr "Rásimder" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Oqıǵalar" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Qurastyrǵysh" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Ortalyq baǵandar" @@ -10151,12 +10160,12 @@ msgid "User accounts" msgstr "Paıdalanushy tirkelgileri" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Ekilik jurnal" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10164,21 +10173,21 @@ msgid "Replication" msgstr "Replıkalaý" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Aınymalylar" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Tańbalar jıyndary" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Mehanızmdar" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plagınder" @@ -10277,11 +10286,11 @@ msgstr "Jańa" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10299,7 +10308,7 @@ msgstr "Jańa" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10327,8 +10336,8 @@ msgstr "Jańa" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10756,7 +10765,7 @@ msgstr "Bosatý" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Joıý" @@ -10989,18 +10998,18 @@ msgstr "Derekter dampynyń opsıalary" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Keste úshin derekterdi damptaý" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11012,7 +11021,7 @@ msgstr "Keste úshin derekterdi damptaý" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11021,11 +11030,11 @@ msgstr "Bosmán" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11042,9 +11051,9 @@ msgid "Default" msgstr "Ádepki" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11053,8 +11062,8 @@ msgid "Links to" msgstr "Kelesige siltemeler" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11070,8 +11079,8 @@ msgid "Name" msgstr "Aty" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11080,23 +11089,23 @@ msgid "Definition" msgstr "Anyqtamasy" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Keste úshin keste qurylymy" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Kórinis úshin qurylym" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Kórinis úshin qosarlaýshy qurylym" @@ -11201,11 +11210,11 @@ msgid "Database:" msgstr "Derekqor:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Derekter:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Qurylym:" @@ -11232,17 +11241,17 @@ msgstr "Esep taqyryby:" msgid "Dumping data" msgstr "Derekterdi damptaý" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Сұраныс нәтижелері" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Qurylymdy kórý" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Qosarlaý" @@ -11322,7 +11331,7 @@ msgid "Data creation options" msgstr "Derekter jasaý opsıalary" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Kiristirý aldynda kesteni bosatý" @@ -11406,7 +11415,7 @@ msgstr "Derekqoryńyz rásimderdi paıdalanatyny kórinedi;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "búrkenshik atyn eksporttaý barlyq jaǵdaılarda senimdi oryndalmaýy múmkin." @@ -11483,20 +11492,20 @@ msgstr "KESTE ÚSHIN MIME TÚRLERI" msgid "RELATIONSHIPS FOR TABLE" msgstr "KESTE ÚSHIN QATYNASTYQTAR" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Kesteńiz trıgerlerdi paıdalanatyny kórinedi;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "%s kórinisi úshin qurylym keste retinde eksporttaldy" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Naqty kórinis úshin tómende qarańyz)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "%s kestesiniń derekterin oqý qatesi:" @@ -11811,7 +11820,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M" @@ -12041,18 +12050,18 @@ msgstr "" "FreeOTP, Google Authenticator nemese Authy sıaqty HOTP jáne TOTP " "qoldanbalary arqyly túpnusqalyq rastamasyn jetkizedi." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Aparattyq qaýipsizdik kilti (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "FIDO U2F qoldaıtyn aparattyq qaýipsizdik tańbalaýyshtary arqyly túpnusqalyq " "rastamasyn jetkizedi." @@ -12082,6 +12091,24 @@ msgstr "Qarapaıym qos-faktorly túpnusqalyq rastamasy" msgid "For testing purposes only!" msgstr "Synaq maqsattarynda ǵana!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Aparattyq qaýipsizdik kilti (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"FIDO U2F qoldaıtyn aparattyq qaýipsizdik tańbalaýyshtary arqyly túpnusqalyq " +"rastamasyn jetkizedi." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12844,7 +12871,7 @@ msgstr "%s bul MySQL serveri úshin óshirilgen." msgid "This MySQL server does not support the %s storage engine." msgstr "Bul MySQL server %s saqtaýysh mehanızmyn qoldamaıdy." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Alǵashqy kilttiń aty «PRIMARY» bolýy qajet!" @@ -12857,39 +12884,39 @@ msgstr "«%s» kestesindegi ındeksterde aqaýlar bar" msgid "Unknown table status:" msgstr "Belgisiz kesteniń mártebesi:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "«%s» qaınar derekqory tabylmady!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "«%s» maqsat derekqory tabylmady!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Jaramsyz derekqor:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Jaramsyz keste aty:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s kestesin %2$s dep qaıta ataý sátsiz aıaqtaldy!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s kestesi %2$s dep qaıta ataldy." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Keste ınterfeısiniń teńshelimderin saqtaý múmkin bolmady!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12898,7 +12925,7 @@ msgstr "" "Keste ınterfeısiniń teńshelimderin tazalaýy sátsiz aıaqtaldy ($cfg['Servers']" "[$i]['MaxTableUiprefs']%s qarańyz)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12908,15 +12935,15 @@ msgstr "" "Interfeıstiń «%s» sıpatyn saqtaý múmkin emes. Istelgen ózgertýler bul betti " "jańalaýdan keıin turaqty bolmaıdy. Kesteniń qurylymy ózgergenin tekserińiz." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Indeksti PRIMARY dep qaıta ataý múmkin emes!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Indeks bólikteri anyqtalmaǵan!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13079,14 +13106,14 @@ msgstr "%2$s ishindegi %1$s nusqasy joıyldy." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s nusqasy jasaldy, %2$s úshin qadaǵalaý belsendi." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Bir-baıttyq bútin san, belgilengen aýqym -128-den 127-ge deıin, " "belgilenbegen aýqym 0-den 255-ke deıin" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13094,7 +13121,7 @@ msgstr "" "Eki-baıttyq bútin san, belgilengen aýqym -32768-den 32767-ke deıin, " "belgilenbegen aýqym 0-den 65535-ke deıin" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13102,7 +13129,7 @@ msgstr "" "Ysh-baıttyq bútin san, belgilengen aýqym -8388608-den 8388607-ge deıin, " "belgilenbegen aýqym 0-den 16777215-ke deıin" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13110,7 +13137,7 @@ msgstr "" "Tórt-baıttyq bútin san, belgilengen aýqym -2147483648-den 2147483647-ge " "deıin, belgilenbegen aýqym 0-den 4294967295-ge deıin" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13119,7 +13146,7 @@ msgstr "" "9223372036854775807 deıin, belgilenbegen aýqym 0-den 18446744073709551615-ge " "deıin" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13127,7 +13154,7 @@ msgstr "" "Bekitilgen útir sany (M, D) - eń kóp sıfrynyń sany (M) 65 (ádepkisi 10), " "ondyq bólshektiń eń kóp sany (D) 30 (ádepkisi 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13136,7 +13163,7 @@ msgstr "" "-1.175494351E-38-ge deıin, 0 jáne 1.175494351E-38-den 3.402823466E+38-ge " "deıin" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13146,7 +13173,7 @@ msgstr "" "-1.7976931348623157E+308-den -2.2250738585072014E-308-ge deıin, 0 jáne " "2.2250738585072014E-308-den 1.7976931348623157E+308-ge deıin" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13154,14 +13181,14 @@ msgstr "" "DOUBLE sınonımy (erekshelik: REAL_AS_FLOAT SQL-rejıminde ol FLOAT úshin " "sınonım)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "Bıt-óris túri (M), bir mánine M bıt saqtaıtyn (ádepki - 1, eń kóp - 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13169,21 +13196,21 @@ msgstr "" "TINYINT(1) sınonımi, nól máni «false» bolyp esepteledi, beınóldik mánder " "«true» dep esepteledi" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE úshin búrkenshik aty" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Kún, qoldaý aýqymy - %1$s jáne %2$s arasy" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Kún men ýaqyt quramasy, qoldaý aýqymy - %1$s jáne %2$s arasy" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13191,12 +13218,12 @@ msgstr "" "Ýaqyt belgisi, aýqymy 1970-01-01 00:00:01 UTC jáne 2038-01-09 03:14:07 UTC " "arasy, dáýirden (1970-01-01 00:00:00 UTC) beri sekýnt sany retinde saqtalady" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Ýaqyt, aýqymy - %1$s jáne %2$s arasy" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13205,7 +13232,7 @@ msgstr "" "etilgen mánderi - 70 (1970) jáne 69 (2069) arasy nemese 1901 jáne 2155 " "arasy, jáne 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13213,7 +13240,7 @@ msgstr "" "Bekitilgen uzyndyqty (0-255, ádepki 1) jol, saqtalǵan kezde kórsetilgen " "uzyndyqqa bosoryndarmen árqashan oń jaqqa toltyrylady" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13222,7 +13249,7 @@ msgstr "" "Aınymaly uzyndyq (%s) joly, tıimdi eń kóp uzyndyq eń úlken jol ólshemine " "baılanysty" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13230,7 +13257,7 @@ msgstr "" "Eń kóp 255 (2^8 - 1) tańba uzyndyǵyndaǵy TEXT baǵany, baıttar boıynsha " "mániniń uzyndyǵyn kórsetetin bir baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13238,7 +13265,7 @@ msgstr "" "Eń kóp 65 535 (2^16 - 1) tańba uzyndyǵyndaǵy TEXT baǵany, baıttar boıynsha " "mániniń uzyndyǵyn kórsetetin eki baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13246,7 +13273,7 @@ msgstr "" "Eń kóp 16 777 215 (2^24 - 1) tańba uzyndyǵyndaǵy TEXT baǵany, baıttar " "boıynsha mániniń uzyndyǵyn kórsetetin úsh baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13256,7 +13283,7 @@ msgstr "" "baǵany, baıttar boıynsha mániniń uzyndyǵyn kórsetetin tórt baıt prefıksimen " "saqtalady" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13264,7 +13291,7 @@ msgstr "" "CHAR túrine uqsas, biraq ekilik emes tańbalyq joldardan góri ekilik baıttyq " "joldaryn saqtaıdy" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13272,7 +13299,7 @@ msgstr "" "VARCHAR túrine uqsas, biraq ekilik emes tańbalyq joldardan góri ekilik " "baıttyq joldaryn saqtaıdy" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13280,7 +13307,7 @@ msgstr "" "Eń kóp uzyndyǵy 255 (2^8 - 1) baıttan turatyn BLOB baǵany, baıttar boıynsha " "mániniń uzyndyǵyn kórsetetin bir baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13288,7 +13315,7 @@ msgstr "" "Eń kóp uzyndyǵy 16 777 215 (2^24 - 1) baıttan turatyn BLOB baǵany, baıttar " "boıynsha mániniń uzyndyǵyn kórsetetin úsh baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13296,7 +13323,7 @@ msgstr "" "Eń kóp uzyndyǵy 65 535 (2^16 - 1) baıttan turatyn BLOB baǵany, baıttar " "boıynsha mániniń uzyndyǵyn kórsetetin eki baıt prefıksimen saqtalady" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13305,51 +13332,51 @@ msgstr "" "baǵany, baıttar boıynsha mániniń uzyndyǵyn kórsetetin tórt baıt prefıksimen " "saqtalady" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" "Sanamalaý, 65535 mánine deıin tizimnen tańdalǵan nemese arnaıy '' qate máni" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Jalǵyz mán, 64 múshege deıin turatyn jıyntyqtan tańdalǵan" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Kezkelgen túrdegi geometrıany saqtaýǵa bolatyn túri" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "2-ólshemdik keńistiktegi núkte" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Núkteler arasyndaǵy syzyqtyq ınterpolásıaǵa ıe qısyq syzyq" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Kópburysh" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Núkteler jıyntyǵy" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" "Núkteler arasyndaǵy syzyqtyq ınterpolásıaǵa ıe qısyq syzyqtardyń jıyntyǵy" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Kópburyshtar jıyntyǵy" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Kezkelgen túrdegi geometrıalyq nysandar jınaǵy" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13357,23 +13384,27 @@ msgstr "" "Saqtaıdy jáne JSON (JavaScript Object Notation) qujattaryndaǵy derekter " "úshin tıimdi qatynaýdy qosady" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Sandyq" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Kún men ýaqyt" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Keńistik" @@ -13401,85 +13432,85 @@ msgstr "Konfıgýrasıany saqtaý múmkin bolmady" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "Aǵymdyq derekqorda phpMyAdmin konfıgýrasıasy saqtaýyshyn %sjasaý%s ." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Eń kóbi: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Qań" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Aqp" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Naý" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Sáý" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mam" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Maý" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Shi" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Tam" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Qyr" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Qaz" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Qar" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Jel" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13487,55 +13518,55 @@ msgid "Sun" msgstr "Jek" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Dúı" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Seı" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Sár" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Beı" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Jum" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sen" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kún, %s saǵat, %s mınýt jáne %s sekýnt" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Paıdalanushylar" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Suryptaý" @@ -13708,7 +13739,7 @@ msgstr "joǵarydaǵy ekeýi de" msgid "neither of the above" msgstr "joǵarydaǵy bireýi de joq" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfıgýrasıa áldeqashan bar, teńsheý óshirildi!" @@ -13743,7 +13774,7 @@ msgstr "Eshbir" msgid "As defined:" msgstr "Anyqtalǵandaı:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13751,41 +13782,41 @@ msgstr "" "Bul áreketti oryndaý úshin jetkilikti artyqshylyqtaryńyz joq. Kóbirek " "egjeıler úshin qujattamany qarańyz" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Biregeı" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Tolyq mátin" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Keńistik" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Órnek" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "birinshi" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s sońynda" @@ -13919,7 +13950,7 @@ msgstr "Mehanızm" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13990,7 +14021,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14265,7 +14296,7 @@ msgid "Search this table" msgstr "Bul kesteni izdeý" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Baǵan ústeý" @@ -14294,7 +14325,7 @@ msgstr "Suryptaý úshin basyńyz." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14326,24 +14357,24 @@ msgstr "Derekqor túsiniktemesi:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Basyp shyǵarý" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Qaptalǵan" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Element sany" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Indeks anyqtalmady!" @@ -15174,6 +15205,11 @@ msgstr[1] "sany %s keste" msgid "Sum" msgstr "Somasy" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Jalǵastyrý" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Mynadan" @@ -15265,16 +15301,11 @@ msgstr "Ortalyq tizimnen baǵandardy alastaý" msgid "Make consistent with central list" msgstr "Ortalyq tizimmen sáıkestirý" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Jalǵastyrý" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Senimdisiz be?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15416,7 +15447,7 @@ msgstr "Qdaǵalanbaǵan kesteler" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Kesteni qadaǵalaý" @@ -16179,19 +16210,19 @@ msgid "Other options" msgstr "Basqa opsıalar:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Mynaǵan qaıta ataý" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Alǵashqy kilt joıyldy." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "%s ındeksi joıyldy." @@ -16520,6 +16551,29 @@ msgstr "" msgid "Verify" msgstr "Rasaý" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"FIDO U2F qurylǵysyn kompúterińizdiń USB-portyna jalǵańyz. Sodan keıin " +"qurylǵyda tirkeýdi rastańyz." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"FIDO U2F qurylǵysyn kompúterińizdiń USB-portyna jalǵańyz. Sodan keıin " +"qurylǵyda kirýdi rastańyz." + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16527,6 +16581,7 @@ msgid "View:" msgstr "Kórinister:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16703,8 +16758,8 @@ msgstr "" "qalpyna keltire alasyz." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Qos-faktorlyq túpnusqalyq rastamany teńsheý" @@ -16725,7 +16780,7 @@ msgstr "" "kirýińizge bolady." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Qos-faktorly túpnusqalyq rastamany óshirý" @@ -16742,6 +16797,7 @@ msgstr "" "qosý úshin qosymsha táýeldilikterdi ornatyńyz." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Kelesi «Composer» býmalary jetispeıdi:" @@ -16759,6 +16815,17 @@ msgstr "" "teńshelmegen." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Qos-faktorly túpnusqalyq qoljetimdi emes, túpnusqalyq rastamanyń artqy jaǵyn " +"qosý úshin qosymsha táýeldilikterdi ornatyńyz." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16766,7 +16833,7 @@ msgstr "" "Qos-faktorly túpnusqalyq rastamasy qoljetimdi emes, ony paıdalaný úshin " "phpMyAdmin konfıgýrasıasy saqtaýyshyn qosý kerek." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Qos-faktorly túpnusqalyq rastamasyn qosqansyz." @@ -19105,7 +19172,7 @@ msgid "Start row:" msgstr "Bastaý jol:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Bólimder" @@ -19189,7 +19256,7 @@ msgstr "Ortalyq baǵandarǵa ústeý" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Baǵandardy jyljytý" @@ -19197,33 +19264,33 @@ msgstr "Baǵandardy jyljytý" msgid "Move the columns by dragging them up and down." msgstr "Baǵandardy joǵaryǵa jáne tómenge súırep aparyńyz." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Kórinisti óńdeý" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Keste qurylymyn usyný" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Biryńǵaılaý" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Qadaǵalaý kórinisi" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s baǵan ústeý" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "keste basynda" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" diff --git a/po/km.po b/po/km.po index 44f2a807a7..e7c1c4f9ec 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2017-08-12 14:53+0000\n" "Last-Translator: ប៉ុកណូ រ៉ូយ៉ាល់ \n" "Language-Team: Central Khmer \n" "Language-Team: Kannada \n" "Language-Team: Korean %2$s 근처)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9848,8 +9858,8 @@ msgstr "보기" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9861,7 +9871,7 @@ msgstr "검색" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9871,8 +9881,8 @@ msgid "Insert" msgstr "삽입" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9881,14 +9891,14 @@ msgid "Privileges" msgstr "권한" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "테이블 작업" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "SQL 명령어 트래킹" @@ -9896,12 +9906,12 @@ msgstr "SQL 명령어 트래킹" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "트리거" @@ -9911,11 +9921,11 @@ msgstr "트리거" msgid "Database seems to be empty!" msgstr "데이터베이스가 비어있는 것 같습니다!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "질의 마법사" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "루틴" @@ -9925,15 +9935,15 @@ msgstr "루틴" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "이벤트" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "디자이너" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "중심 열" @@ -9943,12 +9953,12 @@ msgid "User accounts" msgstr "사용자 계정" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "바이너리 로그" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9956,21 +9966,21 @@ msgid "Replication" msgstr "복제" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "환경설정값" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "문자셋" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "엔진" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "플러그인" @@ -10065,11 +10075,11 @@ msgstr "새" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10087,7 +10097,7 @@ msgstr "새" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10115,8 +10125,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10505,7 +10515,7 @@ msgstr "초기화" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "삭제" @@ -10734,18 +10744,18 @@ msgstr "데이터 덤프 옵션" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10757,7 +10767,7 @@ msgstr "테이블의 덤프 데이터" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10766,11 +10776,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10787,9 +10797,9 @@ msgid "Default" msgstr "기본값" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10798,8 +10808,8 @@ msgid "Links to" msgstr "링크 대상" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10815,8 +10825,8 @@ msgid "Name" msgstr "이름" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10825,23 +10835,23 @@ msgid "Definition" msgstr "정의" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "뷰 구조" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10946,11 +10956,11 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "데이터:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "구조:" @@ -10977,17 +10987,17 @@ msgstr "보고서 제목:" msgid "Dumping data" msgstr "덤프 데이터" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "쿼리 결과" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "구조 보기" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 #, fuzzy #| msgid "and then" msgid "Stand in" @@ -11062,7 +11072,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -11139,7 +11149,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11215,20 +11225,20 @@ msgstr "" msgid "RELATIONSHIPS FOR TABLE" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "테이블로 내보낸 뷰 %s의 구조" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "%s테이블의 데이터 읽기 오류:" @@ -11523,7 +11533,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M" @@ -11708,14 +11718,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11749,6 +11759,16 @@ msgstr "Signon 인증" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12538,7 +12558,7 @@ msgstr "%s 는 이 MySQL 서버에서 비활성화되었습니다." msgid "This MySQL server does not support the %s storage engine." msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "기본 키의 이름은 반드시 PRIMARY여야 합니다!" @@ -12551,39 +12571,39 @@ msgstr "" msgid "Unknown table status:" msgstr "알 수 없는 테이블 상태:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "원본 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "목표 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "잘못된 데이터베이스:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "잘못된 테이블 이름:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "테이블 이름 %1$s를 %2$s(으)로 바꾸는데 실패했습니다!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "테이블 %1$s을(를) %2$s(으)로 이름을 변경하였습니다." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "테이블 UI 설정을 저장할 수 없습니다!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12592,7 +12612,7 @@ msgstr "" "테이블 UI 설정을 정리하는 데 실패했습니다. ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s 를 참조하세요)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12602,15 +12622,15 @@ msgstr "" "UI 특성 %s을(를) 저장할 수 없습니다. 새로고침후에도 이 변경은 반영되지 않을것" "입니다. 테이블 구조가 변경되었는지 확인 바랍니다." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "인덱스 이름을 PRIMARY 로 바꿀 수 없습니다!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "인덱스 부분의 정의가 없음!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s의 외래키 생성 에러 (데이터 타입을 확인하세요)" @@ -12773,14 +12793,14 @@ msgstr "%2$s의 %1$s 버전 생성" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1바이트 정수형의 범위는 부호가 있는 경우 -128 에서 127, 부호가 없는 경우 0 에" "서 255 입니다" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12788,7 +12808,7 @@ msgstr "" "2바이트 정수형의 범위는 부호가 있는 경우 -32,768 에서 32,767, 부호가 없는 경" "우 0 에서 65,355 입니다" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12796,7 +12816,7 @@ msgstr "" "3바이트 정수형의 범위는 부호가 있는 경우 -8,388,608 에서 8,388,607, 부호가 없" "는 경우 0 에서 16,777,215 입니다" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12804,7 +12824,7 @@ msgstr "" "4바이트 정수형의 범위는 부호가 있는 경우 -2,147,483,648 에서 2,147,483,647 이" "며, 부호가 없는 경우 0 에서 4,294,967,295 입니다" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12813,7 +12833,7 @@ msgstr "" "9,223,372,036,854,775,807, 부호가 없는 경우 0 에서 " "18,446,744,073,709,551,615 입니다" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12821,7 +12841,7 @@ msgstr "" "고정소수점 숫자 (M, D) - 최대 자릿수(M)는 65이며 (기본값 10), 최대 소수점 자" "릿수(D)는 30입니다 (기본값 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12830,7 +12850,7 @@ msgstr "" "-1.175494351E-38 까지, 0, 그리고 1.175494351E-38 에서 3.402823466E+38 까지입" "니다" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12840,19 +12860,19 @@ msgstr "" "-2.2250738585072014E-308 까지, 0, 그리고 2.2250738585072014E-308 에서 " "1.7976931348623157E+308 까지입니다" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "DOUBLE과 동일함. (예외: REAL_AS_FLOAT SQL모드에서는 FLOAT으로 동작함)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "비트 필드 타입 (M), 값 하나 당 M 비트를 저장 (기본값은 1, 최대 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12860,21 +12880,21 @@ msgstr "" "TINYINT(1)와 동일함. 저장된 값이 0일 경우 거짓으로, 0이 아닐 경우 참값이 저장" "된 것으로 간주됨" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE 의 별칭" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "날짜 타입, %1$s 부터 %2$s 까지 지원됨" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "날짜와 시간 조합, %1$s 부터 %2$s 까지 지원됨" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12882,12 +12902,12 @@ msgstr "" "타임스탬프 형식, 1970-01-01 00:00:01 UTC 부터 2038-01-09 03:14:07 UTC 까지, " "EPOCH (1970-01-01 00:00:00 UTC) 이후 경과된 초 단위 시간을 숫자로 저장함" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "%1$s 에서 %2$s 사이의 범위를 가진 시간값" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12895,7 +12915,7 @@ msgstr "" "네 자리(4, 기본값) 또는 두 자리(2)로 표현한 연도, 70(1970) 부터 69(2069) 또" "는 1901 부터 2155 까지 및 0000 값이 허용됨" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -12903,14 +12923,14 @@ msgstr "" "저장시 항상 지정된 길이까지 오른쪽을 공백으로 채우는 고정 길이 (0-255, 기본" "값 1) 문자열" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "가변 길이 (%s) 문자열, 효율적인 최대 길이는 최대 열 크기에 따라 다름" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12918,7 +12938,7 @@ msgstr "" "최대 255(2^8-1)글자의 길이를 가지는 TEXT 칼럼, 값의 길이를 바이트 단위로 나타" "내는 1바이트 인디케이터를 앞에 붙여서 저장함" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12926,7 +12946,7 @@ msgstr "" "최대 65,535(2^16-1)글자의 길이를 가지는 TEXT 칼럼, 값의 길이를 바이트 단위로 " "나타내는 2바이트 인디케이터를 앞에 붙여서 저장함" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12934,7 +12954,7 @@ msgstr "" "최대 16,777,215(2^24-1)글자의 길이를 가지는 TEXT 칼럼, 값의 길이를 바이트 단" "위로 나타내는 3바이트 인디케이터를 앞에 붙여서 저장함" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12943,19 +12963,19 @@ msgstr "" "최대 4,294,967,295 또는 4GiB (2^32 - 1) 글자 길이를 가지는 TEXT 칼럼, 값의 길" "이를 바이트 단위로 나타내는 4바이트 인디케이터를 앞에 붙여서 저장함" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "CHAR형과 비슷하나, 일반 문자열 대신 바이너리값을 저장할 수 있음" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "VARCHAR형과 비슷하나, 일반 문자열 대신 바이너리 값을 저장할 수 있음" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12963,7 +12983,7 @@ msgstr "" "최대 크기가 255 (2^8 - 1) 바이트인 BLOB 컬럼은, 데이터의 현재 크기를 나타내" "는 1바이트의 값이 데이터 앞에 붙습니다" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -12971,7 +12991,7 @@ msgstr "" "최대 크기가 16,777,215 (2^24 - 1) 바이트인 BLOB 컬럼은, 데이터의 현재 크기를 " "나타내는 3바이트의 값이 데이터 앞에 붙습니다" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -12979,7 +12999,7 @@ msgstr "" "최대 크기가 65,535 (2^16 - 1) 바이트인 BLOB 컬럼은, 데이터의 현재 크기를 나타" "내는 2 바이트의 값이 데이터 앞에 붙음" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -12987,7 +13007,7 @@ msgstr "" "최대 크기가 4,294,967,295(2^32 - 1) 바이트(4GiB)인 BLOB 컬럼은, 데이터의 현" "재 크기를 나타내는 4바이트의 값이 데이터 앞에 붙습니다" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -12995,43 +13015,43 @@ msgstr "" "열거형, 최대 65,535개의 지정된 값 또는 특수 오류 값 ('') 중에서 선택될 수 있" "음" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "최대 64개의 맴버 집합으로부터 선택되는 단일 값" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "모든 종류의 기하데이터를 저장할 수 있는 타입" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "2차원 공간의 점" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "점들로부터 생성된 하나의 선형 곡선" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "폴리곤" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "포인트들의 집합" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "포인트간의 선형 보간을 거친 커브들의 집합" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "폴리곤들의 집합" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "모든 종류의 기하데이터 객체들의 집합" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13039,23 +13059,29 @@ msgstr "" "JSON (JavaScript Object Notation) 문서로 데이터를 저장하면 데이터에 효율적으" "로 접근할 수 있습니다" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "범용 고유 식별자(UUID) 저장" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "숫자" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "날짜와 시간" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "공간(좌표)형" @@ -13082,85 +13108,85 @@ msgstr "설정을 저장할 수 없습니다" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "최대: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "1월" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "2월" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "3월" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "6월" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "7월" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "8월" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "9월" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "10월" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "11월" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "12월" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13168,55 +13194,55 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "월" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "화" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "수" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "목" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "금" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "토" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "오후" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "오전" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %s분 %s초" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "사용자" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "정렬" @@ -13389,7 +13415,7 @@ msgstr "위의 것 모두" msgid "neither of the above" msgstr "위의 것 모두 아님" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13424,7 +13450,7 @@ msgstr "없음" msgid "As defined:" msgstr "사용자 정의:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13432,43 +13458,43 @@ msgstr "" "이 작업을 진행하기 위해 필요한 권한이 없습니다. 자세한 사항은 문서를 참고하세" "요" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "고유값" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Fulltext" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "압축" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "맨 처음" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s 다음에" @@ -13625,7 +13651,7 @@ msgstr "엔진" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13705,7 +13731,7 @@ msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13994,7 +14020,7 @@ msgid "Search this table" msgstr "현재 테이블 검색" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "컬럼 추가" @@ -14023,7 +14049,7 @@ msgstr "정렬하려면 클릭하세요." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14057,24 +14083,24 @@ msgstr "데이터베이스 설명" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "인쇄" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "압축됨" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "관계성" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" @@ -14951,6 +14977,11 @@ msgstr[0] "%s개 테이블" msgid "Sum" msgstr "계" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "계속" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "" @@ -15052,16 +15083,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "CHAR 텍스트입력 컬럼" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "계속" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "확실합니까?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15201,7 +15227,7 @@ msgstr "추적되지 않은 테이블" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "테이블 추적" @@ -15977,19 +16003,19 @@ msgid "Other options" msgstr "옵션" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "바뀔 이름" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "기본 키를 제거했습니다." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "인덱스 %s 를 제거했습니다." @@ -16306,6 +16332,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16313,6 +16350,7 @@ msgid "View:" msgstr "뷰:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16497,8 +16535,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "모든 설정을 초기화할 수 있습니다." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16523,7 +16561,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16542,6 +16580,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16555,6 +16594,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -16562,7 +16606,7 @@ msgid "" "storage to use it." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18923,7 +18967,7 @@ msgid "Start row:" msgstr "시작 행:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "파티션" @@ -19007,7 +19051,7 @@ msgstr "중앙컬럼에 추가" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "컬럼 이동" @@ -19015,33 +19059,33 @@ msgstr "컬럼 이동" msgid "Move the columns by dragging them up and down." msgstr "위아래로 드래그해서 컬럼을 옮기세요." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "뷰 편집" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "추적 뷰" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s 컬럼 추가" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "테이블의 처음" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -19801,9 +19845,6 @@ msgstr "열(칼럼) 이름" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE 에 대한 알리아스" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "범용 고유 식별자(UUID) 저장" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ksh.po b/po/ksh.po index 04828852fb..11b9037393 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2019-04-27 17:19+0000\n" "Last-Translator: William Desportes \n" "Language-Team: Colognian \n" "Language-Team: Kurdish \n" "Language-Team: Kyrgyz \n" "Language-Team: Limburgish \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" -"Language-Team: Macedonian \n" +"Language-Team: Macedonian \n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1220,7 +1220,7 @@ msgstr "Пребарај:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1232,8 +1232,8 @@ msgstr "Пребарај:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "OK" @@ -1241,7 +1241,7 @@ msgstr "OK" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Име на клуч" @@ -3096,9 +3096,9 @@ msgstr "Вклучи и коментар на табелата" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3127,8 +3127,8 @@ msgstr "Ознака на клучот" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3294,7 +3294,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3422,8 +3422,8 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3453,7 +3453,7 @@ msgid "Database structure" msgstr "База на податоци" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 #, fuzzy #| msgid "Databases" @@ -4173,9 +4173,9 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4193,17 +4193,17 @@ msgstr "" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Промени" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Објасни SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4211,7 +4211,7 @@ msgid "Refresh" msgstr "Освежи" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" @@ -4495,14 +4495,14 @@ msgstr "" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4550,8 +4550,8 @@ msgstr "Документација" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4594,8 +4594,8 @@ msgstr "" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4613,31 +4613,31 @@ msgstr "Транформации на веб прелистувачот" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Сервер %d" @@ -4904,7 +4904,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -4999,7 +4999,7 @@ msgid "Table %s has been emptied." msgstr "Табелата %s е испразнета." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5019,9 +5019,9 @@ msgstr "непознат" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5043,7 +5043,7 @@ msgstr "непознат" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5057,7 +5057,7 @@ msgstr "Да" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Нема измени" @@ -5116,7 +5116,7 @@ msgid "You may want to refresh the page." msgstr "Можеби сакате да се освежи страница." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Лош тип!" @@ -5218,15 +5218,15 @@ msgid "" "this some features such as error reporting or version check are disabled." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Непотполни параметри" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Успешно" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Неуспешно" @@ -5242,43 +5242,43 @@ msgstr "" "граница." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Прикажување белешка" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "" msgstr[1] "" -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -5535,11 +5535,12 @@ msgstr "Додади %s полиња" #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "" @@ -5555,7 +5556,7 @@ msgid "Matched rows:" msgstr "Совпаднати редови:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL барање:" @@ -5633,7 +5634,8 @@ msgstr "Избриши ги селектираните корисници" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5692,13 +5694,13 @@ msgstr "Други" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -5822,45 +5824,45 @@ msgstr "Процеси" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "бајти" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EB" @@ -5880,7 +5882,7 @@ msgid "Traffic" msgstr "Сообраќај" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Подесувања" @@ -5896,11 +5898,11 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6111,7 +6113,7 @@ msgstr "Објасни SQL" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6121,8 +6123,8 @@ msgstr "Статус" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6285,10 +6287,10 @@ msgstr "Не беа најдени параметрите!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6314,6 +6316,7 @@ msgstr "" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Вчитување…" @@ -6377,7 +6380,7 @@ msgstr "Додади %s полиња" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "ОК" @@ -6407,9 +6410,9 @@ msgstr "Кодна страна" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6431,7 +6434,7 @@ msgstr "Кодна страна" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6522,7 +6525,7 @@ msgid "Show query box" msgstr "SQL упит" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6653,7 +6656,7 @@ msgid "No partial dependencies selected!" msgstr "Не беа избрани деловни зависности!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6792,13 +6795,13 @@ msgstr "Големина на покажувачите на податоци" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Игнорирај" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7383,27 +7386,33 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, fuzzy, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7428,24 +7437,24 @@ msgid "No such column" msgstr "Додади/избриши колона" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 #, fuzzy #| msgid "Lines terminated by" msgctxt "string types" msgid "String" msgstr "Линиите се завршуваат со" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin документација" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "" @@ -7471,7 +7480,7 @@ msgstr "Записи" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Клучеви" @@ -8139,7 +8148,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Недостига параметар:" @@ -8240,7 +8249,7 @@ msgstr "Корисник %s веќе постои!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 #, fuzzy #| msgid "Your SQL query has been executed successfully." @@ -8309,10 +8318,10 @@ msgstr "Поглед" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Грешка" @@ -8338,7 +8347,7 @@ msgid "Failed to get description of column %s!" msgstr "" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8349,7 +8358,7 @@ msgstr "Примарен" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8359,7 +8368,7 @@ msgstr "Примарен" msgid "Index" msgstr "Клуч" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -8415,7 +8424,7 @@ msgstr "Немате право на пристап овде!" msgid "View name can not be empty!" msgstr "" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -8554,7 +8563,7 @@ msgstr "" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL порака: " @@ -8646,7 +8655,7 @@ msgstr "" "Грешка при процесирање на барањето: Нема настан со име %1$s најден во " "датабазата %2$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8654,21 +8663,21 @@ msgid "" "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 #, fuzzy #| msgid "Routines" msgid "Missing connection parameters!" msgstr "Рутини" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "" @@ -8691,29 +8700,29 @@ msgstr "Ins" msgid "Del" msgstr "Del" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Пребарување на зачувани белешки:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "Пребарување" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "Пребарување" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 #, fuzzy #| msgid "Search" msgid "Update bookmark" msgstr "Пребарување" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 #, fuzzy #| msgid "Search" msgid "Delete bookmark" @@ -8982,8 +8991,8 @@ msgid "Full texts" msgstr "Полн текст" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -8996,8 +9005,8 @@ msgid "Descending" msgstr "Опаѓачки редослед" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9009,19 +9018,19 @@ msgstr "Опаѓачки редослед" msgid "Ascending" msgstr "Растечки редослед" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "Записот е избришан" -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "Прекини" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." @@ -9029,28 +9038,28 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Приказ на редови %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "%d вкупно" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -9369,7 +9378,7 @@ msgid "" msgstr "" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9400,13 +9409,13 @@ msgstr "Извоз" msgid "Automatically send report next time" msgstr "Режим на автоматско опоравување" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9414,18 +9423,18 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е дозволено да го сочува фајлот %s." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9474,8 +9483,8 @@ msgstr "Датотеката не е можно да се прочита!" #: libraries/classes/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -"Грешка при пренесување на уплоадираниот фајл, види [doc@faq1-11]FAQ 1." -"11[/doc]." +"Грешка при пренесување на уплоадираниот фајл, види [doc@faq1-11]FAQ 1.11[/" +"doc]." #: libraries/classes/File.php:485 msgid "Error while moving uploaded file." @@ -9498,57 +9507,57 @@ msgstr "" msgid "Session not found." msgstr "Врската не е пронајдена" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, fuzzy, php-format #| msgid "Jump to database \"%s\"." msgid "Jump to database “%s”." msgstr "Премин на базата \"%s\"." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP код" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 #, fuzzy @@ -9556,23 +9565,23 @@ msgstr "без PHP код" msgid "Submit query" msgstr "Изврши SQL" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" msgid "Edit inline" msgstr "Додади ново поле" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "" @@ -9679,11 +9688,11 @@ msgstr "Функција" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9703,7 +9712,7 @@ msgstr "Функција" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9756,7 +9765,7 @@ msgstr "" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9766,8 +9775,8 @@ msgstr "Преглед" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9779,7 +9788,7 @@ msgstr "Пребарување" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9789,8 +9798,8 @@ msgid "Insert" msgstr "Нов запис" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9799,14 +9808,14 @@ msgid "Privileges" msgstr "Привилегии" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Операции" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "" @@ -9814,12 +9823,12 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "" @@ -9829,11 +9838,11 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Упит по пример" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Рутини" @@ -9843,15 +9852,15 @@ msgstr "Рутини" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 #, fuzzy #| msgid "Add/Delete Field Columns" @@ -9865,12 +9874,12 @@ msgid "User accounts" msgstr "Корисник" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9879,21 +9888,21 @@ msgid "Replication" msgstr "Релации" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Променливи" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Кодни страници" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Складишта" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "" @@ -9994,11 +10003,11 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10016,7 +10025,7 @@ msgstr "" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10048,8 +10057,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10454,7 +10463,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Бриши" @@ -10689,18 +10698,18 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10712,7 +10721,7 @@ msgstr "Приказ на податоци од табелата" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10721,11 +10730,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10742,9 +10751,9 @@ msgid "Default" msgstr "Стандардно" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10753,8 +10762,8 @@ msgid "Links to" msgstr "Врски кон" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10770,8 +10779,8 @@ msgid "Name" msgstr "Име" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10782,24 +10791,24 @@ msgid "Definition" msgstr "Опис" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 #, fuzzy msgid "Structure for view" msgstr "Само структура" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10914,11 +10923,11 @@ msgid "Database:" msgstr "База на податоци:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Податоци:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Структура:" @@ -10951,18 +10960,18 @@ msgstr "Наслов на извештај:" msgid "Dumping data" msgstr "Приказ на податоци од табелата" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "SQL result" msgid "Query result data" msgstr "SQL резултат" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy msgid "View structure" msgstr "Структура" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "" @@ -10974,9 +10983,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:137 msgid "Additional custom header comment (\\n splits lines):" -msgstr "" -"Додади коментар во заглавие (користи \\n" -" за нов ред):" +msgstr "Додади коментар во заглавие (користи \\n за нов ред):" #: libraries/classes/Plugins/Export/ExportSql.php:143 msgid "" @@ -11037,7 +11044,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -11106,7 +11113,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11193,20 +11200,20 @@ msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" msgid "RELATIONSHIPS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура за поглед %s извезена како табела" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Грешка при читање на податоци за табелата %s:" @@ -11529,7 +11536,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" @@ -11758,14 +11765,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11797,6 +11804,16 @@ msgstr "Промена на лозинка" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" @@ -12576,7 +12593,7 @@ msgstr "%s е оневозможен на овој MySQL сервер." msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на примарниот клуч мора да биде \"PRIMARY\"!" @@ -12589,48 +12606,48 @@ msgstr "Проблем при индексирање на табелата `%s`" msgid "Unknown table status:" msgstr "Непознат статус на табела:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Изворната датабаза `%s` не се најде!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Целната датабаза `%s` не се најде!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Невалидна датабаза:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "во табела(и):" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Не успеа да се преимени табелата %1$s во %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Табелата %1$s беше преименувана во %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12638,15 +12655,15 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Не можам да го променам клучот во PRIMARY (примарен) !" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12807,246 +12824,250 @@ msgstr "Верзијата %1$s на %2$s беше избришана." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, fuzzy, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Верзија на серверот" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, fuzzy, php-format msgid "A time, range is %1$s to %2$s" msgstr "Верзија на серверот" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 #, fuzzy #| msgid "Add %s field(s)" msgid "A polygon" msgstr "Додади %s полиња" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Креирај нов клуч" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -13083,37 +13104,37 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Максимална големина: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "јан" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "феб" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "мар" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -13122,48 +13143,48 @@ msgstr "мај" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "јун" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "јул" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "авг" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "сеп" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "окт" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "нов" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "дек" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -13172,57 +13193,57 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Пон" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Вто" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Сре" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Чет" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Пет" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Саб" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Подредуваање" @@ -13422,7 +13443,7 @@ msgstr "" msgid "neither of the above" msgstr "" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13461,7 +13482,7 @@ msgstr "нема" msgid "As defined:" msgstr "" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "" @@ -13469,43 +13490,43 @@ msgid "" "to the documentation for more details" msgstr "Немате право на пристап овде!" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Единствен" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Текст клуч" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "Компресија" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" @@ -13657,7 +13678,7 @@ msgstr "Складишта" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 #, fuzzy @@ -13745,7 +13766,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14081,7 +14102,7 @@ msgid "Search this table" msgstr "Пребарување низ базата на податоци" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" @@ -14116,7 +14137,7 @@ msgstr "Кликни за да сортирате." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14149,24 +14170,24 @@ msgstr "Коментар на базата на податоци:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Печати" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Кардиналност" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Клучот не е дефиниран!" @@ -15103,6 +15124,11 @@ msgstr[1] "%s табели" msgid "Sum" msgstr "Вкупно" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Продолжи" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy #| msgid "Fri" @@ -15210,16 +15236,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "Додади %s полиња" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Продолжи" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15369,7 +15390,7 @@ msgstr "" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" @@ -16172,17 +16193,17 @@ msgid "Other options" msgstr "Операции" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Преименувај" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Примарниот клуч е избришан." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Клучот %s е избиршан." @@ -16537,6 +16558,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "View" @@ -16544,6 +16576,7 @@ msgid "View:" msgstr "Поглед" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16736,8 +16769,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "" @@ -16758,7 +16791,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Change password" msgid "Disable two-factor authentication" @@ -16777,6 +16810,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16791,11 +16825,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19227,7 +19266,7 @@ msgid "Start row:" msgstr "Саб" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -19331,7 +19370,7 @@ msgstr "Додади %s полиња" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" @@ -19341,39 +19380,39 @@ msgstr "Додади %s полиња" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Преглед за печатење" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy msgid "Track view" msgstr "Проверка на табелата" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "на почетокот од табелата" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Направи индекс на %s колони" diff --git a/po/ml.po b/po/ml.po index 37b58d45be..86cdd37c85 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Malayalam \n" "Language-Team: Mongolian \n" "Language-Team: Malay \n" "Language-Team: Burmese \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Nepali \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1414,7 +1414,7 @@ msgstr "Zoeken:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1426,8 +1426,8 @@ msgstr "Zoeken:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Starten" @@ -1435,7 +1435,7 @@ msgstr "Starten" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Sleutelnaam" @@ -3385,9 +3385,9 @@ msgstr "Tabeltitel toevoegen" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3416,8 +3416,8 @@ msgstr "Labelsleutel" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3571,7 +3571,7 @@ msgstr "Eerste dag van kalender" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3688,8 +3688,8 @@ msgstr "Wijzigingen bijhouden" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3714,7 +3714,7 @@ msgid "Database structure" msgstr "Databasestructuur" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Tabelstructuur" @@ -4340,9 +4340,9 @@ msgstr "Herken vergrendelde tabellen" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4360,17 +4360,17 @@ msgstr "Herken vergrendelde tabellen" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Wijzigen" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Verklaar SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4378,7 +4378,7 @@ msgid "Refresh" msgstr "Ververs" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Genereer PHP-code" @@ -4643,14 +4643,14 @@ msgstr "Aangepast" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4694,8 +4694,8 @@ msgstr "OpenDocument Tekst" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4738,8 +4738,8 @@ msgstr "CSV met behulp van LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4757,22 +4757,22 @@ msgstr "" "Instellingen kunnen niet worden opgeslagen, het verstuurde configuratie " "formulier bevat fouten!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Het bestaande configuratiebestand (%s) is niet leesbaar." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet " "leesbaar zijn voor iedereen!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Lezen van het configuratiebestand is niet gelukt!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4780,12 +4780,12 @@ msgstr "" "Dit betekent meestal dat er een syntaxfout is, controleer de onderstaande " "foutmeldingen." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Server %d" @@ -5095,7 +5095,7 @@ msgstr "" "installatie!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5189,7 +5189,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s is leeggemaakt." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5210,9 +5210,9 @@ msgstr "onbekend" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5234,7 +5234,7 @@ msgstr "onbekend" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5248,7 +5248,7 @@ msgstr "Ja" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Geen verandering" @@ -5306,7 +5306,7 @@ msgid "You may want to refresh the page." msgstr "Misschien wilt u de pagina vernieuwen." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Verkeerd type!" @@ -5440,15 +5440,15 @@ msgstr "" "Hierdoor zijn ook een aantal functies zoals foutregistratie of versie " "controle uitgeschakeld." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Onvolledige parameters" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Geslaagd" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Mislukt" @@ -5463,16 +5463,16 @@ msgstr "" "%sdocumentatie%s om deze limiet te omzeilen." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Toon bladwijzer" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "De bladwijzer is verwijderd." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5483,14 +5483,14 @@ msgstr "" "bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [doc@faq1-16]FAQ " "1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "Het importeren is geslaagd, %d query uitgevoerd." msgstr[1] "Het importeren is geslaagd, %d queries uitgevoerd." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5499,7 +5499,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, als u het importeren wilt afmaken, " "%sresubmit dezelfde file%s opnieuw en de import zal hervat worden." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5508,7 +5508,7 @@ msgstr "" "dit dat phpMyAdmin het importeren niet kan afmaken, tenzij de " "tijdsbeperkingen van PHP worden versoepeld." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -5769,11 +5769,12 @@ msgstr "Gelieve de kolom(men) voor de index te selecteren." #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "SQL-voorbeeld" @@ -5787,7 +5788,7 @@ msgid "Matched rows:" msgstr "Overeenkomende rijen:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL-query:" @@ -5861,7 +5862,8 @@ msgstr "Geselecteerde gebruikers worden verwijderd" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5915,13 +5917,13 @@ msgstr "Andere" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "." #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "," @@ -6031,45 +6033,45 @@ msgstr "Processen" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EiB" @@ -6089,7 +6091,7 @@ msgid "Traffic" msgstr "Verkeer" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Instellingen" @@ -6105,11 +6107,11 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6320,7 +6322,7 @@ msgstr "Verklaar resultaat" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6330,8 +6332,8 @@ msgstr "Status" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6488,10 +6490,10 @@ msgstr "Parameters niet gevonden!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6515,6 +6517,7 @@ msgstr "Toepassen" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Laden…" @@ -6574,7 +6577,7 @@ msgstr "Een primaire sleutel toevoegen" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "Correct" @@ -6598,9 +6601,9 @@ msgstr "Karakterset aanpassen" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6622,7 +6625,7 @@ msgstr "Karakterset aanpassen" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6711,7 +6714,7 @@ msgid "Show query box" msgstr "SQL-queryveld tonen" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6843,7 +6846,7 @@ msgid "No partial dependencies selected!" msgstr "Er zijn geen gedeeltelijke afhankelijkheden geselecteerd!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6980,13 +6983,13 @@ msgstr "Inhoud gegevenspunt" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Negeren" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7561,7 +7564,13 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Ongeldig beveiligingsapparaat." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " @@ -7571,20 +7580,20 @@ msgstr "" "werkt in uw browser en uw phpMyAdmin configuratie opslag hiervoor niet is " "geconfigureerd." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Verbergen" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7607,20 +7616,20 @@ msgid "No such column" msgstr "Geen dergelijke kolom" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "Tekenreeks" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin configuratie fragment" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Plak het in uw config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Standaard configuratiebestand kon niet geladen worden" @@ -7645,7 +7654,7 @@ msgstr "Rijen" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Indexen" @@ -8442,7 +8451,7 @@ msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Ontbrekende parameter:" @@ -8545,7 +8554,7 @@ msgstr "Tabel %s bestaat reeds!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "Uw SQL-query is succesvol uitgevoerd." @@ -8610,10 +8619,10 @@ msgstr "View" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Fout" @@ -8636,7 +8645,7 @@ msgid "Failed to get description of column %s!" msgstr "Ophalen van omschrijving van kolom %s mislukt!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8647,7 +8656,7 @@ msgstr "Primaire sleutel" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8657,7 +8666,7 @@ msgstr "Primaire sleutel" msgid "Index" msgstr "Index" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "De geselecteerde kolommen zijn met succes verplaatst." @@ -8705,7 +8714,7 @@ msgstr "U heeft niet genoeg rechten om hier te zijn!" msgid "View name can not be empty!" msgstr "View naam kan niet leeg zijn!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "De extensie %s ontbreekt. Controleer uw PHP-configuratie." @@ -8833,7 +8842,7 @@ msgstr "De volgende query is mislukt: \"%s\"" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL meldt: " @@ -8925,7 +8934,7 @@ msgstr "" "Fout opgetreden in de verwerking van de aanvraag: Geen gebeurtenis met naam " "%1$s gevonden in database %2$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8937,21 +8946,21 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin gebruikt nu de standaard tijdzone van " "de database server." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Instellen van geconfigureerde vergelijking verbinding mislukt!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Ontbrekende connectie parameters!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven " "is mislukt." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Bekijk %sonze documentatie%s voor meer informatie." @@ -8974,23 +8983,23 @@ msgstr "Toevoegen" msgid "Del" msgstr "Verwijder" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Opgeslagen bladwijzer naar een opzoeking :" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Nieuwe bladwijzer" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Bladwijzer aanmaken" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Bladwijzer bijwerken" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Bladwijzer verwijderen" @@ -9242,8 +9251,8 @@ msgid "Full texts" msgstr "Volledige teksten" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9256,8 +9265,8 @@ msgid "Descending" msgstr "Aflopend" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9269,41 +9278,41 @@ msgstr "Aflopend" msgid "Ascending" msgstr "Oplopend" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "De rij is verwijderd." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "stop proces" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Weergave van records %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d in totaal, %2$d in de query" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "%d totaal" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Query duurde %01.4f seconden." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Link niet gevonden!" @@ -9650,7 +9659,7 @@ msgstr "" "hernoemd met een opgehoogd volgnummer." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9680,13 +9689,13 @@ msgstr "Rapporteren" msgid "Automatically send report next time" msgstr "Verslag voortaan automatisch verzenden" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9694,18 +9703,18 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "optie overschrijven." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De webserver heeft geen rechten om het bestand %s op te slaan." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Het exportbestand is bewaard als %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" "Exporteren van een \"ruwe query\" wordt niet ondersteund door deze export " @@ -9785,74 +9794,74 @@ msgstr "" msgid "Session not found." msgstr "Sessie niet gevonden." -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "Ga naar database “%s”." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "SSL wordt niet gebruikt" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "SSL wordt gebruikt met uitgeschakelde verificatie" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "SSL wordt gebruikt zonder certificatieautoriteit" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "SSL wordt gebruikt" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "De PHP functie password_hash() met standaard opties." -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "password_hash() PHP functie" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "Analyseer uitleg op %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Zonder PHP-code" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Query verzenden" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Profiling" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bewerken" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Statische analyse:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "%d fouten zijn gevonden tijdens de analyse." @@ -9962,11 +9971,11 @@ msgstr "Functie" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9986,7 +9995,7 @@ msgstr "Functie" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -10039,7 +10048,7 @@ msgstr "%1$s (nabij %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10049,8 +10058,8 @@ msgstr "Verkennen" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10062,7 +10071,7 @@ msgstr "Zoeken" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10072,8 +10081,8 @@ msgid "Insert" msgstr "Invoegen" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10082,14 +10091,14 @@ msgid "Privileges" msgstr "Rechten" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Handelingen" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Traceren" @@ -10097,12 +10106,12 @@ msgstr "Traceren" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Triggers" @@ -10112,11 +10121,11 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database lijkt leeg te zijn!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Query opbouwen" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Routines" @@ -10126,15 +10135,15 @@ msgstr "Routines" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Gebeurtenissen" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Ontwerper" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Centrale kolommen" @@ -10144,12 +10153,12 @@ msgid "User accounts" msgstr "Gebruikersaccounts" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binaire log" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10157,21 +10166,21 @@ msgid "Replication" msgstr "Replicatie" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabelen" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Karaktersets" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Engines" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plug-ins" @@ -10271,11 +10280,11 @@ msgstr "Nieuw" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10293,7 +10302,7 @@ msgstr "Nieuw" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10321,8 +10330,8 @@ msgstr "Nieuw" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10758,7 +10767,7 @@ msgstr "Afbreken" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Verwijderen" @@ -10996,18 +11005,18 @@ msgstr "Dataexport-opties" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11019,7 +11028,7 @@ msgstr "Gegevens worden geëxporteerd voor tabel" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11028,11 +11037,11 @@ msgstr "Nul" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11049,9 +11058,9 @@ msgid "Default" msgstr "Standaardwaarde" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11060,8 +11069,8 @@ msgid "Links to" msgstr "Verwijst naar" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11077,8 +11086,8 @@ msgid "Name" msgstr "Naam" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11087,23 +11096,23 @@ msgid "Definition" msgstr "Definitie" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Structuur voor de view" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -11207,11 +11216,11 @@ msgid "Database:" msgstr "Database:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Gegevens:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Structuur:" @@ -11236,15 +11245,15 @@ msgstr "Rapporttitel:" msgid "Dumping data" msgstr "Dumpen data" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Queryresultaat" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "View structuur" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Staan in" @@ -11323,7 +11332,7 @@ msgid "Data creation options" msgstr "Data-aanmaakopties" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" @@ -11407,7 +11416,7 @@ msgstr "Het lijkt erop dat uw database programmaroutines gebruikt;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." @@ -11481,20 +11490,20 @@ msgstr "MEDIA TYPEN VOOR TABEL" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Het lijkt erop dat uw tabel triggers gebruikt;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structuur voor view %s geëxporteerd als tabel" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Zie onder voor de actuele view)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Fout bij het lezen van gegevens voor tabel %s:" @@ -11809,7 +11818,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" @@ -12033,14 +12042,18 @@ msgstr "" "Levert authentificatie door HOTP en TOTP applicaties zoals FreeOTP, Google " "Authenticator of Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Hardwarematige beveiligingssleutel (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Levert authentificatie door hardwarematige beveiligingssleutels met FIDO U2F " "ondersteuning, zoals een Yubikey." @@ -12070,6 +12083,24 @@ msgstr "Eenvoudige tweeweg authenticatie" msgid "For testing purposes only!" msgstr "Alleen voor testdoeleinden!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Hardwarematige beveiligingssleutel (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Levert authentificatie door hardwarematige beveiligingssleutels met FIDO U2F " +"ondersteuning, zoals een Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12819,7 +12850,7 @@ msgstr "%s is uitgeschakeld op deze MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "De naam van de primaire sleutel moet \"PRIMARY\" zijn!" @@ -12832,39 +12863,39 @@ msgstr "Problemen met de indexen van de tabel `%s`" msgid "Unknown table status:" msgstr "Onbekende tabelstatus:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Brondatabase `%s` is niet gevonden!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Doeldatabase `%s` niet gevonden!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Ongeldige database:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Ongeldige tabelnaam:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fout bij hernoemen van tabel %1$s naar %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s is hernoemd naar %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12873,7 +12904,7 @@ msgstr "" "Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12884,15 +12915,15 @@ msgstr "" "wijzigingen zullen verdwijnen na verversen van deze pagina. Controleer of de " "tabelstructuur is gewijzigd." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Kan index niet naar PRIMARY hernoemen!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13054,14 +13085,14 @@ msgstr "Versie %1$s van %2$s is verwijderd." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Een 1-byte integer, signed range is van -128 tot 127, unsigned range is van " "0 tot 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13069,7 +13100,7 @@ msgstr "" "Een 2-byte integer, signed range van -32,768 tot 32,767, unsigned range van " "0 tot 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13077,7 +13108,7 @@ msgstr "" "Een 3-byte integer, signed range van -8,388,608 tot 8,388,607, unsigned " "range van 0 tot 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13085,7 +13116,7 @@ msgstr "" "Een 4-byte integer, signed range van -2,147,483,648 tot 2,147,483,647, " "unsigned range van 0 tot 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13094,7 +13125,7 @@ msgstr "" "9,223,372,036,854,775,807, unsigned range van 0 tot " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13102,7 +13133,7 @@ msgstr "" "Een getal met vaste kommapositie (M,D) - het maximum aantal cijfers (M) is " "65 (standaard 10), het maximum aantal decimalen (D) is 30 (standaard 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13111,7 +13142,7 @@ msgstr "" "-3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13121,7 +13152,7 @@ msgstr "" "waarden zijn -1,7976931348623157E+308 tot -2,2250738585072014E-308, 0, en " "2,2250738585072014E-308 tot 1,7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13129,7 +13160,7 @@ msgstr "" "Synoniem voor DOUBLE (uitzondering : in REAL_AS_FLOAT SQL mode is dit een " "synoniem voor FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13137,7 +13168,7 @@ msgstr "" "Een bit-field type (M), slaat M bits per waarde op (standaard is 1, maximum " "is 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13145,21 +13176,21 @@ msgstr "" "Een synoniem voor TINYINT(1), Een nulwaarde wordt beschouwd als vals, een " "niet-nulwaarde wordt beschouwd als waar" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Een alias voor BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Een datum, ondersteund bereik is %1$s tot %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Een dag en tijd combinatie, ondersteunde reeks gaat van %1$s tot %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13167,12 +13198,12 @@ msgstr "" "Een tijdstip, van 1970-01-01 00:00:01 UTC tot 2038-01-09 03:14:07 UTC, wordt " "opgeslaan als aantal seconden sinds het beginmoment (1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Een uur, bereik is %1$s tot %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13181,7 +13212,7 @@ msgstr "" "toegelaten waarden lopen van 70 (1970) tot 69 (2069) of van 1901 tot 2155 en " "0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13189,7 +13220,7 @@ msgstr "" "Een string met vaste lengte (0-255, standaard 1) wordt bij opslag met " "spaties rechts tot de gespecificeerde lengte aangevuld" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13198,7 +13229,7 @@ msgstr "" "Een string met variabele lengte (%s), de effectieve maximale lengte is " "afhankelijk van de maximale rij grootte" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13207,7 +13238,7 @@ msgstr "" "wordt opgeslagen met een 1-byte voorvoegsel dat de lengte van de waarde in " "bytes aangeeft" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13216,7 +13247,7 @@ msgstr "" "tekens, wordt opgeslagen met een 2-byte voorvoegsel dat de lengte van de " "waarde in bytes aangeeft" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13225,7 +13256,7 @@ msgstr "" "1) tekens, wordt opgeslagen met een 3-byte voorvoegsel dat de lengte van de " "waarde in bytes aangeeft" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13235,7 +13266,7 @@ msgstr "" "4GiB (2^32 - 1) tekens, wordt opgeslagen met een 4-byte voorvoegsel dat de " "lengte van de waarde in bytes aangeeft" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13243,7 +13274,7 @@ msgstr "" "Vergelijkbaar met het CHAR type, maar opgeslagen in een binaire byte " "tekenreeks in plaats van een niet-binaire reeks lettertekens" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13251,7 +13282,7 @@ msgstr "" "Vergelijkbaar met het VARCHAR type, maar slaat de waarde op als binaire byte " "tekenreeks in plaats van een niet-binaire tekenreeks" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13260,7 +13291,7 @@ msgstr "" "wordt opgeslagen met een 1-byte voorvoegsel dat de lengte van de waarde " "aangeeft" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13269,7 +13300,7 @@ msgstr "" "bytes, wordt opgeslagen met een 3-byte voorvoegsel dat de lengte van de " "waarde aangeeft" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13278,7 +13309,7 @@ msgstr "" "bytes, wordt opgeslagen met een 2-byte voorvoegsel dat de lengte van de " "waarde aangeeft" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13287,7 +13318,7 @@ msgstr "" "(2^32 - 1) bytes, wordt opgeslagen met een 4-byte voorvoegsel dat de lengte " "van de waarde aangeeft" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13295,43 +13326,43 @@ msgstr "" "Een opsomming, geselecteerd uit een lijst met tot 65.535 waarden of de " "speciale '' foutwaarde" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Een enkele waarde geselecteerd uit een lijst met tot 64 waarden" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Een type dat een meetkundig object van gelijk welk type op kan slaan" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Een punt in een 2-dimensionale ruimte" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Een kromme met lineaire interpolatie tussen punten" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Een veelhoek" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Een verzameling van punten" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Een verzameling van krommen met lineaire interpolatie tussen punten" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Een verzameling van veelhoeken" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Een verzameling van meetkundige objecten van gelijk welk type" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13339,7 +13370,7 @@ msgstr "" "Maakt efficiënte datatoegang beschikbaar en slaat het op in JSON (JavaScript " "Object Notation) documenten" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13347,17 +13378,23 @@ msgstr "" "Bedoeld voor opslag van IPv6 adressen, als ook IPv4 adressen waarbij de " "gebruikelijke omzetting van IPv4 adressen in IPv6 adressen wordt aangenomen" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Bevat een Universeel Unieke Identifier (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeriek" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Datum en tijd" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Ruimtelijk" @@ -13382,139 +13419,139 @@ msgstr "Opslaan van het configuratiebestand is niet mogelijk" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "De phpMyAdmin configuratie opslagdatabase kon niet worden benaderd." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mrt" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "zon" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "ma" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "di" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "wo" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "do" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "vr" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "za" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Gebruikers" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sorteren" @@ -13687,7 +13724,7 @@ msgstr "beide bovenstaande opties" msgid "neither of the above" msgstr "geen van bovenstaande opties" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Configuratie bestaat al, instellen is uitgeschakeld!" @@ -13723,7 +13760,7 @@ msgstr "Geen" msgid "As defined:" msgstr "Zoals aangegeven:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13731,41 +13768,41 @@ msgstr "" "U heeft niet genoeg rechten om deze actie uit te voeren; Kijk a.u.b. naar de " "documentatie voor meer details" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unieke waarde" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Volledige tekst" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Ruimtelijk" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expressie" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "eerste" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "na %s" @@ -13895,7 +13932,7 @@ msgstr "Engine" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13966,7 +14003,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14237,7 +14274,7 @@ msgid "Search this table" msgstr "Zoek in deze tabel" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Kolom toevoegen" @@ -14266,7 +14303,7 @@ msgstr "Klik om te sorteren." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14296,24 +14333,24 @@ msgstr "Database commentaar:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Afdrukken" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Gecomprimeerd" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinaliteit" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Geen index gedefinieerd!" @@ -15116,6 +15153,11 @@ msgstr[1] "%s tabellen" msgid "Sum" msgstr "Som" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Verder gaan" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Van" @@ -15207,16 +15249,11 @@ msgstr "Verwijder kolommen uit de centrale lijst" msgid "Make consistent with central list" msgstr "Maak in overeenstemming met centrale lijst" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Verder gaan" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Bent u zeker?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15356,7 +15393,7 @@ msgstr "Tabellen zonder tracker" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Tabel tracken" @@ -16077,17 +16114,17 @@ msgid "Other options" msgstr "Andere opties" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Hernoem" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "De primaire sleutel is verwijderd." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Index %s is verwijderd." @@ -16408,11 +16445,35 @@ msgstr "" msgid "Verify" msgstr "Verifieer" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Sluit a.u.b. uw FIDO U2F apparaat aan op uw computer USB-poort. Bevestig dan " +"uw registratie op het apparaat." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Sluit a.u.b. uw FIDO U2F apparaat aan op uw computer USB-poort. Bevestig dan " +"uw aanmelding op het apparaat." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "View:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Ga terug" @@ -16588,8 +16649,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "U kan al uw instellingen terugzetten op de standaardwaarden." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configureer tweeweg authentificatie" @@ -16610,7 +16671,7 @@ msgstr "" "een wachtwoord." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Deactiveer tweeweg authentificatie" @@ -16627,6 +16688,7 @@ msgstr "" "afhankelijkheden om authentificatie backends beschikbaar te maken." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "De volgende composer onderdelen ontbreken:" @@ -16643,6 +16705,17 @@ msgstr "" "account." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Tweeweg authentificatie is niet beschikbaar, installeer a.u.b. de optionele " +"afhankelijkheden om authentificatie backends beschikbaar te maken." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16650,7 +16723,7 @@ msgstr "" "Tweeweg authentificatie is niet beschikbaar, activeer phpMyAdmin " "configuratieopslag om het te gebruiken." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "U hebt tweeweg authentificatie geactiveerd." @@ -18823,7 +18896,7 @@ msgid "Start row:" msgstr "Startregel:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partities" @@ -18905,7 +18978,7 @@ msgstr "Toevoegen aan centrale kolommen" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Kolommen verplaatsen" @@ -18913,33 +18986,33 @@ msgstr "Kolommen verplaatsen" msgid "Move the columns by dragging them up and down." msgstr "De kolommen verplaatsen door ze omhoog en omlaag te slepen." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "View bewerken" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normaliseer" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "View volgen" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s kolom(men) toevoegen" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "bij begin van de tabel" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Een index aanmaken op %s kolommen" @@ -19795,9 +19868,6 @@ msgstr "Kolomnamen" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Een alias voor BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Bevat een Universeel Unieke Identifier (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/nn.po b/po/nn.po index a4f851951a..89b8fc3ed9 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Punjabi , YEAR. # @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1165,7 +1165,7 @@ msgstr "" #: templates/sql/query.twig:147 #: templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1178,8 +1178,8 @@ msgstr "" #: templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 #: templates/view_create.twig:116 msgid "Go" @@ -1189,7 +1189,7 @@ msgstr "" #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 #: templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "" @@ -2883,9 +2883,9 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -2914,8 +2914,8 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3067,7 +3067,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 #: templates/server/export/index.twig:7 @@ -3186,8 +3186,8 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3212,7 +3212,7 @@ msgid "Database structure" msgstr "" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "" @@ -3840,9 +3840,9 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 #: templates/console/display.twig:31 #: templates/console/display.twig:175 @@ -3864,17 +3864,17 @@ msgstr "" #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 #: templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -3882,7 +3882,7 @@ msgid "Refresh" msgstr "" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "" @@ -4148,14 +4148,14 @@ msgstr "" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4199,8 +4199,8 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 #: templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 @@ -4246,8 +4246,8 @@ msgstr "" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 #: templates/import.twig:199 #: templates/preferences/header.twig:48 @@ -4264,31 +4264,31 @@ msgstr "" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, possible-php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, possible-php-format msgid "Server %d" msgstr "" @@ -4542,7 +4542,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -4632,7 +4632,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -4652,9 +4652,9 @@ msgstr "" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -4677,7 +4677,7 @@ msgstr "" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -4691,7 +4691,7 @@ msgstr "" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 +#: libraries/classes/Core.php:717 #: templates/preview_sql.twig:3 msgid "No change" msgstr "" @@ -4744,7 +4744,7 @@ msgid "You may want to refresh the page." msgstr "" #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "" @@ -4841,15 +4841,15 @@ msgid "" "this some features such as error reporting or version check are disabled." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "" @@ -4862,43 +4862,43 @@ msgid "" msgstr "" #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, possible-php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "" msgstr[1] "" -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, possible-php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -5132,11 +5132,12 @@ msgstr "" #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "" @@ -5150,7 +5151,7 @@ msgid "Matched rows:" msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 +#: libraries/classes/Html/Generator.php:893 #: templates/export.twig:67 msgid "SQL query:" msgstr "" @@ -5232,7 +5233,8 @@ msgstr "" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5286,13 +5288,13 @@ msgstr "" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "" #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "" @@ -5397,45 +5399,45 @@ msgstr "" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "" @@ -5455,7 +5457,7 @@ msgid "Traffic" msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "" @@ -5471,11 +5473,11 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 #: templates/export.twig:433 @@ -5673,7 +5675,7 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -5683,8 +5685,8 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -5833,10 +5835,10 @@ msgstr "" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 #: templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 @@ -5862,6 +5864,7 @@ msgstr "" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "" @@ -5920,7 +5923,7 @@ msgstr "" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "" @@ -5944,9 +5947,9 @@ msgstr "" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5969,7 +5972,7 @@ msgstr "" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6056,7 +6059,7 @@ msgid "Show query box" msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 #: templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 @@ -6182,7 +6185,7 @@ msgid "No partial dependencies selected!" msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 #: templates/user_password.twig:2 @@ -6312,14 +6315,14 @@ msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 #: templates/table/index_form.twig:203 msgid "Ignore" msgstr "" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -6850,27 +6853,33 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, possible-php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -6893,20 +6902,20 @@ msgid "No such column" msgstr "" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "" @@ -6932,7 +6941,7 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 #: templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "" @@ -7589,7 +7598,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "" @@ -7686,7 +7695,7 @@ msgstr "" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "" @@ -7751,10 +7760,10 @@ msgstr "" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "" @@ -7777,7 +7786,7 @@ msgid "Failed to get description of column %s!" msgstr "" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -7788,7 +7797,7 @@ msgstr "" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -7798,7 +7807,7 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "" @@ -7846,7 +7855,7 @@ msgstr "" msgid "View name can not be empty!" msgstr "" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, possible-php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -7966,7 +7975,7 @@ msgstr "" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "" @@ -8054,7 +8063,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "" -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, possible-php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8062,19 +8071,19 @@ msgid "" "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, possible-php-format msgid "See %sour documentation%s for more information." msgstr "" @@ -8097,23 +8106,23 @@ msgstr "" msgid "Del" msgstr "" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "" @@ -8360,8 +8369,8 @@ msgid "Full texts" msgstr "" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -8374,8 +8383,8 @@ msgid "Descending" msgstr "" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -8387,41 +8396,41 @@ msgstr "" msgid "Ascending" msgstr "" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "" -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, possible-php-format msgid "Showing rows %1s - %2s" msgstr "" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, possible-php-format msgid "%1$d total, %2$d in query" msgstr "" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, possible-php-format msgid "%d total" msgstr "" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, possible-php-format msgid "Query took %01.4f seconds." msgstr "" -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "" @@ -8715,7 +8724,7 @@ msgid "" msgstr "" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 @@ -8746,30 +8755,30 @@ msgstr "" msgid "Automatically send report next time" msgstr "" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -8838,76 +8847,76 @@ msgstr "" msgid "Session not found." msgstr "" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, possible-php-format msgid "Jump to database “%s”." msgstr "" -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, possible-php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "" -#: libraries/classes/Html/Generator.php:733 +#: libraries/classes/Html/Generator.php:739 #: templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, possible-php-format msgid "%d errors were found during analysis." msgstr "" @@ -9014,11 +9023,11 @@ msgstr "" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9039,7 +9048,7 @@ msgstr "" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9091,7 +9100,7 @@ msgstr "" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 #: templates/database/search/results.twig:34 @@ -9102,8 +9111,8 @@ msgstr "" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 #: templates/database/routines/index.twig:27 @@ -9118,7 +9127,7 @@ msgstr "" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9128,8 +9137,8 @@ msgid "Insert" msgstr "" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9138,15 +9147,15 @@ msgid "Privileges" msgstr "" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 #: templates/table/operations/view.twig:8 msgid "Operations" msgstr "" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "" @@ -9154,12 +9163,12 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "" @@ -9169,11 +9178,11 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "" @@ -9183,16 +9192,16 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 +#: libraries/classes/Util.php:1984 #: templates/database/events/index.twig:3 msgid "Events" msgstr "" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "" @@ -9202,13 +9211,13 @@ msgid "User accounts" msgstr "" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 +#: libraries/classes/Util.php:1967 #: templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9216,22 +9225,22 @@ msgid "Replication" msgstr "" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 #: templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "" @@ -9328,11 +9337,11 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9351,7 +9360,7 @@ msgstr "" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9379,8 +9388,8 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -9766,7 +9775,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "" @@ -9988,18 +9997,18 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10012,7 +10021,7 @@ msgstr "" #: templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10021,11 +10030,11 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10042,9 +10051,9 @@ msgid "Default" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10053,8 +10062,8 @@ msgid "Links to" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10071,8 +10080,8 @@ msgid "Name" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10081,23 +10090,23 @@ msgid "Definition" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10200,11 +10209,11 @@ msgid "Database:" msgstr "" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "" @@ -10229,15 +10238,15 @@ msgstr "" msgid "Dumping data" msgstr "" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "" @@ -10306,7 +10315,7 @@ msgid "Data creation options" msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -10375,7 +10384,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10449,20 +10458,20 @@ msgstr "" msgid "RELATIONSHIPS FOR TABLE" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, possible-php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, possible-php-format msgid "Error reading data for table %s:" msgstr "" @@ -10753,7 +10762,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "" @@ -10922,14 +10931,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -10957,6 +10966,16 @@ msgstr "" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -11661,7 +11680,7 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" @@ -11674,46 +11693,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, possible-php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, possible-php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, possible-php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, possible-php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, possible-php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, possible-php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -11721,15 +11740,15 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11885,242 +11904,246 @@ msgstr "" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, possible-php-format msgid "A date, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, possible-php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, possible-php-format msgid "A time, range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, possible-php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -12145,156 +12168,156 @@ msgstr "" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, possible-php-format msgid "Max: %s%s" msgstr "" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 +#: libraries/classes/Util.php:665 #: templates/javascript/variables.twig:34 msgid "Jan" msgstr "" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 +#: libraries/classes/Util.php:667 #: templates/javascript/variables.twig:35 msgid "Feb" msgstr "" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 +#: libraries/classes/Util.php:669 #: templates/javascript/variables.twig:36 msgid "Mar" msgstr "" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 +#: libraries/classes/Util.php:671 #: templates/javascript/variables.twig:37 msgid "Apr" msgstr "" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 +#: libraries/classes/Util.php:675 #: templates/javascript/variables.twig:39 msgid "Jun" msgstr "" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 +#: libraries/classes/Util.php:677 #: templates/javascript/variables.twig:40 msgid "Jul" msgstr "" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 +#: libraries/classes/Util.php:679 #: templates/javascript/variables.twig:41 msgid "Aug" msgstr "" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 +#: libraries/classes/Util.php:681 #: templates/javascript/variables.twig:42 msgid "Sep" msgstr "" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 +#: libraries/classes/Util.php:683 #: templates/javascript/variables.twig:43 msgid "Oct" msgstr "" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 +#: libraries/classes/Util.php:685 #: templates/javascript/variables.twig:44 msgid "Nov" msgstr "" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 +#: libraries/classes/Util.php:687 #: templates/javascript/variables.twig:45 msgid "Dec" msgstr "" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 +#: libraries/classes/Util.php:693 #: templates/javascript/variables.twig:58 msgid "Mon" msgstr "" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 +#: libraries/classes/Util.php:695 #: templates/javascript/variables.twig:59 msgid "Tue" msgstr "" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 +#: libraries/classes/Util.php:697 #: templates/javascript/variables.twig:60 msgid "Wed" msgstr "" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 +#: libraries/classes/Util.php:699 #: templates/javascript/variables.twig:61 msgid "Thu" msgstr "" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 +#: libraries/classes/Util.php:701 #: templates/javascript/variables.twig:62 msgid "Fri" msgstr "" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 +#: libraries/classes/Util.php:703 #: templates/javascript/variables.twig:63 msgid "Sat" msgstr "" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "" @@ -12474,7 +12497,7 @@ msgstr "" msgid "neither of the above" msgstr "" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -12509,48 +12532,48 @@ msgstr "" msgid "As defined:" msgstr "" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" msgstr "" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 #: templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, possible-php-format msgid "after %s" msgstr "" @@ -12683,7 +12706,7 @@ msgstr "" #: templates/database/structure/table_header.twig:46 #: templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -12749,7 +12772,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13026,7 +13049,7 @@ msgid "Search this table" msgstr "" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "" @@ -13056,7 +13079,7 @@ msgstr "" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13087,27 +13110,27 @@ msgstr "" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "" #: templates/database/data_dictionary/index.twig:76 #: templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "" #: templates/database/data_dictionary/index.twig:78 #: templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "" #: templates/database/data_dictionary/index.twig:117 #: templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "" @@ -13914,6 +13937,11 @@ msgstr[1] "" msgid "Sum" msgstr "" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "" @@ -14005,16 +14033,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14154,7 +14177,7 @@ msgstr "" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "" @@ -14875,17 +14898,17 @@ msgid "Other options" msgstr "" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, possible-php-format msgid "Index %s has been dropped." msgstr "" @@ -15190,11 +15213,23 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -15367,8 +15402,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "" @@ -15387,7 +15422,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "" @@ -15402,6 +15437,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -15416,11 +15452,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -17474,7 +17515,7 @@ msgid "Start row:" msgstr "" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "" @@ -17556,7 +17597,7 @@ msgstr "" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "" @@ -17564,33 +17605,33 @@ msgstr "" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, possible-php-format msgid "Create an index on %s columns" msgstr "" diff --git a/po/pl.po b/po/pl.po index 97f024740a..2d54f8158f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-09-04 23:40+0000\n" "Last-Translator: Kozioł Marcin \n" "Language-Team: Polish %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10970,8 +10979,8 @@ msgstr "Przeglądaj" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10983,7 +10992,7 @@ msgstr "Szukaj" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10993,8 +11002,8 @@ msgid "Insert" msgstr "Wstaw" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -11003,14 +11012,14 @@ msgid "Privileges" msgstr "Uprawnienia" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operacje" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Śledzenie" @@ -11018,12 +11027,12 @@ msgstr "Śledzenie" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Wyzwalacze" @@ -11034,11 +11043,11 @@ msgstr "Wyzwalacze" msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Zapytanie" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Procedury i funkcje" @@ -11048,17 +11057,17 @@ msgstr "Procedury i funkcje" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 #, fuzzy msgid "Events" msgstr "Zdarzenia" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 #, fuzzy msgid "Designer" msgstr "Widok projektu" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 #, fuzzy msgid "Central columns" @@ -11069,13 +11078,13 @@ msgid "User accounts" msgstr "Konta użytkowników" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 #, fuzzy msgid "Binary log" msgstr "Dziennik binarny" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -11083,23 +11092,23 @@ msgid "Replication" msgstr "Replikacja" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Zmienne" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 #, fuzzy msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 #, fuzzy msgid "Engines" msgstr "Mechanizmy" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Wtyczki" @@ -11209,11 +11218,11 @@ msgstr "Nowy" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -11231,7 +11240,7 @@ msgstr "Nowy" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -11263,8 +11272,8 @@ msgstr "Nowy" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -11722,7 +11731,7 @@ msgstr "Truncate" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 #, fuzzy msgid "Drop" msgstr "Usuń" @@ -11971,7 +11980,7 @@ msgstr "Opcje eksportu danych" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 #, fuzzy msgid "Dumping data for table" @@ -11979,11 +11988,11 @@ msgstr "Zrzut danych tabeli" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11995,7 +12004,7 @@ msgstr "Zrzut danych tabeli" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -12004,11 +12013,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -12026,9 +12035,9 @@ msgid "Default" msgstr "Ustawienia domyślne" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -12037,8 +12046,8 @@ msgid "Links to" msgstr "Odsyłacze do" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -12054,8 +12063,8 @@ msgid "Name" msgstr "Nazwa" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -12065,23 +12074,23 @@ msgid "Definition" msgstr "Określenie" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktura widoku" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -12193,12 +12202,12 @@ msgid "Database:" msgstr "Baza danych:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #, fuzzy msgid "Data:" msgstr "Dane:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktura:" @@ -12227,15 +12236,15 @@ msgstr "Tytuł raportu:" msgid "Dumping data" msgstr "Przesyłanie danych" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Zapytanie o dane wynikowe" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Zobacz strukturę" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Przyłączać się" @@ -12321,7 +12330,7 @@ msgid "Data creation options" msgstr "Opcje tworzenia danych" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" @@ -12409,7 +12418,7 @@ msgstr "Wygląda na to, że twoja baza danych używa procedur;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "eksport aliasów może nie działać niezawodnie we wszystkich przypadkach." @@ -12489,21 +12498,21 @@ msgstr "TYPY NOŚNIKÓW NA TABELĘ" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACJE DLA TABELI" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Wygląda na to, że twoja tabela używa wyzwalaczy;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura widoku %s eksportowana jako tabela" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 #, fuzzy msgid "(See below for the actual view)" msgstr "(Zobacz poniżej rzeczywisty widok)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format msgid "Error reading data for table %s:" msgstr "Błąd odczytu danych dla tabeli %s:" @@ -12828,7 +12837,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 #, fuzzy msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" @@ -13068,16 +13077,16 @@ msgstr "" "Zapewnia uwierzytelnianie za pomocą aplikacji HOTP i TOTP, takich jak " "FreeOTP, Google Authenticator lub Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 #, fuzzy msgid "Hardware Security Key (FIDO U2F)" msgstr "Sprzętowy klucz bezpieczeństwa (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Zapewnia uwierzytelnianie przy użyciu sprzętowych tokenów zabezpieczających " "obsługujących FIDO U2F." @@ -13108,6 +13117,20 @@ msgstr "Proste uwierzytelnianie dwuskładnikowe" msgid "For testing purposes only!" msgstr "Tylko do celów testowych!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Sprzętowy klucz bezpieczeństwa (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Zapewnia uwierzytelnianie przy użyciu sprzętowych tokenów zabezpieczających " +"obsługujących FIDO U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13906,7 +13929,7 @@ msgstr "Mechanizm %s został wyłączony dla tego serwera MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nazwą podstawowego klucza musi być… PRIMARY!" @@ -13919,40 +13942,40 @@ msgstr "Problemy z indeksami tabeli `%s`" msgid "Unknown table status:" msgstr "Nieznany status tabeli:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Źródło bazy danych '%s' nie zostało znalezione!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Docelowej bazy '%s' nie znaleziono!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Niewłaściwa baza danych:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Niewłaściwa nazwa tabeli:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s ma nazwę zmienioną na %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 #, fuzzy msgid "Could not save table UI preferences!" msgstr "Nie można zapisać preferencji UI tabeli!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, fuzzy, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13961,7 +13984,7 @@ msgstr "" "Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, fuzzy, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13971,16 +13994,16 @@ msgstr "" "Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po " "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 #, fuzzy msgid "Can't rename index to PRIMARY!" msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -14147,7 +14170,7 @@ msgstr "Wersja %1$s z %2$s została usunięta." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 #, fuzzy msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" @@ -14155,7 +14178,7 @@ msgstr "" "1-Bajtowa liczba całkowita, ze znakiem zakres -128 do 127, bez znaku zakres " "wynosi od 0 do 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 #, fuzzy msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " @@ -14164,7 +14187,7 @@ msgstr "" "2-Bajtowa liczba całkowita, ze znakiem zakres -32,768 do 32 767, bez znaku " "zakres wynosi od 0 do 65 535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 #, fuzzy msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " @@ -14173,7 +14196,7 @@ msgstr "" "3-Bajtowa liczba całkowita, ze znakiem zakres -8,388,608 do 8,388,607, bez " "znaku zakres 0 do 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 #, fuzzy msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " @@ -14182,7 +14205,7 @@ msgstr "" "4-Bajtowa liczba całkowita, ze znakiem zakres -2,147,483,648 do 2 147 483 " "647, bez znaku zakres 0 do 4 294 967 295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 #, fuzzy msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " @@ -14191,7 +14214,7 @@ msgstr "" "8-Bajtowa liczba całkowita, ze znakiem zakres -9,223,372,036,854,775,808 do " "9,223,372,036,854,775,807, bez znaku zakres 0 do 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 #, fuzzy msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " @@ -14201,7 +14224,7 @@ msgstr "" "(domyślnie 10), maksymalna liczba miejsc po przecinku (D) wynosi 30 " "(domyślnie 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 #, fuzzy msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " @@ -14210,7 +14233,7 @@ msgstr "" "Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 " "do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 #, fuzzy msgid "" "A double-precision floating-point number, allowable values are " @@ -14221,7 +14244,7 @@ msgstr "" "1.7976931348623157E 308 do - 2.2250738585072014E-308, 0 i " "2.2250738585072014E-308 do 1.7976931348623157E 308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -14229,7 +14252,7 @@ msgstr "" "Synonim dla DOUBLE (wyjątek: w trybie REAL_AS_FLOAT SQL jest synonimem typu " "\"float\")" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 #, fuzzy msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " @@ -14238,7 +14261,7 @@ msgstr "" "Przechowywanie m bitów na wartość typu pole bitowe (M), (wartością domyślną " "jest 1, maksymalnie jest 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 #, fuzzy msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " @@ -14247,22 +14270,22 @@ msgstr "" "Synonim TINYINT(1), wartość zero uznaje wartość FAŁSZ, wartości niezerowe — " "są uważane za prawdziwe" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 #, fuzzy msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Alias unikatowy BIGINT bez znaku nie NULL AUTO_INCREMENT" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, fuzzy, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Datę, obsługiwany jest zakres %1$s do %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, fuzzy, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Data i godzina kombinacja zakresu obsługiwanych jest %1$s %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 #, fuzzy msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " @@ -14272,12 +14295,12 @@ msgstr "" "14: 07 UTC, przechowywane jako liczba sekund od epoki (1970-01-01 00: 00: 00 " "UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, fuzzy, php-format msgid "A time, range is %1$s to %2$s" msgstr "Czas, zakres %1$s do %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 #, fuzzy msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " @@ -14286,7 +14309,7 @@ msgstr "" "W roku w czterocyfrowym (4, domyślnie) lub (2) formacie dwucyfrowym, " "wartości dopuszczalne są 70 (1970)-69 (2069) lub 1901 do 2155 i 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 #, fuzzy msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " @@ -14295,7 +14318,7 @@ msgstr "" "O stałej długości (0-255, domyślnie 1) ciąg znaków, który jest zawsze prawo " "dopełnione spacjami do podanej długości podczas przechowywania" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, fuzzy, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -14304,7 +14327,7 @@ msgstr "" "Ciąg znaków o zmiennej długości (%s) efektywna długość maksymalna jest z " "zastrzeżeniem maksymalny rozmiar wiersza" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 #, fuzzy msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " @@ -14313,7 +14336,7 @@ msgstr "" "Kolumna tekstu o maksymalnej długości 255 (2 ^ 8 - 1) znaków przechowywanych " "z prefiksem jednobajtowych wskazujące długość wartości w bajtach" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 #, fuzzy msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " @@ -14322,7 +14345,7 @@ msgstr "" "Kolumna tekstu o maksymalnej długości 65 535 (2 ^ 16 - 1) znaki, " "przechowywane prefiksu dwubajtowy, wskazując długość wartości w bajtach" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 #, fuzzy msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " @@ -14331,7 +14354,7 @@ msgstr "" "Kolumna tekstu o maksymalnej długości 16,777,215 (2 ^ 24 - 1) znaków " "przechowywanych z prefiksem trzybajtowy wskazujące długość wartości w bajtach" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 #, fuzzy msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " @@ -14342,7 +14365,7 @@ msgstr "" "znaki, przechowywane prefiksu czwartego bajtu, wskazując długość wartości w " "bajtach" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -14350,7 +14373,7 @@ msgstr "" "Podobne do typu CHAR, ale przechowuje binarna bajtu ciągi zamiast ciągów " "znaków nieznakowe" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -14358,7 +14381,7 @@ msgstr "" "Podobnego typu VARCHAR, ale przechowuje binarna bajtu ciągów, zamiast ciągów " "znaków nieznakowe" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 #, fuzzy msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " @@ -14367,7 +14390,7 @@ msgstr "" "Kolumna BLOB o maksymalnej długości 255 (2 ^ 8 - 1) bajtów, przechowywane z " "prefiksem jednobajtowych wskazujące długość wartości" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 #, fuzzy msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " @@ -14376,7 +14399,7 @@ msgstr "" "Kolumna BLOB o maksymalnej długości 16,777,215 (2 ^ 24 - 1) bajtów, " "przechowywane z prefiksem trzybajtowy wskazujące długość wartości" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 #, fuzzy msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " @@ -14385,7 +14408,7 @@ msgstr "" "Kolumna BLOB o maksymalnej długości 65 535 (2 ^ 16 - 1) bajtów, " "przechowywane prefiksu dwubajtowy, wskazując długość wartości" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 #, fuzzy msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " @@ -14394,7 +14417,7 @@ msgstr "" "Kolumny obiektu BLOB o maksymalnej długooci 4 294 967 295 lub 4GiB (2 ^ 32 - " "1) bajtów, przechowywane prefiksu czwartego bajtu, wskazując długość wartości" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 #, fuzzy msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " @@ -14403,52 +14426,52 @@ msgstr "" "Wyliczenie, wybrane z listy wartości maksymalnie 65 535 lub specjalnych '' " "wartość błędu" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 #, fuzzy msgid "A single value chosen from a set of up to 64 members" msgstr "Pojedyncza wartość wybrana z zestawu maksymalnie 64 członków" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 #, fuzzy msgid "A type that can store a geometry of any type" msgstr "Typy, które mogą przechowywać geometrię dowolnego typu" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 #, fuzzy msgid "A point in 2-dimensional space" msgstr "Punkt w przestrzeni 2-wymiarowej" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 #, fuzzy msgid "A curve with linear interpolation between points" msgstr "Krzywa z interpolacji liniowej pomiędzy punktami" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 #, fuzzy msgid "A polygon" msgstr "Wielokąt" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 #, fuzzy msgid "A collection of points" msgstr "Zbiór punktów" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 #, fuzzy msgid "A collection of curves with linear interpolation between points" msgstr "Zbiór krzywych z interpolacji liniowej pomiędzy punktami" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 #, fuzzy msgid "A collection of polygons" msgstr "Zbiór wielokątów" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 #, fuzzy msgid "A collection of geometry objects of any type" msgstr "Zbiór obiektów geometrycznych dowolnego typu" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -14456,7 +14479,7 @@ msgstr "" "Przechowywanie i umożliwienie wydajnego dostępu do danych w dokumentach JSON " "(ang. JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -14464,17 +14487,23 @@ msgstr "" "Przeznaczony do przechowywania adresów IPv6, a także adresów IPv4 przy " "założeniu konwencjonalnego mapowania adresów IPv4 na adresy IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Przechowuje unikatowego identyfikatora (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeryczny" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data i czas" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Przestrzenny" @@ -14503,146 +14532,146 @@ msgstr "Nie można zapisać konfiguracji" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sUtwórz%s magazyn konfiguracji phpMyAdmina w bieżącej bazie danych." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Sty" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 #, fuzzy msgid "Feb" msgstr "Lut" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 #, fuzzy msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Cze" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Lip" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 #, fuzzy msgid "Aug" msgstr "Sie" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Wrz" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Paź" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Lis" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 #, fuzzy msgid "Dec" msgstr "Gru" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Nie" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Pon" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Wto" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Śro" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Czw" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 #, fuzzy msgid "Fri" msgstr "Pią" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sob" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 #, fuzzy msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 #, fuzzy msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, fuzzy, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Użytkownicy" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sortuj" @@ -14829,7 +14858,7 @@ msgstr "oba powyższe" msgid "neither of the above" msgstr "żadne z powyższych" -#: setup/index.php:32 +#: setup/index.php:33 #, fuzzy msgid "Configuration already exists, setup is disabled!" msgstr "Konfiguracja już istnieje, konfiguracja jest wyłączona!" @@ -14867,7 +14896,7 @@ msgstr "Brak" msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -14875,17 +14904,17 @@ msgstr "" "Nie masz wystarczających uprawnień do wykonania tej operacji; Więcej " "informacji można znaleźć w dokumentacji" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Jednoznaczny" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 @@ -14893,25 +14922,25 @@ msgstr "Jednoznaczny" msgid "Fulltext" msgstr "Pełny tekst" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Przestrzenny" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy msgid "Expression" msgstr "Wyrażenie" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "pierwszy" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "po %s" @@ -15046,7 +15075,7 @@ msgstr "Silnik" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 #, fuzzy @@ -15122,7 +15151,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -15415,7 +15444,7 @@ msgid "Search this table" msgstr "Przeszukaj tę tabelę" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 #, fuzzy msgid "Add column" msgstr "Dodaj kolumnę" @@ -15446,7 +15475,7 @@ msgstr "Kliknij, aby posortować." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 #, fuzzy @@ -15480,25 +15509,25 @@ msgstr "Komentarz do bazy danych:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Drukuj" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Spakowany" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 #, fuzzy msgid "Cardinality" msgstr "Moc" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" @@ -16368,6 +16397,12 @@ msgstr[2] "%s tabele" msgid "Sum" msgstr "Suma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +#, fuzzy +msgid "Continue" +msgstr "Kontynuuj" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy msgid "From" @@ -16469,18 +16504,12 @@ msgstr "Usuń kolumny z listy centralnej" msgid "Make consistent with central list" msgstr "Dokonaj zgodne z centralną listą" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -#, fuzzy -msgid "Continue" -msgstr "Kontynuuj" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 #, fuzzy msgid "Are you sure?" msgstr "Jesteś pewny?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -16627,7 +16656,7 @@ msgstr "Tabele nieśledzone" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Śledź tabelę" @@ -17402,17 +17431,17 @@ msgid "Other options" msgstr "Inne opcje:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Zmień nazwę" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Klucz podstawowy został usunięty." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Klucz %s został usunięty." @@ -17739,11 +17768,35 @@ msgstr "" msgid "Verify" msgstr "Zweryfikować" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Podłącz urządzenie FIDO U2F do portu USB komputera. Następnie potwierdź " +"rejestrację na urządzeniu." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Podłącz urządzenie FIDO U2F do portu USB komputera. Następnie potwierdź " +"logowanie na urządzeniu." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Widok:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -17925,8 +17978,8 @@ msgstr "" "Można przywrócić wszystkie ustawienia i przywrócić je do wartości domyślnych." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy msgid "Configure two-factor authentication" msgstr "Skonfiguruj uwierzytelnianie dwuskładnikowe" @@ -17951,7 +18004,7 @@ msgstr "" "się tylko przy użyciu hasła." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy msgid "Disable two-factor authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" @@ -17969,6 +18022,7 @@ msgstr "" "zależności, aby włączyć backendy uwierzytelniania." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 #, fuzzy msgid "Following composer packages are missing:" msgstr "Brakuje następujących pakietów kompozytora:" @@ -17987,6 +18041,17 @@ msgstr "" "dla tego konta." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Uwierzytelnianie dwuskładnikowe nie jest dostępne. Zainstaluj opcjonalne " +"zależności, aby włączyć backendy uwierzytelniania." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -17994,7 +18059,7 @@ msgstr "" "Uwierzytelnianie dwuskładnikowe nie jest dostępne, włącz magazyn " "konfiguracji phpMyAdmin, aby go używać." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Aktywowałeś podwójną weryfikację." @@ -20334,7 +20399,7 @@ msgid "Start row:" msgstr "Początkowy wiersz:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partycje" @@ -20421,7 +20486,7 @@ msgstr "Dodaj do środkowych kolumn" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Przenieś kolumny" @@ -20429,34 +20494,34 @@ msgstr "Przenieś kolumny" msgid "Move the columns by dragging them up and down." msgstr "Aby przenieś kolumny, przeciągając je w górę i w dół." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy msgid "Edit view" msgstr "Edycja widoku" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Zaproponowanie struktury tabeli" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizować" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Widok śledzenia" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj %s kolumnę(y)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "na początku tabeli" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format msgid "Create an index on %s columns" msgstr "Utwórz indeks w %s kolumnach" @@ -21285,9 +21350,6 @@ msgstr "Nazwy kolumn" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Alias unikatowy dla BIGINT NOT NULL AUTO_INCREMENT" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Przechowuje unikatowego identyfikatora (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/pt.po b/po/pt.po index 57a3e42ef8..10921b0f17 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Portuguese %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10044,8 +10053,8 @@ msgstr "Procurar" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10057,7 +10066,7 @@ msgstr "Pesquisar" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10067,8 +10076,8 @@ msgid "Insert" msgstr "Inserir" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10077,14 +10086,14 @@ msgid "Privileges" msgstr "Privilégios" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operações" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Rastreando" @@ -10092,12 +10101,12 @@ msgstr "Rastreando" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Acionadores" @@ -10107,11 +10116,11 @@ msgstr "Acionadores" msgid "Database seems to be empty!" msgstr "A Base de Dados aparenta estar vazia!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rotinas" @@ -10121,15 +10130,15 @@ msgstr "Rotinas" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Eventos" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Desenhador" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Colunas centrais" @@ -10139,12 +10148,12 @@ msgid "User accounts" msgstr "Contas de utilizador" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Registo binário" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10152,21 +10161,21 @@ msgid "Replication" msgstr "Replicação" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variáveis" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motores" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plugins" @@ -10265,11 +10274,11 @@ msgstr "Nova" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10287,7 +10296,7 @@ msgstr "Nova" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10315,8 +10324,8 @@ msgstr "Novo" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10749,7 +10758,7 @@ msgstr "Truncar" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Eliminar" @@ -10988,18 +10997,18 @@ msgstr "Opções de despejo de dados" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11011,7 +11020,7 @@ msgstr "Extraindo dados da tabela" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11020,11 +11029,11 @@ msgstr "Nulo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11041,9 +11050,9 @@ msgid "Default" msgstr "Predefinido" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11052,8 +11061,8 @@ msgid "Links to" msgstr "Ligações para" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11069,8 +11078,8 @@ msgid "Name" msgstr "Nome" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11079,23 +11088,23 @@ msgid "Definition" msgstr "Definição" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Estrutura para vista" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para vista" @@ -11198,11 +11207,11 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Dados:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Estrutura:" @@ -11227,15 +11236,15 @@ msgstr "Título do relatório:" msgid "Dumping data" msgstr "Despejando dados" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Dados do resultado da consulta" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Estrutura da vista" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Substituir" @@ -11314,7 +11323,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Truncar tabela antes do insert" @@ -11398,7 +11407,7 @@ msgstr "Parece que seu banco de dados utiliza rotinas;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "exportar apelidos pode não funcionar confiavelmente em todos os casos." @@ -11472,20 +11481,20 @@ msgstr "TIPOS DE MÍDIA PARA TABELAS" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Isso demonstra que sua tabela utiliza gatilhos;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Veja abaixo para a view atual)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Erro ao ler dados para tabela %s:" @@ -11799,7 +11808,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" @@ -12020,14 +12029,18 @@ msgstr "" "Fornece autenticação usando aplicações HOTP e TOTP como FreeOTP, Google " "Authenticator ou Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Chave de Segurança de Hardware (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Fornece autenticação usando tokens de segurança de hardware suportando FIDO " "U2F, como a Yubikey." @@ -12057,6 +12070,24 @@ msgstr "Autenticação de dois fatores simples" msgid "For testing purposes only!" msgstr "Apenas para fins de teste!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Chave de Segurança de Hardware (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Fornece autenticação usando tokens de segurança de hardware suportando FIDO " +"U2F, como a Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12811,7 +12842,7 @@ msgstr "%s está desactivado neste servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária tem de ser \"PRIMARY\"!" @@ -12824,39 +12855,39 @@ msgstr "Problemas com os índices da tabela `%s`" msgid "Unknown table status:" msgstr "Estado da tabela desconhecido:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "A base de dados fonte `%s` não foi encontrada!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "A base de dados de destino `%s` não foi encontrada!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Base de dados inválida:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nome da tabela inválido:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Falha ao mudar o nome da tabela %1$s para %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s renomeada para %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Não foi possível guardar as preferências de interface da tabela!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12865,7 +12896,7 @@ msgstr "" "Falha ao limpar as preferências de interface da tabela (consulte " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12876,15 +12907,15 @@ msgstr "" "não serão constantes quando recarregar esta página. Por favor, verifique se " "a estrutura da tabela foi alterada." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Impossível renomear índice para PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro criando chave estrangeira em %1$s (verifique tipo de dados)" @@ -13042,14 +13073,14 @@ msgstr "Versão %1$s de %2$s foi apagada." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Um inteiro de 1 byte, a gama atribuída é de -128 a 127, a gama não atribuída " "é de 0 a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13057,7 +13088,7 @@ msgstr "" "Um inteiro de 2 byte, a gama atribuída é de -32,768 a 32,767, a gama não " "atribuída é de 0 a 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13065,7 +13096,7 @@ msgstr "" "Um inteiro de 3 byte, a gama atribuída é de -8,388,608 a 8,388,607, a gama " "não atribuída é de 0 a 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13073,7 +13104,7 @@ msgstr "" "Um inteiro de 4 byte, a gama atribuída é de -2,147,483,648 a 2,147,483,647, " "a gama não atribuída é de 0 a 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13082,7 +13113,7 @@ msgstr "" "9,223,372,036,854,775,807, a gama não atribuída é de 0 a " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13091,7 +13122,7 @@ msgstr "" "(por predefinição 10), a quantidade máxima de decimais (D) é de 30 (por " "predefinição 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13099,7 +13130,7 @@ msgstr "" "Um pequeno número de ponto flutuante, os valores permitidos são " "-3.402823466E+38 a -1.175494351E-38, 0 e 1.175494351E-38 a 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13109,7 +13140,7 @@ msgstr "" "-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e " "2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13117,7 +13148,7 @@ msgstr "" "Sinónimo para DOUBLE (excepção: no modo SQL REAL_AS_FLOAT é sinónimo para " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13125,7 +13156,7 @@ msgstr "" "Um tipo de campo bit (M), armazena M de bits por valor (a predefinição é 1 e " "o máximo é 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13133,21 +13164,21 @@ msgstr "" "Um sinónimo para TINYINT(1), um valor de zero é considerado falso, valores " "diferentes de zero são considerados verdadeiros" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Um alias para BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Uma data, intervalo suportado é %1$s até %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Uma combinação de data e hora, o intervalo suportado é %1$s até %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13156,12 +13187,12 @@ msgstr "" "2038-01-09 03:14:07 UTC, guardado como um número de segundos desde a época " "(1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Uma hora, intervalo é %1$s até %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13170,7 +13201,7 @@ msgstr "" "(2), os valores permitidos são de 70 (1970) até 69 (2069) ou 1901 até 2155 e " "0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13179,7 +13210,7 @@ msgstr "" "sempre preenchida à direita com espaços até o tamanho especificado quando " "armazenado" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13188,7 +13219,7 @@ msgstr "" "Uma cadeia de comprimento variável (%s), o comprimento efetivo máximo está " "sujeito ao tamanho máximo de linha" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13196,7 +13227,7 @@ msgstr "" "Uma coluna de texto com um comprimento máximo de 255 (2^8 - 1) caracteres, " "guardados com um prefixo de um byte indicando o comprimento do valor em bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13205,7 +13236,7 @@ msgstr "" "caracteres, guardada com um prefixo de dois bytes indicando o comprimento do " "valor em bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13214,7 +13245,7 @@ msgstr "" "caracteres, guardada com um prefixo de três bytes que indica o comprimento " "do valor em bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13224,7 +13255,7 @@ msgstr "" "- 1) caracteres, guardada com um prefixo de quatro bytes que indica o " "comprimento do valor em bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13232,7 +13263,7 @@ msgstr "" "Semelhante ao tipo CHAR, mas armazena cadeias de bytes binários em vez de " "cadeias de caracteres não-binários" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13240,7 +13271,7 @@ msgstr "" "Semelhante ao tipo VARCHAR, mas armazena cadeias de bytes binários em vez de " "cadeias de caracteres não-binários" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13248,7 +13279,7 @@ msgstr "" "Uma coluna tipo BLOB com um comprimento máximo de 255 (2^8 - 1) bytes, " "armazenada com um prefixo de um byte indicando o comprimento do valor" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13257,7 +13288,7 @@ msgstr "" "bytes, armazenada com um prefixo de três bytes que indica o comprimento do " "valor" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13265,7 +13296,7 @@ msgstr "" "Uma coluna tipo BLOB com um comprimento máximo de 65.535 (2^16 - 1) bytes, " "armazenada com um prefixo de dois byte indicando o comprimento do valor" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13274,7 +13305,7 @@ msgstr "" "bytes, armazenados com um prefixo de quatro bytes indicando o comprimento do " "valor" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13282,43 +13313,43 @@ msgstr "" "Uma enumeração, escolhida a partir da lista de até 65.535 valores ou o valor " "especial '' do erro" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Um valor único escolhido de um conjunto de até 64 membros" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Um tipo que pode armazenar uma geometria de qualquer tipo" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Um ponto no espaço de 2 dimensões" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Uma curva com uma interpolação linear entre os pontos" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Um polígono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Uma coleção de pontos" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Uma coleção de curvas com uma interpolação linear entre os pontos" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Uma coleção de polígonos" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Uma coleção de objetos geométricos de qualquer tipo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13326,7 +13357,7 @@ msgstr "" "Armazena e ativa acesso eficiente a dados em documentos JSON (Notação de " "Objectos em JavaScript)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13334,17 +13365,23 @@ msgstr "" "Destinado ao armazenamento de endereços IPv6, assim como endereços IPv4 " "assumindo o mapeamento convencional de endereços IPv4 em endereços IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Guarda um Identificador Universal Único (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data e hora" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -13374,139 +13411,139 @@ msgstr "" "%sCriar%s o armazenamento de configuração do phpMyAdmin na base de dados " "atual." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Fev" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ago" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Set" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Out" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dez" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Seg" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ter" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Qua" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Qui" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Sex" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Utilizadores" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordenação" @@ -13679,7 +13716,7 @@ msgstr "ambos acima" msgid "neither of the above" msgstr "nenhuma das acima" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "A configuração já existe, a configuração está desativada!" @@ -13714,7 +13751,7 @@ msgstr "Nenhum" msgid "As defined:" msgstr "Como definido:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13722,41 +13759,41 @@ msgstr "" "Você não possui permissão para esta operação; por favor, verifique a " "documentação para mais detalhes" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Único" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texto Completo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Espacial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expressão" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primeiro" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "após %s" @@ -13886,7 +13923,7 @@ msgstr "Engine" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13957,7 +13994,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14227,7 +14264,7 @@ msgid "Search this table" msgstr "Pesquisar esta tabela" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Adicione nova coluna" @@ -14256,7 +14293,7 @@ msgstr "Clique para ordenar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14286,24 +14323,24 @@ msgstr "Comentário do banco de dados:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimir" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Pacote" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Quantidade" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Nenhum indíce definido!" @@ -15110,6 +15147,11 @@ msgstr[1] "%s tabelas" msgid "Sum" msgstr "Soma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continuar" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "De" @@ -15201,16 +15243,11 @@ msgstr "Remover colunas da lista central" msgid "Make consistent with central list" msgstr "Tornar consistente com a lista central" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continuar" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Tem a certeza?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15350,7 +15387,7 @@ msgstr "Tabelas sem acompanhamento" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Acompanhar tabela" @@ -16090,17 +16127,17 @@ msgid "Other options" msgstr "Outras opções:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Renomear" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "A chave primária foi eliminada." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "O Índice %s foi eliminado." @@ -16421,11 +16458,35 @@ msgstr "" msgid "Verify" msgstr "Verificar" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Por favor, conecte seu aparelho FIDO U2F à porta USB do seu computador. Em " +"seguida confirme o registro no aparelho." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Por favor, conecte seu aparelho FIDO U2F à porta USB do seu computador. " +"Então confirme o login no aparelho." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Ver:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16600,8 +16661,8 @@ msgstr "" "predefinidos." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configurar autenticação por dois fatores" @@ -16622,7 +16683,7 @@ msgstr "" "usando apenas a palavra-passe." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Desativar autenticação por dois fatores" @@ -16639,6 +16700,7 @@ msgstr "" "dependências opcionais para ativar os backends de autenticação." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Os seguintes pacotes do composer estão ausentes:" @@ -16655,6 +16717,17 @@ msgstr "" "para esta conta." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Autenticação em dois fatores não está disponível, por favor instale as " +"dependências opcionais para ativar os backends de autenticação." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16662,7 +16735,7 @@ msgstr "" "A autenticação por dois fatores não está disponível, ative o armazenamento " "da configuração do phpMyAdmin para usá-la." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Você habilitou a autenticação em dois fatores." @@ -18925,7 +18998,7 @@ msgid "Start row:" msgstr "Linha inicial:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partições" @@ -19007,7 +19080,7 @@ msgstr "Adicionar à(s) coluna(s) central(is)" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mover campo(s)" @@ -19015,33 +19088,33 @@ msgstr "Mover campo(s)" msgid "Move the columns by dragging them up and down." msgstr "Mova as colunas arrastando-as para cima e para baixo." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Vista de edição" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizar" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Acompanhar vista" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "No início da tabela" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Criar um índice em %s colunas" @@ -19782,9 +19855,6 @@ msgstr "Nome dos Campos" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Um alias para BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Guarda um Identificador Universal Único (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7ccc5defd4..b51db34ec2 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-09-30 18:54+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Portuguese (Brazil) %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10031,8 +10040,8 @@ msgstr "Visualizar" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10044,7 +10053,7 @@ msgstr "Procurar" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10054,8 +10063,8 @@ msgid "Insert" msgstr "Inserir" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10064,14 +10073,14 @@ msgid "Privileges" msgstr "Privilégios" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operações" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Monitoramento" @@ -10079,12 +10088,12 @@ msgstr "Monitoramento" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Acionadores" @@ -10094,11 +10103,11 @@ msgstr "Acionadores" msgid "Database seems to be empty!" msgstr "O banco de dados parece estar vazio!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Consulta" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rotinas" @@ -10108,15 +10117,15 @@ msgstr "Rotinas" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Eventos" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Colunas centrais" @@ -10126,12 +10135,12 @@ msgid "User accounts" msgstr "Contas de usuário" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Log binário" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10139,21 +10148,21 @@ msgid "Replication" msgstr "Replicação" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variáveis" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Charsets" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motores" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Plugins" @@ -10252,11 +10261,11 @@ msgstr "Nova" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10274,7 +10283,7 @@ msgstr "Nova" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10302,8 +10311,8 @@ msgstr "Novo" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10736,7 +10745,7 @@ msgstr "Truncar" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Eliminar" @@ -10975,18 +10984,18 @@ msgstr "Opções de despejo de dados" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Despejando dados para a tabela" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10998,7 +11007,7 @@ msgstr "Despejando dados para a tabela" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11007,11 +11016,11 @@ msgstr "Nulo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11028,9 +11037,9 @@ msgid "Default" msgstr "Padrão" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11039,8 +11048,8 @@ msgid "Links to" msgstr "Links para" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11056,8 +11065,8 @@ msgid "Name" msgstr "Nome" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11066,23 +11075,23 @@ msgid "Definition" msgstr "Definição" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Estrutura para tabela" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Estrutura para view" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para view" @@ -11185,11 +11194,11 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Dados:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Estrutura:" @@ -11214,15 +11223,15 @@ msgstr "Título do relatório:" msgid "Dumping data" msgstr "Despejando dados" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Resultado da consulta" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Ver estrutura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Substituir" @@ -11301,7 +11310,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Tabela truncada antes do insert" @@ -11384,7 +11393,7 @@ msgstr "Parece que seu banco de dados utiliza rotinas;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "exportar apelidos pode não funcionar confiavelmente em todos os casos." @@ -11458,20 +11467,20 @@ msgstr "TIPOS DE MÍDIA PARA TABELAS" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Parece que sua tabela usa acionadores;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Veja abaixo para a visão atual)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Erro ao ler dados para tabela %s:" @@ -11785,7 +11794,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %H:%M" @@ -12007,14 +12016,18 @@ msgstr "" "Fornece autenticação usando aplicações HOTP e TOTP como FreeOTP, Google " "Authenticator ou Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Chave de Segurança de Hardware (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Fornece autenticação usando tokens de segurança de hardware com suporte para " "FIDO U2F, como um Yubikey." @@ -12044,6 +12057,24 @@ msgstr "Autenticação de dois fatores simples" msgid "For testing purposes only!" msgstr "Apenas para fins de teste!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Chave de Segurança de Hardware (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Fornece autenticação usando tokens de segurança de hardware com suporte para " +"FIDO U2F, como um Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12782,7 +12813,7 @@ msgstr "%s está desabilitado neste servidor MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Esse servidor MySQL não suporta o motor de armazenamento %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária deve ser \"PRIMARY\"!" @@ -12795,39 +12826,39 @@ msgstr "Problemas com os índices da tabela `%s`" msgid "Unknown table status:" msgstr "Status desconhecido de tabela:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "O banco de dados fonte `%s` não foi encontrado!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "O banco de dados alvo `%s` não foi encontrado!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Banco de dados inválido:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nome de tabela inválido:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erro ao renomear tabela %1$s para %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A tabela foi renomeada de %1$s para %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Não foi possível salvar as preferências visuais da tabela!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12836,7 +12867,7 @@ msgstr "" "Falha ao limpar as preferências visuais da tabela (veja $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12847,15 +12878,15 @@ msgstr "" "permanecerão depois que você recarregar esta página. Favor cheque se a " "estrutura da tabela foi alterada." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Não foi possível renomear o índice para PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" @@ -13013,14 +13044,14 @@ msgstr "Versão %1$s de %2$s foi excluída." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Um inteiro de 1 byte, o limite com sinal vai de -128 a 127, o limite sem " "sinal vai de 0 a 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13028,7 +13059,7 @@ msgstr "" "Um inteiro de 2 bytes, o limite com sinal vai de -32.768 até 32.767, o " "limite sem sinal vai de 0 até 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13036,7 +13067,7 @@ msgstr "" "Um inteiro de 3 bytes, o limite com sinal vai de -8.388.608 até 8.388.607, o " "limite sem sinal vai de 0 até 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13044,7 +13075,7 @@ msgstr "" "Um inteiro de 4 bytes, o limite com sinal vai de -2.147.483.648 a " "2.147.483.647, o limite sem sinal vai de 0 a 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13053,7 +13084,7 @@ msgstr "" "a 9.223.372.036.854.775.808, o limite sem sinal vai de 0 a " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13061,7 +13092,7 @@ msgstr "" "Um número de ponto fixo (M, D) - o número máximo de dígitos (M) é 65 (10 por " "padrão), e o número máximo de decimais (D) é 30 (0 por padrão)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13069,7 +13100,7 @@ msgstr "" "Um número curto de ponto flutuante, os valores permitidos são: de " "-3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13079,7 +13110,7 @@ msgstr "" "-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e " "2.2250738585072014E-308 a 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13087,7 +13118,7 @@ msgstr "" "Sinônimo para DOUBLE (exceção: no modo SQL REAL_AS_FLOAT ele é um sinônimo " "para FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13095,7 +13126,7 @@ msgstr "" "Em um campo de tipo bit (M), o armazenamento M de bits por valor é de (1 por " "padrão, 64 no máximo)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13103,21 +13134,21 @@ msgstr "" "Um sinônimo para TINYINT(1), o zero é considerado falso, qualquer valor " "diferente de zero é considerado verdadeiro" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Um apelido para BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Uma data, o limite suportado é de %1$s até %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Uma combinação de data e hora, o limite suportado vai de %1$s a %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13126,12 +13157,12 @@ msgstr "" "03:14:07 UTC, armazenado como o número de segundos desde a época (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Um horário, o limite suportado é de %1$s até %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13139,7 +13170,7 @@ msgstr "" "Um ano no formato de quatro dígitos (4, padrão) ou dois dígitos (2), os " "valores permitidos são: de 70 (1970) a 69 (2069) ou de 1901 a 2155, e 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13147,7 +13178,7 @@ msgstr "" "Uma string de comprimento fixo (0-255, 1 por padrão) que é sempre acrescida " "à direita com espaços para o comprimento especificado quando armazenada" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13156,7 +13187,7 @@ msgstr "" "Uma string de comprimento variável (%s), o comprimento máximo efetivo está " "sujeito ao tamanho máximo da linha" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13165,7 +13196,7 @@ msgstr "" "caracteres, armazenada com um prefixo de um byte indicando o tamanho do " "valor em bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13174,7 +13205,7 @@ msgstr "" "caracteres, armazenada com um prefixo de dois bytes indicando o comprimento " "do valor em bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13183,7 +13214,7 @@ msgstr "" "caracteres, armazenada com um prefixo de três bytes indicando o comprimento " "do valor em bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13193,7 +13224,7 @@ msgstr "" "1) caracteres ou 4GiB, armazenada com um prefixo de quatro bytes indicando o " "comprimento do valor em bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13201,7 +13232,7 @@ msgstr "" "Similar ao tipo CHAR, mas armazena strings de bytes binários em vez de " "strings de caracteres não-binários" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13209,7 +13240,7 @@ msgstr "" "Similar ao tipo VARCHAR, mas armazena strings de bytes binários em vez de " "strings de caracteres não-binários" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13218,7 +13249,7 @@ msgstr "" "armazenada com um prefixo de um byte indicando o comprimento do valor em " "bytes" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13227,7 +13258,7 @@ msgstr "" "bytes, armazenada com um prefixo de três bytes indicando o comprimento do " "valor em bytes" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13236,7 +13267,7 @@ msgstr "" "armazenada com um prefixo de dois bytes indicando o comprimento do valor em " "bytes" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13245,7 +13276,7 @@ msgstr "" "1) bytes ou 4GB, armazenada com um prefixo de quatro bytes indicando o " "comprimento do valor em bytes" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13253,43 +13284,43 @@ msgstr "" "Uma enumeração, escolhida de uma lista de até 65.535 valores ou o valor " "especial de erro ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Um valor único escolhido de um conjunto de até 64 membros" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Um tipo que pode armazenar uma geometria de qualquer tipo" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Um ponto em um espaço bidimensional" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Uma curva com uma interpolação linear entre pontos" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Um polígono" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Uma coleção de pontos" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Uma coleção de curvas com interpolação linear entre pontos" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Uma coleção de polígonos" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Uma coleção de objetos geométricos de qualquer tipo" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13297,7 +13328,7 @@ msgstr "" "Armazena e permite o acesso eficiente aos dados em documentos JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13305,17 +13336,23 @@ msgstr "" "Destinado ao armazenamento de endereços IPv6, bem como endereços IPv4, " "assumindo o mapeamento convencional de endereços IPv4 em endereços IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Armazena o Indicador Único Universal (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data e Tempo" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -13342,139 +13379,139 @@ msgstr "" "O armazenamento de configuração do phpMyAdmin no banco de dados não pôde ser " "acessado." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Fev" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ago" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Set" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Out" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dez" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Dom" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Seg" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ter" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Qua" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Qui" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Sex" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sab" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Usuários" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Ordenar" @@ -13647,7 +13684,7 @@ msgstr "ambos acima" msgid "neither of the above" msgstr "nenhuma das acima" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Configuração já existe, instalação está desabilitada!" @@ -13682,7 +13719,7 @@ msgstr "Nenhum" msgid "As defined:" msgstr "Como definido:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13690,41 +13727,41 @@ msgstr "" "Você não possui permissão para esta operação; Por favor, verifique a " "documentação para mais detalhes" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Único" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Texto completo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Espacial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expressão" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primeiro" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "após %s" @@ -13854,7 +13891,7 @@ msgstr "Engine" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13925,7 +13962,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14195,7 +14232,7 @@ msgid "Search this table" msgstr "Procurar nesta tabela" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Adicionar coluna" @@ -14224,7 +14261,7 @@ msgstr "Clique para ordenar." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14254,24 +14291,24 @@ msgstr "Comentário do banco de dados:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimir" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Pacote" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalidade" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Nenhum índice definido!" @@ -15075,6 +15112,11 @@ msgstr[1] "%s tabelas" msgid "Sum" msgstr "Soma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continuar" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "De" @@ -15166,16 +15208,11 @@ msgstr "Remover colunas da lista central" msgid "Make consistent with central list" msgstr "Tornar consistente com a lista central" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continuar" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Você tem certeza?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15318,7 +15355,7 @@ msgstr "Tabelas não monitoradas" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Monitorar tabela" @@ -16037,17 +16074,17 @@ msgid "Other options" msgstr "Outras opções" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Renomear" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "A chave primária foi deletada." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Índice %s foi eliminado." @@ -16370,11 +16407,35 @@ msgstr "" msgid "Verify" msgstr "Verificar" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Por favor, conecte seu aparelho FIDO U2F à porta USB do seu computador. Em " +"seguida confirme o registro no aparelho." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Por favor, conecte seu aparelho FIDO U2F à porta USB do seu computador. " +"Então confirme o login no aparelho." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "View:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Voltar" @@ -16549,8 +16610,8 @@ msgstr "" "padrões." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configurar autenticação por dois fatores" @@ -16571,7 +16632,7 @@ msgstr "" "usando apenas a senha." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Desativar autenticação por dois fatores" @@ -16588,6 +16649,7 @@ msgstr "" "dependências opcionais para habilitar os backends de autenticação." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Os seguintes pacotes do composer estão ausentes:" @@ -16604,6 +16666,17 @@ msgstr "" "para esta conta." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Autenticação em dois fatores não está disponível, por favor instale as " +"dependências opcionais para habilitar os backends de autenticação." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16611,7 +16684,7 @@ msgstr "" "A autenticação por dois fatores não está disponível, habilite o " "armazenamento da configuração do phpMyAdmin para usá-la." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Você habilitou a autenticação em dois fatores." @@ -18775,7 +18848,7 @@ msgid "Start row:" msgstr "Linha inicial:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partições" @@ -18857,7 +18930,7 @@ msgstr "Adicionar coluna(s) central(is)" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mover campo(s)" @@ -18865,33 +18938,33 @@ msgstr "Mover campo(s)" msgid "Move the columns by dragging them up and down." msgstr "Mover o(s) campo(s) arrastando ele(s) para cima e para baixo." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Tela de edição" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propor estrutura de tabela" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizar" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Modo de visão" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "No início da tabela" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Criar um índice em %s colunas" @@ -19738,9 +19811,6 @@ msgstr "Nome das colunas" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Um alias para BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Armazena o Indicador Único Universal (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/rcf.po b/po/rcf.po index 686517353e..84b9ce8c9f 100644 --- a/po/rcf.po +++ b/po/rcf.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-09-18 08:18+0000\n" "Last-Translator: William Desportes \n" "Language-Team: Réunion Creole \n" "Language-Team: Romanian Documentația MySQL" +"rescrieți interogările pentru a evita acele condiții (într-un tabel " +"temporar: prezența unei coloane BLOB sau TEXT sau prezența unei coloane mai " +"mare de 512 octeți) așa cum este menționat în Documentația MySQL" #: libraries/advisory_rules_generic.php:352 #, php-format @@ -1446,7 +1446,7 @@ msgstr "Caută:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1458,8 +1458,8 @@ msgstr "Caută:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Execută" @@ -1467,7 +1467,7 @@ msgstr "Execută" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Nume cheie" @@ -1866,9 +1866,9 @@ msgid "" "cross-frame scripting (XSS) attacks." msgstr "" "Activarea acestui lucru permite unei pagini situate pe un alt domeniu să " -"apeleze phpMyAdmin în interiorul unui cadru și este o potențială [strong]" -"gaură de securitate[/strong] care permite atacuri de scripting încrucișat " -"(XSS)." +"apeleze phpMyAdmin în interiorul unui cadru și este o potențială " +"[strong]gaură de securitate[/strong] care permite atacuri de scripting " +"încrucișat (XSS)." #: libraries/classes/Config/Descriptions.php:102 msgid "" @@ -3445,9 +3445,9 @@ msgstr "Include text asociat tabel" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3477,8 +3477,8 @@ msgstr "Cheie etichetă" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3637,7 +3637,7 @@ msgstr "Prima zi din calendar" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3754,8 +3754,8 @@ msgstr "Urmărire modificări" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3780,7 +3780,7 @@ msgid "Database structure" msgstr "Structură bază de date" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Structură tabel" @@ -4420,9 +4420,9 @@ msgstr "Omite tabele blocate" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4440,17 +4440,17 @@ msgstr "Omite tabele blocate" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Editează" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Explică SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4458,7 +4458,7 @@ msgid "Refresh" msgstr "Reîmprospătează" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Creează cod PHP" @@ -4723,14 +4723,14 @@ msgstr "Personalizat" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4774,8 +4774,8 @@ msgstr "Text OpenDocument" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4818,8 +4818,8 @@ msgstr "CSV folosind LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4835,22 +4835,22 @@ msgstr "Transformări implicite" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "Nu pot salva setările, formularul de configurare trimis conține erori!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Fișierul de configurare existent (%s) nu poate fi citit." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisiuni greșite la fișierul de configurare, nu ar trebui să poată fi " "scris de oricine!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Citirea fișierului de configurare a eșuat!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4858,12 +4858,12 @@ msgstr "" "De obicei, asta înseamnă că are o eroare de sintaxă, te rog verifică toate " "erorile de mai jos." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Index server invalid: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Server %d" @@ -5160,7 +5160,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "Nu am putut încărca modulele de export, te rog verifică-ți instalarea!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5254,7 +5254,7 @@ msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5276,9 +5276,9 @@ msgstr "necunoscut" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5300,7 +5300,7 @@ msgstr "necunoscut" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5314,7 +5314,7 @@ msgstr "Da" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Nicio modificare" @@ -5374,7 +5374,7 @@ msgid "You may want to refresh the page." msgstr "Poate vrei să reîmprospătezi pagina." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Tip incorect!" @@ -5500,15 +5500,15 @@ msgstr "" "această cauză, unele funcționalități, cum ar fi raportarea erorilor sau " "verificarea versiunii, sunt dezactivate." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Parametrii incompleți" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "A reușit" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "A eșuat" @@ -5523,16 +5523,16 @@ msgstr "" "consultă %sdocumentația%s pentru o soluție ocolitoare pentru această limită." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Arăt semn de carte" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Semnul de carte a fost șters." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5542,7 +5542,7 @@ msgstr "" "fie dimensiunea fișierului a depășit dimensiunea maximă permisă de " "configurarea ta PHP. Vezi [doc@faq1-16]FAQ 1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -5550,7 +5550,7 @@ msgstr[0] "Importul a fost finalizat cu succes, o interogare executată." msgstr[1] "Importul a fost finalizat cu succes, %d interogări executate." msgstr[2] "Importul a fost finalizat cu succes, %d de interogări executate." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5559,7 +5559,7 @@ msgstr "" "Timpul de executare a scriptului a expirat, dacă vrei să termini importul, " "te rog %sretrimite același fișier%s și importul va fi reluat." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5568,7 +5568,7 @@ msgstr "" "obicei asta înseamnă că phpMyAdmin nu va putea finaliza acest import decât " "dacă mărești limitele de timp php." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Declarațiile „ELIMINĂ BAZA DE DATE” sunt dezactivate." @@ -5820,11 +5820,12 @@ msgstr "Te rog selectează coloana (coloanele) pentru index." #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "Previzualizare SQL" @@ -5838,7 +5839,7 @@ msgid "Matched rows:" msgstr "Rânduri identice:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "Interogare SQL:" @@ -5912,7 +5913,8 @@ msgstr "Înlătur utilizatorii selectați" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5966,13 +5968,13 @@ msgstr "Altele" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "," @@ -6082,45 +6084,45 @@ msgstr "Procese" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "O" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KiO" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EiO" @@ -6140,7 +6142,7 @@ msgid "Traffic" msgstr "Trafic" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Setări" @@ -6156,11 +6158,11 @@ msgstr "Te rog adaugă cel puțin o variabilă la serie!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6374,7 +6376,7 @@ msgstr "Explică ieșirea" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6384,8 +6386,8 @@ msgstr "Stare" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6541,10 +6543,10 @@ msgstr "Niciun parametru găsit!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6568,6 +6570,7 @@ msgstr "Aplică" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Încarc…" @@ -6627,7 +6630,7 @@ msgstr "Adaug cheia principală" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "OK" @@ -6651,9 +6654,9 @@ msgstr "Schimb setul de caractere" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6675,7 +6678,7 @@ msgstr "Schimb setul de caractere" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6763,7 +6766,7 @@ msgid "Show query box" msgstr "Arată caseta de interogare" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6890,7 +6893,7 @@ msgid "No partial dependencies selected!" msgstr "Nicio dependență parțială selectată!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -7023,13 +7026,13 @@ msgstr "Conținut punct de date" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Ignoră" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7602,7 +7605,13 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Cheie de securitate invalidă." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " @@ -7612,7 +7621,7 @@ msgstr "" "funcționează în navigator și spațiul de stocare al configurației phpMyAdmin " "nu este configurat pentru acesta." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, fuzzy, php-format #| msgid "Table %s already exists!" msgctxt "" @@ -7620,13 +7629,13 @@ msgctxt "" msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Ascunde" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7649,20 +7658,20 @@ msgid "No such column" msgstr "Nicio astfel de coloană" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "Șir" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "Fragment configurare phpMyAdmin" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Plasează-l în config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Nu am putut importa configurarea" @@ -7687,7 +7696,7 @@ msgstr "Rânduri" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Indexuri" @@ -8436,7 +8445,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Lipsește parametrul:" @@ -8539,7 +8548,7 @@ msgstr "Tabelul %s există deja!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "Interogarea SQL a fost executată cu succes." @@ -8609,10 +8618,10 @@ msgstr "Vezi" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Eroare" @@ -8635,7 +8644,7 @@ msgid "Failed to get description of column %s!" msgstr "Obținerea descrierii coloanei %s a eșuat!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8646,7 +8655,7 @@ msgstr "Principal" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8656,7 +8665,7 @@ msgstr "Principal" msgid "Index" msgstr "Index" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "Coloanele au fost mutate cu succes." @@ -8706,7 +8715,7 @@ msgstr "Nu ai suficiente privilegii pentru a fi aici, chiar acum!" msgid "View name can not be empty!" msgstr "Numele vizualizării nu poate fi gol!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Extensia %s lipsește. Te rog verifică-ți configurarea PHP." @@ -8837,7 +8846,7 @@ msgstr "Următoarea interogare a eșuat: „%s”" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL zice: " @@ -8930,7 +8939,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "Niciun eveniment cu numele %1$s găsit în baza de date %2$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8942,20 +8951,20 @@ msgstr "" "em]. phpMyAdmin folosește în prezent fusul orar implicit al serverului de " "baze de date." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Setarea conexiunii de colaționare configurată a eșuat!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Lipsesc parametrii de conectare!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Conexiunea pentru utilizatorul de control definit în configurarea ta a eșuat." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Vezi %sdocumentația noastră%s pentru mai multe informații." @@ -8980,23 +8989,23 @@ msgstr "Ins" msgid "Del" msgstr "Del" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Căutarea marcată cu semn de carte a fost salvată:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Semn de carte nou" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Creează semn de carte" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Actualizează semnul de carte" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Șterge semnul de carte" @@ -9249,8 +9258,8 @@ msgid "Full texts" msgstr "Texte întregi" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9263,8 +9272,8 @@ msgid "Descending" msgstr "Descrescător" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9276,43 +9285,43 @@ msgstr "Descrescător" msgid "Ascending" msgstr "Crescător" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "Rândul a fost șters." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 #, fuzzy msgid "Kill" msgstr "Oprește" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "" "Poate fi aproximativ. Vezi [doc@faq3-11]Întrebări frecvente 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Arăt rândurile %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d în total, %2$d în interogare" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "Total %d" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Interogarea a durat %01.4f secunde." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Legătură negăsită!" @@ -9656,7 +9665,7 @@ msgstr "" "dă numărul următor cel mai mare." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9686,13 +9695,13 @@ msgstr "Raport" msgid "Automatically send report next time" msgstr "Trimite automat raportul data viitoare" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru a salva fișierul %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9700,18 +9709,18 @@ msgstr "" "Fișierul %s există deja pe server, schimbă-i numele sau verifică opțiunea de " "a-l suprascrie." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serverul web nu are permisiunea de a salva fișierul %s." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump-ul a fost salvat în fișierul %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9788,74 +9797,74 @@ msgstr "" msgid "Session not found." msgstr "Sesiunea nu a fost găsită." -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "Sari la baza de date „%s”." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vezi %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "Nu se folosește SSL" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "Este folosit SSL cu verificarea dezactivată" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "Este folosit SSL fără autoritatea de certificare" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "Este folosit SSL" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Sari peste Explică SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Fără cod PHP" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Trimite interogarea" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Creez profilul" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editează în-linie" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Analiză statică:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "Au fost găsite %d erori în timpul analizei." @@ -9965,11 +9974,11 @@ msgstr "Funcție" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9989,7 +9998,7 @@ msgstr "Funcție" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -10042,7 +10051,7 @@ msgstr "%1$s (lângă %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10052,8 +10061,8 @@ msgstr "Răsfoiește" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10065,7 +10074,7 @@ msgstr "Caută" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10075,8 +10084,8 @@ msgid "Insert" msgstr "Inserează" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10085,14 +10094,14 @@ msgid "Privileges" msgstr "Privilegii" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operații" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Urmărire" @@ -10100,12 +10109,12 @@ msgstr "Urmărire" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Declanșatori" @@ -10115,11 +10124,11 @@ msgstr "Declanșatori" msgid "Database seems to be empty!" msgstr "Baza de date pare să fie goală!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Interogare" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutine" @@ -10129,15 +10138,15 @@ msgstr "Rutine" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Evenimente" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Coloane centrale" @@ -10147,12 +10156,12 @@ msgid "User accounts" msgstr "Conturi utilizator" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Jurnal binar" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10161,21 +10170,21 @@ msgid "Replication" msgstr "Replicare" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabile" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motoare" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Module" @@ -10279,11 +10288,11 @@ msgstr "Nouă" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10301,7 +10310,7 @@ msgstr "Nouă" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10329,8 +10338,8 @@ msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10761,7 +10770,7 @@ msgstr "Trunchiază" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Elimină" @@ -10994,18 +11003,18 @@ msgstr "Opțiuni dump date" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Eliminarea datelor din tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11017,7 +11026,7 @@ msgstr "Eliminarea datelor din tabel" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11026,11 +11035,11 @@ msgstr "Nul" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11047,9 +11056,9 @@ msgid "Default" msgstr "Implicit" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11058,8 +11067,8 @@ msgid "Links to" msgstr "Legături la" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11075,8 +11084,8 @@ msgid "Name" msgstr "Nume" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11085,23 +11094,23 @@ msgid "Definition" msgstr "Definiție" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Structură tabel pentru tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Structură pentru vizualizare" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Substitut structură pentru vizualizare" @@ -11208,11 +11217,11 @@ msgid "Database:" msgstr "Bază de date:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Date:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Structură:" @@ -11239,17 +11248,17 @@ msgstr "Titlu raport:" msgid "Dumping data" msgstr "Eliminarea datelor" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Rezultatele interogării" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Vezi structura" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Substituent" @@ -11328,7 +11337,7 @@ msgid "Data creation options" msgstr "Opțiuni creare date" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Trunchiază tabelul înainte de inserare" @@ -11411,7 +11420,7 @@ msgstr "Se pare că baza ta de date folosește rutine;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "exportul aliasului poate să nu funcționeze fiabil în toate cazurile." @@ -11487,20 +11496,20 @@ msgstr "TIPURI DE MIME PENTRU TABELE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELAȚII PENTRU TABELE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Se pare că tabelul tău folosește declanșatori;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structură pentru vizualizarea %s exportată ca un tabel" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Vezi mai jos vizualizarea actuală)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Eroare la citirea datelor pentru tabelul %s:" @@ -11820,7 +11829,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y la %I:%M %p" @@ -12045,18 +12054,18 @@ msgstr "" "Furnizează autentificarea folosind aplicațiile HOTP și TOTP, cum ar fi " "FreeOTP, Google Authenticator sau Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Cheie de securitate hardware (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Furnizează autentificare folosind tokenuri de securitate hardware care " "suportă FIDO U2F." @@ -12088,6 +12097,24 @@ msgstr "Autentificare pe două niveluri simplă" msgid "For testing purposes only!" msgstr "Numai pentru testare!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Cheie de securitate hardware (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Furnizează autentificare folosind tokenuri de securitate hardware care " +"suportă FIDO U2F." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12851,7 +12878,7 @@ msgstr "%s a fost dezactivat pentru acest server MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Acest server MySQL nu suportă motorul de stocare %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Numele cheii principale trebuie să fie „PRIMARY”!" @@ -12864,39 +12891,39 @@ msgstr "Probleme cu indexurile tabelului „%s”" msgid "Unknown table status:" msgstr "Stare tabel necunoscută:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Baza de date sursă „%s” nu a fost găsită!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Baza de date țintă „%s” nu a fost găsită!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Bază de date invalidă:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Nume tabel invalid:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Redenumirea tabelului %1$s în %2$s a eșuat!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelul %1$s a fost redenumit în %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Nu am putut salva preferințele UI tabel!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12905,7 +12932,7 @@ msgstr "" "Ștergerea preferințelor UI tabel a eșuat (vezi $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12916,15 +12943,15 @@ msgstr "" "după ce reîncarci pagina. Te rog verifică dacă structura tabelului a fost " "modificată." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Nu pot redenumi indexul în PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nicio parte de index definită!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Eroare la crearea cheii străine pe %1$s (verifică tipurile dedate)" @@ -13082,7 +13109,7 @@ msgstr "Versiunea %1$s a %2$s a fost ștearsă." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versiunea %1$s a fost creată, urmărirea %2$s este activă." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 #, fuzzy msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" @@ -13090,7 +13117,7 @@ msgstr "" "Un întreg de 1 octet, are valori de la -128 la 127, iar un întreg fără semn " "are valori de 0 la 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 #, fuzzy msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " @@ -13099,7 +13126,7 @@ msgstr "" "Un întreg de 2 octeţi, are valori de la -32,768 la 32,767, iar un întreg " "fără semn are valori de 0 la 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 #, fuzzy msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " @@ -13108,7 +13135,7 @@ msgstr "" "Un întreg de 3 octeţi, are valori de la -8,388,608 la 8,388,607, iar un " "întreg fără semn are valori de 0 la 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 #, fuzzy msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " @@ -13117,7 +13144,7 @@ msgstr "" "Un întreg de 4 octeţi, are valori de la -2,147,483,648 la 2,147,483,647, iar " "un întreg fără semn are valori de 0 la 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 #, fuzzy msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " @@ -13127,7 +13154,7 @@ msgstr "" "9,223,372,036,854,775,807 , iar un întreg fără semn are valori de 0 la " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 #, fuzzy msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " @@ -13136,7 +13163,7 @@ msgstr "" "Un număr cu punct fix (M, D) - numărul maxim de cifre (M) este 65 (implicit " "10), numărul maxim de zecimale(D) este 30 (implicit 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 #, fuzzy msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " @@ -13145,7 +13172,7 @@ msgstr "" "Un număr cu virgulă mobilă, valorile permise sunt -3.402823466E+38 până la " "-1.175494351E-38, 0, şi 1.175494351E-38 până la 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 #, fuzzy msgid "" "A double-precision floating-point number, allowable values are " @@ -13156,19 +13183,19 @@ msgstr "" "-1.7976931348623157E+308 până la -2.2250738585072014E-308, 0, şi " "2.2250738585072014E-308 până la 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 #, fuzzy msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " @@ -13177,34 +13204,34 @@ msgstr "" "Un sinonim pentru TINYINT(1), o valoare nulă este considerată fals, valorile " "nenule sunt considerate adevărate" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 #, fuzzy msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un sinonim pentru BIGINT FĂRĂ SEMN NENUL INCREMENTARE_AUTOMATĂ UNIC" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "O dată, intervalul suportat este de %1$s la %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "O combinație de dată și oră, intervalul suportat este de la %1$s la %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "O perioadă de timp, intervalul este de la %1$s la %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13213,7 +13240,7 @@ msgstr "" "(2), valorile admise sunt de la 70 (1970) la 69(2069) sau de la 1901 la 2155 " "și 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13221,7 +13248,7 @@ msgstr "" "Un șir de o lungime fixă (0-255, implicit 1) care este mereu umplut cu " "spații în dreapta, până la lungimea specificată, când este stocat" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13230,7 +13257,7 @@ msgstr "" "Un șir de o lungime variabilă (%s), lungimea maximă efectivă depinde de " "dimensiunea maximă a rândului" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13238,7 +13265,7 @@ msgstr "" "O coloană TEXT cu o lungime maximă de 255 (2^8 - 1) de caractere, stocate cu " "un prefix de un octet care indică lungimea valorii în octeți" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13246,7 +13273,7 @@ msgstr "" "O coloană TEXT cu o lungime maximă de 65.535 (2^16-1) de caractere, stocate " "cu un prefix de doi octeți care indică lungimea valorii în octeți" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13254,7 +13281,7 @@ msgstr "" "O coloană TEXT cu o lungime maximă de 16.777.215 (2^24 - 1) de caractere, " "stocate cu un prefix de trei octeți care indică lungimea valorii în octeți" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13264,7 +13291,7 @@ msgstr "" "sau 4 GiO, stocate cu un prefix de patru octeți care indică lungimea valorii " "în octeți" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 #, fuzzy msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" @@ -13273,7 +13300,7 @@ msgstr "" "Similar cu tipul CHAR, dar stochează șiruri de caractere binare decât siruri " "de caractere non-binare" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 #, fuzzy msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" @@ -13282,31 +13309,31 @@ msgstr "" "Similar cu tipul VARCHAR, dar stochează șiruri de caractere binare decât " "șiruri de caractere non-binare" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13314,43 +13341,43 @@ msgstr "" "O enumerare, aleasă din lista de până la 65.535 de valori sau valoarea " "specială de eroare ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "O singură valoare aleasă dintr-un set de până la 64 de membri" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Un tip care poate stoca o geometrie de orice tip" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Un punct într-un plan bidimensional" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "O curbă cu interpolare liniară între două puncte" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Un poligon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "O colecție de puncte" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "O colecție de curbe cu interpolare liniară între puncte" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "O colecție de poligoane" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "O colecție de obiecte geometrice de orice tip" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13358,23 +13385,29 @@ msgstr "" "Stochează și permite accesul eficient la date în documentele JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Stochează un Identificator Universal Unic (IDUU)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeric" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Dată și oră" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spațial" @@ -13404,85 +13437,85 @@ msgstr "" "%sCreează%s spațiul de stocare pentru configurarea phpMyAdmin în baza de " "date curentă." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maxim: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "ian." #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "feb." #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mart." #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "apr." #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "iun." #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "iul." #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "aug." #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sept." #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "oct." #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov." #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "dec." #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13490,55 +13523,55 @@ msgid "Sun" msgstr "D" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "L" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Ma" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mi" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "J" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "V" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "S" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Utilizatori" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sortează" @@ -13711,7 +13744,7 @@ msgstr "ambele de mai sus" msgid "neither of the above" msgstr "niciuna din cele de sus" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Configurarea există deja, inițializarea este dezactivată!" @@ -13746,7 +13779,7 @@ msgstr "Niciuna" msgid "As defined:" msgstr "Așa cum este definit:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13754,41 +13787,41 @@ msgstr "" "Nu ai suficiente privilegii pentru a efectua această operație; te rog " "consultă documentația pentru mai multe detalii" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unic" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Text întreg" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spațial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Expresie" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "primul" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "după %s" @@ -13920,7 +13953,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13997,7 +14030,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14273,7 +14306,7 @@ msgid "Search this table" msgstr "Caută acest tabel" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Adaugă coloană" @@ -14302,7 +14335,7 @@ msgstr "Dă clic pentru a sorta." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14332,24 +14365,24 @@ msgstr "Comentariu bază de date:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Imprimare" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Împachetat" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Cardinalitate" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Niciun index definit!" @@ -15168,6 +15201,11 @@ msgstr[2] "%s de tabele" msgid "Sum" msgstr "Total" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Continuă" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "De la" @@ -15262,16 +15300,11 @@ msgstr "Înlătură coloanele din lista centrală" msgid "Make consistent with central list" msgstr "Asigură consecvență în lista centrală" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Continuă" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Sigur?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15411,7 +15444,7 @@ msgstr "Tabele neurmărite" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Urmărește tabelul" @@ -16165,19 +16198,19 @@ msgid "Other options" msgstr "Alte opțiuni" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Redenumește în" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Cheia principală a fost eliminată." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indexul %s a fost eliminat." @@ -16496,6 +16529,29 @@ msgstr "" msgid "Verify" msgstr "Verifică" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Te rog conectează dispozitivul FIDO U2F la portul USB al calculatorului. " +"Apoi confirmă înregistrarea pe dispozitiv." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Te rog conectează-ți dispozitivul FIDO U2F la portul USB al calculatorului. " +"Apoi confirmă autentificarea pe dispozitiv." + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16503,6 +16559,7 @@ msgid "View:" msgstr "Vizualizări:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16682,8 +16739,8 @@ msgstr "" "Poți să resetezi toate setările și să le restaurezi la valorile implicite." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Configurează autentificarea pe două niveluri" @@ -16704,7 +16761,7 @@ msgstr "" "autentifici din nou folosind numai parola." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Dezactivează autentificarea pe două niveluri" @@ -16721,6 +16778,7 @@ msgstr "" "dependințe opționale pentru a activa părțile administrative de autentificare." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Următoarele pachete de compoziții lipsesc:" @@ -16738,6 +16796,17 @@ msgstr "" "pentru acest cont." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Autentificarea pe două niveluri nu este disponibilă, te rog instalează " +"dependințe opționale pentru a activa părțile administrative de autentificare." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16745,7 +16814,7 @@ msgstr "" "Autentificarea pe două niveluri nu este disponibilă, activează spațiul de " "stocare pentru configurarea phpMyAdmin pentru a o utiliza." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Ai activat autentificarea pe două niveluri." @@ -19037,7 +19106,7 @@ msgid "Start row:" msgstr "Rând de început:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partiții" @@ -19121,7 +19190,7 @@ msgstr "Adaugă în coloanele centrale" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Mută coloane" @@ -19129,33 +19198,33 @@ msgstr "Mută coloane" msgid "Move the columns by dragging them up and down." msgstr "Mută coloanele trăgându-le în sus și jos." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Editează vizualizarea" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propune structura de tabel" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizează" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Urmărește vizualizarea" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Adaugă coloane %s" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "la începutul tabelului" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -19981,9 +20050,6 @@ msgstr "Nume coloane" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Un sinonim pentru BIGINT FĂRĂ SEMN NENUL INCREMENTARE_AUTOMATĂ UNIC" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Stochează un Identificator Universal Unic (IDUU)" - #~ msgid "possible deep recursion attack" #~ msgstr "posibil atac adânc recursiv" diff --git a/po/ru.po b/po/ru.po index f1bda6b920..1c4bf4a6c5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-10-18 17:02+0000\n" "Last-Translator: Evgeniy Khramov \n" "Language-Team: Russian =2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.15-dev\n" #: libraries/advisory_rules_generic.php:9 @@ -1420,7 +1420,7 @@ msgstr "Поиск:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1432,8 +1432,8 @@ msgstr "Поиск:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Вперёд" @@ -1441,7 +1441,7 @@ msgstr "Вперёд" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Имя индекса" @@ -3365,9 +3365,9 @@ msgstr "Добавить заголовок таблицы" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3396,8 +3396,8 @@ msgstr "Идентификатор метки" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3551,7 +3551,7 @@ msgstr "Первый день календаря" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3668,8 +3668,8 @@ msgstr "Слежение за изменениями" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3694,7 +3694,7 @@ msgid "Database structure" msgstr "Структура базы данных" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Структура таблицы" @@ -4320,9 +4320,9 @@ msgstr "Пропускать заблокированные таблицы" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4340,17 +4340,17 @@ msgstr "Пропускать заблокированные таблицы" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Изменить" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Анализ SQL запроса" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4358,7 +4358,7 @@ msgid "Refresh" msgstr "Обновить" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Создать PHP-код" @@ -4623,14 +4623,14 @@ msgstr "Обычно" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4674,8 +4674,8 @@ msgstr "Текст OpenDocument" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4718,8 +4718,8 @@ msgstr "CSV, используя LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4737,22 +4737,22 @@ msgstr "" "Невозможно сохранить настройки, отправленная форма конфигурации содержит " "ошибки!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Невозможно прочесть существующий конфигурационный файл (%s)." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "На конфигурационный файл выставлены неверные права разрешающие запись для " "всех!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Ошибка при чтении конфигурационного файла!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4760,12 +4760,12 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Сервер %d" @@ -5072,7 +5072,7 @@ msgstr "" "phpMyAdmin!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5164,7 +5164,7 @@ msgid "Table %s has been emptied." msgstr "Таблица %s была очищена." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5186,9 +5186,9 @@ msgstr "неизвестно" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5210,7 +5210,7 @@ msgstr "неизвестно" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5224,7 +5224,7 @@ msgstr "Да" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Нет изменений" @@ -5278,7 +5278,7 @@ msgid "You may want to refresh the page." msgstr "Возможно вы хотите перезагрузить страницу." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Неучтённый тип!" @@ -5413,15 +5413,15 @@ msgstr "" "этим, некоторые возможности, включая отправление ошибок и проверка версий, " "отключены." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Неполные параметры" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Удалось" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Ошибка" @@ -5436,16 +5436,16 @@ msgstr "" "ограничения описаны в %sдокументации%s." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Отображение закладки" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5455,7 +5455,7 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. Смотрите [doc@faq1-16]FAQ 1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -5463,7 +5463,7 @@ msgstr[0] "Импорт успешно завершён, выполнен %d з msgstr[1] "Импорт успешно завершён, выполнено %d запроса." msgstr[2] "Импорт успешно завершён, выполнено %d запросов." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5472,7 +5472,7 @@ msgstr "" "Достигнут временной лимит выполнения скрипта. Для завершения импорта, " "пожалуйста %sповторно отправьте тот же файл%s и импорт будет возобновлен." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5481,7 +5481,7 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php скриптов." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) отключена." @@ -5739,11 +5739,12 @@ msgstr "Пожалуйста, выберите столбец(ы) для инд #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "Предпросмотр SQL" @@ -5757,7 +5758,7 @@ msgid "Matched rows:" msgstr "Затронуто строк:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL запрос:" @@ -5831,7 +5832,8 @@ msgstr "Удаление выбранных пользователей" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5885,13 +5887,13 @@ msgstr "Другое" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr " " #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "," @@ -6000,45 +6002,45 @@ msgstr "Процессы" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "КиБ" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "МиБ" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "ГиБ" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "ПиБ" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "ЭБ" @@ -6058,7 +6060,7 @@ msgid "Traffic" msgstr "Трафик" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Настройки" @@ -6074,11 +6076,11 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6292,7 +6294,7 @@ msgstr "Анализ результатов" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6302,8 +6304,8 @@ msgstr "Состояние" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6456,10 +6458,10 @@ msgstr "Параметры не найдены!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6483,6 +6485,7 @@ msgstr "Применить" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Загрузка…" @@ -6542,7 +6545,7 @@ msgstr "Добавление первичного ключа" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "OK" @@ -6566,9 +6569,9 @@ msgstr "Смена кодировки" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6590,7 +6593,7 @@ msgstr "Смена кодировки" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6677,7 +6680,7 @@ msgid "Show query box" msgstr "Отобразить поле запроса" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6809,7 +6812,7 @@ msgid "No partial dependencies selected!" msgstr "Не выбраны зависимости!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6943,13 +6946,13 @@ msgstr "Содержание точки данных" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Игнорировать" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7519,27 +7522,33 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Ошибочный тип экспорта" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Скрыть" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7564,20 +7573,20 @@ msgid "No such column" msgstr "Нет такого столбца" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "Символьные" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "Фрагмент настройки phpMyAdmin" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Вставьте это в свой config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Не получилось импортировать настройки" @@ -7602,7 +7611,7 @@ msgstr "Строки" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Индексы" @@ -8409,7 +8418,7 @@ msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Отсутствующий параметр:" @@ -8513,7 +8522,7 @@ msgstr "Таблица %s уже существует!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "SQL-запрос успешно выполнен." @@ -8583,10 +8592,10 @@ msgstr "Представление" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Ошибка" @@ -8609,7 +8618,7 @@ msgid "Failed to get description of column %s!" msgstr "Не удалось получить описание столбца %s!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8620,7 +8629,7 @@ msgstr "Первичный" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8630,7 +8639,7 @@ msgstr "Первичный" msgid "Index" msgstr "Индекс" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "Поля были успешно перемещены." @@ -8679,7 +8688,7 @@ msgstr "Для доступа к данной странице у вас нед msgid "View name can not be empty!" msgstr "Имя вида не может быть пустым!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Расширение %s не найдено. Пожалуйста, проверьте ваши настройки PHP." @@ -8808,7 +8817,7 @@ msgstr "Данный запрос не был выполнен: \"%s\"" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "Ответ MySQL: " @@ -8897,7 +8906,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "В базе данных %2$s не найдено событие с именем %1$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8909,19 +8918,19 @@ msgstr "" "phpMyAdmin в настоящий момент использует часовой пояс, установленный на " "сервере по-умолчанию." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Не удалось установить настроенное соединение для сопоставления!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Отсутствуют параметры подключения!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Смотрите %sour documentation%s для дополнительной информации." @@ -8944,23 +8953,23 @@ msgstr "Вставить" msgid "Del" msgstr "Удалить" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Закладка поиска:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Новая закладка" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Создать закладку" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Обновить закладку" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Удалить закладку" @@ -9212,8 +9221,8 @@ msgid "Full texts" msgstr "Полные тексты" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9226,8 +9235,8 @@ msgid "Descending" msgstr "По убыванию" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9239,41 +9248,41 @@ msgstr "По убыванию" msgid "Ascending" msgstr "По возрастанию" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "Строка была удалена." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "Завершить" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Может быть приблизительно. Смотрите [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Отображение строк %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d всего, %2$d в запросе" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "%d всего" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Запрос занял %01.4f сек." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Связь не найдена!" @@ -9616,7 +9625,7 @@ msgstr "" "порядковый номер." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9648,13 +9657,13 @@ msgstr "Отчёт" msgid "Automatically send report next time" msgstr "Автоматически отправлять отчёт в следующий раз" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9662,18 +9671,18 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9752,74 +9761,74 @@ msgstr "" msgid "Session not found." msgstr "Не найдено расширение SOAP" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "Перейти к базе данных “%s”." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Работа параметра \"%s\" подвержена ошибке, описание смотрите на %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "SSL не используется" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "SSL используется с отключенной проверкой" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "SSL используется без центра сертификации" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "Используется SSL" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "password_hash() PHP-функции с настройками по умолчанию." -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "password_hash() PHP-функции" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "Результат анализа %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Без кода PHP" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Отправить запрос" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Профилирование" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Построчное редактирование" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Статический анализ:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "Найдено %d ошибок при анализе." @@ -9928,11 +9937,11 @@ msgstr "Функция" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9952,7 +9961,7 @@ msgstr "Функция" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -10004,7 +10013,7 @@ msgstr "%1$s (около %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10014,8 +10023,8 @@ msgstr "Обзор" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10027,7 +10036,7 @@ msgstr "Поиск" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10037,8 +10046,8 @@ msgid "Insert" msgstr "Вставить" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10047,14 +10056,14 @@ msgid "Privileges" msgstr "Привилегии" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Операции" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Слежение" @@ -10062,12 +10071,12 @@ msgstr "Слежение" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Триггеры" @@ -10077,11 +10086,11 @@ msgstr "Триггеры" msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Процедуры" @@ -10091,15 +10100,15 @@ msgstr "Процедуры" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "События" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Дизайнер" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Центральные столбцы" @@ -10109,12 +10118,12 @@ msgid "User accounts" msgstr "Учётные записи" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10122,21 +10131,21 @@ msgid "Replication" msgstr "Репликация" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Переменные" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Кодировки" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Типы таблиц" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Плагины" @@ -10240,11 +10249,11 @@ msgstr "Новое" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10262,7 +10271,7 @@ msgstr "Новое" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10290,8 +10299,8 @@ msgstr "Новое" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10722,7 +10731,7 @@ msgstr "Очистить" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Удалить" @@ -10951,18 +10960,18 @@ msgstr "Параметры сохранения данных" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Дамп данных таблицы" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10974,7 +10983,7 @@ msgstr "Дамп данных таблицы" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10983,11 +10992,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11004,9 +11013,9 @@ msgid "Default" msgstr "По умолчанию" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11015,8 +11024,8 @@ msgid "Links to" msgstr "Ссылки на" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11032,8 +11041,8 @@ msgid "Name" msgstr "Имя" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11042,23 +11051,23 @@ msgid "Definition" msgstr "Определение" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Структура для представления" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -11161,11 +11170,11 @@ msgid "Database:" msgstr "База данных:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Данные:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Структура:" @@ -11190,17 +11199,17 @@ msgstr "Заголовок отчета:" msgid "Dumping data" msgstr "Дамп данных" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Результаты запроса" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Просмотреть структуру" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Замена" @@ -11279,7 +11288,7 @@ msgid "Data creation options" msgstr "Параметры создания данных" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" @@ -11364,7 +11373,7 @@ msgstr "Кажется, ваша база данных использует по #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "экспорт псевдонима не может надёжно работать во всех случаях." @@ -11438,20 +11447,20 @@ msgstr "МЕДИАТИПЫ ДЛЯ ТАБЛИЦЫ" msgid "RELATIONSHIPS FOR TABLE" msgstr "ССЫЛКИ ТАБЛИЦЫ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Похоже, что ваша таблица использует триггеры;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для представления %s экспортирована как таблица" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(См. Ниже фактическое представление)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Ошибка считывания данных таблицы %s:" @@ -11765,7 +11774,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" @@ -11984,14 +11993,18 @@ msgstr "" "Обеспечивает аутентификацию с помощью HOTP и TOTP приложений, таких как " "FreeOTP, Google Authenticator или Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Аппаратный ключ безопасности (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Обеспечивает аутентификацию с помощью аппаратных токенов безопасности, " "поддерживающих FIDO U2F, таких, как Yubikey." @@ -12021,6 +12034,24 @@ msgstr "Простая двухфакторная аутентификация" msgid "For testing purposes only!" msgstr "Только для тестирования!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Аппаратный ключ безопасности (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Обеспечивает аутентификацию с помощью аппаратных токенов безопасности, " +"поддерживающих FIDO U2F, таких, как Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12765,7 +12796,7 @@ msgstr "Тип таблиц %s был отключен на данном MySQL msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Имя первичного индекса должно быть \"PRIMARY\"!" @@ -12778,39 +12809,39 @@ msgstr "Проблемы с индексами таблицы `%s`" msgid "Unknown table status:" msgstr "Неизвестный статус таблицы:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "База данных `%s`, являющаяся источником, не найдена!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "База данных `%s`, являющаяся целевой, не найдена!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Некорректная база данных:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Некорректное имя таблицы:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Не удалось переименовать таблицу %1$s в %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s была переименована в %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Не удалось сохранить настройки пользовательского интерфейса!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12819,7 +12850,7 @@ msgstr "" "Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса " "(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12830,15 +12861,15 @@ msgstr "" "перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, " "проверьте изменена ли структура таблицы." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Невозможно переименовать индекс в PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" @@ -12997,14 +13028,14 @@ msgstr "Версия %1$s из %2$s удалена." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Одно-байтовое целое число, диапазон чисел со знаком от -128 до 127, диапазон " "чисел без знака от 0 до 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13012,7 +13043,7 @@ msgstr "" "Двух-байтовое целое число, диапазон чисел со знаком от -32,768 до 32,767, " "диапазон чисел без знака от 0 до 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13020,7 +13051,7 @@ msgstr "" "Трех-байтовое целое число, диапазон чисел со знаком от -8,388,608 до " "8,388,607, диапазон чисел без знака от 0 до 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13028,7 +13059,7 @@ msgstr "" "Четырех-байтовое целое число, диапазон чисел со знаком от -2,147,483,648 до " "2,147,483,647, диапазон чисел без знака от 0 до 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13037,7 +13068,7 @@ msgstr "" "-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " "знака от 0 до 18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13046,7 +13077,7 @@ msgstr "" "должно превышать 65 (по умолчанию 10), максимальное количество десятичных " "знаков после запятой (D) не должно превышать 30 (по умолчанию 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13054,7 +13085,7 @@ msgstr "" "Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до " "-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13064,7 +13095,7 @@ msgstr "" "-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " "2.2250738585072014E-308 до 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13072,14 +13103,14 @@ msgstr "" "Синоним для DOUBLE (исключение: в режиме REAL_AS_FLOAT SQL будет синоним для " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "Тип поля-бит (M), сохранит M бит для значения (по умолчанию 1, максимум 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13087,22 +13118,22 @@ msgstr "" "Синоним для TINYINT(1), значение нуля предполагает false, ненулевые значения " "предполагают true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Псевдоним для BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Дата, поддерживаемый диапазон от %1$s до %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" "Совмещение даты и времени, поддерживаемый диапазон от \"%1$s\" до \"%2$s\"" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13111,12 +13142,12 @@ msgstr "" "03:14:07\" UTC, содержит количество секунд прошедших со времени " "(\"1970-01-01 00:00:00\" UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Время, диапазон от %1$s до %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13124,7 +13155,7 @@ msgstr "" "Год в четырехзначном (4, по умолчанию) или двухзначном (2) формате, " "допустимые значения от 70 (1970) до 69 (2069) или от 1901 до 2155 и 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13132,7 +13163,7 @@ msgstr "" "Строка фиксированной длины (0-255, по-умолчанию 1), при хранении всегда " "дополняется пробелами в конце строки до заданной длины" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13141,7 +13172,7 @@ msgstr "" "Строка переменной длины (%s), эффективная максимальная длина зависит от " "максимального размера строки" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13149,7 +13180,7 @@ msgstr "" "Столбец типа TEXT с максимальной длиной 255 (2^8 - 1) символов, сохраняется " "с одно-байтовым префиксом, указывающим длину значения в байтах" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13157,7 +13188,7 @@ msgstr "" "Столбец типа TEXT с максимальной длиной 65,535 (2^16 - 1) символов, " "сохраняется с двух-байтовым префиксом, указывающим длину значения в байтах" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13165,7 +13196,7 @@ msgstr "" "Столбец типа TEXT с максимальной длиной 16,777,215 (2^24 - 1) символов, " "сохраняется с трех-байтовым префиксом, указывающим длину значения в байтах" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13175,7 +13206,7 @@ msgstr "" "символов, сохраняется с четырех-байтовым префиксом, указывающим длину " "значения в байтах" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13183,7 +13214,7 @@ msgstr "" "Аналогичен типу CHAR, но предназначен для хранения бинарных байт-строк, " "вместо не бинарных символьных строк" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13191,7 +13222,7 @@ msgstr "" "Аналогичен типу VARCHAR, но предназначен для хранения бинарных байт-строк, " "вместо не бинарных символьных строк" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13199,7 +13230,7 @@ msgstr "" "Столбец типа BLOB с максимальной длиной 255 (2^8 - 1) байт, сохраняется с " "одно-байтовым префиксом, указывающим длину значения" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13207,7 +13238,7 @@ msgstr "" "Столбец типа BLOB с максимальной длиной 16,777,215 (2^24 - 1) байт, " "сохраняется с трех-байтовым префиксом, указывающим длину значения" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13215,7 +13246,7 @@ msgstr "" "Столбец типа BLOB с максимальной длиной 65,535 (2^16 - 1) байт, сохраняется " "с двух-байтовым префиксом, указывающим длину значения" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13223,7 +13254,7 @@ msgstr "" "Столбец типа BLOB с максимальной длиной 4,294,967,295 или 4ГиБ (2^32 - 1) " "байт, сохраняется с четырех-байтовым префиксом, указывающим длину значения" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13231,43 +13262,43 @@ msgstr "" "Перечисляемый тип данных, который может содержать максимум 65,535 различных " "величин или специальную величину ошибки ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Единственное значение выбираемое из набора не более 64 членов" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Тип для хранения любого вида геометрических данных" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Точка в двухмерном пространстве" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Кривая с линейной интерполяцией между точек" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Многоугольник" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Набор точек" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Набор кривых с линейной интерполяцией между точками" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Набор многоугольников" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Набор геометрических объектов любого типа" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13275,23 +13306,29 @@ msgstr "" "Тип данных для эффективного хранения и использования данных в JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Сохраняет Уникальный Универсальный Идентификатор (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Числовые" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Дата и время" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Пространственные" @@ -13319,139 +13356,139 @@ msgstr "Не получилось сохранить настройки" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sСоздать%s хранилище конфигурации phpMyAdmin в текущей базе данных." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Янв" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Фев" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Мар" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Июн" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Июл" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Авг" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Сен" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Окт" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Ноя" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Дек" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Вс" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Пн" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Вт" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Ср" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Чт" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Пт" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Сб" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Пользователи" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Отсортировать" @@ -13624,7 +13661,7 @@ msgstr "оба верхних варианта" msgid "neither of the above" msgstr "иначе, чем в вариантах выше" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Конфигурация уже существует, настройка отключена!" @@ -13659,7 +13696,7 @@ msgstr "Нет" msgid "As defined:" msgstr "Как определено:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13667,41 +13704,41 @@ msgstr "" "Для выполнения данного действия у вас недостаточно прав; пожалуйста, " "обратитесь к документации" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Уникальный" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Полнотекстовый" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Пространственный" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Выражение" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "первый" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "после %s" @@ -13831,7 +13868,7 @@ msgstr "Ядро" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13902,7 +13939,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14171,7 +14208,7 @@ msgid "Search this table" msgstr "Поиск в таблице" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Добавить столбец" @@ -14200,7 +14237,7 @@ msgstr "Нажмите для сортировки." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14230,24 +14267,24 @@ msgstr "Комментарий к базе данных:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Печать" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Упакован" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Уникальных элементов" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Индекс не определен!" @@ -15062,6 +15099,11 @@ msgstr[2] "%s таблиц" msgid "Sum" msgstr "Всего" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Продолжить" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "От" @@ -15153,16 +15195,11 @@ msgstr "Удалить столбцы из центрального списка msgid "Make consistent with central list" msgstr "Привести в соответствие с центральным списком" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Продолжить" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Вы уверены?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15302,7 +15339,7 @@ msgstr "Неотслеживаемые таблицы" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Отслеживать таблицу" @@ -16025,17 +16062,17 @@ msgid "Other options" msgstr "Прочие параметры" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Переименовать" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Первичный ключ был удален." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Индекс %s был удален." @@ -16352,11 +16389,35 @@ msgstr "" msgid "Verify" msgstr "Подтверждение" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Подключите своё устройство FIDO U2F к компьютеру через USB-порт. Затем " +"подтвердите регистрацию на устройстве." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Подключите своё устройство FIDO U2F к компьютеру через USB-порт. Затем " +"подтвердите авторизацию на устройстве." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Представление:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16529,8 +16590,8 @@ msgstr "" "значения по умолчанию." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Настроить двухфакторную аутентификацию" @@ -16551,7 +16612,7 @@ msgstr "" "используя только пароль." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Отключить двухфакторную аутентификацию" @@ -16568,6 +16629,7 @@ msgstr "" "зависимости, чтобы включить внутренние компоненты аутентификации." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Следующие Composer-пакеты отсутствуют:" @@ -16584,6 +16646,17 @@ msgstr "" "записи." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Двухфакторная аутентификация недоступна, установите дополнительные " +"зависимости, чтобы включить внутренние компоненты аутентификации." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16591,7 +16664,7 @@ msgstr "" "Двухфакторная аутентификация недоступна, для ее использования включите в " "конфигурации phpMyAdmin." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Вы включили двухфакторную авторизацию." @@ -18800,7 +18873,7 @@ msgid "Start row:" msgstr "Начальная строка:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Разделы" @@ -18882,7 +18955,7 @@ msgstr "Добавить к центральным столбцам" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Переместить поля" @@ -18890,33 +18963,33 @@ msgstr "Переместить поля" msgid "Move the columns by dragging them up and down." msgstr "Переместите поля перетаскивая их вверх и вниз." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Редактировать представление" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Нормировать" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Отслеживать представление" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Добавить %s поле(я)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "в начале таблицы" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Создать индекс для %s столбцов" @@ -19742,9 +19815,6 @@ msgstr "Названия столбцов" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Псевдоним для BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Сохраняет Уникальный Универсальный Идентификатор (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/si.po b/po/si.po index 4e99f5d0bd..d647bb7f8c 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Sinhala \n" "Language-Team: Slovak \n" "Language-Team: Slovenian %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9919,8 +9928,8 @@ msgstr "Prebrskaj" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9932,7 +9941,7 @@ msgstr "Iskanje" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9942,8 +9951,8 @@ msgid "Insert" msgstr "Vstavi" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9952,14 +9961,14 @@ msgid "Privileges" msgstr "Privilegiji" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operacije" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Sledenje" @@ -9967,12 +9976,12 @@ msgstr "Sledenje" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Sprožilci" @@ -9982,11 +9991,11 @@ msgstr "Sprožilci" msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Poizvedba" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutina" @@ -9996,15 +10005,15 @@ msgstr "Rutina" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Dogodki" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Osrednji stolpci" @@ -10014,12 +10023,12 @@ msgid "User accounts" msgstr "Uporabniški računi" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10027,21 +10036,21 @@ msgid "Replication" msgstr "Podvojevanje" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Spremenljivke" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Pogoni" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Vtičniki" @@ -10149,11 +10158,11 @@ msgstr "Nov" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10171,7 +10180,7 @@ msgstr "Nov" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10199,8 +10208,8 @@ msgstr "Nov" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10622,7 +10631,7 @@ msgstr "Izprazni" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Zavrzi" @@ -10857,18 +10866,18 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10880,7 +10889,7 @@ msgstr "Odloži podatke za tabelo" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10889,11 +10898,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10910,9 +10919,9 @@ msgid "Default" msgstr "Privzeto" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10921,8 +10930,8 @@ msgid "Links to" msgstr "Povezave z" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10938,8 +10947,8 @@ msgid "Name" msgstr "Ime" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10948,23 +10957,23 @@ msgid "Definition" msgstr "Opredelitev" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktura pogleda" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -11067,11 +11076,11 @@ msgid "Database:" msgstr "Zbirka podatkov:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Podatki:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktura:" @@ -11096,15 +11105,15 @@ msgstr "Naslov poročila:" msgid "Dumping data" msgstr "Odloži podatke" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Podatki rezultata poizvedbe" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Struktura pogleda" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Nadomestek" @@ -11181,7 +11190,7 @@ msgid "Data creation options" msgstr "Možnosti ustvarjanja podatkov" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Izprazni tabelo pred vstavljanjem" @@ -11264,7 +11273,7 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja rutine;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." @@ -11338,20 +11347,20 @@ msgstr "VRSTE PREDSTAVNOSTI ZA TABELO" msgid "RELATIONSHIPS FOR TABLE" msgstr "RAZMERJA ZA TABELO" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Kot kaže, vaša tabela uporablja sprožilce;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pogleda %s, izvoženega kot tabela" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Oglejte si spodaj za resnični pogled)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Napaka pri branju podatkov tabele %s:" @@ -11663,7 +11672,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y ob %H.%M" @@ -11883,14 +11892,18 @@ msgstr "" "Nudi overovitev z aplikacijami HOTP in TOTP, kot so FreeOTP, Google " "Authenticator ali Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Varnostni ključ strojne opreme (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Nudi overovitev z žetoni varnosti strojne opreme, ki podpirajo FIDO U2F, kot " "je npr. Yubikey." @@ -11920,6 +11933,24 @@ msgstr "Preprosta dvostopenjska overovitev" msgid "For testing purposes only!" msgstr "Samo za namene preizkušanja!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Varnostni ključ strojne opreme (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Nudi overovitev z žetoni varnosti strojne opreme, ki podpirajo FIDO U2F, kot " +"je npr. Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12659,7 +12690,7 @@ msgstr "%s je onemogočeno za ta strežnik MySQL." msgid "This MySQL server does not support the %s storage engine." msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnega ključa mora biti \"PRIMARY\"!" @@ -12672,39 +12703,39 @@ msgstr "Težave z indeksi tabele `%s`" msgid "Unknown table status:" msgstr "Neznano stanje tabele:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Izvorne zbirke podatkov `%s` nismo našli!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Ciljne zbirke podatkov `%s` nismo našli!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Neveljavna zbirka podatkov:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Neveljavno ime tabele:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Preimenovanje tabele %1$s v %2$s je spodletelo!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelo %1$s smo preimenovali v %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12713,7 +12744,7 @@ msgstr "" "Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12724,15 +12755,15 @@ msgstr "" "spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je " "bila struktura tabele spremenjena." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12893,14 +12924,14 @@ msgstr "Različico %1$s tabele %2$s smo izbrisali." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-bitno celo število; predznačen razpon je -128 do 127, nepredznačen razpon " "pa 0 do 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12908,7 +12939,7 @@ msgstr "" "2-bitno celo število; predznačen razpon je -32.768 do 32.767, nepredznačen " "razpon pa 0 do 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12916,7 +12947,7 @@ msgstr "" "3-bitno celo število; predznačen razpon je -8.388.608 do 8.388.607, " "nepredznačen razpon pa 0 do 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12924,7 +12955,7 @@ msgstr "" "4-bitno celo število; predznačeni razpon je od -2.147.483.648 do " "2.147.483.647, nepredznačeni razpon pa od 0 do 4.294.967.295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12933,7 +12964,7 @@ msgstr "" "9.223.372.036.854.775.807, nepredznačen razpon pa 0 do " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12941,7 +12972,7 @@ msgstr "" "Število s fiksno vejico (M, D) – največje število števk (M) je 65 (privzeto " "10), največje število decimalnih mest (D) je 30 (privzeto 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12950,7 +12981,7 @@ msgstr "" "-3,402823466E+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do " "3,402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12960,7 +12991,7 @@ msgstr "" "-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " "2,2250738585072014E-308 do 1,7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -12968,7 +12999,7 @@ msgstr "" "Sopomenka za DOUBLE (izjema: v načinu SQL REAL_AS_FLOAT je sopomenka za " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -12976,7 +13007,7 @@ msgstr "" "Bitna vrsta polja (M), ki shrani M bitov na vrednost (privzeto je 1, največ " "je 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -12984,21 +13015,21 @@ msgstr "" "Sopomenka za TINYINT(1); ničelna vrednost se obravnava kot ni res, neničelne " "vrednosti se obravnavajo kot res" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Vzdevek za BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Datum; podprt je razpon od %1$s do %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Kombinacija datuma in časa; podprt je razpon od %1$s do %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13006,12 +13037,12 @@ msgstr "" "Časovni žig; razpon je od 1970-01-01 00:00:01 UTC do 2038-01-09 03:14:07 " "UTC, shranjeno kot število sekund od dobe (1970-01-01 00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Čas; razpon je od %1$s do %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13019,7 +13050,7 @@ msgstr "" "Leto v obliki s štirimi (4, privzeto) ali dvema (2) števkama; dovoljene so " "vrednosti od 70 (1970) do 69 (2069) ali od 1901 do 2155 in 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13027,7 +13058,7 @@ msgstr "" "Niz stalne dolžine (0–255, privzeto 1), ki je ob shranjevanju vedno z desne " "zapolnjen s presledki do določene dolžine" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13036,7 +13067,7 @@ msgstr "" "Niz spremenljive dolžine (%s); učinkujoča največja dolžina je odvisna od " "največje dolžine stolpca" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13044,7 +13075,7 @@ msgstr "" "Stolpec TEXT, dolg največ 255 (2^8 - 1) znakov, shranjen z enobajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13052,7 +13083,7 @@ msgstr "" "Stolpec TEXT, dolg največ 65.535 (2^16 - 1) znakov, shranjen z dvobajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13060,7 +13091,7 @@ msgstr "" "Stolpec TEXT, dolg največ 16.777.215 (2^24 - 1) znakov, shranjen s tribajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13069,7 +13100,7 @@ msgstr "" "Stolpec TEXT, dolg največ 4.294.967.295 ali 4 GiB (2^32 - 1) znakov, " "shranjen s štiribajtno predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13077,7 +13108,7 @@ msgstr "" "Podobno vrsti CHAR, vendar shranjuje dvojiške nize bajtov namesto " "nedvojiških nizov znakov" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13085,7 +13116,7 @@ msgstr "" "Podobno vrsti VARCHAR, vendar shranjuje dvojiške nize bajtov namesto " "nedvojiških nizov znakov" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13093,7 +13124,7 @@ msgstr "" "Stolpec BLOB, dolg največ 255 (2^8 - 1) znakov, shranjen z enobajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13101,7 +13132,7 @@ msgstr "" "Stolpec BLOB, dolg največ 16.777.215 (2^24 - 1) znakov, shranjen s tribajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13109,7 +13140,7 @@ msgstr "" "Stolpec BLOB, dolg največ 65.535 (2^16 - 1) znakov, shranjen z dvobajtno " "predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13117,7 +13148,7 @@ msgstr "" "Stolpec BLOB, dolg največ 4.294.967.295 ali 4 GiB (2^32 - 1) znakov, " "shranjen s štiribajtno predpono, ki nakazuje dolžino vrednosti v bajtih" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13125,43 +13156,43 @@ msgstr "" "Naštevanje, izbrano s seznama do 65.535 vrednosti ali posebne vrednosti " "napake ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Ena vrednost, izbrana iz množice z največ 64 člani" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Vrsta, ki lahko shrani katero koli geometrijsko vrsto" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Točka v dvodimenzionalnem prostoru" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Krivulja z linearno interpolacijo med točkami" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Večkotnik" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Zbirka točk" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Zbirka krivulj z linearno interpolacijo med točkami" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Zbirka večkotnikov" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Zbirka geometrijskih objektov katere koli vrste" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13169,7 +13200,7 @@ msgstr "" "Shrani in omogoča učinkovit dostop do podatkov v dokumentih JSON (JavaScript " "Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13177,17 +13208,25 @@ msgstr "" "Namenjeno shranjevanju naslovov IPv6, kakor tudi naslovov IPv4, " "predpostavljajoč običajno preslikavo naslovov IPv4 v naslove IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" +"Shrani vsesplošno edinstven označevalnik (Universally Unique Identifier, " +"UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerično" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Datum in čas" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Prostorsko" @@ -13217,139 +13256,139 @@ msgstr "" "%sCreate%s tabele hrambe konfiguracije phpMyAdmin in trenutni zbirki " "podatkov." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Največja velikost: %s %s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "avg" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "ned" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "pon" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "tor" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "sre" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "čet" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "pet" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "sob" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "PM" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "AM" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Uporabniki" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Razvrsti" @@ -13522,7 +13561,7 @@ msgstr "oboje zgoraj" msgid "neither of the above" msgstr "nič od zgoraj" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfigracija že obstaja, namestitev je onemogočena!" @@ -13557,7 +13596,7 @@ msgstr "Brez" msgid "As defined:" msgstr "Kot določeno:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13565,41 +13604,41 @@ msgstr "" "Nimate zadostnih pravic za izvedbo posega; prosimo, oglejte si dokumentacijo " "za več podrobnosti" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Edinstven" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Polno besedilo" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Prostorsko" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Izraz" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "prvi" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "po %s" @@ -13729,7 +13768,7 @@ msgstr "Pogon" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13800,7 +13839,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14070,7 +14109,7 @@ msgid "Search this table" msgstr "Išči po tabeli" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Dodaj stolpec" @@ -14099,7 +14138,7 @@ msgstr "Kliknite za razvrščanje." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14129,24 +14168,24 @@ msgstr "Pripomba zbirke podatkov:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Natisni" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Stisnjen" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinalnost" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Ni definiranega indeksa!" @@ -14956,6 +14995,11 @@ msgstr[3] "%s tabel" msgid "Sum" msgstr "Vsota" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Nadaljuj" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Iz" @@ -15047,16 +15091,11 @@ msgstr "Odstrani stolpce z osrednjega seznama" msgid "Make consistent with central list" msgstr "Naredi enotno z osrednjim seznamom" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Nadaljuj" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Ste prepričani?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15196,7 +15235,7 @@ msgstr "Nesledene tabele" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Sledi tabeli" @@ -15914,17 +15953,17 @@ msgid "Other options" msgstr "Druge možnosti" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Preimenuj" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Zavrgli smo primarni ključ." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Zavrgli smo indeks %s." @@ -16243,11 +16282,35 @@ msgstr "" msgid "Verify" msgstr "Preveri" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Prosimo, povežite svojo napravo FIDO U2F v USB-vrata vašega računalnika. " +"Nato potrdite registracijo na napravi." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Prosimo, povežite svojo napravo FIDO U2F v USB-vrata vašega računalnika. " +"Nato potrdite prijavo na napravi." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Pogled:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16420,8 +16483,8 @@ msgstr "" "vrednosti." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Nastavi dvostopenjsko overovitev" @@ -16442,7 +16505,7 @@ msgstr "" "samo z geslom." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Onemogoči dvostopenjsko overovitev" @@ -16459,6 +16522,7 @@ msgstr "" "da omogočite overovitveno zaledje." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Manjkajo naslednji paketi composerja:" @@ -16473,6 +16537,17 @@ msgstr "" "Dvostopenjska overovitev je na voljo, ampak ni nastavljena za ta račun." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Dvostopenjska overovitev ni na voljo; prosimo, namestite izbirne odvisnosti, " +"da omogočite overovitveno zaledje." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16480,7 +16555,7 @@ msgstr "" "Dvostopenjska overovitev ni na voljo; za njeno uporabo omogočite hrambo " "konfiguracije phpMyAdmin." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Omogočili ste dvostopenjsko overovitev." @@ -18626,7 +18701,7 @@ msgid "Start row:" msgstr "Začetna vrstica:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Particije" @@ -18708,7 +18783,7 @@ msgstr "Dodaj med osrednje stolpce" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Premakni stolpce" @@ -18716,33 +18791,33 @@ msgstr "Premakni stolpce" msgid "Move the columns by dragging them up and down." msgstr "Prestavite stolpce z vlečenjem gor ali dol." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Urejevalni pogled" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normaliziraj" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Sledi pogledu" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "na začetku tabele" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Ustvari indeks na %s stolpcih" @@ -19601,11 +19676,6 @@ msgstr "Imena stolpcev" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Vzdevek za BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "" -#~ "Shrani vsesplošno edinstven označevalnik (Universally Unique Identifier, " -#~ "UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/sq.po b/po/sq.po index 528516f871..c7214b88a6 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Albanian %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10200,8 +10209,8 @@ msgstr "Shfleto" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10213,7 +10222,7 @@ msgstr "Kërko" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10223,8 +10232,8 @@ msgid "Insert" msgstr "Fut" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10233,14 +10242,14 @@ msgid "Privileges" msgstr "Privilegjet" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Veprime" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Gjurmim" @@ -10248,12 +10257,12 @@ msgstr "Gjurmim" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Shkrehësit" @@ -10263,11 +10272,11 @@ msgstr "Shkrehësit" msgid "Database seems to be empty!" msgstr "Databaza duket se është e zbrazët!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Pyetsori" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutinat" @@ -10277,15 +10286,15 @@ msgstr "Rutinat" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Ngjarjet" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Dizajner" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Kolonat qendrore" @@ -10295,12 +10304,12 @@ msgid "User accounts" msgstr "Llogaritë e përdoruesve" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Regjistër (log) binar" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10308,21 +10317,21 @@ msgid "Replication" msgstr "Replikimi" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variablat" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Karakteret" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Makinat" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Shtojcat (plugins)" @@ -10424,11 +10433,11 @@ msgstr "E re" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10446,7 +10455,7 @@ msgstr "E re" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10474,8 +10483,8 @@ msgstr "E re" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10909,7 +10918,7 @@ msgstr "Cungo" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Fshij" @@ -11138,18 +11147,18 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11161,7 +11170,7 @@ msgstr "Zbraz të dhënat për tabelën" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11170,11 +11179,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11191,9 +11200,9 @@ msgid "Default" msgstr "Parazgjedhur" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11202,8 +11211,8 @@ msgid "Links to" msgstr "Lidhje tek" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11219,8 +11228,8 @@ msgid "Name" msgstr "Emri" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11229,23 +11238,23 @@ msgid "Definition" msgstr "Përkufizimi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Struktura e tabelës për tabelën" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktura për pamjen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Struktura zëvendësuese për pamjen" @@ -11350,11 +11359,11 @@ msgid "Database:" msgstr "Databaza:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Të dhëna:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktura:" @@ -11381,17 +11390,17 @@ msgstr "Titulli i raportit:" msgid "Dumping data" msgstr "Zbraz të dhënat" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Rezultati SQL" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Shfaq strukturën" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Qëndro në" @@ -11470,7 +11479,7 @@ msgid "Data creation options" msgstr "Opsionet e krijimit të të dhënave" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Cungo tabelën para futjes" @@ -11553,7 +11562,7 @@ msgstr "Duket se databaza juaj përdor rutinat;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "eksporti i pseudonimit nuk mund të punojnë në mënyrë të besueshme në të " @@ -11631,20 +11640,20 @@ msgstr "TIPET MIME PËR TABELËN" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Duket se tabela juaj përdor shkrehës;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura për pamjen %s eksportuar si një tabelë" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Shiko më poshtë pamjen aktuale)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Gabim gjatë leximit të të dhënave për tabelën %s:" @@ -11959,7 +11968,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y në %I:%M %p" @@ -12194,14 +12203,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12236,6 +12245,16 @@ msgstr "Autentifikimi i hyrjes" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12998,7 +13017,7 @@ msgstr "%s është pasivizuar për këtë MySQL server." msgid "This MySQL server does not support the %s storage engine." msgstr "Ky MySQL server nuk e mbështet motorin e ruajtjes %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Emri i çelësit primar duhet të jetë \"PRIMARY\"!" @@ -13011,39 +13030,39 @@ msgstr "Problemet me indekset e tabelës `%s`" msgid "Unknown table status:" msgstr "Status i panjohur tabele:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Databaza e burimit `%s` nuk gjendet!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Databaza e objektivit `%s` nuk u gjend!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Databazë e pavlefshme:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Emër tabele i pavlefshëm:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Dështoi në riemërimin e tabelës %1$s në %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s është riemëruar në %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Nuk mund të ruajë tabelën e preferencave UI!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13052,7 +13071,7 @@ msgstr "" "Dështoi në pastrimin e tabelës së preferencave UI (shiko $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13063,15 +13082,15 @@ msgstr "" "qëndrueshme, pasi ju ta rifreskoni këtë faqe. Ju lutem, kontrollo nëse " "struktura e tabelës ka ndryshuar." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "uk mund ta riemërojë indeksin tek PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Nuk janë përcaktuar pjesë të indeksit!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -13231,14 +13250,14 @@ msgstr "Versioni %1$s nga %2$s u fshi." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioni %1$s u krijua, gjurmimi për %2$s është aktiv." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Një integer 1-bajt, rrezja e nënshkrimit është -128 deri 127, rrezja e mos-" "nënshkrimit është 0 deri 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13246,7 +13265,7 @@ msgstr "" "Një integer 2-bajt, rrezja e nënshkrimit është -32,768 deri 32,767, rrezja e " "mos-nënshkrimit është 0 deri 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13254,7 +13273,7 @@ msgstr "" "Një integer 3-bajt, rrezja e nënshkrimit është -8,388,608 deri 8,388,607, " "rrezja e mos-nënshkrimit është 0 deri 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13262,7 +13281,7 @@ msgstr "" "Një integer 4-bajt, rrezja e nënshkruar është -2,147,483,648 deri " "2,147,483,647, rrezja e panënshkruar është 0 deri 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13271,7 +13290,7 @@ msgstr "" "deri 9,223,372,036,854,775,807, rrezja e panënshkruar është 0 deri " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13279,7 +13298,7 @@ msgstr "" "Një numër pikë-fiksuar (M, D) - numri maksimal i shifrave (M) është 65 " "(parazgjedhur 10), numri maksimal i dhjetoreve (D) është 30 (parazgjedhur 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13287,7 +13306,7 @@ msgstr "" "Një numër i vogël pikë-lundrues, vlerat e lejuara janë -3.402823466E+38 deri " "-1.175494351E-38, 0, dhe 1.175494351E-38 deri 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13297,7 +13316,7 @@ msgstr "" "-1.7976931348623157E+308 deri -2.2250738585072014E-308, 0, dhe " "2.2250738585072014E-308 deri 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13305,7 +13324,7 @@ msgstr "" "Sinonimi për DOUBLE (përjashtim: në mënyrën REAL_AS_FLOAT SQL është një " "sinonim për FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13313,7 +13332,7 @@ msgstr "" "Një tip fushe-bit (M), ruan M bits për vlerë (vlera e parazgjedhur është 1, " "maksimumi është 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13321,21 +13340,21 @@ msgstr "" "Një sinonim për TINYINT(1), një vlerë zero konsiderohet false, vlerat jo-" "zero konsiderohen të vërteta" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Një pseudonim për BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Një datë, rrezja e mbështetur është %1$s deri %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Një kombinim date dhe kohe, rrezja e mbështetur është %1$s deri %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13344,12 +13363,12 @@ msgstr "" "03:14:07 UTC, ruajtur si numri i sekondave që nga fillimi (1970-01-01 " "00:00:00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Një kohë, rrezja është %1$s deri %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13357,7 +13376,7 @@ msgstr "" "Një vit në format me katër-shifra (4, parazgjedhur) ose dy-shifra (2), " "vlerat e lejuara janë 70 (1970) deri 69 (2069) ose 1901 deri 2155 dhe 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13365,7 +13384,7 @@ msgstr "" "Një varg me gjatësi-fikse (0-255, parazgjedhur 1), që është gjithmonë i " "mbushur-djathtas me hapësira deri tek gjatësia e përcaktuar kur ruhet" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13374,7 +13393,7 @@ msgstr "" "Një varg gjatësi-variabël (%s), gjatësia maksimale efektive është subjekt i " "madhësisë maksimale të radhës" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13382,7 +13401,7 @@ msgstr "" "Një kolonë TEXT me gjatësinë maksimale prej 255 (2^8 - 1) karaktere, e " "ruajtur me një prefiks një-bajt tregon gjatësinë e vlerës në bajt" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13390,7 +13409,7 @@ msgstr "" "Një kolonë TEXT me gjatësinë maksimale prej 65,535 (2^16 - 1) karaktere, e " "ruajtur me një prefiks dy-bajt tregon gjatësinë e vlerës në bajt" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13398,7 +13417,7 @@ msgstr "" "Një kolonë TEXT me gjatësinë maksimale prej 16,777,215 (2^24 - 1) karaktere, " "e ruajtur me një prefiks tre-bajt tregon gjatësinë e vlerës në bajt" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13408,7 +13427,7 @@ msgstr "" "1) karaktere, e ruajtur me një prefiks katër-bajt tregon gjatësinë e vlerës " "në bajt" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13416,7 +13435,7 @@ msgstr "" "Ngjashëm me tipin CHAR, por ruan vargje bajtësh binare, më mirë se vargje " "karakteresh jo-binare" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13424,7 +13443,7 @@ msgstr "" "Ngjashëm me tipin VARCHAR, por ruan vargje bajtësh binare, më mirë se vargje " "karakteresh jo-binare" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13432,7 +13451,7 @@ msgstr "" "Një kolonë BLOB me një gjatësi maksimale prej 255 (2^8 - 1) bajt, e ruajtur " "me një prefiks një-bajt tregon gjatësinë e vlerës" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13440,7 +13459,7 @@ msgstr "" "Një kolonë BLOB me një gjatësi maksimale prej 16,777,215 (2^24 - 1) bajt, e " "ruajtur me një prefiks tre-bajt tregon gjatësinë e vlerës" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13448,7 +13467,7 @@ msgstr "" "Një kolonë BLOB me një gjatësi maksimale prej 65,535 (2^16 - 1) bajt, e " "ruajtur me një prefiks dy-bajt tregon gjatësinë e vlerës" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13456,7 +13475,7 @@ msgstr "" "Një kolonë BLOB me një gjatësi maksimale prej 4,294,967,295 or 4GiB (2^32 - " "1) bajt, e ruajtur me një prefiks katër-bajt tregon gjatësinë e vlerës" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13464,43 +13483,43 @@ msgstr "" "Një numërim, i zgjedhur nga lista e deri 65,535 vlerave ose '' vlera e " "gabimit special" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Një vlerë e vetme e zgjedhur nga një set deri në 64 anëtarë" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Një tip që mund të ruajë gjeometrinë e çdo tipi" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Një pikë në hapësirë 2-dimensionale" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Një kurbë me interpolim linear mes pikave" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Një poligon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Një koleksion i pikave" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Një koleksion i kurbave me interpolim linear ndërmjet pikave" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Një koleksion i poligonëve" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Një koleksion i objekteve gjeometrike të çdo lloji" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13508,23 +13527,30 @@ msgstr "" "Ruan dhe aftëson hyrjen efiçiente në të dhënat në dokumentet JSON " "(JavaScript Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" +"Ruaj një Universally Unique Identifier (UUID) (identifikues unik universal)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numerike" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Data dhe ora" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spacial (hapësinor)" @@ -13552,85 +13578,85 @@ msgstr "Nuk mund ta ruajë konfigurimin" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sKrijo%s ruajtjen e konfigurimit phpMyAdmin në databazën aktuale." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Maks: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Shk" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Kor" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Gus" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Sht" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Tet" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Nën" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Dhj" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13638,55 +13664,55 @@ msgid "Sun" msgstr "Die" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Hën" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Mar" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Mër" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Enj" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Pre" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Sht" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "MD" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "PD" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Përdoruesit" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Klasifikim" @@ -13859,7 +13885,7 @@ msgstr "të dyja nga më sipër" msgid "neither of the above" msgstr "asnjë nga ato më sipër" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Konfigurimi tashmë ekziston, konfigurimi është i çaktivizuar!" @@ -13894,7 +13920,7 @@ msgstr "Asnjë" msgid "As defined:" msgstr "Si e përcaktuar:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13902,41 +13928,41 @@ msgstr "" "Ju nuk keni privilegje të mjaftueshme për të kryer këtë veprim; Ju lutem, " "referoni dokumentacionin për më shumë detaje" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unik" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Tekst i plotë" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spacial (hapësinor)" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Shprehje" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "së pari" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "pas %s" @@ -14070,7 +14096,7 @@ msgstr "Makina" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14142,7 +14168,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14423,7 +14449,7 @@ msgid "Search this table" msgstr "Kërko këtë tabelë" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Shto kolonë" @@ -14452,7 +14478,7 @@ msgstr "Kliko për sortim." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14486,24 +14512,24 @@ msgstr "Komenti i databazës" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Printo" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Paketuar" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinaliteti" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Nuk është përcaktuar indeksi!" @@ -15364,6 +15390,11 @@ msgstr[1] "%s tabela" msgid "Sum" msgstr "Shuma" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Vazhdo" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Nga" @@ -15455,16 +15486,11 @@ msgstr "Largo kolonat nga lista qendrore" msgid "Make consistent with central list" msgstr "Bëje konsistente me listën qendrore" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Vazhdo" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "A jeni i sigurtë?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15606,7 +15632,7 @@ msgstr "Tabelat e pashkelura" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Gjurmo tabelën" @@ -16378,19 +16404,19 @@ msgid "Other options" msgstr "Opsionet e tjera:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Riemëro në" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Çelësi primar është fshirë." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Indeksi %s është fshirë." @@ -16718,6 +16744,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16725,6 +16762,7 @@ msgid "View:" msgstr "Shfaqje:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16907,8 +16945,8 @@ msgstr "" "vlerat e paracaktuara." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16933,7 +16971,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16952,6 +16990,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16965,6 +17004,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -16972,7 +17016,7 @@ msgid "" "storage to use it." msgstr "%sKrijo%s mungon në tabelat e ruajtjes së konfigurimit phpMyAdmin." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19342,7 +19386,7 @@ msgid "Start row:" msgstr "Radha e fillimit:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Pjesët" @@ -19426,7 +19470,7 @@ msgstr "Shto kolona qendrore" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Lëviz kolonat" @@ -19434,33 +19478,33 @@ msgstr "Lëviz kolonat" msgid "Move the columns by dragging them up and down." msgstr "Lëvizi kolonat duke i tërhequar ato lart e poshtë." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Redakto pamjen" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalizo" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Pamje e gjurmës" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Shto %s kolonë(a)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "në fillim të tabelës" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20311,11 +20355,6 @@ msgstr "Emrat e kolonës" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Një pseudonim për BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "" -#~ "Ruaj një Universally Unique Identifier (UUID) (identifikues unik " -#~ "universal)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/sr.po b/po/sr.po index 736bfa1ba5..77726383b0 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Serbian \n" "Language-Team: Serbian (latin) \n" "Language-Team: Swedish %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -10209,8 +10218,8 @@ msgstr "Bläddra" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -10222,7 +10231,7 @@ msgstr "Sök" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -10232,8 +10241,8 @@ msgid "Insert" msgstr "Lägg till" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -10242,14 +10251,14 @@ msgid "Privileges" msgstr "Privilegier" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Operationer" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Spårning" @@ -10257,12 +10266,12 @@ msgstr "Spårning" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Trigger" @@ -10272,11 +10281,11 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Fråga" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Rutiner" @@ -10286,15 +10295,15 @@ msgstr "Rutiner" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Händelser" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Huvud-kolumner" @@ -10304,12 +10313,12 @@ msgid "User accounts" msgstr "Användarkonton" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Binär logg" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10317,21 +10326,21 @@ msgid "Replication" msgstr "Replikering" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Variabler" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motorer" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Insticksprogram" @@ -10433,11 +10442,11 @@ msgstr "Ny" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10455,7 +10464,7 @@ msgstr "Ny" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10483,8 +10492,8 @@ msgstr "Ny" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10908,7 +10917,7 @@ msgstr "Avkorta" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Radera" @@ -11140,18 +11149,18 @@ msgstr "Dumpningsalternativ för data" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -11163,7 +11172,7 @@ msgstr "Dumpning av Data i tabell" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -11172,11 +11181,11 @@ msgstr "nolläge" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -11193,9 +11202,9 @@ msgid "Default" msgstr "Standardvärde" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -11204,8 +11213,8 @@ msgid "Links to" msgstr "Länkar till" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -11221,8 +11230,8 @@ msgid "Name" msgstr "Namn" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -11231,23 +11240,23 @@ msgid "Definition" msgstr "Definition" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tabellstruktur" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Struktur för vy" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för vy" @@ -11352,11 +11361,11 @@ msgid "Database:" msgstr "Databas:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Data:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Struktur:" @@ -11383,17 +11392,17 @@ msgstr "Rapporttitel:" msgid "Dumping data" msgstr "Dumpning data" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Frågeresultat" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Visningsstruktur" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Stå i" @@ -11470,7 +11479,7 @@ msgid "Data creation options" msgstr "Valmöjligheter vid skapande av data" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" @@ -11555,7 +11564,7 @@ msgstr "Det verkar som om databasen använder följande funktioner;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "export med alias fungerar inte alltid tillförlitligt." @@ -11636,20 +11645,20 @@ msgstr "MIME-TYPER FÖR TABELL" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Det verkar dom om tabellen använder följande utlösare;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur för vy %s exporterad som en tabell" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Error reading data:" msgid "Error reading data for table %s:" @@ -11965,7 +11974,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" @@ -12194,14 +12203,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -12236,6 +12245,16 @@ msgstr "Signon-autentisering" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -13013,7 +13032,7 @@ msgstr "%s har inaktiverats på denna MySQL-server." msgid "This MySQL server does not support the %s storage engine." msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primärnyckelns namn måste vara \"PRIMARY\"!" @@ -13026,39 +13045,39 @@ msgstr "Problem med index för tabell `%s`" msgid "Unknown table status:" msgstr "Okänd tabellstatus:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Källdatabas `%s` hittades inte!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabas `%s` hittades inte!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Ogiltig databas:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Ogiltigt tabellnamn:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Kunde inte byta namn på tabell %1$s till %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabell %1$s har döpts om till %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Kunde inte spara gränssnittsinställningarna för tabellen!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -13067,7 +13086,7 @@ msgstr "" "Misslyckades med att rensa gränssnittsinställningar för tabell (se " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -13078,15 +13097,15 @@ msgstr "" "beständiga efter att du uppdaterar denna sida. Kontrollera om tabellens " "struktur har förändrats." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Kan inte byta namn på index till \"PRIMARY\"!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" @@ -13245,14 +13264,14 @@ msgstr "Version %1$s %2$s togs bort." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "En 1-byte heltal, signerat intervall är -128 till 127, osignerad intervall " "är 0 till 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -13260,7 +13279,7 @@ msgstr "" "Ett 2-bytes heltal, signerat inom intervallet -32.768 till 32.767, osignerat " "inom intervallet 0 till 65.535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -13268,7 +13287,7 @@ msgstr "" "Ett 3-bytes heltal, signerat inom intervallet -8.388.608 till 8.388.607, " "osignerat inom intervallet 0 till 16.777.215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -13276,7 +13295,7 @@ msgstr "" "Ett 4-bytes heltal, signerat inom intervallet -2147483648 till 2147483647, " "osignerat inom intervallet 0 till 4294967295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -13285,7 +13304,7 @@ msgstr "" "till 9.223.372.036.854.775.807, osignerat inom intervallet 0 till " "18.446.744.073.709.551.615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -13293,7 +13312,7 @@ msgstr "" "Ett fast-punkt nummer (M, D) - det maximala antalet siffror (M) är 65 " "(default 10), det maximala antalet decimaler (D) är 30 (default 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -13301,7 +13320,7 @@ msgstr "" "Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, " "0, och 1.175494351E-38 till 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -13311,7 +13330,7 @@ msgstr "" "till 2.2250738585072014E-308, 0, och 2.2250738585072014E-308 till " "1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13319,14 +13338,14 @@ msgstr "" "Synonym för DOUBLE (undantag: i REAL_AS_FLOAT SQL läget är det en synonym " "för FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" "En bit-fälttyp (M), lagrar M bitar per värde default är 1, maximalt är 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13334,21 +13353,21 @@ msgstr "" "En synonym för TINYINT (1), ett värde på noll betraktas som falskt, värden " "skilda från noll anses sanna" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Ett alias för BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Ett datum, supportat område är %1$s till %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "En datum och tidskombination, supportat område är %1$s till %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13356,12 +13375,12 @@ msgstr "" "En tidsstämpel, intervallet är 1970-01-01 00:00:01 UTC till 2038-01-09 " "03:14:07 UTC, lagrad som antalet sekunder sedan 1970-01-01 00:00:00 UTC" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "En tid, området är %1$s till %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13369,7 +13388,7 @@ msgstr "" "Ett år i fyr-siffrigt (4, default) eller 2-siffrigt (2) format, tillåtna " "värden är: 70 (1970) till 69 (2069) eller 1901 till 2155 och 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13377,7 +13396,7 @@ msgstr "" "En sträng med fast längd (0-255, standard 1) som alltid är högerfylld med " "blankslag till den angivna längden vid lagring" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13386,7 +13405,7 @@ msgstr "" "En variabel-längd (%s) sträng, den effektiva maximala längden är " "förutsättningen för den maximala radstorleken" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13394,7 +13413,7 @@ msgstr "" "En TEXT-kolumn med en maximal längd av 255 (2^8-1) tecken, lagrat med ett en-" "bytes prefix vilket anger längden av värdet i bytes" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13402,7 +13421,7 @@ msgstr "" "En TEXT-kolumn med en maximal längd av 65.535 (2^16-1) tecken, lagrat med " "ett två-bytes prefix vilket anger längden av värdet i bytes" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13410,7 +13429,7 @@ msgstr "" "En TEXT-kolumn med en maximal längd av 16.777.215 (2^24-1) tecken, lagrat " "med ett tre-bytes prefix vilket anger längden av värdet i bytes" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13420,7 +13439,7 @@ msgstr "" "tecken, lagrat med ett fyra-bytes prefix vilket anger längden av värdet i " "bytes" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13428,7 +13447,7 @@ msgstr "" "Liknande typen CHAR, men lagrar binära bytesträngar snarare än icke-binära " "teckensträngar" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13436,7 +13455,7 @@ msgstr "" "Liknande typen VARCHAR, men lagrar binära bytesträngar snarare än icke-" "binära teckensträngar" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13444,7 +13463,7 @@ msgstr "" "En BLOB-kolumn med en maximal längd av 255 (2^8-1) bytes, lagrat med ett en-" "bytes prefix vilket anger längden av värdet" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13452,7 +13471,7 @@ msgstr "" "En BLOB-kolumn med en maximal längd av 16.777.215 (2^24-1) bytes, lagrat med " "ett tre-bytes prefix vilket anger längden av värdet" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13460,7 +13479,7 @@ msgstr "" "En BLOB-kolumn med en maximal längd av 65.535 (2^16-1) bytes, lagrad med ett " "två bytes prefix vilket anger längden på värdet" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13468,7 +13487,7 @@ msgstr "" "En BLOB-kolumn med en maximal längd av 4,294,967,295 och 4GB (2^32-1) byte, " "lagrad med ett fyra-bytes prefix som anger längden på värdet" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13476,43 +13495,43 @@ msgstr "" "En uppräkning, vald från listan med upp till 65.535 värden eller det " "speciella felvärdet ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "En enstaka värde valt från en uppsättning av upp till 64 stycken" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "En typ som kan lagra en geometri av alla typer" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "En punkt i det 2-dimensionella rummet" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "En kurva med linjär interpolering mellan punkter" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "En polygon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "En samling punkter" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "En samling kurvor med linjär interpolering mellan punkterna" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "En samling polygoner" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "En samling geometriobjekt av valfri typ" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13520,23 +13539,29 @@ msgstr "" "Lagrar och möjliggör effektiv åtkomst till data i JSON (JavaScript Object " "Notation) -dokument" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Lagrar en universiellt unik identifierare (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Numeriska" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Datum och tid" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -13566,85 +13591,85 @@ msgstr "Kunde inte spara konfigurationen" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "%sCreate%s phpMyAdmin konfiguration lagring i den aktuella databasen." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "jan" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "feb" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "mars" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "jun" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "jul" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "aug" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "sep" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "okt" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "nov" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "dec" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13652,55 +13677,55 @@ msgid "Sun" msgstr "Sön" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Mån" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Tis" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Ons" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Tors" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Fre" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Lör" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Användare" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sortera" @@ -13873,7 +13898,7 @@ msgstr "båda av ovanstående" msgid "neither of the above" msgstr "ingen av ovanstående" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13908,7 +13933,7 @@ msgstr "Inget" msgid "As defined:" msgstr "Som definierat:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13916,41 +13941,41 @@ msgstr "" "Du har inte tillräcklig behörighet att utföra åtgärden; Se dokumentationen " "för mer information" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Unik" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Fulltext" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Uttryck" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "först" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "efter %s" @@ -14104,7 +14129,7 @@ msgstr "Motorer" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -14187,7 +14212,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14468,7 +14493,7 @@ msgid "Search this table" msgstr "Sök i denna tabell" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Lägg till kolumn" @@ -14497,7 +14522,7 @@ msgstr "Klicka för att sortera." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14531,24 +14556,24 @@ msgstr "Databaskommentar" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Skriv ut" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Packad" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Kardinalitet" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Inga index är definierade!" @@ -15420,6 +15445,11 @@ msgstr[1] "%s tabeller" msgid "Sum" msgstr "Summa" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Fortsätt" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Från" @@ -15513,16 +15543,11 @@ msgstr "Ta bort kolumner från huvudlista" msgid "Make consistent with central list" msgstr "Gör enhetlig med huvudlista" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Fortsätt" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Är du säker?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15664,7 +15689,7 @@ msgstr "Ej spårade tabeller" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Spåra tabell" @@ -16455,19 +16480,19 @@ msgid "Other options" msgstr "Andra alternativ:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Byt namn till" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Den primära nyckeln har tagits bort." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Index %s har tagits bort." @@ -16782,6 +16807,17 @@ msgstr "" msgid "Verify" msgstr "Verifiera" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16789,6 +16825,7 @@ msgid "View:" msgstr "Vyer:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16974,8 +17011,8 @@ msgstr "" "Du kan återställa alla inställningar och återföra dem till standardvärdena." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -17000,7 +17037,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -17019,6 +17056,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -17032,6 +17070,11 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:26 +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 #, fuzzy #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -17039,7 +17082,7 @@ msgid "" "storage to use it." msgstr "%sCreate%s saknade phpMyAdmin konfiguration lagringstabeller." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19404,7 +19447,7 @@ msgid "Start row:" msgstr "Startrad:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Partitioner" @@ -19494,7 +19537,7 @@ msgstr "Addera till centrala kolumner" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Flytta kolumner" @@ -19502,33 +19545,33 @@ msgstr "Flytta kolumner" msgid "Move the columns by dragging them up and down." msgstr "Flytta kolumner genom att dra dem uppåt och nedåt." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Redigera vy" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Spårvisning" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "I början av tabellen" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" @@ -20372,9 +20415,6 @@ msgstr "Kolumnnamn" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Ett alias för BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Lagrar en universiellt unik identifierare (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ta.po b/po/ta.po index 0334c52a71..5929c87592 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Tamil அட்டவணை கட்டமைப்பு" @@ -3931,9 +3931,9 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -3951,17 +3951,17 @@ msgstr "" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "தொகு" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -3969,7 +3969,7 @@ msgid "Refresh" msgstr "புதுப்பி" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" @@ -4249,14 +4249,14 @@ msgstr "" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4300,8 +4300,8 @@ msgstr "கட்டற்றஆவண உரை" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4344,8 +4344,8 @@ msgstr "" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4365,32 +4365,32 @@ msgstr "உள்ளிடு மாற்றுருவாக்கம்" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "அமைப்புருவாக்கத்தை சேமிக்க முடியவில்லை, அளிக்கப்பட்ட படிவத்தில் பிழைகள் உள்ளன!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "இப்போதுள்ள அமைப்பாக்க கோப்பு (%s) படிக்கமுடியாததாக உள்ளது." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "அமைப்பாக்க கோப்பு தவறான அணுகல்இசைவுடன் உள்ளது.அனைவரும் திருத்தக்கூடியதாக இருக்ககூடாது!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "வழங்கி %d" @@ -4646,7 +4646,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -4740,7 +4740,7 @@ msgid "Table %s has been emptied." msgstr "%s அட்டவணை வெறுமையாக்கப்பட்டது." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -4761,9 +4761,9 @@ msgstr "" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -4785,7 +4785,7 @@ msgstr "" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -4799,7 +4799,7 @@ msgstr "ஆம்" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "" @@ -4859,7 +4859,7 @@ msgid "You may want to refresh the page." msgstr "நீங்கள் இப்பக்கத்தை மீளேற்ற வேண்டியிருக்கலாம்." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "தகா வகை!" @@ -4981,15 +4981,15 @@ msgstr "" "curl நீட்டிப்பு மற்றும் allow_url_fopen முடக்கப்பட்டுள்ளது. இதனால் தவறு அறிக்கை, " "பதிப்பு சோதனை போன்ற அம்சங்கள் முடக்கப்பட்டுள்ளது." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "முழுமையடையா மதிப்புருபுகள்" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "நிறைவுற்றது" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "தோல்வியடைந்தது" @@ -5004,16 +5004,16 @@ msgstr "" "ஆவணஉரையை %s பார்வையிடவும்." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "புத்தகக்குறி காட்டப்படுகிறது" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "புத்தகக்குறி அழிக்கப்பட்டது." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5023,14 +5023,14 @@ msgstr "" "கோப்பின் அளவு PHP உள்ளமைப்பின் கோப்பு பதிவேற்ற மீயளவு இசைவு வரம்பை கடந்திருக்கும். " "[doc@faq1-16] FAQ 1.16 [/doc]யினை காண்க." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "உள்ளேற்றம் வெற்றிகரமாக முடிந்தது, %d வினவல்கள் செயல்படுத்தப்பட்டன." msgstr[1] "உள்ளேற்றம் வெற்றிகரமாக முடிந்தது, %d வினவல்கள் செயல்படுத்தப்பட்டன." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5039,7 +5039,7 @@ msgstr "" "செயல்நிரலுக்கான செயலாக்க நேரம் கடந்தது, உள்ளேற்ற செயல்பாட்டை மீளேற்றி முடிக்க " "%sஅதேகோப்பினை மீண்டும் அனுப்புக%s." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5047,7 +5047,7 @@ msgstr "" "முந்தைய செயலாக்கம் எந்த தரவையும் தரவில்லை, பொதுவாக இது நீங்கள் PHPயின் செயலாக்க " "காலவரையை மாற்றாமல் PHPMyAdmin னால் இந்த தரவிறக்கத்தை முடிக்கவியலாததை குறிக்கிறது." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" கூற்றுகள் முடக்கப்பட்டுள்ளன." @@ -5308,11 +5308,12 @@ msgstr "சுட்டுதொகுப்புக்குறியில் #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "SQLஐ முன்பார்வையிடு" @@ -5326,7 +5327,7 @@ msgid "Matched rows:" msgstr "பொருந்திய நிரல்வரிசைகள்:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL வினவல்:" @@ -5402,7 +5403,8 @@ msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5460,13 +5462,13 @@ msgstr "ஏனையவை" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -5585,45 +5587,45 @@ msgstr "செயலாக்கங்கள்" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "து" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EiB" @@ -5643,7 +5645,7 @@ msgid "Traffic" msgstr "போக்குவரத்து" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "அமைவுகள்" @@ -5659,11 +5661,11 @@ msgstr "தயவுசெய்து குறைந்தது ஒரு ம #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -5874,7 +5876,7 @@ msgstr "வெளியீட்டை விளக்குக" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -5884,8 +5886,8 @@ msgstr "நிகழ்நிலை" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6052,10 +6054,10 @@ msgstr "ஒவ்வாத பண்புகூறுகள்!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6081,6 +6083,7 @@ msgstr "இடுக" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "ஏற்றப்படுகிறது…" @@ -6154,7 +6157,7 @@ msgstr "முதனிலை குறிப்பெழுத்து சே #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "சரி" @@ -6184,9 +6187,9 @@ msgstr "எழுத்துத்தொகுதி மாற்றப்ப #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6208,7 +6211,7 @@ msgstr "எழுத்துத்தொகுதி மாற்றப்ப #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6296,7 +6299,7 @@ msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6424,7 +6427,7 @@ msgid "No partial dependencies selected!" msgstr "எந்த பகுதியளவு சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6554,13 +6557,13 @@ msgstr "தரவுப்புள்ளி உள்ளடக்கம்" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "புறக்கணி" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7146,14 +7149,20 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, fuzzy, php-format #| msgid "Table %s already exists!" msgctxt "" @@ -7161,13 +7170,13 @@ msgctxt "" msgid "Table %s already exists!" msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ளது!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7190,22 +7199,22 @@ msgid "No such column" msgstr "அதுபோல் நிரல்வரிசை இல்லை" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin ஆவணச்சான்று" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "" @@ -7232,7 +7241,7 @@ msgstr "நிரைவரிசைகள்" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "சுட்டுகள்" @@ -7893,7 +7902,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "மதிப்புருக்கள் காணப்படவில்லை:" @@ -7994,7 +8003,7 @@ msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ள #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "உங்கள் SQL வினவல் வெற்றிகரமாக நிறைவேற்றப்பட்டது." @@ -8061,10 +8070,10 @@ msgstr "நோக்கு" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "வலு" @@ -8090,7 +8099,7 @@ msgid "Failed to get description of column %s!" msgstr "நிறைவரிசை எண்ணிக்கையை பெற தவறியது." #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8101,7 +8110,7 @@ msgstr "முதன்மை" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8111,7 +8120,7 @@ msgstr "முதன்மை" msgid "Index" msgstr "சுட்டுதொகுப்புக்குறி" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." @@ -8163,7 +8172,7 @@ msgstr "" msgid "View name can not be empty!" msgstr "" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -8305,7 +8314,7 @@ msgstr "" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL சொன்னது: " @@ -8395,7 +8404,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "அட்டவணைகள் எதுவும் இத்தரவுத்தளத்தில் காணப்படவில்லை." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8403,21 +8412,21 @@ msgid "" "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 #, fuzzy #| msgid "Missing parameter:" msgid "Missing connection parameters!" msgstr "மதிப்புருக்கள் காணப்படவில்லை:" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "" @@ -8440,23 +8449,23 @@ msgstr "துணைநிரல்கள்" msgid "Del" msgstr "அழி" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "சேமித்த புத்தகக்குறியிடப்பட்ட தேடல்:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "புது புத்தகக்குறி" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "புத்தகக்குறி இடுக" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "புத்தகக்குறி புதுப்பிக்க" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "புத்தகக்குறியை அழிக்க" @@ -8706,8 +8715,8 @@ msgid "Full texts" msgstr "முழுவுரைகள்" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -8720,8 +8729,8 @@ msgid "Descending" msgstr "இறங்குவரிசை" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -8733,41 +8742,41 @@ msgstr "இறங்குவரிசை" msgid "Ascending" msgstr "ஏறுவரிசை" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "கொல்க" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "அண்ணளவாக இருக்கலாம்.[doc@faq3-11]FAQ 3.11[/doc]ஐ காண்க." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "%1s - %2s நிரைவரிசைகள் காட்டப்படுகின்றன" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "இவ்வினவலில் %1$d மொத்தம், - %2$d" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "%d மொத்தம்" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "வினவல் %01.4f நொடிகள் எடுத்துக்கொண்டது." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "இணைப்பை காணவில்லை!" @@ -9061,7 +9070,7 @@ msgid "" msgstr "" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9089,13 +9098,13 @@ msgstr "அறிவிக்கை" msgid "Automatically send report next time" msgstr "அடுத்தமுறை தன்னிச்சையாகவே அறிவிக்கையை அனுப்புக" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "கோப்பை சேமிக்குமளவு இடமில்லை %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9103,18 +9112,18 @@ msgstr "" "வழங்கியில் கோப்பு %s முன்னரே உள்ளது, கோப்பின் பெயரை மாற்றுக அல்லது மேலெழுதும்படி " "குறிக்க." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "வழங்கிக்கு கோப்பு %s சேமிக்க அனுமதி இல்லை." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "தரவு %s கோப்பாக சேமிக்கப்பட்டுள்ளது." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9187,57 +9196,57 @@ msgstr "" msgid "Session not found." msgstr "இணைப்பை காணவில்லை!" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, fuzzy, php-format #| msgid "Jump to database \"%s\"." msgid "Jump to database “%s”." msgstr "தரவுத்தளம் தாவி செல்லவும் \"%s\"." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s செயல்பாடு எதுவென்று தெரிந்த ஓர் பிழையால் பாதிக்கப்பட்டுள்ளது, %sஐ பார்க்க" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP நிரல் இல்லாமல்" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 #, fuzzy @@ -9245,25 +9254,25 @@ msgstr "PHP நிரல் இல்லாமல்" msgid "Submit query" msgstr "வினவலை சமர்ப்பி" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "பகுமுறையிடல்" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 #, fuzzy #| msgid "Edit view" msgctxt "Inline edit query" msgid "Edit inline" msgstr "தொகுப்பு பார்வை" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "நிலையான தரவு" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "" @@ -9369,11 +9378,11 @@ msgstr "செயல்கூறு" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9393,7 +9402,7 @@ msgstr "செயல்கூறு" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9444,7 +9453,7 @@ msgstr "" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9454,8 +9463,8 @@ msgstr "உலாவு" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9467,7 +9476,7 @@ msgstr "தேடு" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9477,8 +9486,8 @@ msgid "Insert" msgstr "செருகு" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9487,14 +9496,14 @@ msgid "Privileges" msgstr "" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "செயல்பாடுகள்" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "" @@ -9502,12 +9511,12 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "" @@ -9517,11 +9526,11 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "" @@ -9531,15 +9540,15 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "மைய நெடுவரிசைகள்" @@ -9551,12 +9560,12 @@ msgid "User accounts" msgstr "பயனர் குழுக்கள்" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9564,21 +9573,21 @@ msgid "Replication" msgstr "படியெடுத்தல்" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "மாறிகள்" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "எழுத்துக்கணங்கள்" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "செயல்பொறிகள்" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "" @@ -9680,11 +9689,11 @@ msgstr "புதியது" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9702,7 +9711,7 @@ msgstr "புதியது" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9730,8 +9739,8 @@ msgstr "புதியது" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10116,7 +10125,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "அழி" @@ -10347,18 +10356,18 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10370,7 +10379,7 @@ msgstr "" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10379,11 +10388,11 @@ msgstr "வெற்று" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10400,9 +10409,9 @@ msgid "Default" msgstr "இயல்நிலை" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10411,8 +10420,8 @@ msgid "Links to" msgstr "இணைப்புகள்" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10428,8 +10437,8 @@ msgid "Name" msgstr "பெயர்" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10438,23 +10447,23 @@ msgid "Definition" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10559,11 +10568,11 @@ msgid "Database:" msgstr "தரவுத்தளம்:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "தரவு:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "வடிவமைப்பு:" @@ -10590,19 +10599,19 @@ msgstr "அறிக்கையின் தலைப்பு:" msgid "Dumping data" msgstr "தவறான தரவு" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Hide search results" msgid "Query result data" msgstr "தேடல் முடிவுகளை மறை" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy #| msgid "structure" msgid "View structure" msgstr "கட்டமைப்பு" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "" @@ -10674,7 +10683,7 @@ msgid "Data creation options" msgstr "தரவேற்ற விருப்பங்கள்" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -10743,7 +10752,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10821,20 +10830,20 @@ msgstr "" msgid "RELATIONSHIPS FOR TABLE" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Delete data or table" msgid "Error reading data for table %s:" @@ -11139,7 +11148,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y இல் %I:%M %p" @@ -11312,14 +11321,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11351,6 +11360,16 @@ msgstr "கடவுச்சொல்லை மாற்றவும்" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12091,7 +12110,7 @@ msgstr "" msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" @@ -12104,46 +12123,46 @@ msgstr "" msgid "Unknown table status:" msgstr "தெரியாத அட்டவணை நிலை:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "செல்லாத தரவுத்தளம்:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "செல்லாத அட்டவணைப் பெயர்:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "அட்டவணை %1$sஐ %2$s என மறுபெயரிடுதல் தோல்வியடைந்தது!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s அட்டவணையானது %2$s ஆக பெயர் மாற்றப்பட்டது." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12151,15 +12170,15 @@ msgid "" "changed." msgstr "" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "தொகுப்புக்குறிகாட்டியை முதனிலையாக பெயர்மாற்றம் செய்யமுடியவில்லை!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12316,242 +12335,246 @@ msgstr "%2$s ன் %1$s பதிப்பை உருவாக்குக" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "ஒரு நாளுக்கான வீச்சு, %1$s லிருந்து %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "ஒர் நேரத்துக்கான, வீச்சு %1$s லிருந்து %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "ஒரு பல்கோணி" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "நாள் மற்றும் நேரம்" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "வெளி சார்பு" @@ -12584,85 +12607,85 @@ msgstr "" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்கப்பட்டுள்ளது. %sஏனென்று அறிக%s." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "தை" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "மாசி" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "மே" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "மார்கழி" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -12670,55 +12693,55 @@ msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "திங்" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "புத" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "வியா" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "சனி" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s நொடிகள்" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "பயனர்கள்" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "வரிசைப்படுத்து" @@ -12901,7 +12924,7 @@ msgstr "" msgid "neither of the above" msgstr "" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -12936,47 +12959,47 @@ msgstr "" msgid "As defined:" msgstr "" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" msgstr "" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "தனித்தன்மை" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "இடம்சார்" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s க்கு அடுத்து" @@ -13132,7 +13155,7 @@ msgstr "செயல்பொறிகள்" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13209,7 +13232,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13499,7 +13522,7 @@ msgid "Search this table" msgstr "இந்த அட்டவணையில் தேடுக" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "நெடுவரிசையை சேர்க்க" @@ -13528,7 +13551,7 @@ msgstr "வரிசைப்படுத்த சொடுக்குக." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13562,24 +13585,24 @@ msgstr "தரவுத்தள கருத்துரை" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "அச்சிடுக" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "பொதிக்கப்பட்டது" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "" @@ -14447,6 +14470,11 @@ msgstr[1] "%s அட்டவணைகள்" msgid "Sum" msgstr "கூட்டுத்தொகை" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "தொடர்க" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "இதிலிருந்து" @@ -14542,16 +14570,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "முதன்மைபட்டியலை ஒத்து நிலைப்படுத்துக" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "தொடர்க" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "உறுதியாகவா?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14693,7 +14716,7 @@ msgstr "கண்காணிக்கபடாத அட்டவணைகள #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "அட்டவணையை கண்காணி" @@ -15459,19 +15482,19 @@ msgid "Other options" msgstr "விருப்பத்தேர்வுகள்" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Keyname" msgid "Rename" msgstr "முக்கியபெயர்" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "" @@ -15817,6 +15840,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -15824,6 +15858,7 @@ msgid "View:" msgstr "விவரபார்வைகள்:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16008,8 +16043,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "நீங்கள் உங்கள் அனைத்து அமைப்புக்களையும் அவற்றின் இயல்நிலை மதிப்புக்கு மீட்டமைக்கலாம்." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "" @@ -16030,7 +16065,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Change password" msgid "Disable two-factor authentication" @@ -16049,6 +16084,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16063,11 +16099,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18302,7 +18343,7 @@ msgid "Start row:" msgstr "துவக்க வரிசை:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -18398,7 +18439,7 @@ msgstr "முதன்மை நிரல்வரிசைகளில் ச #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "நெடுவரிசைகளை நகர்த்து" @@ -18406,35 +18447,35 @@ msgstr "நெடுவரிசைகளை நகர்த்து" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "விவரபார்வையை கண்காணி" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s நெடுவரிசைகளை சேர்க்க" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "Rate of table open" msgid "at beginning of table" msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "" diff --git a/po/te.po b/po/te.po index af87c52d6f..2a864f684a 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Telugu \n" -"Language-Team: Thai " -"\n" +"Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,8 +173,8 @@ msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" -"คุณควรอัพเกรดเนื่องจาก MySQL 5.1 ได้ปรับปรุงเรื่องประสิทธิภาพ และใน MySQL " -"5.5 ก็ได้ปรับปรุงให้ดีกว่านี้" +"คุณควรอัพเกรดเนื่องจาก MySQL 5.1 ได้ปรับปรุงเรื่องประสิทธิภาพ และใน MySQL 5.5 " +"ก็ได้ปรับปรุงให้ดีกว่านี้" #: libraries/advisory_rules_generic.php:113 #: libraries/advisory_rules_generic.php:127 @@ -197,8 +197,8 @@ msgid "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." msgstr "" -"คุณควรอัพเกรดเนื่องจากรุ่นล่าสุดของ MySQL 5.1 ได้ปรับปรุงเรื่องประสิทธิภาพ " -"และใน MySQL 5.5 ก็ได้ปรับปรุงให้ดีกว่านี้" +"คุณควรอัพเกรดเนื่องจากรุ่นล่าสุดของ MySQL 5.1 ได้ปรับปรุงเรื่องประสิทธิภาพ และใน MySQL 5.5 " +"ก็ได้ปรับปรุงให้ดีกว่านี้" #: libraries/advisory_rules_generic.php:136 msgid "Version less than 5.5.8 (the first GA release of 5.5)." @@ -1331,7 +1331,7 @@ msgstr "ค้นหา:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1343,8 +1343,8 @@ msgstr "ค้นหา:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "ไป" @@ -1352,7 +1352,7 @@ msgstr "ไป" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "ชื่อคีย์" @@ -3176,9 +3176,9 @@ msgstr "รวมถึงคำอธิบายภาพของตารา #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3209,8 +3209,8 @@ msgstr "คีย์ป้ายชื่อ" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3377,7 +3377,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3498,8 +3498,8 @@ msgstr "เปลี่ยนแปลงการติดตาม" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3526,7 +3526,7 @@ msgid "Database structure" msgstr "โครงสร้างฐานข้อมูล" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "โครงสร้างของตาราง" @@ -4229,9 +4229,9 @@ msgstr "ข้ามตารางที่ถูกล็อก" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4249,17 +4249,17 @@ msgstr "ข้ามตารางที่ถูกล็อก" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "แก้ไข" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "อธิบาย SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4267,7 +4267,7 @@ msgid "Refresh" msgstr "เรียกใหม่" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" @@ -4557,14 +4557,14 @@ msgstr "" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4612,8 +4612,8 @@ msgstr "เอกสารอ้างอิง" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4656,8 +4656,8 @@ msgstr "" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4674,31 +4674,31 @@ msgstr "การแปลงที่เรียกใช้ได้" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ไฟล์ตั้งค่า %s ไม่สามารถอ่านได้" -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "สิทธิ์สำหรับไฟล์ตั้งค่าไม่ถูกต้อง ไม่ควรให้เขียนได้ทั้งหมด!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "ไม่สามารถอ่านไฟล์การตั้งค่าได้!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "ซึ่งมักจะหมายความว่ามีข้อผิดพลาดทางไวยากรณ์อยู่โปรดตรวจสอบข้อผิดพลาดที่แสดงด้านล่าง" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "เซิร์ฟเวอร์ %d" @@ -4986,7 +4986,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5080,7 +5080,7 @@ msgid "Table %s has been emptied." msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5100,9 +5100,9 @@ msgstr "ไม่ระบุ" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5124,7 +5124,7 @@ msgstr "ไม่ระบุ" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5138,7 +5138,7 @@ msgstr "ใช่" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -5190,7 +5190,7 @@ msgid "You may want to refresh the page." msgstr "คุณอาจจะต้องการรีเฟรซหน้านี้" #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "ประเภทไม่ถูกต้อง!" @@ -5308,15 +5308,15 @@ msgstr "" "ไม่พบส่วนขยาย curl และ allow_url_fopen ถูกปิดใช้งานอยู่ " "ทำให้บางคุณลักษณะอย่างการรายงานข้อผิดพลาดหรือตรวจสอบรุ่นล่าสุดจะถูกปิดไว้" -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "พารามิเตอร์ไม่สมบูรณ์" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "สำเร็จ" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "ล้มเหลว" @@ -5331,16 +5331,16 @@ msgstr "" "เพื่อแก้ไขปัญหาดังกล่าวนี้" #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "แสดงบุ๊คมาร์ค" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5349,13 +5349,13 @@ msgstr "" "ไม่มีข้อมูลสำหรับการนำเข้า อาจจะไม่ได้ใส่ชื่อไฟล์ หรือขนาดไฟล์เกินขนาดสูงสุดที่ระบบตั้งไว้ " "กรุณาแก้ไขไฟล์ตั้งค่าของ PHP ดูเอกสารเพิ่มเติมได้ที่ [doc@faq1-16]FAQ 1.16[/doc]" -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "นำเข้าสำเร็จเรียบร้อย การเรียกใช้ %d รายการได้ถูกดำเนินการแล้ว" -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5364,7 +5364,7 @@ msgstr "" "หมดเวลาการเรียกใช้สคริปต์แล้ว หากคุณต้องการนำเข้าให้เรียบร้อย กรุณา %sนำเข้าไฟล์เดิม%s " "อีกรอบ และการนำเข้าจะดำเนินต่อไป" -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5372,7 +5372,7 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" @@ -5623,11 +5623,12 @@ msgstr "โปรดเลือกคอลัมน์ให้กับดั #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "ดูตัวอย่าง SQL" @@ -5641,7 +5642,7 @@ msgid "Matched rows:" msgstr "ระเบียนที่ตรงกัน:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "คำค้น SQL:" @@ -5715,7 +5716,8 @@ msgstr "กำลังลบผู้ใช้ที่เลือกออก #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5773,13 +5775,13 @@ msgstr "อื่นๆ" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -5886,45 +5888,45 @@ msgstr "โพรเซส" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "ไบต์" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "กิโลไบต์" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "เอกซะไบต์" @@ -5944,7 +5946,7 @@ msgid "Traffic" msgstr "การจราจร" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "การตั้งค่า" @@ -5960,11 +5962,11 @@ msgstr "กรุณาเพิ่มค่าตัวแปรอย่าง #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6169,7 +6171,7 @@ msgstr "อธิบายผลคำสั่ง" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6179,8 +6181,8 @@ msgstr "สถานะ" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6331,10 +6333,10 @@ msgstr "ไม่พบพารามิเตอร์!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6358,6 +6360,7 @@ msgstr "นำไปใช้" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "กำลังโหลด…" @@ -6417,7 +6420,7 @@ msgstr "กำลังเพิ่มคีย์หลัก" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "ตกลง" @@ -6441,9 +6444,9 @@ msgstr "กำลังเปลี่ยนชุดตัวอักษร" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6465,7 +6468,7 @@ msgstr "กำลังเปลี่ยนชุดตัวอักษร" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6550,7 +6553,7 @@ msgid "Show query box" msgstr "แสดงช่องคำค้น SQL" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6677,7 +6680,7 @@ msgid "No partial dependencies selected!" msgstr "ไม่มีการอ้างอิงบางส่วนที่ถูกเลือก!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6806,13 +6809,13 @@ msgstr "สารบัญ" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "ข้าม" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7371,27 +7374,33 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "ประเภทที่ส่งออกไม่ถูกต้อง" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "มีตาราง %s อยู่แล้ว!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "ซ่อน" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7416,24 +7425,24 @@ msgid "No such column" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 #, fuzzy #| msgid "Linestring" msgctxt "string types" msgid "String" msgstr "แถวข้อความ" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 #, fuzzy #| msgid "phpMyAdmin documentation" msgid "phpMyAdmin configuration snippet" msgstr "เอกสารประกอบของ phpMyAdmin" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "" @@ -7459,7 +7468,7 @@ msgstr "แถว" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "ดัชนี" @@ -8127,7 +8136,7 @@ msgid "The number of threads that are not sleeping." msgstr "" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" @@ -8234,7 +8243,7 @@ msgstr "มีผู้ใช้ %s อยู่แล้ว!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 #, fuzzy #| msgid "Your SQL query has been executed successfully." @@ -8305,10 +8314,10 @@ msgstr "ตารางจำลอง (View)" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "ผิดพลาด" @@ -8335,7 +8344,7 @@ msgid "Failed to get description of column %s!" msgstr "การดึงค่าส่วนหัวไม่สำเร็จ" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8346,7 +8355,7 @@ msgstr "คีย์หลัก" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8356,7 +8365,7 @@ msgstr "คีย์หลัก" msgid "Index" msgstr "ดัชนี" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -8412,7 +8421,7 @@ msgstr "คุณไม่มีสิทธิที่จะเข้ามา msgid "View name can not be empty!" msgstr "" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "ส่วนขยาย %s ขาดหายไป กรุณาตรวจสอบการกำหนดค่าของ PHP" @@ -8551,7 +8560,7 @@ msgstr "" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL แสดง: " @@ -8648,7 +8657,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8656,23 +8665,23 @@ msgid "" "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 #, fuzzy #| msgid "Add new field" msgid "Missing connection parameters!" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "" @@ -8697,31 +8706,31 @@ msgstr "เพิ่ม" msgid "Del" msgstr "ลบ" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 #, fuzzy #| msgid "Search" msgid "Saved bookmarked search:" msgstr "ค้นหา" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 #, fuzzy #| msgid "Search" msgid "New bookmark" msgstr "ค้นหา" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 #, fuzzy #| msgid "Search" msgid "Create bookmark" msgstr "ค้นหา" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 #, fuzzy #| msgid "Showing bookmark" msgid "Update bookmark" msgstr "แสดงบุ๊คมาร์ค" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 #, fuzzy #| msgid "Search" msgid "Delete bookmark" @@ -8994,8 +9003,8 @@ msgid "Full texts" msgstr "ทั้งข้อความ" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9008,8 +9017,8 @@ msgid "Descending" msgstr "มากไปน้อย" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9021,46 +9030,46 @@ msgstr "มากไปน้อย" msgid "Ascending" msgstr "น้อยไปมาก" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 #, fuzzy #| msgid "The row has been deleted." msgid "The row has been deleted." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "กำลังแสดงแถวที่ %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "ทั้งหมด %1$d, %2$d ในคำค้น" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "ทั้งหมด %d" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Query took %01.4f seconds." msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 #, fuzzy #| msgid "Link not found" msgid "Link not found!" @@ -9358,7 +9367,7 @@ msgid "" msgstr "" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9390,30 +9399,30 @@ msgstr "นำเข้า" msgid "Automatically send report next time" msgstr "สร้างเวอร์ชั่นโดยอัตโนมัติ" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "พื้นที่ไม่เพียงพอที่จะบันทึกไฟล์ %s" -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "ให้เปลี่ยนชื่อไฟล์ หรือเลือกแบบเขียนทับไฟล์เดิม เพราะมีไฟล์ %s อยู่ในเซิร์ฟเวอร์อยู่แล้ว" -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเว็บเซิร์ฟเวอร์ไม่อนุญาต" -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9490,57 +9499,57 @@ msgstr "" msgid "Session not found." msgstr "ไม่พบ SOAP" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, fuzzy, php-format #| msgid "Jump to database \"%s\"." msgid "Jump to database “%s”." msgstr "กระโดดไปที่ฐานข้อมูล \"%s\"." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 #, fuzzy @@ -9548,23 +9557,23 @@ msgstr "ไม่เอาโค้ด PHP" msgid "Submit query" msgstr "ประมวลผลคำค้น" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "แก้ไขแบบอินไลน์" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ข้อมูลคงที่" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "" @@ -9671,11 +9680,11 @@ msgstr "ฟังก์ชั่น" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9695,7 +9704,7 @@ msgstr "ฟังก์ชั่น" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9748,7 +9757,7 @@ msgstr "" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9758,8 +9767,8 @@ msgstr "เปิดดู" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9771,7 +9780,7 @@ msgstr "ค้นหา" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9781,8 +9790,8 @@ msgid "Insert" msgstr "แทรก" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9791,14 +9800,14 @@ msgid "Privileges" msgstr "สิทธิ" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "กระบวนการ" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "การติดตาม" @@ -9806,12 +9815,12 @@ msgstr "การติดตาม" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "ทริกเกอร์" @@ -9821,11 +9830,11 @@ msgstr "ทริกเกอร์" msgid "Database seems to be empty!" msgstr "ดูเหมือนว่าฐานข้อมูลจะว่างเปล่า!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "" @@ -9835,15 +9844,15 @@ msgstr "" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "เหตุการณ์" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "ผู้ออกแบบ" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 #, fuzzy #| msgid "Add/Delete Field Columns" @@ -9857,13 +9866,13 @@ msgid "User accounts" msgstr "ผู้ใช้" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9871,21 +9880,21 @@ msgid "Replication" msgstr "การจำลองแบบ" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "ตัวแปร" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "ชุดอักขระ" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "เครื่องมือ" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "ปลั๊กอิน" @@ -9991,11 +10000,11 @@ msgstr "ใหม่" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10013,7 +10022,7 @@ msgstr "ใหม่" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10041,8 +10050,8 @@ msgstr "ใหม่" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10445,7 +10454,7 @@ msgstr "" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "โยนทิ้ง" @@ -10691,18 +10700,18 @@ msgstr "สถิติฐานข้อมูล" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "dump ตาราง" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10714,7 +10723,7 @@ msgstr "dump ตาราง" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10723,11 +10732,11 @@ msgstr "ค่าว่าง" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10744,9 +10753,9 @@ msgid "Default" msgstr "ค่าเริ่มต้น" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10755,8 +10764,8 @@ msgid "Links to" msgstr "เชื่อมไปยัง" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10772,8 +10781,8 @@ msgid "Name" msgstr "ชื่อ" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10784,24 +10793,24 @@ msgid "Definition" msgstr "รายละเอียด" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 #, fuzzy msgid "Structure for view" msgstr "เฉพาะโครงสร้าง" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "" @@ -10920,11 +10929,11 @@ msgid "Database:" msgstr "ฐานข้อมูล:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "ข้อมูล:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "โครงสร้าง:" @@ -10957,18 +10966,18 @@ msgstr "นำเข้าไฟล์" msgid "Dumping data" msgstr "dump ตาราง" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "ผลลัพธ์ SQL" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 #, fuzzy msgid "View structure" msgstr "โครงสร้าง" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "" @@ -11045,7 +11054,7 @@ msgid "Data creation options" msgstr "ตัวเลือกการแปลง" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "" @@ -11114,7 +11123,7 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11201,20 +11210,20 @@ msgstr "" msgid "RELATIONSHIPS FOR TABLE" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "เฉพาะโครงสร้าง" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Allows reading data." msgid "Error reading data for table %s:" @@ -11533,7 +11542,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y เมื่อ %I:%M %p" @@ -11710,14 +11719,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11752,6 +11761,16 @@ msgstr "การรับรองความถูกต้องของก msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12521,7 +12540,7 @@ msgstr "%s ถูกปิดบน MySQL Server" msgid "This MySQL server does not support the %s storage engine." msgstr "MySQL ไม่รองรับ %s" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "ชื่อขอคีย์หลักจะต้องเป็น \"PRIMARY\" เท่านั้น!" @@ -12536,47 +12555,47 @@ msgstr "" msgid "Unknown table status:" msgstr "ไม่ทราบสถานะตาราง: " -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ชื่อตารางไม่ถูกต้อง" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12585,7 +12604,7 @@ msgstr "" "มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, fuzzy, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12595,15 +12614,15 @@ msgstr "" "ไม่สามารถบันทึกคุณสมบัติ UI \"% s\" ได้ การเปลี่ยนแปลงจะมีผล หลังจากคุณรีเฟรชหน้านี้ " "โปรดตรวจสอบหากมีการเปลี่ยนโครงสร้างของตาราง" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไม่ได้!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12765,111 +12784,111 @@ msgstr "สร้างเวอร์ชั่น %1$s ของ %2$s" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "วันเวลา ช่วงที่ได้รับการสนับสนุน %1$s ถึง %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, fuzzy, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12878,7 +12897,7 @@ msgstr "" "คุณคงไม่ได้สร้างแฟ้มการกำหนดค่า คุณอาจต้องการใช้ %1$ssetup script%2$s " "เพื่อสร้างอย่างใดอย่างหนึ่ง" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 #, fuzzy msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " @@ -12888,130 +12907,134 @@ msgstr "" "คุณควรตรวจสอบโฮสต์ ชื่อผู้ใช้และรหัสผ่านในการกำหนดค่าของคุณ และให้แน่ใจว่าค่าต่างๆ " "สอดคล้องกับข้อมูลที่กำหนดไว้ โดยผู้ดูแลระบบของเซิร์ฟเวอร์ MySQL แล้ว" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 #, fuzzy #| msgid "Add a polygon" msgid "A polygon" msgstr "เพิ่มรูปหลายเหลี่ยม" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "คอลเลคชั่นของพอยต์" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "คอลเลคชั่นของรูปหลายเหลี่ยม" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "คอลเลคชั่นของวัตถุรูปทรงเรขาคณิตประเภทใดๆ" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "ตัวเลข" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "สร้างดัชนีใหม่" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -13046,85 +13069,85 @@ msgstr "" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ %sรายละเอียดเพิ่มเติม%s" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "ธ.ค." #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -13132,55 +13155,55 @@ msgid "Sun" msgstr "อ." #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "จ." #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "อ." #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "พ." #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "ศ." #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "ส." -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "ผู้ใช้" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "เรียง" @@ -13363,7 +13386,7 @@ msgstr "ทั้งสองอย่าง" msgid "neither of the above" msgstr "ไม่ใช้ดังกล่าวข้างต้น" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13398,50 +13421,49 @@ msgstr "ไม่มี" msgid "As defined:" msgstr "ตามที่กำหนด:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" -msgstr "" -"คุณไม่มีสิทธิที่จะดำเนินการนี้ กรุณาดูที่เอกสารประกอบสำหรับข้อมูลเพิ่มเติม" +msgstr "คุณไม่มีสิทธิที่จะดำเนินการนี้ กรุณาดูที่เอกสารประกอบสำหรับข้อมูลเพิ่มเติม" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "เอกลักษณ์" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "เชิงพื้นที่" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 #, fuzzy #| msgid "Compression" msgid "Expression" msgstr "บีบอัดข้อมูล" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "ครั้งแรก" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "หลัง %s" @@ -13601,7 +13623,7 @@ msgstr "เครื่องมือ" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13687,7 +13709,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14013,7 +14035,7 @@ msgid "Search this table" msgstr "ค้นหาในตารางนี้" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "เพิ่มคอลัมน์" @@ -14042,7 +14064,7 @@ msgstr "คลิกเพื่อเรียงลำดับ" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14077,24 +14099,24 @@ msgstr "หมายเหตุของฐานข้อมูล" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "พิมพ์" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "กลุ่ม" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "เอกเทศ" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" @@ -15037,6 +15059,11 @@ msgstr[0] "%s ตาราง" msgid "Sum" msgstr "ผลรวม" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "ต่อ" + #: templates/database/structure/change_prefix_form.twig:7 #, fuzzy #| msgid "Fri" @@ -15144,16 +15171,11 @@ msgstr "" msgid "Make consistent with central list" msgstr "คอลัมน์พื้นที่ข้อความ CHAR" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "ต่อ" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "คุณแน่ใจหรือไม่?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15303,7 +15325,7 @@ msgstr "เลิกติดตามตาราง" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "ติดตามตาราง" @@ -16096,18 +16118,18 @@ msgid "Other options" msgstr "ตัวเลือก" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy msgid "Rename" msgstr "เปลี่ยนชื่อตารางเป็น" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "โยนคีย์หลักทิ้งไปเรียบร้อยแล้ว" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" @@ -16420,6 +16442,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "View" @@ -16427,6 +16460,7 @@ msgid "View:" msgstr "ตารางจำลอง (View)" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16617,8 +16651,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "คุณสามารถรีเซ็ตการตั้งค่าทั้งหมดของคุณและเรียกคืนเป็นค่าเริ่มต้น" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16643,7 +16677,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16662,6 +16696,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16676,11 +16711,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -19117,7 +19157,7 @@ msgid "Start row:" msgstr "ส." #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -19220,7 +19260,7 @@ msgstr "คอลัมน์พื้นที่ข้อความ CHAR" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 #, fuzzy #| msgid "Add columns" msgid "Move columns" @@ -19230,39 +19270,39 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Move the columns by dragging them up and down." msgstr "" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "แสดง" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 #, fuzzy #| msgid "Track table" msgid "Track view" msgstr "ติดตามตาราง" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 #, fuzzy #| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on %s columns" diff --git a/po/tk.po b/po/tk.po index f62688be8d..bd5dc9e22e 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Turkmen \n" "Language-Team: Turkish %2$s yanına)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9950,8 +9959,8 @@ msgstr "Gözat" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9963,7 +9972,7 @@ msgstr "Ara" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9973,8 +9982,8 @@ msgid "Insert" msgstr "Ekle" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9983,14 +9992,14 @@ msgid "Privileges" msgstr "Yetkiler" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "İşlemler" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "İzleme" @@ -9998,12 +10007,12 @@ msgstr "İzleme" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Tetikleyiciler" @@ -10013,11 +10022,11 @@ msgstr "Tetikleyiciler" msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Sorgu" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Yordamlar" @@ -10027,15 +10036,15 @@ msgstr "Yordamlar" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Olaylar" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Tasarımcı" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Merkezi sütunlar" @@ -10045,12 +10054,12 @@ msgid "User accounts" msgstr "Kullanıcı hesapları" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "İkili değer günlüğü" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10058,21 +10067,21 @@ msgid "Replication" msgstr "Kopyalama" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Değişkenler" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Motorlar" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Eklentiler" @@ -10171,11 +10180,11 @@ msgstr "Yeni" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10193,7 +10202,7 @@ msgstr "Yeni" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10221,8 +10230,8 @@ msgstr "Yeni" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10649,7 +10658,7 @@ msgstr "Kes" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Kaldır" @@ -10888,18 +10897,18 @@ msgstr "Veri dökümü seçenekleri" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Tablo döküm verisi" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10911,7 +10920,7 @@ msgstr "Tablo döküm verisi" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10920,11 +10929,11 @@ msgstr "Boş" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10941,9 +10950,9 @@ msgid "Default" msgstr "Varsayılan" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10952,8 +10961,8 @@ msgid "Links to" msgstr "Bağlantı verilen" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10969,8 +10978,8 @@ msgid "Name" msgstr "Adı" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10979,23 +10988,23 @@ msgid "Definition" msgstr "Tanım" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Görünüm yapısı" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -11098,11 +11107,11 @@ msgid "Database:" msgstr "Veritabanı:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Veri:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Yapı:" @@ -11127,15 +11136,15 @@ msgstr "Rapor başlığı:" msgid "Dumping data" msgstr "Veri dökümleniyor" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Sorgu sonucu verileri" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Yapıyı görüntüle" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Bulunduğu" @@ -11213,7 +11222,7 @@ msgid "Data creation options" msgstr "Veri oluşturma seçenekleri" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" @@ -11297,7 +11306,7 @@ msgstr "Görünüşe göre veritabanınız yordamları kullanmakta;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "" "kodadını dışa aktarma, her durumda güvenilir bir şekilde çalışmayabilir." @@ -11372,20 +11381,20 @@ msgstr "TABLO ORTAM TÜRLERİ" msgid "RELATIONSHIPS FOR TABLE" msgstr "TABLO İLİŞKİLERİ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Görünüşe göre tablonuz tetikleyicileri kullanmakta;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Görünüm yapısı %s bir tablo olarak dışa aktarıldı" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Asıl görünüm için aşağıya bakın)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "%s tablosu için veri okuma hatası:" @@ -11697,7 +11706,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" @@ -11920,14 +11929,18 @@ msgstr "" "FreeOTP, Google Authenticator veya Authy gibi HOTP ve TOTP uygulamalarını " "kullanarak kimlik doğrulaması sağlar." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Donanım Güvenlik Anahtarı (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Yubikey gibi FIDO U2F'yi destekleyen donanım güvenlik belirteçlerini " "kullanarak kimlik doğrulaması sağlar." @@ -11957,6 +11970,24 @@ msgstr "Basit iki etkenli kimlik doğrulaması" msgid "For testing purposes only!" msgstr "Yalnızca deneme amaçlı!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Donanım Güvenlik Anahtarı (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Yubikey gibi FIDO U2F'yi destekleyen donanım güvenlik belirteçlerini " +"kullanarak kimlik doğrulaması sağlar." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12698,7 +12729,7 @@ msgstr "%s bu MySQL sunucusu için etkisizleştirildi." msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birincil anahtarın adı \"PRIMARY\" olmalıdır!" @@ -12711,39 +12742,39 @@ msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" msgid "Unknown table status:" msgstr "Bilinmeyen tablo durumu:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Kaynak veritabanı `%s` bulunamadı!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Hedef veritabanı `%s` bulunamadı!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Geçersiz veritabanı:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Geçersiz tablo adı:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s tablo adını %2$s tablo adına değiştirme başarısız!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Tablo KA tercihleri kaydedilemedi!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12752,7 +12783,7 @@ msgstr "" "Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s bakın)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12763,15 +12794,15 @@ msgstr "" "yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse " "lütfen denetleyin." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s üzerinde dış anahtar oluşturma hatası (veri türlerini denetleyin)" @@ -12932,14 +12963,14 @@ msgstr "Sürüm %1$s / %2$s oluşturuldu." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme etkin." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1-bayt'lık bir tamsayı, işaretli aralığı -128'den 127'ye kadardır, işaretsiz " "aralığı 0'dan 255'e kadardır" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12947,7 +12978,7 @@ msgstr "" "2-bayt'lık bir tamsayı, işaretli aralığı -32,768'den 32,767'ye kadardır, " "işaretsiz aralığı 0'dan 65,535'e kadardır" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12955,7 +12986,7 @@ msgstr "" "3-bayt'lık bir tamsayı, işaretli aralığı -8,388,608'den 8,388,607'ye " "kadardır, işaretsiz aralığı 0'dan 16,777,215'e kadardır" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12963,7 +12994,7 @@ msgstr "" "4-bayt'lık bir tamsayı, işaretli aralığı -2,147,483,648'den 2,147,483,647'ye " "kadardır, işaretsiz aralığı 0'dan 4,294,967,295'e kadardır" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12972,7 +13003,7 @@ msgstr "" "9,223,372,036,854,775,807'ye kadardır, işaretsiz aralığı 0'dan " "18,446,744,073,709,551,615'e kadardır" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12980,7 +13011,7 @@ msgstr "" "Sabit noktalı bir sayı (M, D) - rakamların (M) en fazla sayısı 65'tir, " "ondalıkların (D) en fazla sayısı 30'dur. (varsayılan 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12988,7 +13019,7 @@ msgstr "" "Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den " "-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12998,7 +13029,7 @@ msgstr "" "-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " "2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -13006,7 +13037,7 @@ msgstr "" "DOUBLE için eş anlamlı (istisna: REAL_AS_FLOAT SQL kipte FLOAT için eş " "anlamlıdır)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13014,7 +13045,7 @@ msgstr "" "Bir bit alanı türü (M), değer (varsayılan 1'dir, en fazla 64'tür) başına " "bit'lerin M'sini saklar" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13022,21 +13053,21 @@ msgstr "" "TINYINT(1) için bir eş anlam, sıfır değeri false sayılır, sıfır olmayan " "değerler true sayılır" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Bir tarih, desteklenen aralık %1$s ile %2$s arası" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Bir tarih ve saat birleşimi, desteklenen aralık %1$s ile %2$s arası" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13045,12 +13076,12 @@ msgstr "" "03:14:07\" UTC arası, devirden (\"1970-01-01 00:00:00\" UTC) bu yana saniye " "sayısı olarak saklanır" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Bir saat, aralığı %1$s ile %2$s arası" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13059,7 +13090,7 @@ msgstr "" "verilebilir değerler 70 (1970) ile 69 (2069) arası ya da 1901 ile 2155 arası " "ve 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13067,7 +13098,7 @@ msgstr "" "Saklandığında belirlenmiş uzunluğa sağdan takviyeli boşluklu sabit uzunluk " "(0-255, varsayılan 1) dizgisi" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13076,7 +13107,7 @@ msgstr "" "Değişken uzunluk (%s) dizgisi, en fazla satır boyutu etkili en fazla uzunluk " "konusudur" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13084,7 +13115,7 @@ msgstr "" "En fazla 255 (2^8 - 1) karakter uzunluğunda bir TEXT sütunu, bayt'larda " "değerin uzunluğunu gösteren bir-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13092,7 +13123,7 @@ msgstr "" "En fazla 65,535 (2^16 - 1) karakter uzunluğunda bir TEXT sütunu, bayt'larda " "değerin uzunluğunu gösteren iki-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13100,7 +13131,7 @@ msgstr "" "En fazla 16,777,215 (2^24 - 1) karakter uzunluğunda bir TEXT sütunu, " "bayt'larda değerin uzunluğunu gösteren üç-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13110,7 +13141,7 @@ msgstr "" "sütunu, bayt'larda değerin uzunluğunu gösteren dört-bayt'lık bir ön ek ile " "saklanır" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13118,7 +13149,7 @@ msgstr "" "CHAR türü benzeridir ama ikili değer olmayan karakter dizgileri yerine ikili " "değer bayt dizgilerini saklar" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13126,7 +13157,7 @@ msgstr "" "VARCHAR türü benzeridir ama ikili değer olmayan karakter dizgileri yerine " "ikili değer bayt dizgilerini saklar" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13134,7 +13165,7 @@ msgstr "" "En fazla 255 (2^8 - 1) bayt uzunluğunda bir BLOB sütunu, değerin uzunluğunu " "gösteren bir-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13142,7 +13173,7 @@ msgstr "" "En fazla 16,777,215 (2^24 - 1) bayt uzunluğunda bir BLOB sütunu, değerin " "uzunluğunu gösteren üç-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13150,7 +13181,7 @@ msgstr "" "En fazla 65,535 (2^16 - 1) bayt uzunluğunda bir BLOB sütunu, değerin " "uzunluğunu gösteren iki-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13158,7 +13189,7 @@ msgstr "" "En fazla 4,294,967,295 veya 4GiB (2^32 - 1) bayt uzunluğunda bir BLOB " "sütunu, değerin uzunluğunu gösteren dört-bayt'lık bir ön ek ile saklanır" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13166,43 +13197,43 @@ msgstr "" "Bir numaralandırma, 65,535 değerine kadar olan listeden seçilir ya da özel " "\" hata değeridir" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "64 üyeye kadar olan bir gruptan seçilen tek bir değerdir" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Herhangi bir türün geometrisini saklayabilen bir tür" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "2-boyutlu uzayda bir nokta" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Noktalar arasındaki doğrusal eklentili bir eğri" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Poligon" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Noktalar topluluğu" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Noktalar arasındaki doğrusal eklentili bir eğri topluluğu" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Poligonlar topluluğu" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Herhangi bir türün geometri nesneleri topluluğu" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13210,7 +13241,7 @@ msgstr "" "JSON (JavaScript Nesne Gösterimi) belgelerindeki verilere verimli erişimi " "etkinleştirir ve saklar" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13219,17 +13250,23 @@ msgstr "" "geleneksel eşlemesini varsayan, IPv6 adreslerinin depolanması için " "tasarlanmıştır" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Evrensel Benzersiz Tanımlayıcıyı (UUID) saklar" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Sayısal" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Tarih ve saat" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Uzaysal" @@ -13254,139 +13291,139 @@ msgstr "Yapılandırma kaydedilemedi" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "phpMyAdmin yapılandırma depolama veritabanına erişilemedi." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "En fazla: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Oca" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Şub" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Mar" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Haz" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Tem" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Ağu" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Eyl" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Eki" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Kas" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Ara" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Paz" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Sal" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Çar" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Per" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Cum" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Ctesi" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "ÖS" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "ÖÖ" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Kullanıcılar" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sırala" @@ -13559,7 +13596,7 @@ msgstr "yukarıdakinin ikisi birden" msgid "neither of the above" msgstr "yukarıdakinin hiçbiri" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Yapılandırma zaten var, kurulum etkisizleştirildi!" @@ -13594,7 +13631,7 @@ msgstr "Yok" msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13602,41 +13639,41 @@ msgstr "" "Bu işlemi yapmak için yeterli yetkilere sahip değilsiniz; Lütfen daha fazla " "ayrıntı için belgelere bakın" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Benzersiz" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Tam metin" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Uzaysal" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "İfade" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "ilk" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "%s sonrasına" @@ -13766,7 +13803,7 @@ msgstr "Motor" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13837,7 +13874,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14106,7 +14143,7 @@ msgid "Search this table" msgstr "Bu tabloda ara" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Sütun ekle" @@ -14135,7 +14172,7 @@ msgstr "Sıralamak için tıklayın." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14165,24 +14202,24 @@ msgstr "Veritabanı açıklaması:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Yazdır" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Paketlendi" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Önemlilik" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Tanımlı indeks yok!" @@ -14984,6 +15021,11 @@ msgstr[1] "%s tabloları" msgid "Sum" msgstr "Toplam" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Devam" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Buradan" @@ -15075,16 +15117,11 @@ msgstr "Sütunları merkezi listeden kaldır" msgid "Make consistent with central list" msgstr "Merkezi liste ile uyumlu yap" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Devam" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Emin misiniz?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15224,7 +15261,7 @@ msgstr "İzlenmeyen tablolar" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Tabloyu izle" @@ -15943,17 +15980,17 @@ msgid "Other options" msgstr "Diğer seçenekler" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Yeniden adlandır" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Birincil anahtar kaldırıldı." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "%s indeksi kaldırıldı." @@ -16274,11 +16311,35 @@ msgstr "" msgid "Verify" msgstr "Doğrula" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Lütfen FIDO U2F aygıtınızı bilgisayarınızın USB bağlantı noktasına bağlayın. " +"Ondan sonra aygıta kaydolmayı onaylayın." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Lütfen FIDO U2F aygıtınızı bilgisayarınızın USB bağlantı noktasına bağlayın. " +"Ondan sonra aygıta oturum açmayı onaylayın." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Görünüm:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Geri dön" @@ -16451,8 +16512,8 @@ msgstr "" "yükleyebilirsiniz." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "İki etkenli kimlik doğrulamasını yapılandır" @@ -16473,7 +16534,7 @@ msgstr "" "kullanarak oturum açabileceksiniz." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "İki etkenli kimlik doğrulamasını etkisizleştir" @@ -16490,6 +16551,7 @@ msgstr "" "uçlarını etkinleştirmek için isteğe bağlı bağımlılıklar yükleyin." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Aşağıdaki composer paketleri eksik:" @@ -16507,6 +16569,17 @@ msgstr "" "yapılandırılmamış." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"İki etkenli kimlik doğrulaması kullanılamaz, lütfen kimlik doğrulaması arka " +"uçlarını etkinleştirmek için isteğe bağlı bağımlılıklar yükleyin." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16514,7 +16587,7 @@ msgstr "" "İki etkenli kimlik doğrulaması kullanılamaz, kullanmak için phpMyAdmin " "yapılandırma depolamasını etkinleştirin." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "İki etkenli kimlik doğrulamasını etkinleştirdiniz." @@ -18664,7 +18737,7 @@ msgid "Start row:" msgstr "Başlangıç satırı:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Bölümler" @@ -18746,7 +18819,7 @@ msgstr "Merkezi sütunlara ekle" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Sütunları taşı" @@ -18754,33 +18827,33 @@ msgstr "Sütunları taşı" msgid "Move the columns by dragging them up and down." msgstr "Sütunları yukarı ve aşağı sürükleyerek taşıyın." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Düzenleme görünümü" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Normalleştir" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "İzleme görünümü" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "tablonun başı" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "%s sütunda indeks oluştur" @@ -19631,9 +19704,6 @@ msgstr "Sütun adları" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Evrensel Benzersiz Tanımlayıcıyı (UUID) saklar" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/tt.po b/po/tt.po index 236007020f..92ff3c9d76 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Tatar \n" "Language-Team: Tamazight (Central Atlas) \n" "Language-Team: Uyghur \n" "Language-Team: Ukrainian =2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.15-dev\n" #: libraries/advisory_rules_generic.php:9 @@ -1387,7 +1387,7 @@ msgstr "Пошук:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1399,8 +1399,8 @@ msgstr "Пошук:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "Виконати" @@ -1408,7 +1408,7 @@ msgstr "Виконати" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "Назва ключа" @@ -3332,9 +3332,9 @@ msgstr "Вставити заголовок таблиці" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3363,8 +3363,8 @@ msgstr "Ключ підпису" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3517,7 +3517,7 @@ msgstr "Перший день тижня" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3634,8 +3634,8 @@ msgstr "Відстеження змін" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3660,7 +3660,7 @@ msgid "Database structure" msgstr "Структура бази даних" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "Структура таблиці" @@ -4286,9 +4286,9 @@ msgstr "Пропускати заблоковані таблиці" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4306,17 +4306,17 @@ msgstr "Пропускати заблоковані таблиці" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "Редагувати" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "Тлумачити SQL" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4324,7 +4324,7 @@ msgid "Refresh" msgstr "Оновити" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "Створити PHP код" @@ -4590,14 +4590,14 @@ msgstr "Звичайно" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4641,8 +4641,8 @@ msgstr "Текст OpenDocument" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4685,8 +4685,8 @@ msgstr "CSV, використовуючи LOAD DATA" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4704,22 +4704,22 @@ msgstr "" "Неможливо зберегти налаштування, відправлена форма конфігурації містить " "помилки!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Існуючий файл конфігурації (%s) не читабельний." -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Невірні права доступу до конфігураційного файлу, він не повинен бути " "доступним для всіх!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "Не вдалося прочитати файл конфігурації!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4727,12 +4727,12 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "Невірний індекс сервера: %s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "Сервер %d" @@ -5044,7 +5044,7 @@ msgstr "" "Відсутні плагіни експорту. Будь ласка, перевірте правильність установки!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -5138,7 +5138,7 @@ msgid "Table %s has been emptied." msgstr "Таблиця %s очищено." #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -5160,9 +5160,9 @@ msgstr "невідоме" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -5184,7 +5184,7 @@ msgstr "невідоме" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -5198,7 +5198,7 @@ msgstr "Так" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "Змін немає" @@ -5253,7 +5253,7 @@ msgid "You may want to refresh the page." msgstr "Можливо, варто перезавантажити сторінку." #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "Помилковий тип!" @@ -5383,15 +5383,15 @@ msgstr "" "Розширення curl не знайдено i allow_url_fopen вимкнено. Тому деякi функцiї " "такi як звiт про помилку або перевiрка версiї вимкнено." -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "Неповні параметри" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "Успішно" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "Помилка" @@ -5407,16 +5407,16 @@ msgstr "" "проблеми." #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "Показані закладки" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "Закладка видалена." -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5426,7 +5426,7 @@ msgstr "" "допустимий максимум для вашої PHP конфігурації. Дивіться [doc@faq1-16]FAQ " "1.16[/doc]." -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." @@ -5434,7 +5434,7 @@ msgstr[0] "Імпорт завершився вдало, %d запит вико msgstr[1] "Імпорт завершився вдало, %d запити виконано." msgstr[2] "Імпорт завершився вдало, %d запитів виконано." -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5443,7 +5443,7 @@ msgstr "" "Вийшов час очікування виконання сценарію. Якщо Ви бажаєте завершити імпорт, " "будь ласка %s повторно відправте файл %s і імпорт буде відновлено." -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5452,7 +5452,7 @@ msgstr "" "що phpMyAdmin не зможе завершити процес імпорту до тих пір, поки не буде " "збільшено обмеження часу виконання php скриптів." -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператор \"DROP DATABASE\" вимкнений." @@ -5706,11 +5706,12 @@ msgstr "Будь ласка, виберіть стовпець(і) для інд #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "Попередній перегляд SQL" @@ -5724,7 +5725,7 @@ msgid "Matched rows:" msgstr "Підібрані рядки:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL-запит:" @@ -5798,7 +5799,8 @@ msgstr "Видалення вибраних користувачів" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5852,13 +5854,13 @@ msgstr "Інше" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -5967,45 +5969,45 @@ msgstr "Процесів" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "ЕБ" @@ -6025,7 +6027,7 @@ msgid "Traffic" msgstr "Трафік" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "Налаштування" @@ -6041,11 +6043,11 @@ msgstr "Будь ласка, додайте хоча б одну змінну в #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -6254,7 +6256,7 @@ msgstr "Аналіз результатів" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -6264,8 +6266,8 @@ msgstr "Статус" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6419,10 +6421,10 @@ msgstr "Параметри не знайдені!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6446,6 +6448,7 @@ msgstr "Застосувати" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "Завантаження…" @@ -6505,7 +6508,7 @@ msgstr "Додати первинний ключ" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "OK" @@ -6529,9 +6532,9 @@ msgstr "Змінити кодування" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6553,7 +6556,7 @@ msgstr "Змінити кодування" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6639,7 +6642,7 @@ msgid "Show query box" msgstr "Показати вікно запиту" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6770,7 +6773,7 @@ msgid "No partial dependencies selected!" msgstr "Немає обраних часткових залежностей!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6905,13 +6908,13 @@ msgstr "Вміст точки даних" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "Ігнорувати" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7484,7 +7487,13 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "Невірний ключ безпеки." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " @@ -7494,20 +7503,20 @@ msgstr "" "IndexedDB не працює у вашому браузері, а сховище конфігурації phpMyAdmin не " "налаштовано для цього." -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "Таблиця %s вже існує!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "Приховати" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7531,20 +7540,20 @@ msgid "No such column" msgstr "Немає такого стовпця" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "Рядок" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "Фрагмент конфігурації phpMyAdmin" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "Вставте це в свій config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "Не вдається імпортувати конфігурацію" @@ -7569,7 +7578,7 @@ msgstr "Рядки" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "Індекси" @@ -8354,7 +8363,7 @@ msgid "The number of threads that are not sleeping." msgstr "Кількість потоків в активному стані." #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "Відсутній параметр:" @@ -8455,7 +8464,7 @@ msgstr "Таблиця %s вже існує!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL запит було виконано вдало." @@ -8521,10 +8530,10 @@ msgstr "Подання" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "Помилка" @@ -8547,7 +8556,7 @@ msgid "Failed to get description of column %s!" msgstr "Не вдалося отримати опис стовпця %s!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8558,7 +8567,7 @@ msgstr "Первинний" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8568,7 +8577,7 @@ msgstr "Первинний" msgid "Index" msgstr "Індекс" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "Стовпці успішно переміщено." @@ -8617,7 +8626,7 @@ msgstr "Ви для цього маєте недостатньо прав!" msgid "View name can not be empty!" msgstr "Ім'я подання не може бути пустим!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -8743,7 +8752,7 @@ msgstr "Наступний запит не виконався: \"%s\"" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "Відповідь MySQL: " @@ -8831,7 +8840,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "Помилка в обробці запиту: Немає події з ім'ям %1$s в базі даних %2$s." -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8843,19 +8852,19 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin в даний час використовує стандартний " "часовий пояс сервера бази даних." -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "Не вдалося встановити конфігурацію співставлення підключення!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "Відсутні параметри з'єднання!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "Дивіться %sнашу документацію%s для отримання додаткової інформації." @@ -8878,23 +8887,23 @@ msgstr "Вставити" msgid "Del" msgstr "Видалити" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "Закладка пошуку:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "Нова закладка" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "Створити закладку" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "Оновити закладку" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "Видалити закладку" @@ -9146,8 +9155,8 @@ msgid "Full texts" msgstr "Повні тексти" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -9160,8 +9169,8 @@ msgid "Descending" msgstr "За спаданням" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -9173,41 +9182,41 @@ msgstr "За спаданням" msgid "Ascending" msgstr "За зростанням" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "Рядок видалено." -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "Анулювати" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11[/doc]." -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "Показано рядки %1s - %2s" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d всього, %2$d в запиті" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "всього %d" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "Запит виконувався %01.4f секунди." -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "Посилання не знайдено!" @@ -9548,7 +9557,7 @@ msgstr "" "порядковий номер." #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9578,13 +9587,13 @@ msgstr "Звіт" msgid "Automatically send report next time" msgstr "Автоматично надсилати звіт наступного разу" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -9592,18 +9601,18 @@ msgstr "" "Файл %s існує на сервері, змініть ім'я файлу, або відмітьте опцію на " "перезапис." -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" "Експорт необробленого запиту не підтримується для цього методу експорту." @@ -9678,74 +9687,74 @@ msgstr "" msgid "Session not found." msgstr "Сесію не знайдено." -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "Перейти до бази даних \"%s\"." -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "На функціональність %s впливає відома помилка, див. %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "SSL не використовується" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "SSL використовується з вимкненою перевіркою" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "SSL використовується без сертифікаційного органу" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "SSL використовується" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "Функція PHP password_hash() з параметрами за замовчуванням." -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "PHP функція password_hash()" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "Результати аналіза %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "Без PHP коду" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "Відправити запит" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "Профілювання" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Порядкове редагування" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "Статичний аналіз:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "%d помилки знайдені під час аналізу." @@ -9856,11 +9865,11 @@ msgstr "Функція" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9880,7 +9889,7 @@ msgstr "Функція" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9933,7 +9942,7 @@ msgstr "%1$s (приблизно %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9943,8 +9952,8 @@ msgstr "Переглянути" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9956,7 +9965,7 @@ msgstr "Пошук" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9966,8 +9975,8 @@ msgid "Insert" msgstr "Вставити" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9976,14 +9985,14 @@ msgid "Privileges" msgstr "Привілеї" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Операції" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Відстеження" @@ -9991,12 +10000,12 @@ msgstr "Відстеження" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Тригери" @@ -10006,11 +10015,11 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "Порожня база даних!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Запит" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Процедури" @@ -10020,15 +10029,15 @@ msgstr "Процедури" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Події" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Designer" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Головні стовпці" @@ -10038,12 +10047,12 @@ msgid "User accounts" msgstr "Облікові записи" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Бінарний журнал" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -10051,21 +10060,21 @@ msgid "Replication" msgstr "Реплікація" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Змінні" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Кодування" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Двигуни" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Плагіни" @@ -10170,11 +10179,11 @@ msgstr "Новий" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -10192,7 +10201,7 @@ msgstr "Новий" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -10220,8 +10229,8 @@ msgstr "Нова" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10647,7 +10656,7 @@ msgstr "Очистити" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Знищити" @@ -10881,18 +10890,18 @@ msgstr "Параметри дампу даних" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Дамп даних таблиці" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10904,7 +10913,7 @@ msgstr "Дамп даних таблиці" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10913,11 +10922,11 @@ msgstr "Нуль" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10934,9 +10943,9 @@ msgid "Default" msgstr "За замовчуванням" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10945,8 +10954,8 @@ msgid "Links to" msgstr "Посилання на" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10962,8 +10971,8 @@ msgid "Name" msgstr "Ім'я" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10972,23 +10981,23 @@ msgid "Definition" msgstr "Визначення" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Структура для представлення" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Дублююча структура для представлення" @@ -11093,11 +11102,11 @@ msgid "Database:" msgstr "База даних:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Дані:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Структура:" @@ -11122,15 +11131,15 @@ msgstr "Заголовок звіту:" msgid "Dumping data" msgstr "Скидання даних" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "Результат запиту" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Перегляд структури" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Вставити в" @@ -11206,7 +11215,7 @@ msgid "Data creation options" msgstr "Параметри створення даних" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Очистити таблицю перед вставкою" @@ -11290,7 +11299,7 @@ msgstr "Виявляється, ваша база даних використо #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "експорт псевдоніма не може надійно працювати у всіх випадках." @@ -11364,20 +11373,20 @@ msgstr "МЕДІА-ТИПИ ТАБЛИЦІ" msgid "RELATIONSHIPS FOR TABLE" msgstr "ЗВ'ЯЗКИ ТАБЛИЦІ" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Схоже, таблиця використовує тригери;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для подання %s, експортованого як таблиця" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(Див. нижче для фактичного подання)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "Помилка читання даних таблиці %s:" @@ -11689,7 +11698,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" @@ -11910,14 +11919,18 @@ msgstr "" "Забезпечує автентифікацію за допомогою програм HOTP та TOTP, таких як " "FreeOTP, Google Authenticator або Authy." -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "Ключ безпеки устаткування (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" "Забезпечує автентифікацію за допомогою апаратних жетонів безпеки, що " "підтримують FIDO U2F, таких як Yubikey." @@ -11947,6 +11960,24 @@ msgstr "Проста двофакторна аутентифікація" msgid "For testing purposes only!" msgstr "Для цілей тестування!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "Ключ безпеки устаткування (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" +"Забезпечує автентифікацію за допомогою апаратних жетонів безпеки, що " +"підтримують FIDO U2F, таких як Yubikey." + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12687,7 +12718,7 @@ msgstr "%s було вимкнене для цього MySQL серверу." msgid "This MySQL server does not support the %s storage engine." msgstr "Цей MySQL сервер не підтримує %s кодування." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ім'я первинного ключа повинно бути PRIMARY!" @@ -12700,39 +12731,39 @@ msgstr "Проблеми з індексами таблиці `%s`" msgid "Unknown table status:" msgstr "Невідомий статус таблиці:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Вихідна база даних '%s' не знайдена!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Цільова база даних \"%s\" не знайдена!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Неприпустима база даних:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Неприпустиме ім'я таблиці:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Помилка перейменування таблиці %1$s на %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %1$s перейменовано в %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Неможливо зберегти табличні налаштування UI!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12741,7 +12772,7 @@ msgstr "" "Помилка очищення табличних налаштувань UI (див. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12752,15 +12783,15 @@ msgstr "" "оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура " "таблиці." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Неможливо перейменувати індекс в PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Не визначено частини індексу!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Помилка при створенні зовнішнього ключа на %1$s (перевірте типи даних)" @@ -12919,14 +12950,14 @@ msgstr "Версія %1$s з %2$s була видалена." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версія %1$s створена, для відстеження %2$s активована." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Однобайтове ціле число, діапазон зі знаком - від -128 до 127, діапазон без " "знаку - від 0 до 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12934,7 +12965,7 @@ msgstr "" "Двобайтове ціле число, діапазон зі знаком від -32768 до 32767, діапазон без " "знаку від 0 до 65535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12942,7 +12973,7 @@ msgstr "" "Трибайтове ціле число, діапазон зі знаком від -8,388,608 до 8,388,607, " "діапазон без знаку від 0 до 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12950,7 +12981,7 @@ msgstr "" "Чотирибайтове ціле число, діапазон чисел зі знаком від -2,147,483,648 до " "2,147,483,647, діапазон чисел без знаку від 0 до 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12959,7 +12990,7 @@ msgstr "" "775 808 до 9 223 372 036 854 775 807, діапазон чисел без знака від 0 до 18 " "446 744 073 709 551 615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12968,7 +12999,7 @@ msgstr "" "повинна перевищувати 65 (типово 10), максимальна кількість десяткових (D) не " "повинна перевищувати 30 (типово 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12976,7 +13007,7 @@ msgstr "" "Мале число з плавучою крапкою, допустимі значення від-3.402823466E+38 " "до-1.175494351E-38, 0, і від 1.175494351E-38 до 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12986,7 +13017,7 @@ msgstr "" "від-1.7976931348623157E+308 до-2.2250738585072014E-308, 0, і від " "2.2250738585072014E-308 до 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" @@ -12994,7 +13025,7 @@ msgstr "" "Синонім для DOUBLE (виняток: у режимі REAL_AS_FLOAT SQL буде синонім для " "FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" @@ -13002,7 +13033,7 @@ msgstr "" "Тип поля-біт (M), збереже M біт для значення (за замовчуванням 1, максимум " "64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" @@ -13010,21 +13041,21 @@ msgstr "" "Синонім для TINYINT(1), значення нуля передбачає false, ненульові значення " "припускають true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Псевдонім для BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Дата, підтримується інтервал від %1$s до %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Комбінація дати і часу, підтримуваний інтервал від %1$s до %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -13032,12 +13063,12 @@ msgstr "" "Мітка часу, інтервал від 1970-01-01: 00: 00: 01 UTC до 2038-01-09 03: 14: 07 " "UTC у кількості секунд з початку епохи (1970-01-01 00: 00: 00 UTC)" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Час, інтервал від %1$s до %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -13046,7 +13077,7 @@ msgstr "" "дозволеними значеннями є від 70(1970) до 69(2069) або від 1901 до 2155 та " "0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" @@ -13054,7 +13085,7 @@ msgstr "" "Рядок фіксованої довжини (0-255, за замовчуванням 1), який завжди " "доповнюється пробілами з правого боку до заданої довжини під час зберігання" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -13063,7 +13094,7 @@ msgstr "" "Текстовий рядок змінної довжини (%s), максимально ефективна довжина " "відповідає максимальній довжині рядка таблиці" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -13071,7 +13102,7 @@ msgstr "" "Колонка TEXT з максимальною довжиною 255 (2 ^ 8 - 1) символів, зберігається " "з однобайтовим префіксом, що вказує довжину значення в байтах" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -13079,7 +13110,7 @@ msgstr "" "Колонка TEXT з максимальною довжиною 65,535 (2 ^ 16 - 1) символів, " "зберігається з двох-байтовим префіксом, що вказує довжину значення в байтах" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -13087,7 +13118,7 @@ msgstr "" "Сповпець TEXT з максимальною довжиною 16,777,215 (2^24 - 1) символів, " "зберігається з трьох-байтовим префіксом, що вказує довжину значення в байтах" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -13097,7 +13128,7 @@ msgstr "" "символів, зберігається з чотирьох-байтовим префіксом, що вказує довжину " "значення в байтах" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13105,7 +13136,7 @@ msgstr "" "Подібно до типу CHAR, але зберігає двійкові рядки байт, а не рядки " "небінарних символів" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" @@ -13113,7 +13144,7 @@ msgstr "" "Подібно до типу VARCHAR, але зберігає двійкові рядки байт, а не рядки " "небінарних символів" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -13121,7 +13152,7 @@ msgstr "" "Сповпець BLOB з максимальною довжиною 255 (2^8 - 1) байтів, зберігається з " "однобайтовим префіксом, що вказує довжину значення" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -13129,7 +13160,7 @@ msgstr "" "Сповпець BLOB з максимальною довжиною 16,777,215 (2^24 - 1) байтів, " "зберігається з трьох-байтовим префіксом, що вказує довжину значення" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -13137,7 +13168,7 @@ msgstr "" "Сповпець BLOB з максимальною довжиною 65,535 (2^16 - 1) байтів, зберігається " "з двох-байтовим префіксом, що вказує довжину значення" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -13146,7 +13177,7 @@ msgstr "" "байтів, зберігається з чотирьох-байтовим префіксом, що вказує довжину " "значення" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" @@ -13154,43 +13185,43 @@ msgstr "" "Реєстр типу даних, вибраних зі списку до 65,535 значень чи спеціального '' " "значення помилки" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "Єдине значення вибирається з набору до 64 елементів" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "Тип, що може зберігати геометрію будь-якого типу" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "Точка в двомірному просторі" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "Крива з лінійною інтерполяцією між точками" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Багатокутник" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Набір точок" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "Набір кривих з лінійною інтерполяцією між точками" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Колекція полігонів" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Колекція геометрії об'єктів будь-якого типу" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -13198,7 +13229,7 @@ msgstr "" "Зберігає та надає ефективний доступ до даних у JSON (JavaScript Object " "Notation) документах" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" @@ -13206,17 +13237,23 @@ msgstr "" "Призначений для зберігання адрес IPv6, а також адрес IPv4 за умови " "звичайного відображення адрес IPv4 в адреси IPv6" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "Зберігає універсальний унікальний ідентифікатор (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Числове" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Дата і час" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Просторове" @@ -13242,139 +13279,139 @@ msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "" "Не вдалося отримати доступ до бази даних сховища конфігурації phpMyAdmin." -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Січ" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Лют" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Бер" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Чрв" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Лип" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Сер" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Вер" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Жов" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Лис" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Гру" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "Нд" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "Пон" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "Вт" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "Сер" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "Чт" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "Пт" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "Сб" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "РМ" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "АМ" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Користувачі" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Сортувати" @@ -13547,7 +13584,7 @@ msgstr "обидва попередні" msgid "neither of the above" msgstr "жоден з попередніх" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "Конфігурації вже існує, установка відключена!" @@ -13582,7 +13619,7 @@ msgstr "Немає" msgid "As defined:" msgstr "Як визначено:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13590,41 +13627,41 @@ msgstr "" "У вас немає достатніх прав для виконання цієї операції; Будь ласка, " "зверніться до документації для отримання більш докладної інформації" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Унікальне" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "ПовнТекст" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Просторовий" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Вираз" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "перший" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "після %s" @@ -13754,7 +13791,7 @@ msgstr "Механізм" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13825,7 +13862,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -14095,7 +14132,7 @@ msgid "Search this table" msgstr "Шукати в таблиці" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Додати стовпець" @@ -14124,7 +14161,7 @@ msgstr "Натисніть для сортування." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -14154,24 +14191,24 @@ msgstr "Коментар бази даних:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "Друк" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Запакований" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Кількість елементів" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Індекс не визначено!" @@ -14976,6 +15013,11 @@ msgstr[2] "%s таблиць" msgid "Sum" msgstr "Всього" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Продовжити" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Від" @@ -15067,16 +15109,11 @@ msgstr "Видалити стовпці з основного списку" msgid "Make consistent with central list" msgstr "Зробити відповідно до головного списку" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Продовжити" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Ви впевнені?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -15218,7 +15255,7 @@ msgstr "Невідстежувані таблиці" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Відслідковувати таблицю" @@ -15937,17 +15974,17 @@ msgid "Other options" msgstr "Інші параметри" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "Перейменувати" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Первинний ключ було знищено." #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Індекс %s було знищено." @@ -16267,11 +16304,35 @@ msgstr "" msgid "Verify" msgstr "Перевірити" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" +"Будь ласка, підключіть пристрій FIDO U2F до USB-порту комп'ютера. Потім " +"підтвердіть реєстрацію на пристрої." + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" +"Будь ласка, підключіть пристрій FIDO U2F до USB-порту комп'ютера. Потім " +"підтвердіть логін на пристрої." + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "Подання:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "Повернутись" @@ -16444,8 +16505,8 @@ msgstr "" "замовчуванню." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "Налаштувати двофакторну аутентифікацію" @@ -16466,7 +16527,7 @@ msgstr "" "використовуючи лише пароль." #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "Вимкнути двофакторну аутентифікацію" @@ -16483,6 +16544,7 @@ msgstr "" "залежності, щоб увімкнути автентифікації автентичності." #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "Відсутні компоновачні пакети:" @@ -16500,6 +16562,17 @@ msgstr "" "запису." #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" +"Двофакторна автентифікація недоступна, будь ласка, встановіть необов'язкові " +"залежності, щоб увімкнути автентифікації автентичності." + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." @@ -16507,7 +16580,7 @@ msgstr "" "Двофакторна автентифікація недоступна, увімкніть сховище конфігурації " "phpMyAdmin для використання цього." -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "Ви ввімкнули двофакторну автентифікацію." @@ -18658,7 +18731,7 @@ msgid "Start row:" msgstr "Початковий рядок:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Розділи" @@ -18740,7 +18813,7 @@ msgstr "Додати до головних стовпців" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Перемістити стовпці" @@ -18748,33 +18821,33 @@ msgstr "Перемістити стовпці" msgid "Move the columns by dragging them up and down." msgstr "Переміщення стовпців шляхом перетягування їх вгору і вниз." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Огляд редагування" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "Упорядковувати" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Огляд відслідкувань" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпець(ів)" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "на початку таблиці" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "Створити індекс у %s стовпцях" @@ -19573,9 +19646,6 @@ msgstr "Ім'я стовпців" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "Псевдонім для BIGINT NOT NULL AUTO_INCREMENT" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "Зберігає універсальний унікальний ідентифікатор (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/ur.po b/po/ur.po index 923a4d9991..4eab781066 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2022-02-17 10:35+0000\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: Urdu \n" "Language-Team: Uzbek \n" "Language-Team: Uzbek (latin) \n" "Language-Team: Vietnamese %2$s)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9683,8 +9692,8 @@ msgstr "Duyệt" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9696,7 +9705,7 @@ msgstr "Tìm kiếm" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9706,8 +9715,8 @@ msgid "Insert" msgstr "Chèn" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9716,14 +9725,14 @@ msgid "Privileges" msgstr "Đặc quyền" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "Thao tác" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "Theo dõi" @@ -9731,12 +9740,12 @@ msgstr "Theo dõi" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "Bẫy" @@ -9746,11 +9755,11 @@ msgstr "Bẫy" msgid "Database seems to be empty!" msgstr "Cơ sở dữ liệu có vẻ là đang trống rỗng!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "Truy vấn" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "Thủ tục" @@ -9760,15 +9769,15 @@ msgstr "Thủ tục" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "Sự kiện" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "Bộ thiết kế" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "Các cột trung tâm" @@ -9778,12 +9787,12 @@ msgid "User accounts" msgstr "Các tài khoản người dùng" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "Nhật ký nhị phân" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9791,21 +9800,21 @@ msgid "Replication" msgstr "Bản sao" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "Biến" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "Bảng mã" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "Bộ máy" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "Phần bổ sung" @@ -9900,11 +9909,11 @@ msgstr "Mới" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9922,7 +9931,7 @@ msgstr "Mới" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9950,8 +9959,8 @@ msgstr "Mới" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10338,7 +10347,7 @@ msgstr "Cắt ngắn" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "Xóa" @@ -10565,18 +10574,18 @@ msgstr "Hiển thị hộp thoại tùy chọn" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "Đang đổ dữ liệu cho bảng" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10588,7 +10597,7 @@ msgstr "Đang đổ dữ liệu cho bảng" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10597,11 +10606,11 @@ msgstr "Null" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10618,9 +10627,9 @@ msgid "Default" msgstr "Mặc định" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10629,8 +10638,8 @@ msgid "Links to" msgstr "Liên kết tới" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10646,8 +10655,8 @@ msgid "Name" msgstr "Tên" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10656,23 +10665,23 @@ msgid "Definition" msgstr "Định nghĩa" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "Cấu trúc bảng cho bảng" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "Cấu trúc cho view" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "Cấu trúc đóng vai cho view" @@ -10777,11 +10786,11 @@ msgid "Database:" msgstr "Cơ sở dữ liệu:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "Dữ liệu:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "Cấu trúc:" @@ -10808,17 +10817,17 @@ msgstr "Tiêu đề báo cáo:" msgid "Dumping data" msgstr "Đang đổ dữ liệu" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "Kết quả truy vấn" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "Xem cấu trúc" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "Đóng vai" @@ -10887,7 +10896,7 @@ msgid "Data creation options" msgstr "Tùy chọn tạo tập tin:" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "Cắt ngắn bảng trước khi chèn" @@ -10967,7 +10976,7 @@ msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các hàm;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "xuất bí danh có thể không làm việc đúng trong mọi trường hợp" @@ -11046,20 +11055,20 @@ msgstr "MIME TYPES FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các bẫy;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "Cấu trúc cho view %s được xuất dạng một bảng" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, fuzzy, php-format #| msgid "Error reading data:" msgid "Error reading data for table %s:" @@ -11358,7 +11367,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y lúc %I:%M %p" @@ -11529,14 +11538,14 @@ msgid "" "Google Authenticator or Authy." msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11571,6 +11580,16 @@ msgstr "Xác thực kiểu Signon" msgid "For testing purposes only!" msgstr "" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12342,7 +12361,7 @@ msgstr "%s đã bị tắt cho máy chủ MySQL này." msgid "This MySQL server does not support the %s storage engine." msgstr "Máy chủ MySQL này không hỗ trợ bộ máy lưu trữ %s." -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Tên của khóa chính phải là \"PRIMARY\"!" @@ -12355,39 +12374,39 @@ msgstr "Trục trặc với chỉ mục của bảng “%s“" msgid "Unknown table status:" msgstr "Không hiểu các trạng thái bảng:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu nguồn “%s“!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu đích “%s“!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "Cơ sở dữ liệu không hợp lệ:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "Tên bảng không hợp lệ" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Gặp lỗi khi đổi tên bảng %1$s thành %2$s" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Bảng %1$s đã được đổi tên thành %2$s." -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "Không thể ghi lại bảng mới dùng" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12396,7 +12415,7 @@ msgstr "" "Gặp lỗi khi dọn dẹp tùy thích bảng UI (xem $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12407,15 +12426,15 @@ msgstr "" "không liên tục sau khi bạn làm mới trang này. Vui lòng kiểm tra xem cấu trúc " "bảng có bị thay đổi hay không." -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "Không thể đổi tên chỉ mục thành PRIMARY!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "Chưa định nghĩa bộ phận chỉ mục nào!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Gặp lỗi khi tạo khóa ngoại trên %1$s (kiểm tra lại kiểu dữ liệu)" @@ -12575,14 +12594,14 @@ msgstr "Phiên bản %1$s trên %2$s đã được tạo." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Phiên bản %1$s đã được tạo, việc theo dõi %2$s đang hoạt động." -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 #, fuzzy msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "Một số nguyên 1-byte, ký khoảng từ -128 đến 127, không ký khoảng từ 0 đến 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 #, fuzzy msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " @@ -12591,7 +12610,7 @@ msgstr "" "Số nguyên 2-byte, có ký hiệu phạm vi từ -32,768 đến 32,767,không ký hiệu " "phạm vi từ 0 đến 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 #, fuzzy msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " @@ -12600,7 +12619,7 @@ msgstr "" "Số nguyên 3-byte, có ký hiệu phạm vi là từ -8,388,608 đến 8,388,607, không " "ký hiệu phạm vi từ 0 đến 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 #, fuzzy msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " @@ -12609,7 +12628,7 @@ msgstr "" "Số nguyên 4-byte, có ký hiệu phạm vi là từ -2,147,483,648 đến 2,147,483,647, " "không ký hiệu phạm vi từ 0 đến 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 #, fuzzy msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " @@ -12619,7 +12638,7 @@ msgstr "" "đến 9,223,372,036,854,775,807, không ký hiệu phạm vi từ 0 đến " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 #, fuzzy msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " @@ -12628,7 +12647,7 @@ msgstr "" "Một điểm số cố định (M, D) - số lượng chữ số tối đa (M) là 65 (mặc định là " "10), số lượng thập phân tối đa D là 30 (mặc định là 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 #, fuzzy msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " @@ -12637,7 +12656,7 @@ msgstr "" "Một điểm nổi nhỏ, các giá trị cho phép là -3.402823466E + 38 đến " "-1.175494351E-38, 0 và 1.175494351E-38 đến 3.402823466E + 38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 #, fuzzy msgid "" "A double-precision floating-point number, allowable values are " @@ -12648,7 +12667,7 @@ msgstr "" "-1.7976931348623157E + 308 đến -2.2250738585072014E-308, 0 và " "2.2250738585072014E-308 đến 1.7976931348623157E + 308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 #, fuzzy msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " @@ -12657,7 +12676,7 @@ msgstr "" "Từ đồng nghĩa cho DOUBLE (ngoại lệ: trong chế độ REAL_AS_FLOAT SQL nó là từ " "đồng nghĩa cho FLOAT)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 #, fuzzy msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " @@ -12666,7 +12685,7 @@ msgstr "" "Một loại bit-field (M), lưu trữ M bit trên mỗi giá trị (mặc định là 1, tối " "đa là 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 #, fuzzy msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " @@ -12675,21 +12694,21 @@ msgstr "" "Một từ đồng nghĩa cho TINYINT (1), giá trị bằng 0 được xem là sai, các giá " "trị khác 0 được xem là đúng" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Bí danh cho BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "Kiểu ngày, vùng được hỗ trợ là từ %1$s đến %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, fuzzy, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "Một sự tổ hợp của ngày và giờ, phạm vi được hỗ trợ là %1$s đến %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 #, fuzzy msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " @@ -12699,12 +12718,12 @@ msgstr "" "UTC, được lưu trữ dưới dạng số giây kể từ kỷ nguyên (1970-01-01 00:00:00 " "UTC )" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "Giờ giấc, vùng là từ %1$s đến %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12712,7 +12731,7 @@ msgstr "" "Một năm với định dạng 4 chữ số (4, mặc định) hoặc 2 chữ số (2), giá trị cho " "phép là 70 (1970) đến 69 (2069) hoặc 1901 đến 2555 và 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 #, fuzzy msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " @@ -12721,7 +12740,7 @@ msgstr "" "Chuỗi có độ dài cố định (0-255, mặc định 1), luôn luôn được đệm bên phải với " "không gian với độ dài đã chỉ định khi được lưu trữ" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, fuzzy, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " @@ -12730,7 +12749,7 @@ msgstr "" "Chuỗi có độ dài thay đổi (%s), độ dài tối đa có hiệu quả phụ thuộc vào kích " "thước tối đa của dãy" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 #, fuzzy msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " @@ -12739,104 +12758,104 @@ msgstr "" "Một cột VĂN BẢN với độ dài tối đa là 255 (2^8 - 1) ký tự, được lưu trữ với " "tiền tố 1-byte cho biết độ dài của giá trị bằng byte" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "Một đa giác" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "Một tập hợp tọa độ" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "Một tập hợp của đa giác" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "Một tập hợp của các đối tượng hình dạng của bất kỳ kiểu nào" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" @@ -12844,23 +12863,27 @@ msgstr "" "Lưu trữ và bật truy cập hiệu quả đến dữ liệu trong tài liệu JSON (JavaScript " "Object Notation)" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "Dạng số" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "Ngày giờ" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -12889,85 +12912,85 @@ msgstr "Không thể ghi lại cấu hình" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "Thiếu các bảng lưu trữ cấu hình phpMyAdmin" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "T.Đa: %s%s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "Th1" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "Th2" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "Th3" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "Th4" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "Th5" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "Th6" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "Th7" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "Th8" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "Th9" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "Th10" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "Th10" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "Th12" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -12975,55 +12998,55 @@ msgid "Sun" msgstr "CN" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "T2" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "T3" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "T4" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "T5" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "T6" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "T7" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ngày, %s giờ, %s phút và %s giây" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "Người dùng" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "Sắp xếp" @@ -13196,7 +13219,7 @@ msgstr "cả hai thứ trên" msgid "neither of the above" msgstr "không có gì ở trên" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "" @@ -13231,7 +13254,7 @@ msgstr "Không" msgid "As defined:" msgstr "Định nghĩa là:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" @@ -13239,41 +13262,41 @@ msgstr "" "Bạn không có đủ đặc quyền cần thiết để thực hiện thao tác này; Vui lòng xem " "tài liệu để biết thêm chi tiết" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "Duy nhất" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "Toàn văn" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "Spatial" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "Biểu thức" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "đầu tiên" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "sau %s" @@ -13409,7 +13432,7 @@ msgstr "Bộ máy" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13474,7 +13497,7 @@ msgstr "" #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13749,7 +13772,7 @@ msgid "Search this table" msgstr "Tìm kiếm trong bảng này" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "Thêm cột" @@ -13778,7 +13801,7 @@ msgstr "Nhấn vào để sắp xếp." #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13810,24 +13833,24 @@ msgstr "Chú thích cơ sở dữ liệu:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "In" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "Đã đóng gói" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "Số lượng" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "Chưa định nghĩa chỉ mục!" @@ -14696,6 +14719,11 @@ msgstr[0] "%s bảng" msgid "Sum" msgstr "Tổng" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "Tiếp tục" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "Từ" @@ -14787,16 +14815,11 @@ msgstr "Xóa bỏ các cột khỏi danh sách trung tâm" msgid "Make consistent with central list" msgstr "Làm cho phù hợp với danh sách trung tâm" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "Tiếp tục" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "Bạn có chắc không?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14940,7 +14963,7 @@ msgstr "Các bảng chưa được theo dõi" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "Bảng theo dõi" @@ -15721,19 +15744,19 @@ msgid "Other options" msgstr "Những tùy chọn khác:" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 #, fuzzy #| msgid "Rename to" msgid "Rename" msgstr "Đổi tên thành" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "Khóa chính đã được xóa bỏ" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "Chỉ mục %s đã được xóa bỏ." @@ -16049,6 +16072,17 @@ msgstr "" msgid "Verify" msgstr "" +#: templates/login/twofactor/webauthn_creation.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "" + +#: templates/login/twofactor/webauthn_request.twig:1 +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -16056,6 +16090,7 @@ msgid "View:" msgstr "Trình bày:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -16244,8 +16279,8 @@ msgstr "" "định." #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 #, fuzzy #| msgid "Config authentication" msgid "Configure two-factor authentication" @@ -16270,7 +16305,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 #, fuzzy #| msgid "Config authentication" msgid "Disable two-factor authentication" @@ -16289,6 +16324,7 @@ msgid "" msgstr "" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "" @@ -16303,11 +16339,16 @@ msgstr "" #: templates/preferences/two_factor/main.twig:26 msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "" + +#: templates/preferences/two_factor/main.twig:37 +msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "" @@ -18601,7 +18642,7 @@ msgid "Start row:" msgstr "Hàng bắt đầu:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "Phân vùng" @@ -18685,7 +18726,7 @@ msgstr "Thêm vào các cột trung tâm" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "Di chuyển các cột" @@ -18693,33 +18734,33 @@ msgstr "Di chuyển các cột" msgid "Move the columns by dragging them up and down." msgstr "Di chuyển các cột bằng cách kéo chúng lên hoặc xuống." -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "Sửa view" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "Đề xuất cấu trúc bảng" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "Xem vết" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "Thêm %s cột" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "tại đầu của bảng" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, fuzzy, php-format #| msgid "Create an index on  %s columns" msgid "Create an index on %s columns" diff --git a/po/vls.po b/po/vls.po index 81c5d1d771..44e381eae1 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2019-04-27 17:19+0000\n" "Last-Translator: William Desportes \n" "Language-Team: West Flemish \n" "Language-Team: Chinese (Simplified) %2$s 附近)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9356,8 +9365,8 @@ msgstr "浏览" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9369,7 +9378,7 @@ msgstr "搜索" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9379,8 +9388,8 @@ msgid "Insert" msgstr "插入" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9389,14 +9398,14 @@ msgid "Privileges" msgstr "权限" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "操作" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "追踪" @@ -9404,12 +9413,12 @@ msgstr "追踪" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "触发器" @@ -9419,11 +9428,11 @@ msgstr "触发器" msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "查询" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "程序" @@ -9433,15 +9442,15 @@ msgstr "程序" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "事件" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "设计器" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "文本框列" @@ -9451,12 +9460,12 @@ msgid "User accounts" msgstr "账户" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "二进制日志" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9464,21 +9473,21 @@ msgid "Replication" msgstr "复制" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "变量" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "字符集" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "引擎" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "插件" @@ -9571,11 +9580,11 @@ msgstr "新建" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9593,7 +9602,7 @@ msgstr "新建" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9621,8 +9630,8 @@ msgstr "新建" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10020,7 +10029,7 @@ msgstr "清空" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "删除" @@ -10248,18 +10257,18 @@ msgstr "数据转储选项" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "转存表中的数据" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10271,7 +10280,7 @@ msgstr "转存表中的数据" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10280,11 +10289,11 @@ msgstr "空" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10301,9 +10310,9 @@ msgid "Default" msgstr "默认" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10312,8 +10321,8 @@ msgid "Links to" msgstr "链接到" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10329,8 +10338,8 @@ msgid "Name" msgstr "名字" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10339,23 +10348,23 @@ msgid "Definition" msgstr "定义" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "表的结构" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "视图结构" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -10458,11 +10467,11 @@ msgid "Database:" msgstr "数据库:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "数据:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "结构:" @@ -10487,15 +10496,15 @@ msgstr "报告标题:" msgid "Dumping data" msgstr "转存数据" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 msgid "Query result data" msgstr "查询结果数据" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "查看结构" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "代替" @@ -10565,7 +10574,7 @@ msgid "Data creation options" msgstr "数据创建选项" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "插入之前先把表清空(truncate)" @@ -10644,7 +10653,7 @@ msgstr "您的数据库似乎使用例程;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "在所有情况下,别名导出可能无法可靠地运行。" @@ -10718,20 +10727,20 @@ msgstr "媒体类型表" msgid "RELATIONSHIPS FOR TABLE" msgstr "表的关系" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "您的表似乎使用了触发器;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "视图结构%s作为一个表导出" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(参见下面的实际视图)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "读取表 %s 的数据时发生错误:" @@ -11033,7 +11042,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d %H:%M:%S" @@ -11231,14 +11240,18 @@ msgid "" msgstr "" "使用HOTP和TOTP应用程序(如FreeOTP,Google身份验证器或Authy)提供身份验证。" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "硬件安全密钥(FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "使用支持FIDO U2F的硬件安全令牌(如Yubikey)提供身份验证。" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11266,6 +11279,22 @@ msgstr "简单的双因素身份验证" msgid "For testing purposes only!" msgstr "仅用于测试目的!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "硬件安全密钥(FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F, such as a Yubikey." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "使用支持FIDO U2F的硬件安全令牌(如Yubikey)提供身份验证。" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -11987,7 +12016,7 @@ msgstr "%s 在该 MySQL 服务器上被禁止了。" msgid "This MySQL server does not support the %s storage engine." msgstr "该 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主键的名称必须称为 “PRIMARY”!" @@ -12000,46 +12029,46 @@ msgstr "数据表 `%s` 的索引存在问题" msgid "Unknown table status:" msgstr "未知表状态:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "未找到源数据库 `%s`!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "未找到目标数据库 `%s`!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "无效的数据库:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "无效的数据表名:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "将表 %1$s 改名为 %2$s 失败!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "已将表 %1$s 改名为 %2$s。" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "无法保存表界面设置!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "清除表界面设置失败(参见 $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12048,15 +12077,15 @@ msgid "" msgstr "" "无法保存用户界面属性“%s”。修改将在刷新本页后丢失。请检查表结构是否已修改。" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "无法将索引改为主键 (PRIMARY) !" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" @@ -12212,25 +12241,25 @@ msgstr "%2$s的版本%1$s被删除了。" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %1$s,%2$s 的追踪已启用。" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "1 字节整数,有符号范围从 -128 到 127,无符号范围从 0 到 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "2 字节整数,有符号范围从 -32768 到 32767,无符号范围从 0 到 65535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" "3 字节整数,有符号范围从 -8388608 到 8388607,无符号范围从 0 到 16777215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12238,7 +12267,7 @@ msgstr "" "4 字节整数,有符号范围从 -2147483648 到 2147483647,无符号范围从 0 到 " "4294967295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12246,7 +12275,7 @@ msgstr "" "8 字节整数,有符号范围从 -9223372036854775808 到 9223372036854775807,无符号" "范围从 0 到 18446744073709551615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" @@ -12254,7 +12283,7 @@ msgstr "" "定点数(M,D)- 整数部分(M)最大为 65(默认 10),小数部分(D)最大为 30(默" "认 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12262,7 +12291,7 @@ msgstr "" "单精度浮点数,取值范围从 -3.402823466E+38 到 -1.175494351E-38、0 以及从 " "1.175494351E-38 到 3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12272,39 +12301,39 @@ msgstr "" "-2.2250738585072014E-308、0 以及从 2.2250738585072014E-308 到 " "1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "DOUBLE 的别名(例外:REAL_AS_FLOAT SQL 模式时它是 FLOAT 的别名)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "位类型(M),每个值存储 M 位(默认为 1,最大为 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "TINYINT(1) 的别名,零值表示假,非零值表示真" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE 的别名" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "日期,支持的范围从 %1$s 到 %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "日期与时间,支持的范围从 %1$s 到 %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12312,12 +12341,12 @@ msgstr "" "时间戳,范围从 1970-01-01 00:00:01 UTC 到 2038-01-09 03:14:07 UTC,存储为自纪" "元(1970-01-01 00:00:00 UTC)起的秒数" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "时间,范围从 %1$s 到 %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12325,20 +12354,20 @@ msgstr "" "四位数(4,默认)或两位数(2)的年份,取值范围从 70(1970)到 69(2069)或从 " "1901 到 2155 以及 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "定长(0-255,默认 1)字符串,存储时会向右边补足空格到指定长度" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "变长(%s)字符串,最大有效长度取决于最大行大小" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12346,7 +12375,7 @@ msgstr "" "最多存储 255(2^8 - 1)字节的文本字段,存储时在内容前使用 1 字节表示内容的字" "节数" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12354,7 +12383,7 @@ msgstr "" "最多存储 65535(2^16 - 1)字节的文本字段,存储时在内容前使用 2 字节表示内容的" "字节数" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12362,7 +12391,7 @@ msgstr "" "最多存储 16777215(2^24 - 1)字节的文本字段,存储时在内容前使用 3 字节表示内" "容的字节数" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12371,19 +12400,19 @@ msgstr "" "最多存储 4294967295 字节即 4GB(2^32 - 1)的文本字段,存储时在内容前使用 4 字" "节表示内容的字节数" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "类似于 CHAR 类型,但其存储的是二进制字节串而不是非二进制字符串" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "类似于 VARCHAR 类型,但其存储的是二进制字节串而不是非二进制字符串" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12391,7 +12420,7 @@ msgstr "" "最多存储 255(2^8 - 1)字节的 BLOB 字段,存储时在内容前使用 1 字节表示内容的" "字节数" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -12399,7 +12428,7 @@ msgstr "" "最多存储 16777215(2^24 - 1)字节的 BLOB 字段,存储时在内容前使用 3 字节表示" "内容的字节数" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -12407,7 +12436,7 @@ msgstr "" "最多存储 65535(2^16 - 1)字节的 BLOB 字段,存储时在内容前使用 2 字节表示内容" "的字节数" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -12415,71 +12444,77 @@ msgstr "" "最多存储 4294967295 字节即 4GB(2^32 - 1)的 BLOB 字段,存储时在内容前使用 4 " "字节表示内容的字节数" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "枚举,可从最多 65535 个值的列表中选择或特殊的错误值 ''" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "可从最多 64 个成员中选择集合为一个值" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "一种能存储任意类型几何体的类型" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "二维空间中的点" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "点之间的线性插值曲线" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "多边形" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "点的集合" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "点之间的线性插值曲线的集合" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "多边形的集合" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "任意类型几何体对象的集合" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "存储并可高效访问 JSON (JavaScript 对象) 文档中的数据" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "旨在存储IPv6地址以及假定IPv4地址到IPv6地址的常规映射的IPv4地址" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "存储一个通用唯一识别码(UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "数字" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "日期与时间" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "空间" @@ -12504,139 +12539,139 @@ msgstr "无法保存设置" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "无法访问phpMyAdmin配置存储数据库。" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "最大限制:%s %s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "一月" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "二月" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "三月" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "六月" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "七月" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "八月" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "九月" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "十月" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "十一月" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "十二月" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 msgctxt "Short week day name for Sunday" msgid "Sun" msgstr "周日" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "周一" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "周二" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "周三" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "周四" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "周五" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "周六" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "下午" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "上午" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "用户" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "排序" @@ -12809,7 +12844,7 @@ msgstr "以上兼有" msgid "neither of the above" msgstr "以上均不" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "配置已存在,设置已禁用!" @@ -12844,47 +12879,47 @@ msgstr "无" msgid "As defined:" msgstr "定义:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" msgstr "您的权限不足以执行此操作,请参考说明文档了解详情" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "唯一" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "全文搜索" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "空间" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "表达式" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "第一" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "于 %s 之后" @@ -13013,7 +13048,7 @@ msgstr "引擎" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13080,7 +13115,7 @@ msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号, #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13345,7 +13380,7 @@ msgid "Search this table" msgstr "在表中搜索" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "添加字段" @@ -13374,7 +13409,7 @@ msgstr "点击以排序。" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13404,24 +13439,24 @@ msgstr "数据库备注:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "打印" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "紧凑" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "基数" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "没有已定义的索引!" @@ -14216,6 +14251,11 @@ msgstr[0] "%s 张表" msgid "Sum" msgstr "总计" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "继续" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "从" @@ -14307,16 +14347,11 @@ msgstr "从中央列表中删除列" msgid "Make consistent with central list" msgstr "与中央列表保持一致" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "继续" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "请核实信息?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14454,7 +14489,7 @@ msgstr "未追踪的表" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "追踪表" @@ -15155,17 +15190,17 @@ msgid "Other options" msgstr "其它选项" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "改名" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "已删除主键。" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "已删除索引 %s。" @@ -15475,11 +15510,31 @@ msgstr "请将您的FIDO U2F设备连接到计算机的USB端口。然后确认 msgid "Verify" msgstr "验证" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "请将您的FIDO U2F设备连接到计算机的USB端口。然后在设备上确认注册。" + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "请将您的FIDO U2F设备连接到计算机的USB端口。然后确认在设备上登录。" + #: templates/menu/breadcrumbs.twig:27 msgid "View:" msgstr "视图:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "回去" @@ -15645,8 +15700,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "你可以重置并将所有设置恢复为默认值。" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "配置双因素身份验证" @@ -15665,7 +15720,7 @@ msgid "" msgstr "通过禁用双因素身份验证,您将仅需使用密码登录。" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "禁用双因素身份验证" @@ -15680,6 +15735,7 @@ msgid "" msgstr "双因素身份验证不可用,请安装可选的依赖项以启用身份验证后端。" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "以下composer包缺失:" @@ -15693,12 +15749,21 @@ msgid "" msgstr "可以使用双因素身份验证,但不为此账户配置。" #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "双因素身份验证不可用,请安装可选的依赖项以启用身份验证后端。" + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "双因素身份验证不可用,启用phpMyAdmin配置存储以使用它。" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "您已启用双因素身份验证。" @@ -17773,7 +17838,7 @@ msgid "Start row:" msgstr "起始行:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "分区" @@ -17855,7 +17920,7 @@ msgstr "添加到中央列" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "移动字段" @@ -17863,33 +17928,33 @@ msgstr "移动字段" msgid "Move the columns by dragging them up and down." msgstr "请通过拖拽来移动字段的位置。" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "编辑视图" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "规划表结构" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "规范化" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "跟踪视图" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "于表开头" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "在第 %s 个字段创建索引" @@ -18667,9 +18732,6 @@ msgstr "字段名" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE 的别名" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "存储一个通用唯一识别码(UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5528a0d608..259a2b444e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2022-09-29 00:17-0300\n" +"POT-Creation-Date: 2023-01-16 18:38-0300\n" "PO-Revision-Date: 2023-01-04 00:55+0000\n" "Last-Translator: yangyangdaji <1504305527@qq.com>\n" "Language-Team: Chinese (Traditional) this blog entry" msgstr "" "特別在某些會大量寫入資料到 InnoDB 資料表的系統上,應設定 " -"{innodb_log_file_size} 為 {innodb_buffer_pool_size} 的 " -"25%。不論如何,這個值越大,在資料庫當機時還原資料庫的時間將越長," -"所以這個值不應該高於 256 MB。請注意,若要修改這個值," -"必須先關閉伺服器並刪除所有已有的 InnoDB 的記錄檔,再在 my.cnf " -"設定新的值,然後啟動伺服器並檢查錯誤記錄查看是否一切順利。請參閱此部落格文章" #: libraries/advisory_rules_generic.php:626 @@ -929,12 +929,12 @@ msgid "" msgstr "" "通常將 {innodb_log_file_size} 設為 {innodb_buffer_pool_size} 的 25% 就足夠。" "過大的 {innodb_log_file_size} 會增加資料庫當機後資料還原的時間,請參閱此篇文章。若要修改這個值," -"必須先關閉伺服器並刪除所有已有的 InnoDB 的記錄檔,再在 my.cnf " -"設定新的值,然後啟動伺服器並檢查錯誤記錄查看是否一切順利。請參閱此部落格文章" +"href=\"https://www.percona.com/blog/2006/07/03/choosing-proper-" +"innodb_log_file_size/\">此篇文章。若要修改這個值,必須先關閉伺服器並刪除" +"所有已有的 InnoDB 的記錄檔,再在 my.cnf 設定新的值,然後啟動伺服器並檢查錯誤" +"記錄查看是否一切順利。請參閱此部落格文" +"章" #: libraries/advisory_rules_generic.php:676 #, php-format @@ -963,14 +963,13 @@ msgid "" "href=\"https://www.percona.com/blog/2007/11/03/choosing-" "innodb_buffer_pool_size/\">this article" msgstr "" -"InnoDB 緩衝池對 InnoDB " -"資料表的效能有重大影響。請將剩餘的記憶體分配給此緩衝區。如果資料庫伺服器僅以 " -"InnoDB 作為儲存引擎,又沒有運行其他服務 (如網頁伺服器),可以將最高 80% " -"的可用記憶體分配給它。如果情況並非如此,請仔細評估其他服務和非 InnoDB 資料表" -"的記憶體消耗狀況,並相對應地設定此數值。如果將之定得太高,系統會開始將記憶體" -"資料置換到磁碟,因而大大降低效能。請參閱這篇文章" +"InnoDB 緩衝池對 InnoDB 資料表的效能有重大影響。請將剩餘的記憶體分配給此緩衝" +"區。如果資料庫伺服器僅以 InnoDB 作為儲存引擎,又沒有運行其他服務 (如網頁伺服" +"器),可以將最高 80% 的可用記憶體分配給它。如果情況並非如此,請仔細評估其他服" +"務和非 InnoDB 資料表的記憶體消耗狀況,並相對應地設定此數值。如果將之定得太" +"高,系統會開始將記憶體資料置換到磁碟,因而大大降低效能。請參閱這篇文章" #: libraries/advisory_rules_generic.php:697 #, php-format @@ -1268,7 +1267,7 @@ msgstr "搜尋:" #: templates/server/user_groups/edit_user_groups.twig:21 #: templates/sql/query.twig:147 templates/sql/query.twig:198 #: templates/table/find_replace/index.twig:62 -#: templates/table/index_form.twig:243 +#: templates/table/index_form.twig:245 #: templates/table/insert/actions_panel.twig:37 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:15 #: templates/table/operations/index.twig:38 @@ -1280,8 +1279,8 @@ msgstr "搜尋:" #: templates/table/search/index.twig:172 templates/table/search/index.twig:196 #: templates/table/start_and_number_of_rows_fieldset.twig:15 #: templates/table/structure/display_structure.twig:343 -#: templates/table/structure/display_structure.twig:437 -#: templates/table/structure/display_structure.twig:555 +#: templates/table/structure/display_structure.twig:454 +#: templates/table/structure/display_structure.twig:572 #: templates/table/zoom_search/index.twig:152 templates/view_create.twig:116 msgid "Go" msgstr "執行" @@ -1289,7 +1288,7 @@ msgstr "執行" #: libraries/classes/BrowseForeigners.php:221 #: libraries/classes/BrowseForeigners.php:225 #: templates/database/data_dictionary/index.twig:73 templates/indexes.twig:16 -#: templates/table/structure/display_structure.twig:458 +#: templates/table/structure/display_structure.twig:475 #: templates/table/tracking/structure_snapshot_indexes.twig:5 msgid "Keyname" msgstr "鍵名" @@ -3076,9 +3075,9 @@ msgstr "包含資料表標題" #: libraries/classes/Config/Descriptions.php:695 #: libraries/classes/Config/Descriptions.php:731 #: libraries/classes/Plugins/Export/ExportHtmlword.php:386 -#: libraries/classes/Plugins/Export/ExportLatex.php:544 -#: libraries/classes/Plugins/Export/ExportOdt.php:490 -#: libraries/classes/Plugins/Export/ExportTexytext.php:388 +#: libraries/classes/Plugins/Export/ExportLatex.php:551 +#: libraries/classes/Plugins/Export/ExportOdt.php:495 +#: libraries/classes/Plugins/Export/ExportTexytext.php:395 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:548 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:685 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:708 @@ -3107,8 +3106,8 @@ msgstr "標籤鍵值" #: libraries/classes/Config/Descriptions.php:696 #: libraries/classes/Config/Descriptions.php:734 #: libraries/classes/Plugins/Export/ExportHtmlword.php:393 -#: libraries/classes/Plugins/Export/ExportOdt.php:497 -#: libraries/classes/Plugins/Export/ExportTexytext.php:393 +#: libraries/classes/Plugins/Export/ExportOdt.php:502 +#: libraries/classes/Plugins/Export/ExportTexytext.php:400 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:556 #: templates/columns_definitions/table_fields_definitions.twig:71 #: templates/database/data_dictionary/index.twig:31 @@ -3263,7 +3262,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:748 #: libraries/classes/Config/Descriptions.php:759 libraries/classes/Menu.php:480 -#: libraries/classes/Util.php:1944 libraries/config.values.php:155 +#: libraries/classes/Util.php:1960 libraries/config.values.php:155 #: templates/navigation/tree/database_select.twig:10 #: templates/server/databases/index.twig:3 templates/server/export/index.twig:7 #: templates/server/export/index.twig:14 @@ -3380,8 +3379,8 @@ msgstr "修改追蹤" #: libraries/classes/Config/Descriptions.php:775 libraries/classes/Menu.php:255 #: libraries/classes/Menu.php:362 libraries/classes/Menu.php:485 #: libraries/classes/Navigation/Nodes/NodeTable.php:310 -#: libraries/classes/Util.php:1478 libraries/classes/Util.php:1945 -#: libraries/classes/Util.php:1960 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1486 libraries/classes/Util.php:1961 +#: libraries/classes/Util.php:1976 libraries/classes/Util.php:1993 #: libraries/config.values.php:62 libraries/config.values.php:76 #: libraries/config.values.php:167 libraries/config.values.php:177 msgid "SQL" @@ -3406,7 +3405,7 @@ msgid "Database structure" msgstr "資料庫結構" #: libraries/classes/Config/Descriptions.php:780 -#: libraries/classes/Plugins/Export/ExportPdf.php:258 +#: libraries/classes/Plugins/Export/ExportPdf.php:267 #: templates/table/page_with_secondary_tabs.twig:5 msgid "Table structure" msgstr "資料表結構" @@ -4032,9 +4031,9 @@ msgstr "忽略鎖定的資料表" #: libraries/classes/Config/Descriptions.php:946 #: libraries/classes/ConfigStorage/UserGroups.php:124 #: libraries/classes/Controllers/JavaScriptMessagesController.php:388 -#: libraries/classes/Display/Results.php:2976 -#: libraries/classes/Html/Generator.php:664 -#: libraries/classes/Html/Generator.php:915 +#: libraries/classes/Display/Results.php:2967 +#: libraries/classes/Html/Generator.php:670 +#: libraries/classes/Html/Generator.php:921 #: templates/console/bookmark_content.twig:7 templates/console/display.twig:31 #: templates/console/display.twig:175 #: templates/database/central_columns/main.twig:265 @@ -4052,17 +4051,17 @@ msgstr "忽略鎖定的資料表" #: templates/display/results/table.twig:228 templates/indexes.twig:34 #: templates/server/variables/index.twig:41 #: templates/server/variables/index.twig:44 templates/setup/home/index.twig:63 -#: templates/table/structure/display_structure.twig:480 +#: templates/table/structure/display_structure.twig:497 msgid "Edit" msgstr "編輯" #: libraries/classes/Config/Descriptions.php:947 -#: libraries/classes/Html/Generator.php:632 +#: libraries/classes/Html/Generator.php:638 msgid "Explain SQL" msgstr "SQL 語句分析" #: libraries/classes/Config/Descriptions.php:948 -#: libraries/classes/Export.php:592 libraries/classes/Html/Generator.php:712 +#: libraries/classes/Export.php:594 libraries/classes/Html/Generator.php:718 #: templates/console/display.twig:99 #: templates/server/status/processes/index.twig:19 #: templates/server/status/variables/index.twig:42 @@ -4070,7 +4069,7 @@ msgid "Refresh" msgstr "重新整理" #: libraries/classes/Config/Descriptions.php:949 -#: libraries/classes/Html/Generator.php:696 +#: libraries/classes/Html/Generator.php:702 msgid "Create PHP code" msgstr "建立 PHP 程式碼" @@ -4342,14 +4341,14 @@ msgstr "自訂" #: libraries/classes/Config/Forms/User/ExportForm.php:55 #: libraries/classes/Config/Forms/User/ExportForm.php:100 #: libraries/classes/Config/Forms/User/ExportForm.php:128 -#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:710 #: libraries/classes/Import.php:1299 libraries/classes/Menu.php:247 #: libraries/classes/Menu.php:357 #: libraries/classes/Navigation/Nodes/NodeColumn.php:42 #: libraries/classes/Navigation/Nodes/NodeDatabase.php:50 #: libraries/classes/Navigation/Nodes/NodeTable.php:301 -#: libraries/classes/Util.php:1477 libraries/classes/Util.php:1959 -#: libraries/classes/Util.php:1976 libraries/config.values.php:60 +#: libraries/classes/Util.php:1485 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1992 libraries/config.values.php:60 #: libraries/config.values.php:74 libraries/config.values.php:165 #: libraries/config.values.php:175 #: templates/columns_definitions/table_fields_definitions.twig:4 @@ -4393,8 +4392,8 @@ msgstr "OpenDocument/OpenOffice 文字檔" #: libraries/classes/Controllers/JavaScriptMessagesController.php:373 #: libraries/classes/Menu.php:277 libraries/classes/Menu.php:382 #: libraries/classes/Menu.php:513 libraries/classes/Server/Privileges.php:1506 -#: libraries/classes/Util.php:1948 libraries/classes/Util.php:1963 -#: libraries/classes/Util.php:1980 templates/database/events/index.twig:16 +#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1996 templates/database/events/index.twig:16 #: templates/database/events/index.twig:17 #: templates/database/events/index.twig:86 #: templates/database/events/row.twig:36 @@ -4437,8 +4436,8 @@ msgstr "使用 LOAD DATA 的 CSV" #: libraries/classes/Config/Forms/User/ImportForm.php:67 #: libraries/classes/Controllers/JavaScriptMessagesController.php:310 #: libraries/classes/Menu.php:286 libraries/classes/Menu.php:392 -#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1949 -#: libraries/classes/Util.php:1964 libraries/classes/Util.php:1981 +#: libraries/classes/Menu.php:518 libraries/classes/Util.php:1965 +#: libraries/classes/Util.php:1980 libraries/classes/Util.php:1997 #: templates/import.twig:3 templates/import.twig:199 #: templates/preferences/header.twig:48 #: templates/preferences/manage/main.twig:11 @@ -4454,31 +4453,31 @@ msgstr "預設轉換" msgid "Cannot save settings, submitted configuration form contains errors!" msgstr "無法儲存設定,送出的設定值表單內容錯誤!" -#: libraries/classes/Config.php:646 +#: libraries/classes/Config.php:652 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "無法讀取現有設定檔 (%s)。" -#: libraries/classes/Config.php:684 +#: libraries/classes/Config.php:690 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "設定檔權限錯誤,檔案不應讓所有人可以寫入!" -#: libraries/classes/Config.php:699 +#: libraries/classes/Config.php:705 msgid "Failed to read configuration file!" msgstr "無法讀取設定檔!" -#: libraries/classes/Config.php:701 +#: libraries/classes/Config.php:707 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "此情況通常是有語法錯誤,請檢查以下顯示的錯誤。" -#: libraries/classes/Config.php:1228 +#: libraries/classes/Config.php:1234 #, php-format msgid "Invalid server index: %s" msgstr "伺服器索引無效:%s" -#: libraries/classes/Config.php:1241 +#: libraries/classes/Config.php:1247 #, php-format msgid "Server %d" msgstr "伺服器 %d" @@ -4754,7 +4753,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "無法載入匯出外掛程式,請檢查安裝!" #: libraries/classes/Controllers/Database/ImportController.php:72 -#: libraries/classes/Controllers/Import/ImportController.php:564 +#: libraries/classes/Controllers/Import/ImportController.php:570 #: libraries/classes/Controllers/Server/ImportController.php:58 #: libraries/classes/Controllers/Table/ImportController.php:69 msgid "Could not load import plugins, please check your installation!" @@ -4844,7 +4843,7 @@ msgid "Table %s has been emptied." msgstr "已清空資料表 %s。" #: libraries/classes/Controllers/Database/StructureController.php:577 -#: libraries/classes/Display/Results.php:3982 +#: libraries/classes/Display/Results.php:3980 #, php-format msgid "" "This view has at least this number of rows. Please refer to " @@ -4864,9 +4863,9 @@ msgstr "未知" #: libraries/classes/Controllers/Table/Structure/PrimaryController.php:82 #: libraries/classes/IndexColumn.php:164 libraries/classes/Index.php:525 #: libraries/classes/Plugins/Export/ExportHtmlword.php:633 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:783 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:788 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:754 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -4888,7 +4887,7 @@ msgstr "未知" #: templates/table/delete/confirm.twig:28 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:19 #: templates/table/structure/primary.twig:22 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -4902,7 +4901,7 @@ msgstr "是" #: libraries/classes/Controllers/Table/DropColumnController.php:74 #: libraries/classes/Controllers/Table/OperationsController.php:318 #: libraries/classes/Controllers/Table/ReplaceController.php:415 -#: libraries/classes/Core.php:732 templates/preview_sql.twig:3 +#: libraries/classes/Core.php:717 templates/preview_sql.twig:3 msgid "No change" msgstr "無更改" @@ -4954,7 +4953,7 @@ msgid "You may want to refresh the page." msgstr "需要重新整理頁面。" #: libraries/classes/Controllers/Export/ExportController.php:239 -#: libraries/classes/Export.php:1334 +#: libraries/classes/Export.php:1338 msgid "Bad type!" msgstr "類型錯誤!" @@ -5069,15 +5068,15 @@ msgstr "" "找不到 curl 擴充套件,且 allow_url_fopen 已停用;故此某些功能,例如錯誤回報與" "版本檢查等,會無法使用。" -#: libraries/classes/Controllers/Import/ImportController.php:108 +#: libraries/classes/Controllers/Import/ImportController.php:109 msgid "Incomplete params" msgstr "參數不完整" -#: libraries/classes/Controllers/Import/ImportController.php:122 +#: libraries/classes/Controllers/Import/ImportController.php:123 msgid "Succeeded" msgstr "成功" -#: libraries/classes/Controllers/Import/ImportController.php:126 +#: libraries/classes/Controllers/Import/ImportController.php:127 #: libraries/classes/Controllers/JavaScriptMessagesController.php:575 msgid "Failed" msgstr "失敗" @@ -5090,16 +5089,16 @@ msgid "" msgstr "上傳的檔案過大,請參閱%s說明文件%s了解如何解決此問題。" #: libraries/classes/Controllers/Import/ImportController.php:372 -#: libraries/classes/Controllers/Import/ImportController.php:604 +#: libraries/classes/Controllers/Import/ImportController.php:610 msgid "Showing bookmark" msgstr "顯示書籤" #: libraries/classes/Controllers/Import/ImportController.php:393 -#: libraries/classes/Controllers/Import/ImportController.php:600 +#: libraries/classes/Controllers/Import/ImportController.php:606 msgid "The bookmark has been deleted." msgstr "書籤已被刪除。" -#: libraries/classes/Controllers/Import/ImportController.php:510 +#: libraries/classes/Controllers/Import/ImportController.php:516 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -5108,13 +5107,13 @@ msgstr "" "沒有接收到要匯入的資料。可能是因為未附上檔案名稱,或是檔案大小超出 PHP 限" "制。 請參閱 [doc@faq1-16]FAQ 1.16[/doc]。" -#: libraries/classes/Controllers/Import/ImportController.php:612 +#: libraries/classes/Controllers/Import/ImportController.php:618 #, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "完成匯入,共執行了 %d 個查詢指令。" -#: libraries/classes/Controllers/Import/ImportController.php:644 +#: libraries/classes/Controllers/Import/ImportController.php:655 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -5122,7 +5121,7 @@ msgid "" msgstr "" "Script 執行已逾時,若要完成匯入,請%s重新上傳原來的檔案%s,匯入會繼續進行。" -#: libraries/classes/Controllers/Import/ImportController.php:654 +#: libraries/classes/Controllers/Import/ImportController.php:665 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -5130,7 +5129,7 @@ msgstr "" "最近一次執行的匯入沒有資料可以解析,通常是因為 phpMyAdmin 無法在指定時間內完" "成匯入。可試試增加 PHP 執行時間上限。" -#: libraries/classes/Controllers/Import/ImportController.php:725 +#: libraries/classes/Controllers/Import/ImportController.php:736 #: libraries/classes/Controllers/Sql/SqlController.php:162 msgid "\"DROP DATABASE\" statements are disabled." msgstr "刪除資料庫 DROP DATABASE 指令已經被停用。" @@ -5375,11 +5374,12 @@ msgstr "請選擇要建立索引的欄位。" #: templates/columns_definitions/column_definitions_form.twig:157 #: templates/modals/index_dialog_modal.twig:11 #: templates/modals/index_dialog_modal.twig:21 -#: templates/table/index_form.twig:244 +#: templates/table/index_form.twig:246 #: templates/table/index_rename_form.twig:28 #: templates/table/insert/actions_panel.twig:35 #: templates/table/relation/common_form.twig:224 #: templates/table/structure/display_structure.twig:344 +#: templates/table/structure/display_structure.twig:354 msgid "Preview SQL" msgstr "預覽 SQL" @@ -5393,7 +5393,7 @@ msgid "Matched rows:" msgstr "符合條件的列數:" #: libraries/classes/Controllers/JavaScriptMessagesController.php:122 -#: libraries/classes/Html/Generator.php:887 templates/export.twig:67 +#: libraries/classes/Html/Generator.php:893 templates/export.twig:67 msgid "SQL query:" msgstr "SQL 查詢:" @@ -5467,7 +5467,8 @@ msgstr "正在刪除已選擇的使用者" #: templates/table/search/index.twig:182 #: templates/table/structure/display_structure.twig:329 #: templates/table/structure/display_structure.twig:345 -#: templates/table/structure/display_structure.twig:356 +#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:373 #: templates/table/zoom_search/result_form.twig:27 #: templates/table/zoom_search/result_form.twig:79 #: templates/table/zoom_search/result_form.twig:96 @@ -5521,13 +5522,13 @@ msgstr "其他" #. l10n: Thousands separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:152 -#: libraries/classes/Util.php:548 libraries/classes/Util.php:580 +#: libraries/classes/Util.php:549 libraries/classes/Util.php:581 msgid "," msgstr "," #. l10n: Decimal separator #: libraries/classes/Controllers/JavaScriptMessagesController.php:154 -#: libraries/classes/Util.php:546 libraries/classes/Util.php:578 +#: libraries/classes/Util.php:547 libraries/classes/Util.php:579 msgid "." msgstr "." @@ -5634,45 +5635,45 @@ msgstr "程序" #. l10n: shortcuts for Byte #: libraries/classes/Controllers/JavaScriptMessagesController.php:193 -#: libraries/classes/Util.php:456 +#: libraries/classes/Util.php:457 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:194 -#: libraries/classes/Util.php:458 +#: libraries/classes/Util.php:459 #: templates/server/status/monitor/index.twig:186 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:195 -#: libraries/classes/Util.php:460 +#: libraries/classes/Util.php:461 #: templates/server/status/monitor/index.twig:187 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:196 -#: libraries/classes/Util.php:462 +#: libraries/classes/Util.php:463 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:197 -#: libraries/classes/Util.php:464 +#: libraries/classes/Util.php:465 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:198 -#: libraries/classes/Util.php:466 +#: libraries/classes/Util.php:467 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte #: libraries/classes/Controllers/JavaScriptMessagesController.php:199 -#: libraries/classes/Util.php:468 +#: libraries/classes/Util.php:469 msgid "EiB" msgstr "EB" @@ -5692,7 +5693,7 @@ msgid "Traffic" msgstr "流量" #: libraries/classes/Controllers/JavaScriptMessagesController.php:205 -#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1950 +#: libraries/classes/Menu.php:523 libraries/classes/Util.php:1966 #: templates/server/status/monitor/index.twig:12 msgid "Settings" msgstr "設定" @@ -5708,11 +5709,11 @@ msgstr "請至少增加一個變數到資料序列!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:208 #: libraries/classes/Display/Results.php:1266 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 #: libraries/config.values.php:111 -#: templates/columns_definitions/column_attributes.twig:208 -#: templates/columns_definitions/column_attributes.twig:229 +#: templates/columns_definitions/column_attributes.twig:217 +#: templates/columns_definitions/column_attributes.twig:240 #: templates/database/central_columns/main.twig:305 #: templates/database/designer/main.twig:588 templates/export.twig:433 #: templates/server/privileges/privileges_summary.twig:30 @@ -5915,7 +5916,7 @@ msgstr "輸出說明" #: libraries/classes/Controllers/JavaScriptMessagesController.php:275 #: libraries/classes/Menu.php:490 #: libraries/classes/Server/Status/Processes.php:134 -#: libraries/classes/Util.php:1946 libraries/config.values.php:157 +#: libraries/classes/Util.php:1962 libraries/config.values.php:157 #: templates/database/events/editor_form.twig:25 #: templates/database/events/index.twig:44 #: templates/database/tracking/tables.twig:17 @@ -5925,8 +5926,8 @@ msgstr "狀態" #: libraries/classes/Controllers/JavaScriptMessagesController.php:276 #: libraries/classes/Plugins/Export/ExportHtmlword.php:474 -#: libraries/classes/Plugins/Export/ExportOdt.php:597 -#: libraries/classes/Plugins/Export/ExportTexytext.php:455 +#: libraries/classes/Plugins/Export/ExportOdt.php:602 +#: libraries/classes/Plugins/Export/ExportTexytext.php:462 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:361 #: libraries/classes/Server/Status/Processes.php:130 #: templates/database/triggers/list.twig:47 @@ -6076,10 +6077,10 @@ msgstr "查無參數!" #: templates/database/designer/main.twig:1103 #: templates/database/designer/main.twig:1113 #: templates/database/designer/main.twig:1119 -#: templates/database/structure/check_all_tables.twig:48 -#: templates/database/structure/check_all_tables.twig:52 -#: templates/database/structure/check_all_tables.twig:66 -#: templates/database/structure/check_all_tables.twig:72 +#: templates/database/structure/bulk_action_modal.twig:7 +#: templates/database/structure/bulk_action_modal.twig:11 +#: templates/database/structure/check_all_tables.twig:49 +#: templates/database/structure/check_all_tables.twig:55 #: templates/error/report_modal.twig:6 templates/error/report_modal.twig:11 #: templates/server/databases/index.twig:319 #: templates/server/databases/index.twig:323 @@ -6103,6 +6104,7 @@ msgstr "套用" #: templates/navigation/main.twig:58 #: templates/server/privileges/users_overview.twig:173 #: templates/server/status/monitor/index.twig:95 +#: templates/table/structure/display_structure.twig:359 msgid "Loading…" msgstr "載入中…" @@ -6160,7 +6162,7 @@ msgstr "新增主鍵中" #: templates/database/designer/main.twig:954 #: templates/database/designer/main.twig:1061 #: templates/modals/preview_sql_confirmation.twig:14 -#: templates/table/structure/display_structure.twig:361 +#: templates/table/structure/display_structure.twig:378 msgid "OK" msgstr "確定" @@ -6184,9 +6186,9 @@ msgstr "更改字元編碼" #: libraries/classes/IndexColumn.php:161 libraries/classes/Index.php:498 #: libraries/classes/Index.php:526 #: libraries/classes/Plugins/Export/ExportHtmlword.php:632 -#: libraries/classes/Plugins/Export/ExportLatex.php:625 -#: libraries/classes/Plugins/Export/ExportOdt.php:782 -#: libraries/classes/Plugins/Export/ExportTexytext.php:619 +#: libraries/classes/Plugins/Export/ExportLatex.php:632 +#: libraries/classes/Plugins/Export/ExportOdt.php:787 +#: libraries/classes/Plugins/Export/ExportTexytext.php:626 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:753 #: templates/config/form_display/input.twig:42 #: templates/database/central_columns/main.twig:356 @@ -6208,7 +6210,7 @@ msgstr "更改字元編碼" #: templates/table/delete/confirm.twig:29 #: templates/table/privileges/index.twig:73 #: templates/table/structure/display_structure.twig:80 -#: templates/table/structure/display_structure.twig:515 +#: templates/table/structure/display_structure.twig:532 #: templates/table/structure/drop_confirm.twig:20 #: templates/table/structure/primary.twig:23 #: templates/table/tracking/structure_snapshot_columns.twig:33 @@ -6293,7 +6295,7 @@ msgid "Show query box" msgstr "顯示查詢框" #: libraries/classes/Controllers/JavaScriptMessagesController.php:389 -#: libraries/classes/Display/Results.php:3044 +#: libraries/classes/Display/Results.php:3035 #: libraries/classes/Tracking.php:260 templates/console/bookmark_content.twig:7 #: templates/database/central_columns/main.twig:268 #: templates/database/central_columns/main.twig:380 @@ -6419,7 +6421,7 @@ msgid "No partial dependencies selected!" msgstr "尚未選擇部份依存!" #: libraries/classes/Controllers/JavaScriptMessagesController.php:423 -#: libraries/classes/Export.php:587 libraries/classes/Html/Generator.php:987 +#: libraries/classes/Export.php:589 libraries/classes/Html/Generator.php:993 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:292 #: templates/import_status.twig:2 templates/user_password.twig:2 msgid "Back" @@ -6548,13 +6550,13 @@ msgstr "資料點內容" #: libraries/classes/Controllers/JavaScriptMessagesController.php:475 #: libraries/classes/Controllers/JavaScriptMessagesController.php:631 -#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1984 +#: libraries/classes/ErrorHandler.php:446 libraries/classes/InsertEdit.php:1996 #: templates/table/index_form.twig:167 templates/table/index_form.twig:203 msgid "Ignore" msgstr "略過" #: libraries/classes/Controllers/JavaScriptMessagesController.php:476 -#: libraries/classes/Display/Results.php:2980 +#: libraries/classes/Display/Results.php:2971 #: libraries/classes/Html/Generator.php:76 #: templates/display/results/table.twig:231 #: templates/display/results/table.twig:232 @@ -7098,27 +7100,33 @@ msgctxt "U2F error" msgid "Invalid security key." msgstr "無效的安全金鑰。" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:697 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:696 +msgid "" +"WebAuthn is not available. Please use a supported browser in a secure " +"context (HTTPS)." +msgstr "" + +#: libraries/classes/Controllers/JavaScriptMessagesController.php:701 msgid "" "You can not open, save or delete your page layout, as IndexedDB is not " "working in your browser and your phpMyAdmin configuration storage is not " "configured for this." msgstr "" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:702 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:706 #, php-format msgctxt "" "The table already exists in the designer and can not be added once more." msgid "Table %s already exists!" msgstr "已有 %s 資料表!" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:704 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:708 #: libraries/classes/InsertEdit.php:326 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:53 msgid "Hide" msgstr "隱藏" -#: libraries/classes/Controllers/JavaScriptMessagesController.php:705 +#: libraries/classes/Controllers/JavaScriptMessagesController.php:709 #: libraries/classes/Controllers/Table/ChangeController.php:187 #: templates/database/multi_table_query/form.twig:49 #: templates/database/tracking/tables.twig:19 @@ -7141,20 +7149,20 @@ msgid "No such column" msgstr "無此欄位" #: libraries/classes/Controllers/NormalizationController.php:46 -#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:798 +#: libraries/classes/Normalization.php:250 libraries/classes/Types.php:852 msgctxt "string types" msgid "String" msgstr "字串" -#: libraries/classes/Controllers/Preferences/ManageController.php:93 +#: libraries/classes/Controllers/Preferences/ManageController.php:94 msgid "phpMyAdmin configuration snippet" msgstr "phpMyAdmin 設定片段" -#: libraries/classes/Controllers/Preferences/ManageController.php:94 +#: libraries/classes/Controllers/Preferences/ManageController.php:95 msgid "Paste it to your config.inc.php" msgstr "貼至您的 config.inc.php" -#: libraries/classes/Controllers/Preferences/ManageController.php:140 +#: libraries/classes/Controllers/Preferences/ManageController.php:144 msgid "Could not import configuration" msgstr "無法匯入設定" @@ -7179,7 +7187,7 @@ msgstr "資料列數" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/database/data_dictionary/index.twig:68 templates/indexes.twig:3 -#: templates/table/structure/display_structure.twig:445 +#: templates/table/structure/display_structure.twig:462 #: templates/table/tracking/structure_snapshot_indexes.twig:1 msgid "Indexes" msgstr "索引" @@ -7910,7 +7918,7 @@ msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的執行緒數量。" #: libraries/classes/Controllers/Server/UserGroupsFormController.php:46 -#: libraries/classes/Util.php:835 +#: libraries/classes/Util.php:836 msgid "Missing parameter:" msgstr "未填寫必要的參數:" @@ -8010,7 +8018,7 @@ msgstr "已有 %s 資料表!" #: libraries/classes/Controllers/Table/RelationController.php:241 #: libraries/classes/Controllers/View/OperationsController.php:87 #: libraries/classes/Database/Routines.php:1224 -#: libraries/classes/Display/Results.php:3695 libraries/classes/Message.php:172 +#: libraries/classes/Display/Results.php:3693 libraries/classes/Message.php:172 #: templates/sql/query.twig:7 msgid "Your SQL query has been executed successfully." msgstr "SQL 查詢已順利執行。" @@ -8076,10 +8084,10 @@ msgstr "檢視表" #: libraries/classes/Controllers/Table/Partition/RebuildController.php:62 #: libraries/classes/Controllers/Table/Partition/TruncateController.php:62 #: libraries/classes/Controllers/View/OperationsController.php:90 -#: libraries/classes/Html/Generator.php:863 libraries/classes/Import.php:133 +#: libraries/classes/Html/Generator.php:869 libraries/classes/Import.php:133 #: libraries/classes/InsertEdit.php:715 libraries/classes/Message.php:192 #: templates/error/generic.twig:37 -#: templates/table/structure/display_structure.twig:355 +#: templates/table/structure/display_structure.twig:372 msgid "Error" msgstr "錯誤" @@ -8102,7 +8110,7 @@ msgid "Failed to get description of column %s!" msgstr "未能取得 %s 欄位的說明!" #: libraries/classes/Controllers/Table/StructureController.php:226 -#: templates/columns_definitions/column_attributes.twig:107 +#: templates/columns_definitions/column_attributes.twig:112 #: templates/database/data_dictionary/index.twig:41 #: templates/table/structure/display_structure.twig:137 #: templates/table/structure/display_structure.twig:145 @@ -8113,7 +8121,7 @@ msgstr "主鍵" #: libraries/classes/Controllers/Table/StructureController.php:230 #: libraries/classes/Navigation/Nodes/NodeIndex.php:28 -#: templates/columns_definitions/column_attributes.twig:115 +#: templates/columns_definitions/column_attributes.twig:120 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_structure.twig:167 #: templates/table/structure/display_structure.twig:175 @@ -8123,7 +8131,7 @@ msgstr "主鍵" msgid "Index" msgstr "索引" -#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:172 +#: libraries/classes/Controllers/Table/Structure/MoveColumnsController.php:178 msgid "The columns have been moved successfully." msgstr "已成功移動欄位。" @@ -8170,7 +8178,7 @@ msgstr "現時並沒有足夠權限!" msgid "View name can not be empty!" msgstr "檢視表名稱不可以是空的!" -#: libraries/classes/Core.php:204 libraries/classes/ZipExtension.php:62 +#: libraries/classes/Core.php:203 libraries/classes/ZipExtension.php:62 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 擴充套件。請檢查 PHP 設定。" @@ -8294,7 +8302,7 @@ msgstr "執行以下的查詢時發生錯誤:「%s」" #: libraries/classes/Database/Triggers.php:130 #: libraries/classes/Database/Triggers.php:157 #: libraries/classes/Database/Triggers.php:437 -#: libraries/classes/Html/Generator.php:931 +#: libraries/classes/Html/Generator.php:937 msgid "MySQL said: " msgstr "MySQL 回應: " @@ -8383,7 +8391,7 @@ msgid "" "Error in processing request: No event with name %1$s found in database %2$s." msgstr "在資料庫 %2$s 中查無名稱為 %1$s 的事件。" -#: libraries/classes/DatabaseInterface.php:1130 +#: libraries/classes/DatabaseInterface.php:1121 #, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " @@ -8394,19 +8402,19 @@ msgstr "" "[%3$d]['SessionTimeZone'][/em] 設定。phpMyAdmin 目前使用資料庫伺服器的預設時" "區。" -#: libraries/classes/DatabaseInterface.php:1175 +#: libraries/classes/DatabaseInterface.php:1166 msgid "Failed to set configured collation connection!" msgstr "設定編碼與排序連線失敗!" -#: libraries/classes/DatabaseInterface.php:1868 +#: libraries/classes/DatabaseInterface.php:1859 msgid "Missing connection parameters!" msgstr "缺少連線參數!" -#: libraries/classes/DatabaseInterface.php:1893 +#: libraries/classes/DatabaseInterface.php:1884 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案定義的控制使用者連線失敗。" -#: libraries/classes/DatabaseInterface.php:2298 +#: libraries/classes/DatabaseInterface.php:2305 #, php-format msgid "See %sour documentation%s for more information." msgstr "請參閱%s我們的說明文件%s以取得更多的資訊。" @@ -8429,23 +8437,23 @@ msgstr "新增" msgid "Del" msgstr "刪除" -#: libraries/classes/Database/Qbe.php:1674 +#: libraries/classes/Database/Qbe.php:1672 msgid "Saved bookmarked search:" msgstr "已加為書籤的搜尋:" -#: libraries/classes/Database/Qbe.php:1676 +#: libraries/classes/Database/Qbe.php:1674 msgid "New bookmark" msgstr "新增書籤" -#: libraries/classes/Database/Qbe.php:1703 +#: libraries/classes/Database/Qbe.php:1701 msgid "Create bookmark" msgstr "建立書籤" -#: libraries/classes/Database/Qbe.php:1706 +#: libraries/classes/Database/Qbe.php:1704 msgid "Update bookmark" msgstr "更新書籤" -#: libraries/classes/Database/Qbe.php:1708 +#: libraries/classes/Database/Qbe.php:1706 msgid "Delete bookmark" msgstr "刪除書籤" @@ -8695,8 +8703,8 @@ msgid "Full texts" msgstr "完整內容" #: libraries/classes/Display/Results.php:1818 -#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2575 -#: libraries/classes/Util.php:2598 libraries/config.values.php:113 +#: libraries/classes/Display/Results.php:1844 libraries/classes/Util.php:2595 +#: libraries/classes/Util.php:2618 libraries/config.values.php:113 #: templates/database/multi_table_query/form.twig:69 #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/index.twig:111 @@ -8709,8 +8717,8 @@ msgid "Descending" msgstr "遞減" #: libraries/classes/Display/Results.php:1826 -#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2567 -#: libraries/classes/Util.php:2590 libraries/config.values.php:112 +#: libraries/classes/Display/Results.php:1836 libraries/classes/Util.php:2587 +#: libraries/classes/Util.php:2610 libraries/config.values.php:112 #: templates/database/multi_table_query/form.twig:68 #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/index.twig:109 @@ -8722,41 +8730,41 @@ msgstr "遞減" msgid "Ascending" msgstr "遞增" -#: libraries/classes/Display/Results.php:3020 -#: libraries/classes/Display/Results.php:3035 +#: libraries/classes/Display/Results.php:3011 +#: libraries/classes/Display/Results.php:3026 msgid "The row has been deleted." msgstr "已刪除該行。" -#: libraries/classes/Display/Results.php:3067 +#: libraries/classes/Display/Results.php:3058 #: templates/server/status/processes/list.twig:44 msgid "Kill" msgstr "中止" -#: libraries/classes/Display/Results.php:3628 +#: libraries/classes/Display/Results.php:3626 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgstr "可能為近似值,請參閱[doc@faq3-11]常見問題(FAQ) 3.11[/doc]。" -#: libraries/classes/Display/Results.php:3991 +#: libraries/classes/Display/Results.php:3989 #, php-format msgid "Showing rows %1s - %2s" msgstr "顯示第 %1s - %2s 列" -#: libraries/classes/Display/Results.php:4005 +#: libraries/classes/Display/Results.php:4003 #, php-format msgid "%1$d total, %2$d in query" msgstr "總計 %1$d 筆,目前查詢 %2$d 筆" -#: libraries/classes/Display/Results.php:4010 +#: libraries/classes/Display/Results.php:4008 #, php-format msgid "%d total" msgstr "總計 %d 筆" -#: libraries/classes/Display/Results.php:4023 libraries/classes/Sql.php:973 +#: libraries/classes/Display/Results.php:4021 libraries/classes/Sql.php:973 #, php-format msgid "Query took %01.4f seconds." msgstr "查詢用了 %01.4f 秒。" -#: libraries/classes/Display/Results.php:4354 +#: libraries/classes/Display/Results.php:4352 msgid "Link not found!" msgstr "無此連結!" @@ -9072,7 +9080,7 @@ msgstr "" "記錄會刪除,或者使用下一個最大的編號重新命名。" #: libraries/classes/Engines/Pbxt.php:169 -#: libraries/classes/Html/Generator.php:792 +#: libraries/classes/Html/Generator.php:798 #: libraries/classes/Html/MySQLDocumentation.php:50 #: libraries/classes/Sanitize.php:203 #: templates/config/form_display/input.twig:10 templates/home/index.twig:244 @@ -9100,30 +9108,30 @@ msgstr "報告" msgid "Automatically send report next time" msgstr "下次自動傳送錯誤報告" -#: libraries/classes/Export.php:158 libraries/classes/Export.php:194 -#: libraries/classes/Export.php:468 +#: libraries/classes/Export.php:160 libraries/classes/Export.php:196 +#: libraries/classes/Export.php:470 #, php-format msgid "Insufficient space to save the file %s." msgstr "空間不足,無法儲存 %s 檔案。" -#: libraries/classes/Export.php:417 +#: libraries/classes/Export.php:419 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "伺服器已有 %s 檔案,請更改檔案名稱或選擇覆寫。" -#: libraries/classes/Export.php:424 libraries/classes/Export.php:434 +#: libraries/classes/Export.php:426 libraries/classes/Export.php:436 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "網頁伺服器沒有權限儲存 %s 檔案。" -#: libraries/classes/Export.php:474 +#: libraries/classes/Export.php:476 #, php-format msgid "Dump has been saved to file %s." msgstr "傾印資料已儲存至 %s 檔案。" #. l10n: A query written by the user is a "raw query" that could be using no tables or databases in particular -#: libraries/classes/Export.php:981 +#: libraries/classes/Export.php:985 msgid "Exporting a raw query is not supported for this export method." msgstr "" @@ -9196,74 +9204,74 @@ msgstr "" msgid "Session not found." msgstr "未安裝 SOAP 擴充套件" -#: libraries/classes/Html/Generator.php:146 +#: libraries/classes/Html/Generator.php:147 #, php-format msgid "Jump to database “%s”." msgstr "跳至「%s」資料庫。" -#: libraries/classes/Html/Generator.php:174 +#: libraries/classes/Html/Generator.php:175 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到已知問題影響,詳情請參閱 %s" -#: libraries/classes/Html/Generator.php:242 +#: libraries/classes/Html/Generator.php:243 msgid "SSL is not being used" msgstr "未有使用 SSL" -#: libraries/classes/Html/Generator.php:247 +#: libraries/classes/Html/Generator.php:248 msgid "SSL is used with disabled verification" msgstr "正在使用 SSL,但未有使用驗證" -#: libraries/classes/Html/Generator.php:249 +#: libraries/classes/Html/Generator.php:250 msgid "SSL is used without certification authority" msgstr "正在使用 SSL,但沒有憑證授權" -#: libraries/classes/Html/Generator.php:252 +#: libraries/classes/Html/Generator.php:253 msgid "SSL is used" msgstr "正在使用 SSL" -#: libraries/classes/Html/Generator.php:357 +#: libraries/classes/Html/Generator.php:363 msgid "The PHP function password_hash() with default options." msgstr "" -#: libraries/classes/Html/Generator.php:358 +#: libraries/classes/Html/Generator.php:364 msgid "password_hash() PHP function" msgstr "password_hash() PHP函數" -#: libraries/classes/Html/Generator.php:640 +#: libraries/classes/Html/Generator.php:646 msgid "Skip Explain SQL" msgstr "略過 SQL 語句分析" -#: libraries/classes/Html/Generator.php:649 +#: libraries/classes/Html/Generator.php:655 #, php-format msgid "Analyze Explain at %s" msgstr "分析語句於 %s" -#: libraries/classes/Html/Generator.php:678 +#: libraries/classes/Html/Generator.php:684 msgid "Without PHP code" msgstr "不含 PHP 程式碼" -#: libraries/classes/Html/Generator.php:686 +#: libraries/classes/Html/Generator.php:692 #: templates/database/multi_table_query/form.twig:175 #: templates/database/qbe/selection_form.twig:115 msgid "Submit query" msgstr "送出查詢" -#: libraries/classes/Html/Generator.php:733 templates/console/display.twig:31 +#: libraries/classes/Html/Generator.php:739 templates/console/display.twig:31 #: templates/console/display.twig:175 templates/sql/profiling_chart.twig:2 msgid "Profiling" msgstr "效能分析" -#: libraries/classes/Html/Generator.php:746 +#: libraries/classes/Html/Generator.php:752 msgctxt "Inline edit query" msgid "Edit inline" msgstr "行內編輯" -#: libraries/classes/Html/Generator.php:870 +#: libraries/classes/Html/Generator.php:876 msgid "Static analysis:" msgstr "靜態分析:" -#: libraries/classes/Html/Generator.php:873 +#: libraries/classes/Html/Generator.php:879 #, php-format msgid "%d errors were found during analysis." msgstr "分析過程中發生 %d 個錯誤。" @@ -9371,11 +9379,11 @@ msgstr "函式" #: libraries/classes/InsertEdit.php:345 #: libraries/classes/Plugins/Export/ExportHtmlword.php:275 #: libraries/classes/Plugins/Export/ExportHtmlword.php:370 -#: libraries/classes/Plugins/Export/ExportLatex.php:536 -#: libraries/classes/Plugins/Export/ExportOdt.php:370 -#: libraries/classes/Plugins/Export/ExportOdt.php:474 -#: libraries/classes/Plugins/Export/ExportTexytext.php:288 -#: libraries/classes/Plugins/Export/ExportTexytext.php:380 +#: libraries/classes/Plugins/Export/ExportLatex.php:543 +#: libraries/classes/Plugins/Export/ExportOdt.php:375 +#: libraries/classes/Plugins/Export/ExportOdt.php:479 +#: libraries/classes/Plugins/Export/ExportTexytext.php:295 +#: libraries/classes/Plugins/Export/ExportTexytext.php:387 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:527 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:668 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:702 @@ -9395,7 +9403,7 @@ msgstr "函式" #: templates/table/privileges/index.twig:21 #: templates/table/search/index.twig:39 #: templates/table/structure/display_structure.twig:22 -#: templates/table/structure/display_structure.twig:459 +#: templates/table/structure/display_structure.twig:476 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/zoom_search/index.twig:37 @@ -9446,7 +9454,7 @@ msgstr "%1$s (%2$s 附近)" #: libraries/classes/Menu.php:240 #: libraries/classes/Navigation/Nodes/NodeTable.php:313 -#: libraries/classes/Util.php:1481 libraries/classes/Util.php:1975 +#: libraries/classes/Util.php:1489 libraries/classes/Util.php:1991 #: libraries/config.values.php:68 libraries/config.values.php:82 #: libraries/config.values.php:183 templates/database/search/results.twig:34 #: templates/database/structure/structure_table_row.twig:43 @@ -9456,8 +9464,8 @@ msgstr "瀏覽" #: libraries/classes/Menu.php:259 libraries/classes/Menu.php:366 #: libraries/classes/Navigation/Nodes/NodeTable.php:304 -#: libraries/classes/Util.php:1479 libraries/classes/Util.php:1961 -#: libraries/classes/Util.php:1978 libraries/config.values.php:64 +#: libraries/classes/Util.php:1487 libraries/classes/Util.php:1977 +#: libraries/classes/Util.php:1994 libraries/config.values.php:64 #: libraries/config.values.php:78 libraries/config.values.php:169 #: libraries/config.values.php:179 templates/database/routines/index.twig:27 #: templates/database/routines/index.twig:28 @@ -9469,7 +9477,7 @@ msgstr "搜尋" #: libraries/classes/Menu.php:270 #: libraries/classes/Navigation/Nodes/NodeTable.php:307 -#: libraries/classes/Util.php:1480 libraries/classes/Util.php:1979 +#: libraries/classes/Util.php:1488 libraries/classes/Util.php:1995 #: libraries/config.values.php:66 libraries/config.values.php:80 #: libraries/config.values.php:181 #: templates/database/qbe/ins_del_and_or_cell.twig:6 @@ -9479,8 +9487,8 @@ msgid "Insert" msgstr "新增" #: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406 -#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1966 -#: libraries/classes/Util.php:1982 libraries/config.values.php:161 +#: libraries/classes/Server/Privileges.php:2842 libraries/classes/Util.php:1982 +#: libraries/classes/Util.php:1998 libraries/config.values.php:161 #: templates/database/privileges/index.twig:20 #: templates/server/privileges/privileges_summary.twig:15 #: templates/server/sub_page_header.twig:2 @@ -9489,14 +9497,14 @@ msgid "Privileges" msgstr "權限" #: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317 -#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1482 -#: libraries/classes/Util.php:1965 libraries/classes/Util.php:1983 +#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1490 +#: libraries/classes/Util.php:1981 libraries/classes/Util.php:1999 #: libraries/config.values.php:171 templates/table/operations/view.twig:8 msgid "Operations" msgstr "操作" #: libraries/classes/Menu.php:323 libraries/classes/Menu.php:432 -#: libraries/classes/Util.php:1970 libraries/classes/Util.php:1984 +#: libraries/classes/Util.php:1986 libraries/classes/Util.php:2000 msgid "Tracking" msgstr "追蹤" @@ -9504,12 +9512,12 @@ msgstr "追蹤" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:26 #: libraries/classes/Plugins/Export/ExportHtmlword.php:558 -#: libraries/classes/Plugins/Export/ExportOdt.php:703 -#: libraries/classes/Plugins/Export/ExportPdf.php:261 -#: libraries/classes/Plugins/Export/ExportSql.php:2097 -#: libraries/classes/Plugins/Export/ExportTexytext.php:541 +#: libraries/classes/Plugins/Export/ExportOdt.php:708 +#: libraries/classes/Plugins/Export/ExportPdf.php:270 +#: libraries/classes/Plugins/Export/ExportSql.php:2104 +#: libraries/classes/Plugins/Export/ExportTexytext.php:548 #: libraries/classes/Plugins/Export/ExportXml.php:120 -#: libraries/classes/Util.php:1969 libraries/classes/Util.php:1985 +#: libraries/classes/Util.php:1985 libraries/classes/Util.php:2001 #: templates/database/triggers/list.twig:3 msgid "Triggers" msgstr "觸發器" @@ -9519,11 +9527,11 @@ msgstr "觸發器" msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1962 +#: libraries/classes/Menu.php:374 libraries/classes/Util.php:1978 msgid "Query" msgstr "查詢" -#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1967 +#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1983 #: templates/database/routines/index.twig:3 msgid "Routines" msgstr "預存程序" @@ -9533,15 +9541,15 @@ msgstr "預存程序" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:1014 #: libraries/classes/Plugins/Export/ExportXml.php:100 -#: libraries/classes/Util.php:1968 templates/database/events/index.twig:3 +#: libraries/classes/Util.php:1984 templates/database/events/index.twig:3 msgid "Events" msgstr "事件" -#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1971 +#: libraries/classes/Menu.php:439 libraries/classes/Util.php:1987 msgid "Designer" msgstr "設計器" -#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1972 +#: libraries/classes/Menu.php:446 libraries/classes/Util.php:1988 #: templates/database/structure/check_all_tables.twig:32 msgid "Central columns" msgstr "中央欄位" @@ -9551,12 +9559,12 @@ msgid "User accounts" msgstr "使用者帳號" #: libraries/classes/Menu.php:538 libraries/classes/Server/Status/Data.php:152 -#: libraries/classes/Util.php:1951 templates/server/binlog/index.twig:3 +#: libraries/classes/Util.php:1967 templates/server/binlog/index.twig:3 msgid "Binary log" msgstr "二進位記錄" #: libraries/classes/Menu.php:545 libraries/classes/Server/Status/Data.php:157 -#: libraries/classes/Util.php:1952 +#: libraries/classes/Util.php:1968 #: templates/database/structure/body_for_table_summary.twig:11 #: templates/database/structure/table_header.twig:10 #: templates/server/replication/index.twig:5 @@ -9564,21 +9572,21 @@ msgid "Replication" msgstr "備援" #: libraries/classes/Menu.php:551 libraries/classes/Server/Status/Data.php:229 -#: libraries/classes/Util.php:1953 libraries/config.values.php:159 +#: libraries/classes/Util.php:1969 libraries/config.values.php:159 #: templates/server/engines/show.twig:18 templates/server/engines/show.twig:21 #: templates/sql/query.twig:191 msgid "Variables" msgstr "變數" -#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1954 +#: libraries/classes/Menu.php:556 libraries/classes/Util.php:1970 msgid "Charsets" msgstr "字元集" -#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1956 +#: libraries/classes/Menu.php:561 libraries/classes/Util.php:1972 msgid "Engines" msgstr "引擎" -#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1955 +#: libraries/classes/Menu.php:566 libraries/classes/Util.php:1971 #: templates/server/plugins/index.twig:4 msgid "Plugins" msgstr "附加元件" @@ -9673,11 +9681,11 @@ msgstr "新增" #: libraries/classes/Navigation/Nodes/NodeColumn.php:32 #: libraries/classes/Plugins/Export/ExportHtmlword.php:272 #: libraries/classes/Plugins/Export/ExportHtmlword.php:367 -#: libraries/classes/Plugins/Export/ExportLatex.php:535 -#: libraries/classes/Plugins/Export/ExportOdt.php:367 -#: libraries/classes/Plugins/Export/ExportOdt.php:471 -#: libraries/classes/Plugins/Export/ExportTexytext.php:287 -#: libraries/classes/Plugins/Export/ExportTexytext.php:379 +#: libraries/classes/Plugins/Export/ExportLatex.php:542 +#: libraries/classes/Plugins/Export/ExportOdt.php:372 +#: libraries/classes/Plugins/Export/ExportOdt.php:476 +#: libraries/classes/Plugins/Export/ExportTexytext.php:294 +#: libraries/classes/Plugins/Export/ExportTexytext.php:386 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:525 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:667 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:701 @@ -9695,7 +9703,7 @@ msgstr "新增" #: templates/table/relation/foreign_key_row.twig:120 #: templates/table/relation/foreign_key_row.twig:130 #: templates/table/search/index.twig:38 -#: templates/table/structure/display_structure.twig:462 +#: templates/table/structure/display_structure.twig:479 #: templates/table/tracking/structure_snapshot_columns.twig:6 #: templates/table/tracking/structure_snapshot_indexes.twig:9 #: templates/table/zoom_search/index.twig:36 @@ -9723,8 +9731,8 @@ msgstr "新增" #: libraries/classes/Navigation/Nodes/NodeEvent.php:28 #: libraries/classes/Plugins/Export/ExportHtmlword.php:475 -#: libraries/classes/Plugins/Export/ExportOdt.php:600 -#: libraries/classes/Plugins/Export/ExportTexytext.php:456 +#: libraries/classes/Plugins/Export/ExportOdt.php:605 +#: libraries/classes/Plugins/Export/ExportTexytext.php:463 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:363 #: templates/database/triggers/editor_form.twig:47 #: templates/database/triggers/list.twig:48 @@ -10121,7 +10129,7 @@ msgstr "清空" #: templates/table/structure/display_partitions.twig:145 #: templates/table/structure/display_structure.twig:120 #: templates/table/structure/display_structure.twig:290 -#: templates/table/structure/display_structure.twig:508 +#: templates/table/structure/display_structure.twig:525 msgid "Drop" msgstr "刪除" @@ -10346,18 +10354,18 @@ msgstr "資料傾印選項" #: libraries/classes/Plugins/Export/ExportHtmlword.php:194 #: libraries/classes/Plugins/Export/ExportOdt.php:245 -#: libraries/classes/Plugins/Export/ExportSql.php:2347 +#: libraries/classes/Plugins/Export/ExportSql.php:2354 #: libraries/classes/Plugins/Export/ExportTexytext.php:178 msgid "Dumping data for table" msgstr "傾印資料表的資料" #: libraries/classes/Plugins/Export/ExportHtmlword.php:278 #: libraries/classes/Plugins/Export/ExportHtmlword.php:373 -#: libraries/classes/Plugins/Export/ExportLatex.php:537 -#: libraries/classes/Plugins/Export/ExportOdt.php:373 -#: libraries/classes/Plugins/Export/ExportOdt.php:477 -#: libraries/classes/Plugins/Export/ExportTexytext.php:289 -#: libraries/classes/Plugins/Export/ExportTexytext.php:381 +#: libraries/classes/Plugins/Export/ExportLatex.php:544 +#: libraries/classes/Plugins/Export/ExportOdt.php:378 +#: libraries/classes/Plugins/Export/ExportOdt.php:482 +#: libraries/classes/Plugins/Export/ExportTexytext.php:296 +#: libraries/classes/Plugins/Export/ExportTexytext.php:388 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:529 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:670 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:704 @@ -10369,7 +10377,7 @@ msgstr "傾印資料表的資料" #: templates/database/data_dictionary/index.twig:80 templates/indexes.twig:23 #: templates/table/insert/get_head_and_foot_of_insert_row_table.twig:8 #: templates/table/structure/display_structure.twig:25 -#: templates/table/structure/display_structure.twig:465 +#: templates/table/structure/display_structure.twig:482 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/table/tracking/structure_snapshot_indexes.twig:12 #: templates/table/zoom_search/result_form.twig:36 @@ -10378,11 +10386,11 @@ msgstr "空值(Null)" #: libraries/classes/Plugins/Export/ExportHtmlword.php:281 #: libraries/classes/Plugins/Export/ExportHtmlword.php:376 -#: libraries/classes/Plugins/Export/ExportLatex.php:538 -#: libraries/classes/Plugins/Export/ExportOdt.php:376 -#: libraries/classes/Plugins/Export/ExportOdt.php:480 -#: libraries/classes/Plugins/Export/ExportTexytext.php:290 -#: libraries/classes/Plugins/Export/ExportTexytext.php:382 +#: libraries/classes/Plugins/Export/ExportLatex.php:545 +#: libraries/classes/Plugins/Export/ExportOdt.php:381 +#: libraries/classes/Plugins/Export/ExportOdt.php:485 +#: libraries/classes/Plugins/Export/ExportTexytext.php:297 +#: libraries/classes/Plugins/Export/ExportTexytext.php:389 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:531 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:671 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:705 @@ -10399,9 +10407,9 @@ msgid "Default" msgstr "預設值" #: libraries/classes/Plugins/Export/ExportHtmlword.php:380 -#: libraries/classes/Plugins/Export/ExportLatex.php:540 -#: libraries/classes/Plugins/Export/ExportOdt.php:484 -#: libraries/classes/Plugins/Export/ExportTexytext.php:384 +#: libraries/classes/Plugins/Export/ExportLatex.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:489 +#: libraries/classes/Plugins/Export/ExportTexytext.php:391 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:540 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:673 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:707 @@ -10410,8 +10418,8 @@ msgid "Links to" msgstr "連結到" #: libraries/classes/Plugins/Export/ExportHtmlword.php:473 -#: libraries/classes/Plugins/Export/ExportOdt.php:594 -#: libraries/classes/Plugins/Export/ExportTexytext.php:454 +#: libraries/classes/Plugins/Export/ExportOdt.php:599 +#: libraries/classes/Plugins/Export/ExportTexytext.php:461 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:359 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/central_columns/edit.twig:8 @@ -10427,8 +10435,8 @@ msgid "Name" msgstr "名稱" #: libraries/classes/Plugins/Export/ExportHtmlword.php:476 -#: libraries/classes/Plugins/Export/ExportOdt.php:603 -#: libraries/classes/Plugins/Export/ExportTexytext.php:457 +#: libraries/classes/Plugins/Export/ExportOdt.php:608 +#: libraries/classes/Plugins/Export/ExportTexytext.php:464 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:365 #: templates/database/events/editor_form.twig:82 #: templates/database/routines/editor_form.twig:109 @@ -10437,23 +10445,23 @@ msgid "Definition" msgstr "定義" #: libraries/classes/Plugins/Export/ExportHtmlword.php:548 -#: libraries/classes/Plugins/Export/ExportOdt.php:681 -#: libraries/classes/Plugins/Export/ExportSql.php:2083 -#: libraries/classes/Plugins/Export/ExportTexytext.php:521 +#: libraries/classes/Plugins/Export/ExportOdt.php:686 +#: libraries/classes/Plugins/Export/ExportSql.php:2090 +#: libraries/classes/Plugins/Export/ExportTexytext.php:528 msgid "Table structure for table" msgstr "資料表結構" #: libraries/classes/Plugins/Export/ExportHtmlword.php:566 -#: libraries/classes/Plugins/Export/ExportOdt.php:713 -#: libraries/classes/Plugins/Export/ExportSql.php:2134 -#: libraries/classes/Plugins/Export/ExportTexytext.php:547 +#: libraries/classes/Plugins/Export/ExportOdt.php:718 +#: libraries/classes/Plugins/Export/ExportSql.php:2141 +#: libraries/classes/Plugins/Export/ExportTexytext.php:554 msgid "Structure for view" msgstr "檢視表結構" #: libraries/classes/Plugins/Export/ExportHtmlword.php:572 -#: libraries/classes/Plugins/Export/ExportOdt.php:733 -#: libraries/classes/Plugins/Export/ExportSql.php:2166 -#: libraries/classes/Plugins/Export/ExportTexytext.php:563 +#: libraries/classes/Plugins/Export/ExportOdt.php:738 +#: libraries/classes/Plugins/Export/ExportSql.php:2173 +#: libraries/classes/Plugins/Export/ExportTexytext.php:570 msgid "Stand-in structure for view" msgstr "替換檢視表以便查看" @@ -10556,11 +10564,11 @@ msgid "Database:" msgstr "資料庫:" #: libraries/classes/Plugins/Export/ExportLatex.php:312 -#: libraries/classes/Plugins/Export/ExportSql.php:2226 +#: libraries/classes/Plugins/Export/ExportSql.php:2233 msgid "Data:" msgstr "資料:" -#: libraries/classes/Plugins/Export/ExportLatex.php:513 +#: libraries/classes/Plugins/Export/ExportLatex.php:520 msgid "Structure:" msgstr "結構:" @@ -10587,17 +10595,17 @@ msgstr "報告標題:" msgid "Dumping data" msgstr "傾印資料" -#: libraries/classes/Plugins/Export/ExportPdf.php:210 +#: libraries/classes/Plugins/Export/ExportPdf.php:213 #, fuzzy #| msgid "Query results" msgid "Query result data" msgstr "查詢結果" -#: libraries/classes/Plugins/Export/ExportPdf.php:264 +#: libraries/classes/Plugins/Export/ExportPdf.php:273 msgid "View structure" msgstr "檢視結構" -#: libraries/classes/Plugins/Export/ExportPdf.php:267 +#: libraries/classes/Plugins/Export/ExportPdf.php:276 msgid "Stand in" msgstr "加入" @@ -10668,7 +10676,7 @@ msgid "Data creation options" msgstr "資料建立選項" #: libraries/classes/Plugins/Export/ExportSql.php:398 -#: libraries/classes/Plugins/Export/ExportSql.php:2304 +#: libraries/classes/Plugins/Export/ExportSql.php:2311 msgid "Truncate table before insert" msgstr "資料表新增資料前,先清除舊資料" @@ -10749,7 +10757,7 @@ msgstr "資料庫使用了預存程序;" #: libraries/classes/Plugins/Export/ExportSql.php:585 #: libraries/classes/Plugins/Export/ExportSql.php:1614 -#: libraries/classes/Plugins/Export/ExportSql.php:2122 +#: libraries/classes/Plugins/Export/ExportSql.php:2129 msgid "alias export may not work reliably in all cases." msgstr "別名匯出可能無法在所有情況正常運作。" @@ -10823,20 +10831,20 @@ msgstr "資料表媒體類型表" msgid "RELATIONSHIPS FOR TABLE" msgstr "資料表的關聯" -#: libraries/classes/Plugins/Export/ExportSql.php:2119 +#: libraries/classes/Plugins/Export/ExportSql.php:2126 msgid "It appears your table uses triggers;" msgstr "資料表使用了觸發器;" -#: libraries/classes/Plugins/Export/ExportSql.php:2149 +#: libraries/classes/Plugins/Export/ExportSql.php:2156 #, php-format msgid "Structure for view %s exported as a table" msgstr "將檢視表 %s 結構匯出成資料表" -#: libraries/classes/Plugins/Export/ExportSql.php:2169 +#: libraries/classes/Plugins/Export/ExportSql.php:2176 msgid "(See below for the actual view)" msgstr "(請參考以下實際畫面)" -#: libraries/classes/Plugins/Export/ExportSql.php:2237 +#: libraries/classes/Plugins/Export/ExportSql.php:2244 #, php-format msgid "Error reading data for table %s:" msgstr "讀取資料表 %s 的資料時出現錯誤:" @@ -11137,7 +11145,7 @@ msgstr "" #. l10n: See https://www.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:72 -#: libraries/classes/Util.php:707 +#: libraries/classes/Util.php:708 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" @@ -11348,18 +11356,18 @@ msgstr "" "以 HOTP 及 TOTP 應用程式,為 FreeOTP、Google Authenticator 或 AuthyProvides " "提供認證。" -#: libraries/classes/Plugins/TwoFactor/Key.php:204 +#: libraries/classes/Plugins/TwoFactor/Key.php:208 msgid "Hardware Security Key (FIDO U2F)" msgstr "硬體安全鍵 (FIDO U2F)" -#: libraries/classes/Plugins/TwoFactor/Key.php:214 +#: libraries/classes/Plugins/TwoFactor/Key.php:218 #, fuzzy #| msgid "" #| "Provides authentication using hardware security tokens supporting FIDO " #| "U2F." msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F, " -"such as a Yubikey." +"such as a YubiKey." msgstr "以支援 FIDO U2F 的硬體安全鍵提供認證。" #: libraries/classes/Plugins/TwoFactorPlugin.php:73 @@ -11387,6 +11395,22 @@ msgstr "簡易雙因素認證" msgid "For testing purposes only!" msgstr "僅供測試!" +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:180 +#, fuzzy +#| msgid "Hardware Security Key (FIDO U2F)" +msgid "Hardware Security Key (WebAuthn/FIDO2)" +msgstr "硬體安全鍵 (FIDO U2F)" + +#: libraries/classes/Plugins/TwoFactor/WebAuthn.php:186 +#, fuzzy +#| msgid "" +#| "Provides authentication using hardware security tokens supporting FIDO " +#| "U2F." +msgid "" +"Provides authentication using hardware security tokens supporting the " +"WebAuthn/FIDO2 protocol, such as a YubiKey." +msgstr "以支援 FIDO U2F 的硬體安全鍵提供認證。" + #: libraries/classes/Query/Utilities.php:97 msgid "" "The server is not responding (or the local server's socket is not correctly " @@ -12130,7 +12154,7 @@ msgstr "此 MySQL 伺服器已停用 %s。" msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 伺服器不支援 %s 儲存引擎。" -#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2101 +#: libraries/classes/Table/Indexes.php:58 libraries/classes/Table.php:2106 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主鍵名稱必須為 PRIMARY!" @@ -12143,39 +12167,39 @@ msgstr "資料表「%s」的索引有問題" msgid "Unknown table status:" msgstr "資料表狀態不明:" -#: libraries/classes/Table.php:1006 +#: libraries/classes/Table.php:1011 #, php-format msgid "Source database `%s` was not found!" msgstr "找不到來源資料庫「%s」!" -#: libraries/classes/Table.php:1015 +#: libraries/classes/Table.php:1020 #, php-format msgid "Target database `%s` was not found!" msgstr "找不到目標資料庫「%s」!" -#: libraries/classes/Table.php:1473 +#: libraries/classes/Table.php:1478 msgid "Invalid database:" msgstr "資料庫無效:" -#: libraries/classes/Table.php:1491 +#: libraries/classes/Table.php:1496 msgid "Invalid table name:" msgstr "資料表名稱無效:" -#: libraries/classes/Table.php:1531 +#: libraries/classes/Table.php:1536 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "未能將資料表 %1$s 重新命名為 %2$s!" -#: libraries/classes/Table.php:1548 +#: libraries/classes/Table.php:1553 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "資料表 %1$s 已重新命名為 %2$s。" -#: libraries/classes/Table.php:1793 +#: libraries/classes/Table.php:1798 msgid "Could not save table UI preferences!" msgstr "無法儲存資料表的「介面偏好」!" -#: libraries/classes/Table.php:1819 +#: libraries/classes/Table.php:1824 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -12183,7 +12207,7 @@ msgid "" msgstr "" "未能清理資料表的「介面偏好」 (詳見 $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/classes/Table.php:1954 +#: libraries/classes/Table.php:1959 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -12193,15 +12217,15 @@ msgstr "" "無法儲存介面偏好屬性「%s」。這個修改在更新頁面後會消失。請檢查該資料表的結構" "是否改了。" -#: libraries/classes/Table.php:2113 +#: libraries/classes/Table.php:2118 msgid "Can't rename index to PRIMARY!" msgstr "無法將索引改名為「主鍵(PRIMARY)」!" -#: libraries/classes/Table.php:2139 +#: libraries/classes/Table.php:2144 msgid "No index parts defined!" msgstr "沒有定義的索引部分!" -#: libraries/classes/Table.php:2435 +#: libraries/classes/Table.php:2440 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "於 %1$s 建立外鍵時發生錯誤 (請檢查資料類型)" @@ -12357,13 +12381,13 @@ msgstr "已刪除 %2$s 的 %1$s 版本。" msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" -#: libraries/classes/Types.php:207 +#: libraries/classes/Types.php:231 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" "1 位元組整數:若允許負數,範圍由 -128 至 127;若不允許負數,範圍由 0 至 255" -#: libraries/classes/Types.php:210 +#: libraries/classes/Types.php:234 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" @@ -12371,7 +12395,7 @@ msgstr "" "2 位元組整數:若允許負數,範圍由 -32,768 至 32,767;若不允許負數,範圍由 0 " "至 65,535" -#: libraries/classes/Types.php:214 +#: libraries/classes/Types.php:238 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" @@ -12379,7 +12403,7 @@ msgstr "" "3 位元組整數:若允許負數,範圍由 -8,388,608 至 8,388,607;若不允許負數,範圍" "由 0 至 16,777,215" -#: libraries/classes/Types.php:219 +#: libraries/classes/Types.php:243 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" @@ -12387,7 +12411,7 @@ msgstr "" "4 位元組整數:若允許負數,範圍由 -2,147,483,648 至 2,147,483,647;若不允許負" "數,範圍由 0 至 4,294,967,295" -#: libraries/classes/Types.php:226 +#: libraries/classes/Types.php:250 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" @@ -12396,14 +12420,14 @@ msgstr "" "9,223,372,036,854,775,807;若不允許負數,範圍由 0 至 " "18,446,744,073,709,551,615" -#: libraries/classes/Types.php:233 +#: libraries/classes/Types.php:257 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" "定點數 (M, D) - (M) 最大為 65 位數 (預設 10),(D) 小數位數最大為 30 (預設 0)" -#: libraries/classes/Types.php:240 +#: libraries/classes/Types.php:264 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" @@ -12411,7 +12435,7 @@ msgstr "" "浮點數,範圍為 -3.402823466E+38 至 -1.175494351E-38、0 及 1.175494351E-38 至 " "3.402823466E+38" -#: libraries/classes/Types.php:247 +#: libraries/classes/Types.php:271 msgid "" "A double-precision floating-point number, allowable values are " "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " @@ -12420,39 +12444,39 @@ msgstr "" "倍準浮點數,範圍為 -1.7976931348623157E+308 至 -2.2250738585072014E-308、0 " "及 2.2250738585072014E-308 至 1.7976931348623157E+308" -#: libraries/classes/Types.php:253 +#: libraries/classes/Types.php:277 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "倍準浮點數的別名 (例外: 在 REAL_AS_FLOAT 的模式中為 FLOAT 的別名)" -#: libraries/classes/Types.php:256 +#: libraries/classes/Types.php:280 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "位元欄類型 (M),每個值使用 M 個位元 (預設值為 1,最大值為 64)" -#: libraries/classes/Types.php:260 +#: libraries/classes/Types.php:284 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "TINYINT(1) 的別名,當值為 0 時視為 false,非 0 的值則視為 true" -#: libraries/classes/Types.php:264 +#: libraries/classes/Types.php:288 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE 的別名" -#: libraries/classes/Types.php:268 +#: libraries/classes/Types.php:292 #, php-format msgid "A date, supported range is %1$s to %2$s" msgstr "日期,有效範圍為 %1$s 至 %2$s" -#: libraries/classes/Types.php:275 +#: libraries/classes/Types.php:299 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "日期與時間組合,有效範圍為 %1$s 至 %2$s" -#: libraries/classes/Types.php:282 +#: libraries/classes/Types.php:306 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" @@ -12460,12 +12484,12 @@ msgstr "" "時間戳記,有效範圍為 1970-01-01 00:00:01 UTC 至 2038-01-09 03:14:07 UTC,以" "自 1970-01-01 00:00:00 UTC 計算的秒數儲存" -#: libraries/classes/Types.php:289 +#: libraries/classes/Types.php:313 #, php-format msgid "A time, range is %1$s to %2$s" msgstr "時間,有效範圍為 %1$s 至 %2$s" -#: libraries/classes/Types.php:296 +#: libraries/classes/Types.php:320 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" @@ -12473,21 +12497,21 @@ msgstr "" "以 4 位數 (預設) 或 2 位數的方式表示年份,有效範圍為 70 (1970年) 至 69 (2069" "年) 或 1901 至 2155 和 0000" -#: libraries/classes/Types.php:303 +#: libraries/classes/Types.php:327 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" "固定長度 (0 至 255,預設為 1) 的字串,在儲存長度不足時會在右邊以空格補足" -#: libraries/classes/Types.php:310 +#: libraries/classes/Types.php:334 #, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "可變長度 (%s) 的字串,實際的最大長度需視資料列大小限制而定" -#: libraries/classes/Types.php:317 +#: libraries/classes/Types.php:341 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" @@ -12495,7 +12519,7 @@ msgstr "" "純文字(TEXT)欄位,最大長度為 255 (2^8 - 1) 個字元,儲存時會附加 1 個位元組在" "最前面用來記錄長度" -#: libraries/classes/Types.php:324 +#: libraries/classes/Types.php:348 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" @@ -12503,7 +12527,7 @@ msgstr "" "純文字(TEXT)欄位,最大長度為 65,535 (2^16 - 1) 個字元,儲存時會附加 2 個位元" "組在最前面用來記錄長度" -#: libraries/classes/Types.php:331 +#: libraries/classes/Types.php:355 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" @@ -12511,7 +12535,7 @@ msgstr "" "純文字(TEXT)欄位,最大長度為 16,777,215 (2^24 - 1) 個字元,儲存時會附加 3 個" "位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:338 +#: libraries/classes/Types.php:362 msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " @@ -12520,19 +12544,19 @@ msgstr "" "純文字(TEXT)欄位,最大長度為 4,294,967,295 或 4GiB (2^32 - 1) 個字元,儲存時" "會附加 4 個位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:345 +#: libraries/classes/Types.php:369 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "類似 CHAR 類型,但此類型以二進位的方式儲存字串,而不是字元" -#: libraries/classes/Types.php:350 +#: libraries/classes/Types.php:374 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "類似 VARCHAR 類型,但此類型以二進位的方式儲存字串,而不是字元" -#: libraries/classes/Types.php:356 +#: libraries/classes/Types.php:380 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" @@ -12540,7 +12564,7 @@ msgstr "" "大型二進位物件(BLOB)欄位,最大長度為 255 (2^8 - 1) 個位元組,儲存時會附加 1 " "個位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:362 +#: libraries/classes/Types.php:386 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" @@ -12548,7 +12572,7 @@ msgstr "" "大型二進位物件(BLOB)欄位,最大長度為 16,777,215 (2^24 - 1) 個位元組,儲存時會" "附加 3 個位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:369 +#: libraries/classes/Types.php:393 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" @@ -12556,7 +12580,7 @@ msgstr "" "大型二進位物件(BLOB)欄位,最大長度為 65,535 (2^16 - 1) 個位元組,儲存時會附" "加 2 個位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:375 +#: libraries/classes/Types.php:399 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" @@ -12564,71 +12588,77 @@ msgstr "" "大型二進位物件(BLOB)欄位,最大長度為 4,294,967,295 或 4GiB (2^32 - 1) 個位元" "組,儲存時會附加 4 個位元組在最前面用來記錄長度" -#: libraries/classes/Types.php:382 +#: libraries/classes/Types.php:406 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "列舉類型(ENUM),在清單中最多可有 65,535 個值或特殊 '' 錯誤值" -#: libraries/classes/Types.php:386 +#: libraries/classes/Types.php:410 msgid "A single value chosen from a set of up to 64 members" msgstr "可從最多可 64 個成員中複選組成的一個值" -#: libraries/classes/Types.php:389 +#: libraries/classes/Types.php:413 msgid "A type that can store a geometry of any type" msgstr "可以儲存任何幾何圖形的類型" -#: libraries/classes/Types.php:392 +#: libraries/classes/Types.php:416 msgid "A point in 2-dimensional space" msgstr "2 維空間的點" -#: libraries/classes/Types.php:395 +#: libraries/classes/Types.php:419 msgid "A curve with linear interpolation between points" msgstr "點與點之間的線性插值曲線" -#: libraries/classes/Types.php:398 +#: libraries/classes/Types.php:422 msgid "A polygon" msgstr "多邊形" -#: libraries/classes/Types.php:401 +#: libraries/classes/Types.php:425 msgid "A collection of points" msgstr "點的集合" -#: libraries/classes/Types.php:404 +#: libraries/classes/Types.php:428 msgid "A collection of curves with linear interpolation between points" msgstr "點與點之間線性插值曲線的集合" -#: libraries/classes/Types.php:407 +#: libraries/classes/Types.php:431 msgid "A collection of polygons" msgstr "多邊形的集合" -#: libraries/classes/Types.php:410 +#: libraries/classes/Types.php:434 msgid "A collection of geometry objects of any type" msgstr "任何類型幾何圖形的集合" -#: libraries/classes/Types.php:413 +#: libraries/classes/Types.php:437 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "儲存並開啟對 JSON (JavaScript Object Notation) 文件資料的快速存取" -#: libraries/classes/Types.php:416 +#: libraries/classes/Types.php:440 msgid "" "Intended for storage of IPv6 addresses, as well as IPv4 addresses assuming " "conventional mapping of IPv4 addresses into IPv6 addresses" msgstr "" -#: libraries/classes/Types.php:746 +#: libraries/classes/Types.php:445 +#, fuzzy +#| msgid "Stores a Universally Unique Identifier (UUID)" +msgid "128-bit UUID (Universally Unique Identifier)" +msgstr "存儲一個通用唯一識別碼 (UUID)" + +#: libraries/classes/Types.php:800 msgctxt "numeric types" msgid "Numeric" msgstr "數值" -#: libraries/classes/Types.php:764 +#: libraries/classes/Types.php:818 msgctxt "date and time types" msgid "Date and time" msgstr "日期及時間" -#: libraries/classes/Types.php:800 +#: libraries/classes/Types.php:854 msgctxt "spatial types" msgid "Spatial" msgstr "空間類型" @@ -12656,85 +12686,85 @@ msgstr "無法儲存設定" msgid "The phpMyAdmin configuration storage database could not be accessed." msgstr "於當前資料庫%s建立%s phpMyAdmin 設定儲存空間。" -#: libraries/classes/Util.php:131 +#: libraries/classes/Util.php:132 #, php-format msgid "Max: %s%s" msgstr "上限:%s %s" #. l10n: Short month name #. l10n: Short month name for January -#: libraries/classes/Util.php:664 templates/javascript/variables.twig:34 +#: libraries/classes/Util.php:665 templates/javascript/variables.twig:34 msgid "Jan" msgstr "1月" #. l10n: Short month name #. l10n: Short month name for February -#: libraries/classes/Util.php:666 templates/javascript/variables.twig:35 +#: libraries/classes/Util.php:667 templates/javascript/variables.twig:35 msgid "Feb" msgstr "2月" #. l10n: Short month name #. l10n: Short month name for March -#: libraries/classes/Util.php:668 templates/javascript/variables.twig:36 +#: libraries/classes/Util.php:669 templates/javascript/variables.twig:36 msgid "Mar" msgstr "3月" #. l10n: Short month name #. l10n: Short month name for April -#: libraries/classes/Util.php:670 templates/javascript/variables.twig:37 +#: libraries/classes/Util.php:671 templates/javascript/variables.twig:37 msgid "Apr" msgstr "4月" #. l10n: Short month name -#: libraries/classes/Util.php:672 +#: libraries/classes/Util.php:673 msgctxt "Short month name" msgid "May" msgstr "5月" #. l10n: Short month name #. l10n: Short month name for June -#: libraries/classes/Util.php:674 templates/javascript/variables.twig:39 +#: libraries/classes/Util.php:675 templates/javascript/variables.twig:39 msgid "Jun" msgstr "6月" #. l10n: Short month name #. l10n: Short month name for July -#: libraries/classes/Util.php:676 templates/javascript/variables.twig:40 +#: libraries/classes/Util.php:677 templates/javascript/variables.twig:40 msgid "Jul" msgstr "7月" #. l10n: Short month name #. l10n: Short month name for August -#: libraries/classes/Util.php:678 templates/javascript/variables.twig:41 +#: libraries/classes/Util.php:679 templates/javascript/variables.twig:41 msgid "Aug" msgstr "8月" #. l10n: Short month name #. l10n: Short month name for September -#: libraries/classes/Util.php:680 templates/javascript/variables.twig:42 +#: libraries/classes/Util.php:681 templates/javascript/variables.twig:42 msgid "Sep" msgstr "9月" #. l10n: Short month name #. l10n: Short month name for October -#: libraries/classes/Util.php:682 templates/javascript/variables.twig:43 +#: libraries/classes/Util.php:683 templates/javascript/variables.twig:43 msgid "Oct" msgstr "10月" #. l10n: Short month name #. l10n: Short month name for November -#: libraries/classes/Util.php:684 templates/javascript/variables.twig:44 +#: libraries/classes/Util.php:685 templates/javascript/variables.twig:44 msgid "Nov" msgstr "11月" #. l10n: Short month name #. l10n: Short month name for December -#: libraries/classes/Util.php:686 templates/javascript/variables.twig:45 +#: libraries/classes/Util.php:687 templates/javascript/variables.twig:45 msgid "Dec" msgstr "12月" #. l10n: Short week day name for Sunday -#: libraries/classes/Util.php:690 +#: libraries/classes/Util.php:691 #, fuzzy #| msgid "Sun" msgctxt "Short week day name for Sunday" @@ -12742,55 +12772,55 @@ msgid "Sun" msgstr "週日" #. l10n: Short week day name for Monday -#: libraries/classes/Util.php:692 templates/javascript/variables.twig:58 +#: libraries/classes/Util.php:693 templates/javascript/variables.twig:58 msgid "Mon" msgstr "週一" #. l10n: Short week day name for Tuesday -#: libraries/classes/Util.php:694 templates/javascript/variables.twig:59 +#: libraries/classes/Util.php:695 templates/javascript/variables.twig:59 msgid "Tue" msgstr "週二" #. l10n: Short week day name for Wednesday -#: libraries/classes/Util.php:696 templates/javascript/variables.twig:60 +#: libraries/classes/Util.php:697 templates/javascript/variables.twig:60 msgid "Wed" msgstr "週三" #. l10n: Short week day name for Thursday -#: libraries/classes/Util.php:698 templates/javascript/variables.twig:61 +#: libraries/classes/Util.php:699 templates/javascript/variables.twig:61 msgid "Thu" msgstr "週四" #. l10n: Short week day name for Friday -#: libraries/classes/Util.php:700 templates/javascript/variables.twig:62 +#: libraries/classes/Util.php:701 templates/javascript/variables.twig:62 msgid "Fri" msgstr "週五" #. l10n: Short week day name for Saturday -#: libraries/classes/Util.php:702 templates/javascript/variables.twig:63 +#: libraries/classes/Util.php:703 templates/javascript/variables.twig:63 msgid "Sat" msgstr "週六" -#: libraries/classes/Util.php:728 +#: libraries/classes/Util.php:729 msgctxt "AM/PM indication in time" msgid "PM" msgstr "下午" -#: libraries/classes/Util.php:730 +#: libraries/classes/Util.php:731 msgctxt "AM/PM indication in time" msgid "AM" msgstr "上午" -#: libraries/classes/Util.php:801 +#: libraries/classes/Util.php:802 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/classes/Util.php:1947 +#: libraries/classes/Util.php:1963 msgid "Users" msgstr "使用者" -#: libraries/classes/Util.php:2559 +#: libraries/classes/Util.php:2579 #: templates/database/multi_table_query/form.twig:67 msgid "Sort" msgstr "排序" @@ -12963,7 +12993,7 @@ msgstr "以上皆是" msgid "neither of the above" msgstr "以上皆非" -#: setup/index.php:32 +#: setup/index.php:33 msgid "Configuration already exists, setup is disabled!" msgstr "設定已存在,無法設置!" @@ -12998,47 +13028,47 @@ msgstr "無" msgid "As defined:" msgstr "定義:" -#: templates/columns_definitions/column_attributes.twig:97 +#: templates/columns_definitions/column_attributes.twig:102 msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" msgstr "您的權限不足以執行此操作;請參閱說明文件了解詳細資訊" -#: templates/columns_definitions/column_attributes.twig:111 +#: templates/columns_definitions/column_attributes.twig:116 #: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18 #: templates/table/structure/display_structure.twig:152 #: templates/table/structure/display_structure.twig:160 #: templates/table/structure/display_structure.twig:298 -#: templates/table/structure/display_structure.twig:460 +#: templates/table/structure/display_structure.twig:477 #: templates/table/tracking/structure_snapshot_indexes.twig:7 msgid "Unique" msgstr "獨一" -#: templates/columns_definitions/column_attributes.twig:119 +#: templates/columns_definitions/column_attributes.twig:124 #: templates/table/structure/display_structure.twig:219 #: templates/table/structure/display_structure.twig:222 #: templates/table/structure/display_structure.twig:307 msgid "Fulltext" msgstr "全文搜尋" -#: templates/columns_definitions/column_attributes.twig:123 +#: templates/columns_definitions/column_attributes.twig:128 #: templates/table/structure/display_structure.twig:192 #: templates/table/structure/display_structure.twig:200 #: templates/table/structure/display_structure.twig:304 msgid "Spatial" msgstr "空間" -#: templates/columns_definitions/column_attributes.twig:156 +#: templates/columns_definitions/column_attributes.twig:165 #: templates/table/structure/display_partitions.twig:26 msgid "Expression" msgstr "表示" -#: templates/columns_definitions/column_attributes.twig:177 +#: templates/columns_definitions/column_attributes.twig:186 msgid "first" msgstr "第一個" -#: templates/columns_definitions/column_attributes.twig:182 -#: templates/table/structure/display_structure.twig:433 +#: templates/columns_definitions/column_attributes.twig:191 +#: templates/table/structure/display_structure.twig:450 #, php-format msgid "after %s" msgstr "於 %s 之後" @@ -13168,7 +13198,7 @@ msgstr "引擎" #: templates/database/routines/editor_form.twig:163 #: templates/database/structure/table_header.twig:46 templates/indexes.twig:24 #: templates/table/structure/display_partitions.twig:31 -#: templates/table/structure/display_structure.twig:466 +#: templates/table/structure/display_structure.twig:483 #: templates/table/tracking/structure_snapshot_columns.twig:12 #: templates/table/tracking/structure_snapshot_indexes.twig:13 msgid "Comment" @@ -13241,7 +13271,7 @@ msgstr "欄位預設值,請輸入單一值,不可加反斜線或引號,即 #: templates/table/operations/index.twig:151 #: templates/table/search/index.twig:40 #: templates/table/structure/display_structure.twig:23 -#: templates/table/structure/display_structure.twig:464 +#: templates/table/structure/display_structure.twig:481 #: templates/table/structure/display_table_stats.twig:108 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:11 @@ -13514,7 +13544,7 @@ msgid "Search this table" msgstr "搜尋此資料表" #: templates/database/central_columns/main.twig:178 -#: templates/table/structure/display_structure.twig:418 +#: templates/table/structure/display_structure.twig:435 msgid "Add column" msgstr "新增欄位" @@ -13543,7 +13573,7 @@ msgstr "點選排序。" #: templates/table/privileges/index.twig:24 #: templates/table/structure/display_partitions.twig:33 #: templates/table/structure/display_structure.twig:34 -#: templates/table/structure/display_structure.twig:457 +#: templates/table/structure/display_structure.twig:474 #: templates/table/tracking/main.twig:32 #: templates/table/tracking/report_table.twig:8 msgid "Action" @@ -13575,24 +13605,24 @@ msgstr "資料庫備註:" #: templates/database/data_dictionary/index.twig:124 #: templates/database/structure/index.twig:19 #: templates/display/results/table.twig:258 -#: templates/table/structure/display_structure.twig:376 +#: templates/table/structure/display_structure.twig:393 msgid "Print" msgstr "列印" #: templates/database/data_dictionary/index.twig:76 templates/indexes.twig:19 -#: templates/table/structure/display_structure.twig:461 +#: templates/table/structure/display_structure.twig:478 #: templates/table/tracking/structure_snapshot_indexes.twig:8 msgid "Packed" msgstr "緊湊" #: templates/database/data_dictionary/index.twig:78 templates/indexes.twig:21 -#: templates/table/structure/display_structure.twig:463 +#: templates/table/structure/display_structure.twig:480 #: templates/table/tracking/structure_snapshot_indexes.twig:10 msgid "Cardinality" msgstr "基數" #: templates/database/data_dictionary/index.twig:117 templates/indexes.twig:92 -#: templates/table/structure/display_structure.twig:542 +#: templates/table/structure/display_structure.twig:559 msgid "No index defined!" msgstr "沒有已定義的索引!" @@ -14399,6 +14429,11 @@ msgstr[0] "%s 張資料表" msgid "Sum" msgstr "總計" +#: templates/database/structure/bulk_action_modal.twig:12 +#: templates/database/structure/check_all_tables.twig:56 +msgid "Continue" +msgstr "繼續" + #: templates/database/structure/change_prefix_form.twig:7 msgid "From" msgstr "從" @@ -14490,16 +14525,11 @@ msgstr "從中央清單移除欄位" msgid "Make consistent with central list" msgstr "設為與中央清單一致" -#: templates/database/structure/check_all_tables.twig:53 -#: templates/database/structure/check_all_tables.twig:73 -msgid "Continue" -msgstr "繼續" - -#: templates/database/structure/check_all_tables.twig:65 +#: templates/database/structure/check_all_tables.twig:48 msgid "Are you sure?" msgstr "確定嗎?" -#: templates/database/structure/check_all_tables.twig:69 +#: templates/database/structure/check_all_tables.twig:52 msgid "" "This action may change some of the columns definition.[br]Are you sure you " "want to continue?" @@ -14637,7 +14667,7 @@ msgstr "尚未追蹤的資料表" #: templates/database/tracking/tables.twig:176 #: templates/database/tracking/tables.twig:188 #: templates/database/tracking/tables.twig:189 -#: templates/table/structure/display_structure.twig:396 +#: templates/table/structure/display_structure.twig:413 msgid "Track table" msgstr "追蹤資料表" @@ -15371,17 +15401,17 @@ msgid "Other options" msgstr "其他選項" #: templates/indexes.twig:39 -#: templates/table/structure/display_structure.twig:489 +#: templates/table/structure/display_structure.twig:506 msgid "Rename" msgstr "重新命名" #: templates/indexes.twig:45 -#: templates/table/structure/display_structure.twig:495 +#: templates/table/structure/display_structure.twig:512 msgid "The primary key has been dropped." msgstr "已刪除主鍵。" #: templates/indexes.twig:50 -#: templates/table/structure/display_structure.twig:500 +#: templates/table/structure/display_structure.twig:517 #, php-format msgid "Index %s has been dropped." msgstr "已刪除索引 %s。" @@ -15687,6 +15717,25 @@ msgstr "請將 FIDO U2F 裝置連接電腦的 USB 埠,然後於裝置確認登 msgid "Verify" msgstr "驗證" +#: templates/login/twofactor/webauthn_creation.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm registration on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm registration on the " +"device." +msgstr "請將 FIDO U2F 裝置連接電腦的 USB 埠,然後在該裝置確認登記。" + +#: templates/login/twofactor/webauthn_request.twig:1 +#, fuzzy +#| msgid "" +#| "Please connect your FIDO U2F device into your computer's USB port. Then " +#| "confirm login on the device." +msgid "" +"Please connect your WebAuthn/FIDO2 device. Then confirm login on the device." +msgstr "請將 FIDO U2F 裝置連接電腦的 USB 埠,然後於裝置確認登入。" + #: templates/menu/breadcrumbs.twig:27 #, fuzzy #| msgid "Views:" @@ -15694,6 +15743,7 @@ msgid "View:" msgstr "檢視表:" #: templates/modals/index_dialog_modal.twig:30 +#: templates/table/structure/display_structure.twig:363 msgid "Go back" msgstr "" @@ -15862,8 +15912,8 @@ msgid "You can reset all your settings and restore them to default values." msgstr "可以將所有設定恢復為預設值。" #: templates/preferences/two_factor/configure.twig:5 -#: templates/preferences/two_factor/main.twig:57 -#: templates/preferences/two_factor/main.twig:70 +#: templates/preferences/two_factor/main.twig:68 +#: templates/preferences/two_factor/main.twig:81 msgid "Configure two-factor authentication" msgstr "設定雙因素認證" @@ -15882,7 +15932,7 @@ msgid "" msgstr "由於停用了雙因素認證,現在又再只能以密碼登入。" #: templates/preferences/two_factor/confirm.twig:13 -#: templates/preferences/two_factor/main.twig:46 +#: templates/preferences/two_factor/main.twig:57 msgid "Disable two-factor authentication" msgstr "停用雙因素認證" @@ -15897,6 +15947,7 @@ msgid "" msgstr "未能提供雙因素認證;請安裝所需元件,以啟用認證後端程式。" #: templates/preferences/two_factor/main.twig:12 +#: templates/preferences/two_factor/main.twig:27 msgid "Following composer packages are missing:" msgstr "缺少以下撰寫器套件:" @@ -15910,12 +15961,21 @@ msgid "" msgstr "可提供雙因素認證,但並未設定給此帳號。" #: templates/preferences/two_factor/main.twig:26 +#, fuzzy +#| msgid "" +#| "Two-factor authentication is not available, please install optional " +#| "dependencies to enable authentication backends." +msgid "" +"Please install optional dependencies to enable more authentication backends." +msgstr "未能提供雙因素認證;請安裝所需元件,以啟用認證後端程式。" + +#: templates/preferences/two_factor/main.twig:37 msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." msgstr "未能提供雙因素認證;啟用 phpMyAdmin 設定儲存空間以使用。" -#: templates/preferences/two_factor/main.twig:41 +#: templates/preferences/two_factor/main.twig:52 msgid "You have enabled two factor authentication." msgstr "已啟用雙因素認證。" @@ -18105,7 +18165,7 @@ msgid "Start row:" msgstr "起始列號:" #: templates/table/structure/display_partitions.twig:4 -#: templates/table/structure/display_structure.twig:580 +#: templates/table/structure/display_structure.twig:597 msgid "Partitions" msgstr "分區" @@ -18187,7 +18247,7 @@ msgstr "新增至中央欄位" #: templates/table/structure/display_structure.twig:328 #: templates/table/structure/display_structure.twig:332 -#: templates/table/structure/display_structure.twig:400 +#: templates/table/structure/display_structure.twig:417 msgid "Move columns" msgstr "移動欄位" @@ -18195,33 +18255,33 @@ msgstr "移動欄位" msgid "Move the columns by dragging them up and down." msgstr "請上下拖曳來移動欄位次序。" -#: templates/table/structure/display_structure.twig:372 +#: templates/table/structure/display_structure.twig:389 #: templates/view_create.twig:13 msgid "Edit view" msgstr "編輯檢視表" -#: templates/table/structure/display_structure.twig:386 +#: templates/table/structure/display_structure.twig:403 msgid "Propose table structure" msgstr "提議資料表結構" -#: templates/table/structure/display_structure.twig:403 +#: templates/table/structure/display_structure.twig:420 msgid "Normalize" msgstr "正規化" -#: templates/table/structure/display_structure.twig:409 +#: templates/table/structure/display_structure.twig:426 msgid "Track view" msgstr "追蹤檢視表" -#: templates/table/structure/display_structure.twig:423 +#: templates/table/structure/display_structure.twig:440 #, php-format msgid "Add %s column(s)" msgstr "增加 %s 個欄位" -#: templates/table/structure/display_structure.twig:428 +#: templates/table/structure/display_structure.twig:445 msgid "at beginning of table" msgstr "於資料表起始" -#: templates/table/structure/display_structure.twig:552 +#: templates/table/structure/display_structure.twig:569 #, php-format msgid "Create an index on %s columns" msgstr "在第%s個欄位建立索引" @@ -19033,9 +19093,6 @@ msgstr "欄位名稱" #~ msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #~ msgstr "為 BIGINT NOT NULL AUTO_INCREMENT UNIQUE 的別名" -#~ msgid "Stores a Universally Unique Identifier (UUID)" -#~ msgstr "存儲一個通用唯一識別碼 (UUID)" - #~ msgid "" #~ "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " #~ "UTC; TIMESTAMP(6) can store microseconds" From 82d268a551b23e0bccbd77d5d2a84d8b15d97781 Mon Sep 17 00:00:00 2001 From: Kristijan Fremen Velkovski Date: Mon, 16 Jan 2023 01:32:36 +0000 Subject: [PATCH 6/6] Translated using Weblate (Macedonian) Currently translated at 24.8% (850 of 3418 strings) [ci skip] Translation: phpMyAdmin/5.2 Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/mk/ Signed-off-by: Kristijan Fremen Velkovski --- po/mk.po | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/po/mk.po b/po/mk.po index fe6c13c23b..de992d908e 100644 --- a/po/mk.po +++ b/po/mk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 5.2.1-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2022-09-29 00:17-0300\n" -"PO-Revision-Date: 2023-01-07 14:25+0000\n" +"PO-Revision-Date: 2023-01-16 21:39+0000\n" "Last-Translator: Kristijan Fremen Velkovski \n" "Language-Team: Macedonian \n" @@ -12878,9 +12878,9 @@ msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" #: libraries/classes/Types.php:268 -#, fuzzy, php-format +#, php-format msgid "A date, supported range is %1$s to %2$s" -msgstr "Верзија на серверот" +msgstr "Датум, поддржан опсег од %1$s до %2$s" #: libraries/classes/Types.php:275 #, php-format @@ -12894,9 +12894,9 @@ msgid "" msgstr "" #: libraries/classes/Types.php:289 -#, fuzzy, php-format +#, php-format msgid "A time, range is %1$s to %2$s" -msgstr "Верзија на серверот" +msgstr "Време, опсег од %1$s до %2$s" #: libraries/classes/Types.php:296 msgid "" @@ -14009,14 +14009,14 @@ msgid "" msgstr "" #: templates/create_tracking_version.twig:10 -#, fuzzy, php-format +#, php-format msgid "Create version %1$s of %2$s" -msgstr "Верзија на серверот" +msgstr "Создади верзија %1$s од %2$s" #: templates/create_tracking_version.twig:15 -#, fuzzy, php-format +#, php-format msgid "Create version %1$s" -msgstr "Верзија на серверот" +msgstr "Создади верзија %1$s" #: templates/create_tracking_version.twig:21 msgid "Track these data definition statements:" @@ -14194,17 +14194,14 @@ msgid "See table structure" msgstr "База на податоци" #: templates/database/designer/database_tables.twig:91 -#, fuzzy, php-format -#| msgctxt "Create SELECT … query" -#| msgid "Select" +#, php-format msgid "Select \"%s\"" -msgstr "избери се" +msgstr "Избери \"%s\"" #: templates/database/designer/database_tables.twig:109 -#, fuzzy, php-format -#| msgid "Number of rows per page" +#, php-format msgid "Add an option for column \"%s\"." -msgstr "Број на записи на страница" +msgstr "Додади опција за колона \"%s\"." #: templates/database/designer/edit_delete_pages.twig:6 msgid "Page to open" @@ -14471,10 +14468,9 @@ msgstr "Вид на настан" #: templates/database/events/editor_form.twig:48 #: templates/database/routines/editor_form.twig:38 -#, fuzzy, php-format -#| msgid "Change" +#, php-format msgid "Change to %s" -msgstr "Промени" +msgstr "Промени во %s" #: templates/database/events/editor_form.twig:53 msgid "Execute at"