Merge branch 'QA_5_2' into STABLE
This commit is contained in:
commit
20c93e1f48
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,42 +0,0 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve phpMyAdmin
|
||||
|
||||
---
|
||||
|
||||
### Describe the bug
|
||||
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
### To Reproduce
|
||||
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
### Expected behavior
|
||||
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
### Screenshots
|
||||
|
||||
If applicable, add screenshots to help explain the bug.
|
||||
|
||||
### Server configuration
|
||||
|
||||
- Operating system:
|
||||
- Web server:
|
||||
- Database version:
|
||||
- PHP version:
|
||||
- phpMyAdmin version:
|
||||
|
||||
### Client configuration
|
||||
|
||||
- Browser:
|
||||
- Operating system:
|
||||
|
||||
### Additional context
|
||||
|
||||
Add any other context about the bug here.
|
||||
89
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
89
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
name: Bug report
|
||||
description: Create a report to help us improve phpMyAdmin
|
||||
title: "[Bug]: "
|
||||
labels: ["Bug"]
|
||||
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Describe the bug
|
||||
description: A clear and concise description of what the bug is.
|
||||
placeholder: When ...
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: how-to-reproduce
|
||||
attributes:
|
||||
label: How to Reproduce
|
||||
description: Give us the steps to reproduce the bug on our side.
|
||||
placeholder: |
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: Expected behavior
|
||||
description: A clear and concise description of what you expected to happen.
|
||||
placeholder: I expected ...
|
||||
- type: textarea
|
||||
id: screenshots
|
||||
attributes:
|
||||
label: Screenshots
|
||||
description: If applicable, add screenshots to help explain the bug.
|
||||
- type: dropdown
|
||||
id: operating-systems
|
||||
attributes:
|
||||
label: Operating System
|
||||
description: In which operating system this bug appears?
|
||||
multiple: true
|
||||
options:
|
||||
- Linux
|
||||
- macOS
|
||||
- Windows
|
||||
- type: input
|
||||
id: web-server
|
||||
attributes:
|
||||
label: Web Server
|
||||
placeholder: Apache/2.4.63
|
||||
- type: dropdown
|
||||
id: database-server
|
||||
attributes:
|
||||
label: Database Server
|
||||
description: In which database server this bug appears?
|
||||
multiple: true
|
||||
options:
|
||||
- MySQL
|
||||
- MariaDB
|
||||
- PerconaDB
|
||||
- AuroraDB (by AWS)
|
||||
- Other
|
||||
- type: input
|
||||
id: database-version
|
||||
attributes:
|
||||
label: Database version
|
||||
placeholder: SELECT @@version;
|
||||
- type: input
|
||||
id: php-version
|
||||
attributes:
|
||||
label: PHP version
|
||||
placeholder: 8.3.1
|
||||
- type: input
|
||||
id: phpmyadmin-version
|
||||
attributes:
|
||||
label: phpMyAdmin version
|
||||
placeholder: 5.2.1
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: browser
|
||||
attributes:
|
||||
label: browser
|
||||
placeholder: Firefox v136.0.2
|
||||
- type: textarea
|
||||
id: additional-context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: Add any other context about the bug here.
|
||||
23
.github/ISSUE_TEMPLATE/feature_request.md
vendored
23
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,23 +0,0 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for phpMyAdmin
|
||||
|
||||
---
|
||||
|
||||
### Is your feature request related to a problem? Please describe.
|
||||
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
### Describe the solution you'd like
|
||||
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
### Describe alternatives you've considered
|
||||
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
### Additional context
|
||||
|
||||
- phpMyAdmin version:
|
||||
|
||||
Add any other context or screenshots about the feature request here.
|
||||
45
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
45
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Feature request
|
||||
description: Suggest an idea for phpMyAdmin
|
||||
title: "[Feat]: "
|
||||
labels: ["Enhancement"]
|
||||
|
||||
body:
|
||||
- type: input
|
||||
id: phpmyadmin-version
|
||||
attributes:
|
||||
label: phpMyAdmin version
|
||||
placeholder: 5.2.1
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: feat-description
|
||||
attributes:
|
||||
label: Describe the feature
|
||||
description: Is your feature request related to a problem? Please describe.
|
||||
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: solution-description
|
||||
attributes:
|
||||
label: Describe the solution
|
||||
description: Describe the solution you'd like
|
||||
placeholder: A clear and concise description of what you want to happen.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: alternatives-description
|
||||
attributes:
|
||||
label: Describe the alternatives
|
||||
description: Describe alternatives you've considered
|
||||
placeholder: A clear and concise description of any alternative solutions or features you've considered.
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: additional-context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: Add additional context here
|
||||
placeholder: Add any other context or screenshots about the feature request here.
|
||||
validations:
|
||||
required: false
|
||||
11
.github/ISSUE_TEMPLATE/security_report.md
vendored
11
.github/ISSUE_TEMPLATE/security_report.md
vendored
@ -1,11 +0,0 @@
|
||||
---
|
||||
name: Security report
|
||||
about: Disclose a security vulnerability responsibly by first reporting it to us privately
|
||||
|
||||
---
|
||||
|
||||
Security problems should not be reported here.
|
||||
|
||||
See our security page: https://www.phpmyadmin.net/security/
|
||||
|
||||
Thanks for your help!
|
||||
18
.github/ISSUE_TEMPLATE/security_report.yml
vendored
Normal file
18
.github/ISSUE_TEMPLATE/security_report.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Security report
|
||||
description: Disclose a security vulnerability responsibly by first reporting it to us privately
|
||||
title: "[Security]: "
|
||||
labels: ["Bug"]
|
||||
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: DON'T REPORT IN HERE
|
||||
placeholder: |
|
||||
Security problems should not be reported here.
|
||||
|
||||
See our security page: https://www.phpmyadmin.net/security/
|
||||
|
||||
Thanks for your help!
|
||||
validations:
|
||||
required: true
|
||||
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
@ -118,6 +118,7 @@ jobs:
|
||||
uses: sudo-bot/action-scrutinizer@latest
|
||||
# Do not run this step on forked versions of the main repository (example: contributor forks)
|
||||
if: github.repository == 'phpmyadmin/phpmyadmin'
|
||||
continue-on-error: true
|
||||
with:
|
||||
cli-args: "--format=php-clover build/logs/clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}"
|
||||
|
||||
@ -177,6 +178,7 @@ jobs:
|
||||
uses: sudo-bot/action-scrutinizer@latest
|
||||
# Do not run this step on forked versions of the main repository (example: contributor forks)
|
||||
if: github.repository == 'phpmyadmin/phpmyadmin'
|
||||
continue-on-error: true
|
||||
with:
|
||||
cli-args: "--format=php-clover build/logs/clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}"
|
||||
|
||||
@ -246,6 +248,7 @@ jobs:
|
||||
uses: sudo-bot/action-scrutinizer@latest
|
||||
# Do not run this step on forked versions of the main repository (example: contributor forks)
|
||||
if: github.repository == 'phpmyadmin/phpmyadmin'
|
||||
continue-on-error: true
|
||||
with:
|
||||
cli-args: "--format=php-clover build/logs/clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}"
|
||||
|
||||
|
||||
@ -19,13 +19,18 @@ tools:
|
||||
runs: 4 # php 7.x versions
|
||||
timeout: 900 # 15 min
|
||||
build:
|
||||
image: default-bionic # Needed to make PHP 7.2 compile
|
||||
nodes:
|
||||
analysis:
|
||||
environment:
|
||||
php: 7.2
|
||||
node: 12
|
||||
php:
|
||||
version: 7.2
|
||||
compile_options: '--enable-zip --enable-gd --with-openssl --with-curl --with-mysqli'
|
||||
node: 12 # Scrutinizer uses nvm
|
||||
dependencies:
|
||||
before:
|
||||
- sudo /home/scrutinizer/.phpenv/shims/php -f /usr/bin/composer.phar self-update --2
|
||||
- composer --version
|
||||
- composer config --unset repositories.0
|
||||
- composer install
|
||||
- composer require tecnickcom/tcpdf pragmarx/google2fa-qrcode bacon/bacon-qr-code code-lts/u2f-php-server
|
||||
|
||||
51
ChangeLog
51
ChangeLog
@ -1,6 +1,57 @@
|
||||
phpMyAdmin - ChangeLog
|
||||
======================
|
||||
|
||||
5.2.3 (2025-10-07)
|
||||
- issue #19548 Fix missing tooltip in status monitor log table
|
||||
- issue #19619 Fix horizontal scrollbar in server status pages
|
||||
- issue #17141 Fix table comment readability on original theme
|
||||
- issue #19138 Adjusted the chart size in System Monitor
|
||||
- issue #19351 Fixed paging with approximate number of rows
|
||||
- issue #18170 Fixed `window.makeGrid is not a function` partially
|
||||
- issue #17535 Fixed "Delete" button not asking for confirmation when deleting a row
|
||||
- issue Fixed not needed table names conversion to htmlentities when renaming a table
|
||||
- issue #18922 Remove the `maxlength` for routines names
|
||||
- issue #19641 Allow optional precision parameter for `NOW()`
|
||||
- issue Added size support for the CSV table type
|
||||
- issue #18903 Fix error 500 when simulating a `SET` statement
|
||||
- issue #19404 Fixed PHP 8.4 deprecations in `thecodingmachine/safe`
|
||||
- issue #19133 Updated documentation about Y2K38 as is fixed in MariaDB 11.5
|
||||
- issue #19685 Prevent "ol.css" being added multiple times
|
||||
- issue Fixed some bugs in relations tab with foreign keys having special names
|
||||
- issue #19715 Fix sorting with URL encryption enabled in results display
|
||||
- issue Fix duplicate Set-Cookie
|
||||
- issue Improved GIS visualization to work with huge tables
|
||||
- issue Fix horizontal scrollbar in server status pages
|
||||
- issue #19653 Fix body padding automatically using a MutationObserver
|
||||
- issue Fix criteria form visibility toggle in a multi-table query
|
||||
- issue #18807 Fixed range search on the search page
|
||||
- issue #19744 Fixed checking that curl is enabled
|
||||
- issue #19757 Fix move column with foreign key
|
||||
- issue #16869 Fix query time not showing for `SELECT COUNT(*)` queries
|
||||
- issue #19775 Fix copy to clipboard
|
||||
- issue #19073 Fix both replicated and not replicated icons are shown
|
||||
- issue #19772 Fix progress value in process list for multi-stage query
|
||||
- issue Fixed some PHP 8.4 and PHP 8.5 deprecations
|
||||
- issue #17329 Improve the handling of "The quota has been exceeded" when pasting multi megabytes queries
|
||||
- issue Improve the detection of PHP GD2
|
||||
- issue #19625 Fix special characters support in move columns
|
||||
- issue #19643 Fix upload progress showing a SyntaxError
|
||||
- issue #19593 Fix upload progress showing a SyntaxError
|
||||
- issue #19504 Fix Advisor rules are throwing some errors with `--skip-innodb`
|
||||
- issue #19760 Fixed `Variable 'lc_messages' can't be set to the value of 'fr_FR'` on misconfigured database servers
|
||||
- issue #19371 Fixed tablename doesn't match with csv filename when importing it
|
||||
- issue Fix `$http_response_header` deprecation for PHP 8.5
|
||||
- issue #19701 Add "symfony/polyfill-iconv" in case users do not have PHP "iconv" extension installed
|
||||
- issue #18066 Fixed "uncaught ReferenceError: u2f is not defined" on browsers that removed support for it
|
||||
- issue #19822 Fix incorrect usage/placement of 'SQL_NO_CACHE'
|
||||
- issue Add support for "bacon-qr-code" v3
|
||||
- issue #19850 Fix undefined array key 4 in PDF structure export
|
||||
- issue #19859 Fix deprecated null array offset
|
||||
- issue #18437 Fix SQL editor's alignment in rtl
|
||||
- issue #18472 Fix responsive table edit-box in rtl mode
|
||||
- issue #19109 Do not enforce character encoding when checking roles
|
||||
- issue #19611 Restore text operators order (`LIKE %...%` vs `LIKE` before)
|
||||
|
||||
5.2.2 (2025-01-21)
|
||||
- issue [security] Fix for a path disclosure leak in the Monitoring tab
|
||||
- issue Prevent the user from deleting system databases
|
||||
|
||||
2
README
2
README
@ -1,7 +1,7 @@
|
||||
phpMyAdmin - Readme
|
||||
===================
|
||||
|
||||
Version 5.2.2
|
||||
Version 5.2.3
|
||||
|
||||
A web interface for MySQL and MariaDB.
|
||||
|
||||
|
||||
@ -45,6 +45,11 @@
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://www.phpmyadmin.net"
|
||||
},
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/MauricioFauth/thecodingmachine-safe.git",
|
||||
"no-api": true
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
@ -71,8 +76,10 @@
|
||||
"symfony/dependency-injection": "^5.2.3",
|
||||
"symfony/expression-language": "^5.2.3",
|
||||
"symfony/polyfill-ctype": "^1.17.0",
|
||||
"symfony/polyfill-iconv": "^1.33",
|
||||
"symfony/polyfill-mbstring": "^1.17.0",
|
||||
"symfony/polyfill-php80": "^1.16",
|
||||
"symfony/polyfill-php84": "^1.33",
|
||||
"twig/twig": "^3.3.5",
|
||||
"webmozart/assert": "^1.10",
|
||||
"williamdes/mariadb-mysql-kbs": "^1.2"
|
||||
@ -98,7 +105,7 @@
|
||||
"web-auth/webauthn-lib": "For better WebAuthn/FIDO2 authentication support"
|
||||
},
|
||||
"require-dev": {
|
||||
"bacon/bacon-qr-code": "^2.0",
|
||||
"bacon/bacon-qr-code": "^2.0 || ^3.0",
|
||||
"code-lts/u2f-php-server": "^1.2",
|
||||
"php-webdriver/webdriver": "^1.13",
|
||||
"phpmyadmin/coding-standard": "^3.0.0",
|
||||
@ -114,6 +121,7 @@
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"symfony/console": "^5.2.3",
|
||||
"tecnickcom/tcpdf": "^6.4.4",
|
||||
"thecodingmachine/safe": "1.3.3.1",
|
||||
"vimeo/psalm": "^4.30",
|
||||
"web-auth/webauthn-lib": "^3.3.2"
|
||||
},
|
||||
|
||||
@ -44,14 +44,14 @@ master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'phpMyAdmin'
|
||||
copyright = u'2012 - 2024, The phpMyAdmin devel team'
|
||||
copyright = u'2012 - 2025, The phpMyAdmin devel team'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '5.2.2'
|
||||
version = '5.2.3'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = version
|
||||
|
||||
|
||||
130
doc/config.rst
130
doc/config.rst
@ -133,7 +133,7 @@ Basic settings
|
||||
:default: false
|
||||
|
||||
A warning is displayed on the main page if the PHP parameter
|
||||
session.gc_maxlifetime is lower than cookie validity configured in phpMyAdmin.
|
||||
``session.gc_maxlifetime`` is lower than cookie validity configured in phpMyAdmin.
|
||||
|
||||
You can set this parameter to ``true`` to stop this message from appearing.
|
||||
|
||||
@ -240,8 +240,8 @@ Server connection settings
|
||||
.. note::
|
||||
|
||||
The :config:option:`$cfg['Servers']` array starts with
|
||||
$cfg['Servers'][1]. Do not use $cfg['Servers'][0]. If you want more
|
||||
than one server, just copy following section (including $i
|
||||
``$cfg['Servers'][1]``. Do not use ``$cfg['Servers'][0]``. If you want more
|
||||
than one server, just copy following section (including ``$i``
|
||||
increment) several times. There is no need to define full server
|
||||
array, just define values you need to change.
|
||||
|
||||
@ -250,7 +250,7 @@ Server connection settings
|
||||
:type: string
|
||||
:default: ``'localhost'``
|
||||
|
||||
The hostname or :term:`IP` address of your $i-th MySQL-server. E.g.
|
||||
The hostname or :term:`IP` address of your ``$i``-th MySQL-server. E.g.
|
||||
``localhost``.
|
||||
|
||||
Possible values are:
|
||||
@ -279,7 +279,7 @@ Server connection settings
|
||||
:type: string
|
||||
:default: ``''``
|
||||
|
||||
The port-number of your $i-th MySQL-server. Default is 3306 (leave
|
||||
The port-number of your ``$i``-th MySQL-server. Default is 3306 (leave
|
||||
blank).
|
||||
|
||||
.. note::
|
||||
@ -624,7 +624,7 @@ Server connection settings
|
||||
:type: string
|
||||
:default: ``''``
|
||||
|
||||
When using auth\_type = ``http``, this field allows to define a custom
|
||||
When using ``'http'`` for :config:option:`$cfg['Servers'][$i]['auth_type']`, this field allows to define a custom
|
||||
:term:`HTTP` Basic Auth Realm which will be displayed to the user. If not
|
||||
explicitly specified in your configuration, a string combined of
|
||||
"phpMyAdmin " and either :config:option:`$cfg['Servers'][$i]['verbose']` or
|
||||
@ -638,7 +638,7 @@ Server connection settings
|
||||
|
||||
.. versionadded:: 3.0.0.0
|
||||
|
||||
This setting was named `$cfg['Servers'][$i]['auth_feebee_config']` and was renamed before the `3.0.0.0` release.
|
||||
This setting was named ``$cfg['Servers'][$i]['auth_feebee_config']`` and was renamed before the `3.0.0.0` release.
|
||||
|
||||
.. deprecated:: 4.6.4
|
||||
|
||||
@ -663,7 +663,7 @@ Server connection settings
|
||||
:default: ``''``
|
||||
|
||||
When using :config:option:`$cfg['Servers'][$i]['auth_type']` set to
|
||||
'config', this is the user/password-pair which phpMyAdmin will use to
|
||||
``'config'``, this is the user/password-pair which phpMyAdmin will use to
|
||||
connect to the MySQL server. This user/password pair is not needed when
|
||||
:term:`HTTP` or cookie authentication is used
|
||||
and should be empty.
|
||||
@ -821,14 +821,14 @@ Server connection settings
|
||||
point to the foreign table;
|
||||
* display in an optional tool-tip the "display column" when browsing the
|
||||
master table, if you move the mouse to a column containing a foreign
|
||||
key (use also the 'table\_info' table); (see :ref:`faqdisplay`)
|
||||
key (use also the ``table_info`` table); (see :ref:`faqdisplay`)
|
||||
* in edit/insert mode, display a drop-down list of possible foreign keys
|
||||
(key value and "display column" are shown) (see :ref:`faq6_21`)
|
||||
* display links on the table properties page, to check referential
|
||||
integrity (display missing foreign keys) for each described key;
|
||||
* in query-by-example, create automatic joins (see :ref:`faq6_6`)
|
||||
* enable you to get a :term:`PDF` schema of
|
||||
your database (also uses the table\_coords table).
|
||||
your database (also uses the ``table_coords`` table).
|
||||
|
||||
The keys can be numeric or character.
|
||||
|
||||
@ -856,7 +856,7 @@ Server connection settings
|
||||
|
||||
.. versionadded:: 2.3.0
|
||||
|
||||
Since release 2.3.0 you can describe, in a special 'table\_info'
|
||||
Since release 2.3.0 you can describe, in a special ``table_info``
|
||||
table, which column is to be displayed as a tool-tip when moving the
|
||||
cursor over the corresponding key. This configuration variable will
|
||||
hold the name of this special table. To allow the usage of this
|
||||
@ -895,8 +895,8 @@ Server connection settings
|
||||
Since release 2.3.0 you can have phpMyAdmin create :term:`PDF` pages
|
||||
showing the relations between your tables. Further, the designer interface
|
||||
permits visually managing the relations. To do this it needs two tables
|
||||
"pdf\_pages" (storing information about the available :term:`PDF` pages)
|
||||
and "table\_coords" (storing coordinates where each table will be placed on
|
||||
"``pdf_pages``" (storing information about the available :term:`PDF` pages)
|
||||
and "``table_coords``" (storing coordinates where each table will be placed on
|
||||
a :term:`PDF` schema output). You must be using the "relation" feature.
|
||||
|
||||
To allow the usage of this functionality:
|
||||
@ -949,15 +949,15 @@ Server connection settings
|
||||
Also new in release 2.5.0 is a MIME- transformation system which is also
|
||||
based on the following table structure. See :ref:`transformations` for
|
||||
further information. To use the MIME- transformation system, your
|
||||
column\_info table has to have the three new columns 'mimetype',
|
||||
'transformation', 'transformation\_options'.
|
||||
``column_info`` table has to have the three new columns ``'mimetype'``,
|
||||
``'transformation'``, ``'transformation_options'``.
|
||||
|
||||
Starting with release 4.3.0, a new input-oriented transformation system
|
||||
has been introduced. Also, backward compatibility code used in the old
|
||||
transformations system was removed. As a result, an update to column\_info
|
||||
transformations system was removed. As a result, an update to ``column_info``
|
||||
table is necessary for previous transformations and the new input-oriented
|
||||
transformation system to work. phpMyAdmin will upgrade it automatically
|
||||
for you by analyzing your current column\_info table structure.
|
||||
for you by analyzing your current ``column_info`` table structure.
|
||||
However, if something goes wrong with the auto-upgrade then you can
|
||||
use the SQL script found in ``./sql/upgrade_column_info_4_3_0+.sql``
|
||||
to upgrade it manually.
|
||||
@ -967,7 +967,7 @@ Server connection settings
|
||||
* set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
|
||||
* put the table name in :config:option:`$cfg['Servers'][$i]['column\_info']` (e.g.
|
||||
``pma__column_info``)
|
||||
* to update your PRE-2.5.0 Column\_comments table use this: and
|
||||
* to update your PRE-2.5.0 ``column_comments`` table use this: and
|
||||
remember that the Variable in :file:`config.inc.php` has been renamed from
|
||||
:samp:`$cfg['Servers'][$i]['column\_comments']` to
|
||||
:config:option:`$cfg['Servers'][$i]['column\_info']`
|
||||
@ -978,7 +978,7 @@ Server connection settings
|
||||
ADD `mimetype` VARCHAR( 255 ) NOT NULL,
|
||||
ADD `transformation` VARCHAR( 255 ) NOT NULL,
|
||||
ADD `transformation_options` VARCHAR( 255 ) NOT NULL;
|
||||
* to update your PRE-4.3.0 Column\_info table manually use this
|
||||
* to update your PRE-4.3.0 ``column_info`` table manually use this
|
||||
``./sql/upgrade_column_info_4_3_0+.sql`` SQL script.
|
||||
|
||||
This feature can be disabled by setting the configuration to ``false``.
|
||||
@ -1420,7 +1420,7 @@ Server connection settings
|
||||
.. config:option:: $cfg['Servers'][$i]['AllowDeny']['rules']
|
||||
|
||||
:type: array of strings
|
||||
:default: array()
|
||||
:default: ``[]``
|
||||
|
||||
The general format for the rules is as such:
|
||||
|
||||
@ -1433,7 +1433,7 @@ Server connection settings
|
||||
|
||||
There are a few shortcuts you can
|
||||
use in the *ipmask* field as well (please note that those containing
|
||||
SERVER\_ADDRESS might not be available on all webservers):
|
||||
``SERVER_ADDRESS`` might not be available on all webservers):
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
@ -1537,13 +1537,13 @@ Server connection settings
|
||||
.. config:option:: $cfg['Servers'][$i]['SignonCookieParams']
|
||||
|
||||
:type: array
|
||||
:default: ``array()``
|
||||
:default: ``[]``
|
||||
|
||||
.. versionadded:: 4.7.0
|
||||
|
||||
An associative array of session cookie parameters of other authentication system.
|
||||
It is not needed if the other system doesn't use session_set_cookie_params().
|
||||
Keys should include 'lifetime', 'path', 'domain', 'secure' or 'httponly'.
|
||||
It is not needed if the other system doesn't use ``session_set_cookie_params()``.
|
||||
Keys should include ``'lifetime'``, ``'path'``, ``'domain'``, ``'secure'`` or ``'httponly'``.
|
||||
Valid values are mentioned in `session_get_cookie_params <https://www.php.net/manual/en/
|
||||
function.session-get-cookie-params.php>`_, they should be set to same values as the
|
||||
other application uses. Takes effect only if
|
||||
@ -1614,7 +1614,7 @@ Generic settings
|
||||
:default: true
|
||||
|
||||
Enables check for latest versions using JavaScript on the main phpMyAdmin
|
||||
page or by directly accessing `index.php?route=/version-check`.
|
||||
page or by directly accessing ``index.php?route=/version-check``.
|
||||
|
||||
.. note::
|
||||
|
||||
@ -1772,7 +1772,7 @@ Generic settings
|
||||
so you definitely don't want to put here a too low
|
||||
value. It has no effect when PHP is running in safe mode.
|
||||
|
||||
You can also use any string as in :file:`php.ini`, eg. '16M'. Ensure you
|
||||
You can also use any string as in :file:`php.ini`, eg. ``'16M'``. Ensure you
|
||||
don't omit the suffix (16 means 16 bytes!)
|
||||
|
||||
.. config:option:: $cfg['SkipLockedTables']
|
||||
@ -1919,8 +1919,8 @@ Cookie authentication options
|
||||
:type: string
|
||||
:default: ``''``
|
||||
|
||||
The "cookie" auth\_type uses the :term:`Sodium` extension to encrypt the cookies (see :term:`Cookie`). If you are
|
||||
using the "cookie" auth\_type, enter here a generated string of random bytes to be used as an encryption key. It
|
||||
The ``'cookie'`` :config:option:`$cfg['Servers'][$i]['auth_type']` uses the :term:`Sodium` extension to encrypt the cookies (see :term:`Cookie`). If you are
|
||||
using the ``'cookie'`` :config:option:`$cfg['Servers'][$i]['auth_type']`, enter here a generated string of random bytes to be used as an encryption key. It
|
||||
will be used internally by the :term:`Sodium` extension: you won't be prompted for this encryption key.
|
||||
|
||||
Since a binary string is usually not printable, it can be converted into a hexadecimal representation (using a
|
||||
@ -2278,7 +2278,7 @@ Navigation panel setup
|
||||
|
||||
Enter the :term:`URL` where the logo in the navigation panel will point to.
|
||||
For use especially with self made theme which changes this.
|
||||
For relative/internal URLs, you need to have leading `` ./ `` or trailing characters `` ? `` such as ``'./index.php?route=/server/sql?'``.
|
||||
For relative/internal URLs, you need to have leading ``./`` or trailing characters ``?`` such as ``'./index.php?route=/server/sql?'``.
|
||||
For external URLs, you should include URL protocol schemes (``http`` or ``https``) with absolute URLs.
|
||||
|
||||
You may want to make the link open in a new browser tab, for that you need to use :config:option:`$cfg['NavigationLogoLinkWindow']`
|
||||
@ -2713,7 +2713,7 @@ Editing mode
|
||||
.. config:option:: $cfg['ForeignKeyDropdownOrder']
|
||||
|
||||
:type: array
|
||||
:default: array('content-id', 'id-content')
|
||||
:default: ``['content-id', 'id-content']``
|
||||
|
||||
For the foreign key drop-down fields, there are several methods of
|
||||
display, offering both the key and value data. The contents of the
|
||||
@ -2755,7 +2755,7 @@ Export and import settings
|
||||
.. config:option:: $cfg['Export']
|
||||
|
||||
:type: array
|
||||
:default: array(...)
|
||||
:default: ``[...]``
|
||||
|
||||
In this array are defined default parameters for export, names of
|
||||
items are similar to texts seen on export page, so you can easily
|
||||
@ -2835,7 +2835,7 @@ Export and import settings
|
||||
.. config:option:: $cfg['Import']
|
||||
|
||||
:type: array
|
||||
:default: array(...)
|
||||
:default: ``[...]``
|
||||
|
||||
In this array are defined default parameters for import, names of
|
||||
items are similar to texts seen on import page, so you can easily
|
||||
@ -2852,7 +2852,7 @@ Export and import settings
|
||||
.. config:option:: $cfg['Schema']
|
||||
|
||||
:type: array
|
||||
:default: array(...)
|
||||
:default: ``[...]``
|
||||
|
||||
.. config:option:: $cfg['Schema']['format']
|
||||
|
||||
@ -2927,7 +2927,7 @@ PDF Options
|
||||
.. config:option:: $cfg['PDFPageSizes']
|
||||
|
||||
:type: array
|
||||
:default: ``array('A3', 'A4', 'A5', 'letter', 'legal')``
|
||||
:default: ``['A3', 'A4', 'A5', 'letter', 'legal']``
|
||||
|
||||
Array of possible paper sizes for creating PDF pages.
|
||||
|
||||
@ -2951,7 +2951,7 @@ Languages
|
||||
|
||||
Defines the default language to use, if not browser-defined or user-
|
||||
defined. The corresponding language file needs to be in
|
||||
locale/*code*/LC\_MESSAGES/phpmyadmin.mo.
|
||||
``locale/*code*/LC_MESSAGES/phpmyadmin.mo``.
|
||||
|
||||
.. config:option:: $cfg['DefaultConnectionCollation']
|
||||
|
||||
@ -2969,7 +2969,7 @@ Languages
|
||||
:default: not set
|
||||
|
||||
Force language to use. The corresponding language file needs to be in
|
||||
locale/*code*/LC\_MESSAGES/phpmyadmin.mo.
|
||||
``locale/*code*/LC_MESSAGES/phpmyadmin.mo``.
|
||||
|
||||
.. config:option:: $cfg['FilterLanguages']
|
||||
|
||||
@ -2988,12 +2988,12 @@ Languages
|
||||
You can select here which functions will be used for character set
|
||||
conversion. Possible values are:
|
||||
|
||||
* auto - automatically use available one (first is tested iconv, then
|
||||
recode)
|
||||
* iconv - use iconv or libiconv functions
|
||||
* recode - use recode\_string function
|
||||
* mb - use :term:`mbstring` extension
|
||||
* none - disable encoding conversion
|
||||
* ``auto`` - automatically use available one (first is tested ``iconv``, then
|
||||
``recode``)
|
||||
* ``iconv`` - use ``iconv`` or ``libiconv`` functions
|
||||
* ``recode`` - use ``recode_string`` function
|
||||
* ``mb`` - use :term:`mbstring` extension
|
||||
* ``none`` - disable encoding conversion
|
||||
|
||||
Enabled charset conversion activates a pull-down menu in the Export
|
||||
and Import pages, to choose the character set when exporting a file.
|
||||
@ -3014,7 +3014,7 @@ Languages
|
||||
.. config:option:: $cfg['AvailableCharsets']
|
||||
|
||||
:type: array
|
||||
:default: array(...)
|
||||
:default: ``[...]``
|
||||
|
||||
Available character sets for MySQL conversion. You can add your own
|
||||
(any of supported by recode/iconv) or remove these which you don't
|
||||
@ -3040,7 +3040,7 @@ Web server settings
|
||||
.. config:option:: $cfg['TrustedProxies']
|
||||
|
||||
:type: array
|
||||
:default: array()
|
||||
:default: ``[]``
|
||||
|
||||
Lists proxies and HTTP headers which are trusted for
|
||||
:config:option:`$cfg['Servers'][$i]['AllowDeny']['order']`. This list is by
|
||||
@ -3048,7 +3048,7 @@ Web server settings
|
||||
want to use rules for IP addresses behind proxy.
|
||||
|
||||
The following example specifies that phpMyAdmin should trust a
|
||||
HTTP\_X\_FORWARDED\_FOR (``X-Forwarded-For``) header coming from the proxy
|
||||
``HTTP_X_FORWARDED_FOR`` (``X-Forwarded-For``) header coming from the proxy
|
||||
1.2.3.4:
|
||||
|
||||
.. code-block:: php
|
||||
@ -3066,9 +3066,9 @@ Web server settings
|
||||
Specifies whether GD >= 2 is available. If yes it can be used for MIME
|
||||
transformations. Possible values are:
|
||||
|
||||
* auto - automatically detect
|
||||
* yes - GD 2 functions can be used
|
||||
* no - GD 2 function cannot be used
|
||||
* ``auto`` - automatically detect
|
||||
* ``yes`` - GD 2 functions can be used
|
||||
* ``no`` - GD 2 function cannot be used
|
||||
|
||||
.. config:option:: $cfg['CheckConfigurationPermissions']
|
||||
|
||||
@ -3194,7 +3194,11 @@ Design customization
|
||||
|
||||
This defines the default sort order for the tables, having a :term:`primary key`,
|
||||
when there is no sort order defines externally.
|
||||
Acceptable values : ['NONE', 'ASC', 'DESC']
|
||||
Possible values are:
|
||||
|
||||
* ``NONE``
|
||||
* ``ASC``
|
||||
* ``DESC``
|
||||
|
||||
.. config:option:: $cfg['ShowBrowseComments']
|
||||
|
||||
@ -3235,9 +3239,9 @@ Text fields
|
||||
VARCHAR columns. Applies to data editing and also to the default values
|
||||
in structure editing. Possible values are:
|
||||
|
||||
* input - this allows to limit size of text to size of columns in MySQL,
|
||||
* ``input`` - this allows to limit size of text to size of columns in MySQL,
|
||||
but has problems with newlines in columns
|
||||
* textarea - no problems with newlines in columns, but also no length
|
||||
* ``textarea`` - no problems with newlines in columns, but also no length
|
||||
limitations
|
||||
|
||||
.. config:option:: $cfg['MinSizeForInputField']
|
||||
@ -3594,7 +3598,7 @@ Various display setting
|
||||
.. config:option:: $cfg['UserprefsDisallow']
|
||||
|
||||
:type: array
|
||||
:default: array()
|
||||
:default: ``[]``
|
||||
|
||||
Contains names of configuration options (keys in ``$cfg`` array) that
|
||||
users can't set through user preferences. For possible values, refer
|
||||
@ -3695,7 +3699,7 @@ MySQL settings
|
||||
.. config:option:: $cfg['DefaultFunctions']
|
||||
|
||||
:type: array
|
||||
:default: ``array('FUNC_CHAR' => '', 'FUNC_DATE' => '', 'FUNC_NUMBER' => '', 'FUNC_SPATIAL' => 'GeomFromText', 'FUNC_UUID' => 'UUID', 'first_timestamp' => 'NOW')``
|
||||
:default: ``['FUNC_CHAR' => '', 'FUNC_DATE' => '', 'FUNC_NUMBER' => '', 'FUNC_SPATIAL' => 'GeomFromText', 'FUNC_UUID' => 'UUID', 'first_timestamp' => 'NOW']``
|
||||
|
||||
Functions selected by default when inserting/changing row, Functions
|
||||
are defined for meta types as (``FUNC_NUMBER``, ``FUNC_DATE``, ``FUNC_CHAR``,
|
||||
@ -3726,47 +3730,47 @@ Default options for Transformations
|
||||
.. config:option:: $cfg['DefaultTransformations']['Substring']
|
||||
|
||||
:type: array
|
||||
:default: array(0, 'all', '…')
|
||||
:default: ``[0, 'all', '…']``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['Bool2Text']
|
||||
|
||||
:type: array
|
||||
:default: array('T', 'F')
|
||||
:default: ``['T', 'F']``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['External']
|
||||
|
||||
:type: array
|
||||
:default: array(0, '-f /dev/null -i -wrap -q', 1, 1)
|
||||
:default: ``[0, '-f /dev/null -i -wrap -q', 1, 1]``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['PreApPend']
|
||||
|
||||
:type: array
|
||||
:default: array('', '')
|
||||
:default: ``['', '']``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['Hex']
|
||||
|
||||
:type: array
|
||||
:default: array('2')
|
||||
:default: ``['2']``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['DateFormat']
|
||||
|
||||
:type: array
|
||||
:default: array(0, '', 'local')
|
||||
:default: ``[0, '', 'local']``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['Inline']
|
||||
|
||||
:type: array
|
||||
:default: array('100', 100)
|
||||
:default: ``['100', 100]``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['TextImageLink']
|
||||
|
||||
:type: array
|
||||
:default: array('', 100, 50)
|
||||
:default: ``['', 100, 50]``
|
||||
|
||||
.. config:option:: $cfg['DefaultTransformations']['TextLink']
|
||||
|
||||
:type: array
|
||||
:default: array('', '', '')
|
||||
:default: ``['', '', '']``
|
||||
|
||||
Console settings
|
||||
----------------
|
||||
@ -3813,7 +3817,7 @@ Console settings
|
||||
.. config:option:: $cfg['Console']['Mode']
|
||||
|
||||
:type: string
|
||||
:default: 'info'
|
||||
:default: ``'info'``
|
||||
|
||||
Console mode
|
||||
|
||||
|
||||
21
doc/faq.rst
21
doc/faq.rst
@ -725,6 +725,27 @@ can be set to use the older authentication with a command such as
|
||||
|
||||
.. seealso:: <https://github.com/phpmyadmin/phpmyadmin/issues/14220>, <https://stackoverflow.com/questions/49948350/phpmyadmin-on-mysql-8-0>, <https://bugs.php.net/bug.php?id=76243>
|
||||
|
||||
.. _faq1_46:
|
||||
|
||||
1.46 Missing ``HTTP_HOST`` variable when using nginx with HTTP/3
|
||||
-----------------------------------------------------------------------------------------------------------
|
||||
|
||||
When using phpMyAdmin with nginx and HTTP/3 enabled, the ``HTTP_HOST`` variable may be missing due to a known issue with nginx's HTTP/3 implementation, which can cause several issues:
|
||||
|
||||
- Two-factor authentication won't work
|
||||
- Exported settings have no hostname in the filename (e.g., ``phpMyAdmin-config-.json``)
|
||||
- The hostname is missing from the page title (empty ``@HTTP_HOST@``)
|
||||
|
||||
To fix this issue, add the following line to your nginx configuration:
|
||||
|
||||
.. code-block:: nginx
|
||||
|
||||
fastcgi_param HTTP_HOST $host;
|
||||
|
||||
This line should be placed in the server block of your nginx configuration where the PHP-FPM settings are defined.
|
||||
|
||||
.. seealso:: <https://github.com/php/php-src/issues/13021>, <https://github.com/nginx/nginx/issues/455>, <https://trac.nginx.org/nginx/ticket/2281>, <https://mailman.nginx.org/pipermail/nginx-devel/2024-January/3CQEHII5QU2BTQ7L7DAVCBWK3OQS3GU6.html>
|
||||
|
||||
.. _faqconfig:
|
||||
|
||||
Configuration
|
||||
|
||||
@ -194,7 +194,7 @@ Sample output:
|
||||
|
||||
[
|
||||
{
|
||||
"comment": "Export to JSON plugin for PHPMyAdmin",
|
||||
"comment": "Export to JSON plugin for phpMyAdmin",
|
||||
"type": "header",
|
||||
"version": "4.7.0-dev"
|
||||
},
|
||||
|
||||
@ -1097,6 +1097,17 @@ Navigation.ResizeHandler = function () {
|
||||
$('#floating_menubar').outerHeight(true)
|
||||
);
|
||||
}, 2);
|
||||
|
||||
if (window.MutationObserver) {
|
||||
var target = document.getElementById('floating_menubar');
|
||||
if (target) {
|
||||
var observer = new MutationObserver(function () {
|
||||
$('body').css('padding-top', $('#floating_menubar').outerHeight(true));
|
||||
});
|
||||
observer.observe(target, { attributes: true, childList: true, subtree: true });
|
||||
}
|
||||
}
|
||||
|
||||
$('#pma_console')
|
||||
.css('margin-' + this.left, (pos + resizerWidth) + 'px');
|
||||
$resizer.css(this.left, pos + 'px');
|
||||
|
||||
@ -1168,7 +1168,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
|
||||
|
||||
chartSize = {
|
||||
width: Math.floor(wdt),
|
||||
height: Math.floor(0.75 * wdt)
|
||||
height: Math.floor(0.55 * wdt)
|
||||
};
|
||||
}
|
||||
|
||||
@ -2083,19 +2083,16 @@ AJAX.registerOnload('server/status/monitor.js', function () {
|
||||
'</span></th><th class="text-end">' + data.sum.TOTAL + '</th></tr></tfoot>');
|
||||
|
||||
// Append a tooltip to the count column, if there exist one
|
||||
if ($('#logTable').find('tr').first().find('th').last().text().indexOf('#') > -1) {
|
||||
$('#logTable').find('tr').first().find('th').last().append(' ' + Functions.getImage('b_help', '', { 'class': 'qroupedQueryInfoIcon' }));
|
||||
const amountColumn = $('#logTable').find('tr').first().find('th').last();
|
||||
if (amountColumn.text().indexOf('#') > -1) {
|
||||
amountColumn.append(' ' + Functions.getImage('b_help'));
|
||||
|
||||
var tooltipContent = Messages.strCountColumnExplanation;
|
||||
let tooltipContent = Messages.strCountColumnExplanation;
|
||||
if (groupInserts) {
|
||||
tooltipContent += '<p>' + Messages.strMoreCountColumnExplanation + '</p>';
|
||||
tooltipContent += '<br>' + Messages.strMoreCountColumnExplanation;
|
||||
}
|
||||
|
||||
Functions.tooltip(
|
||||
$('img.qroupedQueryInfoIcon'),
|
||||
'img',
|
||||
tooltipContent
|
||||
);
|
||||
Functions.tooltip(amountColumn, 'th', tooltipContent);
|
||||
}
|
||||
|
||||
$('#logTable').find('table').tablesorter({
|
||||
|
||||
@ -47,10 +47,15 @@ Sql.urlEncode = function (str) {
|
||||
Sql.autoSave = function (query) {
|
||||
if (query) {
|
||||
var key = Sql.getAutoSavedKey();
|
||||
if (isStorageSupported('localStorage')) {
|
||||
window.localStorage.setItem(key, query);
|
||||
} else {
|
||||
Cookies.set(key, query);
|
||||
try {
|
||||
if (isStorageSupported('localStorage')) {
|
||||
window.localStorage.setItem(key, query);
|
||||
} else {
|
||||
Cookies.set(key, query);
|
||||
}
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
Functions.ajaxShowMessage(e.message, false, 'error');
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -410,7 +415,9 @@ AJAX.registerOnload('sql.js', function () {
|
||||
*/
|
||||
$(document).on('makeGrid', '.sqlqueryresults', function () {
|
||||
$('.table_results').each(function () {
|
||||
makeGrid(this);
|
||||
if (typeof window.makeGrid === 'function') {
|
||||
makeGrid(this);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@ -374,6 +374,11 @@ function verificationsAfterFieldChange (urlField, multiEdit, theType) {
|
||||
$thisInput.removeAttr('min');
|
||||
$thisInput.removeAttr('max');
|
||||
// @todo: put back attributes if corresponding function is deselected
|
||||
|
||||
if ($thisFunction.val() === 'NOW') {
|
||||
$thisInput.attr('min', 0);
|
||||
$thisInput.attr('max', $thisInput.parent().attr('data-decimals'));
|
||||
}
|
||||
}
|
||||
|
||||
if ($thisInput.data('rulesadded') === null && ! functionSelected) {
|
||||
|
||||
@ -371,6 +371,7 @@ AJAX.registerOnload('table/select.js', function () {
|
||||
$targetField.val(finalValue);
|
||||
}
|
||||
$('#rangeSearchModal').modal('hide');
|
||||
$(this).off('click');
|
||||
});
|
||||
} else {
|
||||
Functions.ajaxShowMessage(response.error);
|
||||
|
||||
@ -384,7 +384,7 @@ AJAX.registerOnload('table/structure.js', function () {
|
||||
for (var i in data.columns) {
|
||||
var theColumn = data.columns[i];
|
||||
var $theRow = $rows
|
||||
.find('input:checkbox[value=\'' + theColumn + '\']')
|
||||
.find('input:checkbox[value=' + $.escapeSelector(theColumn) + ']')
|
||||
.closest('tr');
|
||||
// append the row for this column to the table
|
||||
$fieldsTable.append($theRow);
|
||||
|
||||
@ -8,6 +8,11 @@ AJAX.registerOnload('u2f.js', function () {
|
||||
setTimeout(function () {
|
||||
// A magic JS function that talks to the USB device. This function will keep polling for the USB device until it finds one.
|
||||
var request = JSON.parse($inputReg.attr('data-request'));
|
||||
|
||||
if (!(window.u2f && typeof window.u2f.register === 'function')) {
|
||||
return;
|
||||
}
|
||||
|
||||
u2f.register(request.appId, [request], JSON.parse($inputReg.attr('data-signatures')), function (data) {
|
||||
// Handle returning error data
|
||||
if (data.errorCode && data.errorCode !== 0) {
|
||||
@ -45,6 +50,11 @@ AJAX.registerOnload('u2f.js', function () {
|
||||
// Magic JavaScript talking to your HID
|
||||
// appid, challenge, authenticateRequests
|
||||
var request = JSON.parse($inputAuth.attr('data-request'));
|
||||
|
||||
if (!(window.u2f && typeof window.u2f.sign === 'function')) {
|
||||
return;
|
||||
}
|
||||
|
||||
u2f.sign(request[0].appId, request[0].challenge, request, function (data) {
|
||||
// Handle returning error data
|
||||
if (data.errorCode && data.errorCode !== 0) {
|
||||
|
||||
6
js/vendor/bootstrap/bootstrap.bundle.min.js
vendored
6
js/vendor/bootstrap/bootstrap.bundle.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -396,7 +396,22 @@ class Advisor
|
||||
*/
|
||||
private function evaluateRuleExpression(string $expression)
|
||||
{
|
||||
return $this->expression->evaluate($expression, array_merge($this->variables, $this->globals));
|
||||
$variables = array_merge($this->variables, $this->globals);
|
||||
|
||||
// Set default values for missing InnoDB variables when InnoDB is disabled
|
||||
if (! isset($variables['innodb_buffer_pool_size'])) {
|
||||
$variables['innodb_buffer_pool_size'] = 0;
|
||||
}
|
||||
|
||||
if (! isset($variables['innodb_log_file_size'])) {
|
||||
$variables['innodb_log_file_size'] = 0;
|
||||
}
|
||||
|
||||
if (! isset($variables['innodb_log_files_in_group'])) {
|
||||
$variables['innodb_log_files_in_group'] = 0;
|
||||
}
|
||||
|
||||
return $this->expression->evaluate($expression, $variables);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -73,6 +73,7 @@ class TwigLintCommand extends Command
|
||||
->addOption('show-deprecations', null, InputOption::VALUE_NONE, 'Show deprecations as errors');
|
||||
}
|
||||
|
||||
/** @return string[] */
|
||||
protected function findFiles(string $baseFolder): array
|
||||
{
|
||||
/* Open the handle */
|
||||
@ -141,7 +142,8 @@ class TwigLintCommand extends Command
|
||||
return $this->display($output, $io, $filesInfo);
|
||||
}
|
||||
|
||||
protected function getFilesInfo(string $templatesPath): array
|
||||
/** @return array{template: string, file: string, valid: bool, line?: int, exception?: Error}[] */
|
||||
public function getFilesInfo(string $templatesPath): array
|
||||
{
|
||||
$filesInfo = [];
|
||||
$filesFound = $this->findFiles($templatesPath);
|
||||
@ -160,6 +162,7 @@ class TwigLintCommand extends Command
|
||||
return (string) file_get_contents($filePath);
|
||||
}
|
||||
|
||||
/** @return array{template: string, file: string, valid: bool, line?: int, exception?: Error} */
|
||||
private function validate(string $template, string $file): array
|
||||
{
|
||||
$twig = Template::getTwigEnvironment(null);
|
||||
|
||||
@ -45,6 +45,8 @@ use function trigger_error;
|
||||
use function urldecode;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
final class Common
|
||||
{
|
||||
@ -497,7 +499,7 @@ final class Common
|
||||
__(
|
||||
'Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin.'
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ use function fileperms;
|
||||
use function fopen;
|
||||
use function fread;
|
||||
use function function_exists;
|
||||
use function gd_info;
|
||||
use function get_defined_constants;
|
||||
use function get_object_vars;
|
||||
use function implode;
|
||||
use function ini_get;
|
||||
@ -63,6 +63,7 @@ use function trim;
|
||||
use const ARRAY_FILTER_USE_KEY;
|
||||
use const DIRECTORY_SEPARATOR;
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_OS;
|
||||
use const PHP_URL_PATH;
|
||||
use const PHP_URL_SCHEME;
|
||||
@ -246,38 +247,20 @@ class Config
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether GD2 is present
|
||||
* Determines if GD2+ is available
|
||||
*
|
||||
* Respects the config override ('yes' / 'no') if set,
|
||||
* otherwise checks the `GD_MAJOR_VERSION` constant (>= 2).
|
||||
*/
|
||||
public function checkGd2(): void
|
||||
{
|
||||
if ($this->get('GD2Available') === 'yes') {
|
||||
$this->set('PMA_IS_GD2', 1);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->get('GD2Available') === 'no') {
|
||||
} elseif ($this->get('GD2Available') === 'no') {
|
||||
$this->set('PMA_IS_GD2', 0);
|
||||
|
||||
return;
|
||||
} else {
|
||||
$this->set('PMA_IS_GD2', (get_defined_constants()['GD_MAJOR_VERSION'] ?? 0) >= 2 ? 1 : 0);
|
||||
}
|
||||
|
||||
if (! function_exists('imagecreatetruecolor')) {
|
||||
$this->set('PMA_IS_GD2', 0);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (function_exists('gd_info')) {
|
||||
$gd_nfo = gd_info();
|
||||
if (mb_strstr($gd_nfo['GD Version'], '2.')) {
|
||||
$this->set('PMA_IS_GD2', 1);
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
$this->set('PMA_IS_GD2', 0);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -707,7 +690,7 @@ class Config
|
||||
. __('This usually means there is a syntax error in it, please check any errors shown below.')
|
||||
. '[br][br]'
|
||||
. '[conferr]';
|
||||
trigger_error($error, E_USER_ERROR);
|
||||
trigger_error($error, PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1232,7 +1215,7 @@ class Config
|
||||
if (! is_int($server_index) || $server_index < 1) {
|
||||
trigger_error(
|
||||
sprintf(__('Invalid server index: %s'), $server_index),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -24,6 +24,8 @@ use function str_replace;
|
||||
use function trigger_error;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Base class for forms, loads default configuration options, checks allowed
|
||||
@ -130,13 +132,19 @@ class Form
|
||||
{
|
||||
$value = $this->configFile->getDbEntry($optionPath);
|
||||
if ($value === null) {
|
||||
trigger_error($optionPath . ' - select options not defined', E_USER_ERROR);
|
||||
trigger_error(
|
||||
$optionPath . ' - select options not defined',
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
if (! is_array($value)) {
|
||||
trigger_error($optionPath . ' - not a static value list', E_USER_ERROR);
|
||||
trigger_error(
|
||||
$optionPath . ' - not a static value list',
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
@ -563,7 +563,7 @@ class StructureController extends AbstractController
|
||||
if (isset($currentTable['TABLE_ROWS']) && ($currentTable['ENGINE'] != null || $tableIsView)) {
|
||||
// InnoDB/TokuDB table: we did not get an accurate row count
|
||||
$approxRows = ! $tableIsView
|
||||
&& in_array($currentTable['ENGINE'], ['InnoDB', 'TokuDB'])
|
||||
&& in_array($currentTable['ENGINE'], ['CSV', 'InnoDB', 'TokuDB'])
|
||||
&& ! $currentTable['COUNTED'];
|
||||
|
||||
if ($tableIsView && $currentTable['TABLE_ROWS'] >= $GLOBALS['cfg']['MaxExactCountViews']) {
|
||||
@ -605,16 +605,19 @@ class StructureController extends AbstractController
|
||||
$searchDoDBInTruename = array_search($table, $replicaInfo['Do_DB']);
|
||||
$searchDoDBInDB = array_search($this->db, $replicaInfo['Do_DB']);
|
||||
|
||||
$do = (is_string($searchDoDBInTruename) && strlen($searchDoDBInTruename) > 0)
|
||||
|| (is_string($searchDoDBInDB) && strlen($searchDoDBInDB) > 0)
|
||||
|| ($nbServReplicaDoDb == 0 && $nbServReplicaIgnoreDb == 0)
|
||||
|| $this->hasTable($replicaInfo['Wild_Do_Table'], $table);
|
||||
|
||||
$searchDb = array_search($this->db, $replicaInfo['Ignore_DB']);
|
||||
$searchTable = array_search($table, $replicaInfo['Ignore_Table']);
|
||||
$ignored = (is_string($searchTable) && strlen($searchTable) > 0)
|
||||
|| (is_string($searchDb) && strlen($searchDb) > 0)
|
||||
|| $this->hasTable($replicaInfo['Wild_Ignore_Table'], $table);
|
||||
|
||||
// Only set do = true if table is not ignored
|
||||
if (! $ignored) {
|
||||
$do = (is_string($searchDoDBInTruename) && strlen($searchDoDBInTruename) > 0)
|
||||
|| (is_string($searchDoDBInDB) && strlen($searchDoDBInDB) > 0)
|
||||
|| ($nbServReplicaDoDb == 0 && $nbServReplicaIgnoreDb == 0)
|
||||
|| $this->hasTable($replicaInfo['Wild_Do_Table'], $table);
|
||||
}
|
||||
}
|
||||
|
||||
return [
|
||||
@ -726,6 +729,12 @@ class StructureController extends AbstractController
|
||||
$sumSize
|
||||
);
|
||||
break;
|
||||
case 'CSV':
|
||||
[$currentTable, $formattedSize, $unit, $sumSize] = $this->getValuesForCsvTable(
|
||||
$currentTable,
|
||||
$sumSize
|
||||
);
|
||||
break;
|
||||
// Mysql 5.0.x (and lower) uses MRG_MyISAM
|
||||
// and MySQL 5.1.x (and higher) uses MRG_MYISAM
|
||||
// Both are aliases for MERGE
|
||||
@ -883,6 +892,70 @@ class StructureController extends AbstractController
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get values for CSV table
|
||||
*
|
||||
* https://bugs.mysql.com/bug.php?id=53929
|
||||
*
|
||||
* @param array $currentTable current table
|
||||
* @param int $sumSize sum size
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function getValuesForCsvTable(
|
||||
array $currentTable,
|
||||
$sumSize
|
||||
) {
|
||||
$formattedSize = $unit = '';
|
||||
|
||||
if ($currentTable['ENGINE'] === 'CSV') {
|
||||
$currentTable['COUNTED'] = true;
|
||||
$currentTable['TABLE_ROWS'] = $this->dbi
|
||||
->getTable($this->db, $currentTable['TABLE_NAME'])
|
||||
->countRecords(true);
|
||||
} else {
|
||||
$currentTable['COUNTED'] = false;
|
||||
}
|
||||
|
||||
if ($this->isShowStats) {
|
||||
// Only count columns that have double quotes
|
||||
$columnCount = (int) $this->dbi->fetchValue(
|
||||
'SELECT COUNT(COLUMN_NAME) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = \''
|
||||
. $this->dbi->escapeString($this->db) . '\' AND TABLE_NAME = \''
|
||||
. $this->dbi->escapeString($currentTable['TABLE_NAME']) . '\' AND NUMERIC_SCALE IS NULL;'
|
||||
);
|
||||
|
||||
// Get column names
|
||||
$columnNames = $this->dbi->fetchValue(
|
||||
'SELECT GROUP_CONCAT(COLUMN_NAME) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = \''
|
||||
. $this->dbi->escapeString($this->db) . '\' AND TABLE_NAME = \''
|
||||
. $this->dbi->escapeString($currentTable['TABLE_NAME']) . '\';'
|
||||
);
|
||||
|
||||
// 10Mb buffer for CONCAT_WS
|
||||
// not sure if is needed
|
||||
$this->dbi->query('SET SESSION group_concat_max_len = 10 * 1024 * 1024');
|
||||
|
||||
// Calculate data length
|
||||
$dataLength = (int) $this->dbi->fetchValue('
|
||||
SELECT SUM(CHAR_LENGTH(REPLACE(REPLACE(REPLACE(
|
||||
CONCAT_WS(\',\', ' . $columnNames . '),
|
||||
UNHEX(\'0A\'), \'nn\'), UNHEX(\'22\'), \'nn\'), UNHEX(\'5C\'), \'nn\'
|
||||
))) FROM ' . Util::backquote($this->db) . '.' . Util::backquote($currentTable['TABLE_NAME']));
|
||||
|
||||
// Calculate quotes length
|
||||
$quotesLength = $currentTable['TABLE_ROWS'] * $columnCount * 2;
|
||||
|
||||
/** @var int $tblsize */
|
||||
$tblsize = $dataLength + $quotesLength + $currentTable['TABLE_ROWS'];
|
||||
|
||||
$sumSize += $tblsize;
|
||||
[$formattedSize, $unit] = Util::formatByteDown($tblsize, 3, $tblsize > 0 ? 1 : 0);
|
||||
}
|
||||
|
||||
return [$currentTable, $formattedSize, $unit, $sumSize];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get values for Mroonga table
|
||||
*
|
||||
|
||||
@ -8,6 +8,7 @@ use PhpMyAdmin\Charsets;
|
||||
use PhpMyAdmin\CheckUserPrivileges;
|
||||
use PhpMyAdmin\Config;
|
||||
use PhpMyAdmin\ConfigStorage\Relation;
|
||||
use PhpMyAdmin\Core;
|
||||
use PhpMyAdmin\DatabaseInterface;
|
||||
use PhpMyAdmin\Git;
|
||||
use PhpMyAdmin\Html\Generator;
|
||||
@ -398,6 +399,21 @@ class HomeController extends AbstractController
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Check for missing HTTP_HOST
|
||||
* This commonly occurs with nginx >= 1.25.0 and HTTP/3 configurations
|
||||
*/
|
||||
if (Core::getenv('HTTP_HOST') === '') {
|
||||
$this->errors[] = [
|
||||
'message' => __(
|
||||
'The [code]HTTP_HOST[/code] variable is missing,'
|
||||
. ' which might cause phpMyAdmin to not work properly.'
|
||||
. ' Please refer to [doc@faq1-46]documentation[/doc] for possible issues.'
|
||||
),
|
||||
'severity' => 'warning',
|
||||
];
|
||||
}
|
||||
|
||||
$this->checkLanguageStats();
|
||||
}
|
||||
|
||||
|
||||
@ -81,6 +81,12 @@ final class SimulateDmlController extends AbstractController
|
||||
|
||||
private function process(Parser $parser): void
|
||||
{
|
||||
if ($parser->errors !== []) {
|
||||
$this->error = $parser->errors[0]->getMessage();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ($parser->statements as $statement) {
|
||||
if (
|
||||
! $statement instanceof UpdateStatement && ! $statement instanceof DeleteStatement
|
||||
|
||||
@ -10,6 +10,9 @@ use PhpMyAdmin\Gis\GisVisualization;
|
||||
use PhpMyAdmin\Html\Generator;
|
||||
use PhpMyAdmin\Message;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
use PhpMyAdmin\SqlParser\Components\Limit;
|
||||
use PhpMyAdmin\SqlParser\Parser;
|
||||
use PhpMyAdmin\SqlParser\Statements\SelectStatement;
|
||||
use PhpMyAdmin\Template;
|
||||
use PhpMyAdmin\Url;
|
||||
use PhpMyAdmin\Util;
|
||||
@ -73,24 +76,7 @@ final class GisVisualizationController extends AbstractController
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute the query and return the result
|
||||
$result = $this->dbi->tryQuery($sqlQuery);
|
||||
// Get the meta data of results
|
||||
$meta = [];
|
||||
if ($result !== false) {
|
||||
$meta = $this->dbi->getFieldsMeta($result);
|
||||
}
|
||||
|
||||
// Find the candidate fields for label column and spatial column
|
||||
$labelCandidates = [];
|
||||
$spatialCandidates = [];
|
||||
foreach ($meta as $column_meta) {
|
||||
if ($column_meta->isMappedTypeGeometry) {
|
||||
$spatialCandidates[] = $column_meta->name;
|
||||
} else {
|
||||
$labelCandidates[] = $column_meta->name;
|
||||
}
|
||||
}
|
||||
[$labelCandidates, $spatialCandidates] = $this->getCandidateColumns($sqlQuery);
|
||||
|
||||
// Get settings if any posted
|
||||
$visualizationSettings = [];
|
||||
@ -200,4 +186,34 @@ final class GisVisualizationController extends AbstractController
|
||||
$this->response->disable();
|
||||
$this->visualization->toFile($filename, $format);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array{list<string>,list<string>}
|
||||
*/
|
||||
private function getCandidateColumns(string $sqlQuery): array
|
||||
{
|
||||
$parser = new Parser($sqlQuery);
|
||||
/** @var SelectStatement $statement */
|
||||
$statement = $parser->statements[0];
|
||||
$statement->limit = new Limit(0, 0);
|
||||
$limitedSqlQuery = $statement->build();
|
||||
|
||||
$result = $this->dbi->tryQuery($limitedSqlQuery);
|
||||
$meta = [];
|
||||
if ($result !== false) {
|
||||
$meta = $this->dbi->getFieldsMeta($result);
|
||||
}
|
||||
|
||||
$labelCandidates = [];
|
||||
$spatialCandidates = [];
|
||||
foreach ($meta as $column_meta) {
|
||||
if ($column_meta->isMappedTypeGeometry) {
|
||||
$spatialCandidates[] = $column_meta->name;
|
||||
} else {
|
||||
$labelCandidates[] = $column_meta->name;
|
||||
}
|
||||
}
|
||||
|
||||
return [$labelCandidates, $spatialCandidates];
|
||||
}
|
||||
}
|
||||
|
||||
@ -162,6 +162,7 @@ final class ReplaceController extends AbstractController
|
||||
'VERSION',
|
||||
];
|
||||
$func_optional_param = [
|
||||
'NOW',
|
||||
'RAND',
|
||||
'UNIX_TIMESTAMP',
|
||||
];
|
||||
|
||||
@ -94,11 +94,11 @@ final class MoveColumnsController extends AbstractController
|
||||
$parser = new Parser($createTableSql);
|
||||
/** @var CreateStatement $statement */
|
||||
$statement = $parser->statements[0];
|
||||
/** @var CreateDefinition[] $fields */
|
||||
/** @var CreateDefinition[] $fields For CREATE TABLE statement the type is CreateDefinition[] */
|
||||
$fields = $statement->fields;
|
||||
$columns = [];
|
||||
foreach ($fields as $field) {
|
||||
if ($field->name === null) {
|
||||
if ($field->name === null || $field->isConstraint === true || $field->key !== null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@ -57,6 +57,7 @@ use const DATE_RFC1123;
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const FILTER_VALIDATE_IP;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Core functions used all over the scripts.
|
||||
@ -375,7 +376,10 @@ class Core
|
||||
|
||||
session_write_close();
|
||||
if ($response->headersSent()) {
|
||||
trigger_error('Core::sendHeaderLocation called when headers are already sent!', E_USER_ERROR);
|
||||
trigger_error(
|
||||
'Core::sendHeaderLocation called when headers are already sent!',
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
// bug #1523784: IE6 does not like 'Refresh: 0', it
|
||||
@ -458,46 +462,64 @@ class Core
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends header indicating file download.
|
||||
*
|
||||
* @param string $filename Filename to include in headers if empty,
|
||||
* none Content-Disposition header will be sent.
|
||||
* @param string $filename Filename to include in headers if empty, none Content-Disposition header will be sent.
|
||||
* @param string $mimetype MIME type to include in headers.
|
||||
* @param int $length Length of content (optional)
|
||||
* @param bool $no_cache Whether to include no-caching headers.
|
||||
* @param bool $noCache Whether to include no-caching headers.
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
public static function downloadHeader(
|
||||
public static function getDownloadHeaders(
|
||||
string $filename,
|
||||
string $mimetype,
|
||||
int $length = 0,
|
||||
bool $no_cache = true
|
||||
): void {
|
||||
bool $noCache = true
|
||||
): array {
|
||||
$headers = [];
|
||||
|
||||
if ($no_cache) {
|
||||
if ($noCache) {
|
||||
$headers = self::getNoCacheHeaders();
|
||||
}
|
||||
|
||||
/* Replace all possibly dangerous chars in filename */
|
||||
$filename = Sanitize::sanitizeFilename($filename);
|
||||
if (! empty($filename)) {
|
||||
if ($filename !== '') {
|
||||
$headers['Content-Description'] = 'File Transfer';
|
||||
$headers['Content-Disposition'] = 'attachment; filename="' . $filename . '"';
|
||||
}
|
||||
|
||||
$headers['Content-Type'] = $mimetype;
|
||||
|
||||
// The default output in PMA uses gzip,
|
||||
// so if we want to output uncompressed file, we should reset the encoding.
|
||||
// See PHP bug https://github.com/php/php-src/issues/8218
|
||||
header_remove('Content-Encoding');
|
||||
|
||||
$headers['Content-Transfer-Encoding'] = 'binary';
|
||||
|
||||
if ($length > 0) {
|
||||
$headers['Content-Length'] = (string) $length;
|
||||
}
|
||||
|
||||
return $headers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends header indicating file download.
|
||||
*
|
||||
* @param string $filename Filename to include in headers if empty, none Content-Disposition header will be sent.
|
||||
* @param string $mimetype MIME type to include in headers.
|
||||
* @param int $length Length of content (optional)
|
||||
* @param bool $noCache Whether to include no-caching headers.
|
||||
*/
|
||||
public static function downloadHeader(
|
||||
string $filename,
|
||||
string $mimetype,
|
||||
int $length = 0,
|
||||
bool $noCache = true
|
||||
): void {
|
||||
$headers = self::getDownloadHeaders($filename, $mimetype, $length, $noCache);
|
||||
|
||||
// The default output in PMA uses gzip,
|
||||
// so if we want to output uncompressed file, we should reset the encoding.
|
||||
// See PHP bug https://github.com/php/php-src/issues/8218
|
||||
header_remove('Content-Encoding');
|
||||
|
||||
foreach ($headers as $name => $value) {
|
||||
header(sprintf('%s: %s', $name, $value));
|
||||
}
|
||||
|
||||
@ -1125,7 +1125,7 @@ class DatabaseInterface implements DbalInterface
|
||||
/* Locale for messages */
|
||||
$locale = LanguageManager::getInstance()->getCurrentLanguage()->getMySQLLocale();
|
||||
if ($locale) {
|
||||
$this->query("SET lc_messages = '" . $locale . "';");
|
||||
$this->tryQuery("SET lc_messages = '" . $locale . "';");
|
||||
}
|
||||
|
||||
// Set timezone for the session, if required.
|
||||
@ -1794,8 +1794,10 @@ class DatabaseInterface implements DbalInterface
|
||||
return $hasGrantPrivilege;
|
||||
}
|
||||
|
||||
$collation = $this->getServerCollation();
|
||||
|
||||
[$user, $host] = $this->getCurrentUserAndHost();
|
||||
$query = QueryGenerator::getInformationSchemaDataForGranteeRequest($user, $host);
|
||||
$query = QueryGenerator::getInformationSchemaDataForGranteeRequest($user, $host, $collation);
|
||||
$result = $this->tryQuery($query);
|
||||
|
||||
if ($result) {
|
||||
@ -1804,7 +1806,7 @@ class DatabaseInterface implements DbalInterface
|
||||
|
||||
if (! $hasGrantPrivilege) {
|
||||
foreach ($this->getCurrentRolesAndHost() as [$role, $roleHost]) {
|
||||
$query = QueryGenerator::getInformationSchemaDataForGranteeRequest($role, $roleHost ?? '');
|
||||
$query = QueryGenerator::getInformationSchemaDataForGranteeRequest($role, $roleHost ?? '', $collation);
|
||||
$result = $this->tryQuery($query);
|
||||
|
||||
if ($result) {
|
||||
@ -1851,8 +1853,10 @@ class DatabaseInterface implements DbalInterface
|
||||
return $hasCreatePrivilege;
|
||||
}
|
||||
|
||||
$collation = $this->getServerCollation();
|
||||
|
||||
[$user, $host] = $this->getCurrentUserAndHost();
|
||||
$query = QueryGenerator::getInformationSchemaDataForCreateRequest($user, $host);
|
||||
$query = QueryGenerator::getInformationSchemaDataForCreateRequest($user, $host, $collation);
|
||||
$result = $this->tryQuery($query);
|
||||
|
||||
if ($result) {
|
||||
@ -1861,7 +1865,7 @@ class DatabaseInterface implements DbalInterface
|
||||
|
||||
if (! $hasCreatePrivilege) {
|
||||
foreach ($this->getCurrentRolesAndHost() as [$role, $roleHost]) {
|
||||
$query = QueryGenerator::getInformationSchemaDataForCreateRequest($role, $roleHost ?? '');
|
||||
$query = QueryGenerator::getInformationSchemaDataForCreateRequest($role, $roleHost ?? '', $collation);
|
||||
$result = $this->tryQuery($query);
|
||||
|
||||
if ($result) {
|
||||
|
||||
@ -33,6 +33,7 @@ use const MYSQLI_OPT_SSL_VERIFY_SERVER_CERT;
|
||||
use const MYSQLI_REPORT_OFF;
|
||||
use const MYSQLI_STORE_RESULT;
|
||||
use const MYSQLI_USE_RESULT;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Interface to the MySQL Improved extension (MySQLi)
|
||||
@ -167,7 +168,7 @@ class DbiMysqli implements DbiExtension
|
||||
'[code][doc@cfg_Servers_hide_connection_errors]'
|
||||
. '$cfg[\'Servers\'][$i][\'hide_connection_errors\'][/doc][/code]'
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -840,12 +840,16 @@ class Results
|
||||
// Move to the next page or to the last one
|
||||
$moveForwardButtons = '';
|
||||
if (
|
||||
! (
|
||||
// view with unknown number of rows
|
||||
($this->properties['unlim_num_rows'] === -1 || $this->properties['unlim_num_rows'] === false)
|
||||
|| (! $isShowingAll
|
||||
&& intval($_SESSION['tmpval']['pos']) + intval($_SESSION['tmpval']['max_rows'])
|
||||
< $this->properties['unlim_num_rows']
|
||||
&& $this->properties['num_rows'] >= $_SESSION['tmpval']['max_rows'])
|
||||
$this->properties['unlim_num_rows'] !== -1
|
||||
&& $this->properties['unlim_num_rows'] !== false
|
||||
&& ($isShowingAll
|
||||
|| ( $this->isExactCount()
|
||||
&& (int) $_SESSION['tmpval']['pos'] + (int) $_SESSION['tmpval']['max_rows']
|
||||
>= $this->properties['unlim_num_rows'])
|
||||
|| $this->properties['num_rows'] < $_SESSION['tmpval']['max_rows'])
|
||||
)
|
||||
) {
|
||||
$moveForwardButtons = $this->getMoveForwardButtonsForTableNavigation(
|
||||
htmlspecialchars($this->properties['sql_query']),
|
||||
@ -878,6 +882,15 @@ class Results
|
||||
];
|
||||
}
|
||||
|
||||
private function isExactCount(): bool
|
||||
{
|
||||
// If we have the full page of rows, we don't know
|
||||
// if there are more unless unlimNumRows is smaller than MaxExactCount
|
||||
return $this->properties['unlim_num_rows'] < $GLOBALS['cfg']['MaxExactCount']
|
||||
|| $_SESSION['tmpval']['max_rows'] === self::ALL_ROWS
|
||||
|| $this->properties['num_rows'] < $_SESSION['tmpval']['max_rows'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare move backward buttons - previous and first
|
||||
*
|
||||
@ -1870,14 +1883,14 @@ class Results
|
||||
array $orderUrlParams,
|
||||
array $multiOrderUrlParams
|
||||
): string {
|
||||
$urlPath = Url::getFromRoute('/sql', $multiOrderUrlParams, false);
|
||||
$urlPath = Url::getFromRoute('/sql', $multiOrderUrlParams, true);
|
||||
$innerLinkContent = htmlspecialchars($fieldsMeta->name) . $orderImg
|
||||
. '<input type="hidden" value="'
|
||||
. $urlPath
|
||||
. '">';
|
||||
|
||||
return Generator::linkOrButton(
|
||||
Url::getFromRoute('/sql', $orderUrlParams, false),
|
||||
Url::getFromRoute('/sql', $orderUrlParams, true),
|
||||
null,
|
||||
$innerLinkContent,
|
||||
['class' => 'sortlink']
|
||||
@ -3687,8 +3700,19 @@ class Results
|
||||
|
||||
$sqlQueryMessage = Generator::getMessage($message, $this->properties['sql_query'], 'success');
|
||||
} elseif (($printView === null || $printView != '1') && ! $isLimitedDisplay) {
|
||||
$message = Message::success(__('Your SQL query has been executed successfully.'));
|
||||
|
||||
if ($this->properties['querytime'] > 0) {
|
||||
$message->addText('(');
|
||||
|
||||
$messageQueryTime = Message::notice(__('Query took %01.4f seconds.') . ')');
|
||||
$messageQueryTime->addParam($this->properties['querytime']);
|
||||
|
||||
$message->addMessage($messageQueryTime, '');
|
||||
}
|
||||
|
||||
$sqlQueryMessage = Generator::getMessage(
|
||||
__('Your SQL query has been executed successfully.'),
|
||||
$message,
|
||||
$this->properties['sql_query'],
|
||||
'success'
|
||||
);
|
||||
@ -3962,7 +3986,7 @@ class Results
|
||||
}
|
||||
} elseif (($_SESSION['tmpval']['max_rows'] === self::ALL_ROWS) || ($posNext > $total)) {
|
||||
$firstShownRec = $_SESSION['tmpval']['pos'];
|
||||
$lastShownRec = $total - 1;
|
||||
$lastShownRec = $firstShownRec + $this->properties['num_rows'] - 1;
|
||||
} else {
|
||||
$firstShownRec = $_SESSION['tmpval']['pos'];
|
||||
$lastShownRec = $posNext - 1;
|
||||
|
||||
@ -434,7 +434,13 @@ class GisVisualization
|
||||
$output = 'function drawOpenLayers() {'
|
||||
. 'if (typeof ol !== "undefined") {'
|
||||
. 'var olCss = "js/vendor/openlayers/theme/ol.css";'
|
||||
. '$(\'head\').append(\'<link rel="stylesheet" type="text/css" href=\'+olCss+\'>\');'
|
||||
. 'if (!document.querySelector(\'link[rel="stylesheet"][href="\' + olCss + \'"]\')) {'
|
||||
. 'var link = document.createElement(\'link\');'
|
||||
. 'link.rel = \'stylesheet\';'
|
||||
. 'link.type = \'text/css\';'
|
||||
. 'link.href = olCss;'
|
||||
. 'document.head.appendChild(link);'
|
||||
. '}'
|
||||
. 'var vectorLayer = new ol.source.Vector({});'
|
||||
. 'var map = new ol.Map({'
|
||||
. 'target: \'openlayersmap\','
|
||||
|
||||
@ -30,6 +30,7 @@ use function implode;
|
||||
use function in_array;
|
||||
use function is_array;
|
||||
use function is_file;
|
||||
use function is_numeric;
|
||||
use function is_string;
|
||||
use function max;
|
||||
use function mb_stripos;
|
||||
@ -1630,6 +1631,13 @@ class InsertEdit
|
||||
. $this->dbi->escapeString($multiEditSalt[$key]) . "')";
|
||||
}
|
||||
|
||||
if (
|
||||
$multiEditFuncs[$key] === 'NOW'
|
||||
&& (is_numeric($currentValue) && $currentValue >= 0 && $currentValue <= 6)
|
||||
) {
|
||||
return $multiEditFuncs[$key] . '(' . $this->dbi->escapeString($currentValue) . ')';
|
||||
}
|
||||
|
||||
return $multiEditFuncs[$key] . "('" . $this->dbi->escapeString($currentValue) . "')";
|
||||
}
|
||||
|
||||
|
||||
@ -19,6 +19,8 @@ use function uasort;
|
||||
use function ucfirst;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Language selection manager
|
||||
@ -67,6 +69,7 @@ class LanguageManager
|
||||
'ar[_-]ly|arabic (libya)|libian arabic',
|
||||
'ar_LY',
|
||||
],
|
||||
'ast' => ['ast', 'Asturian', 'Asturianu', 'ast|asturian', ''],
|
||||
'az' => [
|
||||
'az',
|
||||
'Azerbaijani',
|
||||
@ -977,7 +980,7 @@ class LanguageManager
|
||||
|
||||
trigger_error(
|
||||
__('Ignoring unsupported language code.'),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -16,6 +16,8 @@ use function sprintf;
|
||||
use function trigger_error;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Node factory - instantiates Node objects or objects derived from the Node class
|
||||
@ -43,7 +45,7 @@ class NodeFactory
|
||||
__('Invalid class name "%1$s", using default of "Node"'),
|
||||
$class
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
@ -73,7 +75,7 @@ class NodeFactory
|
||||
__('Could not load class "%1$s"'),
|
||||
$class
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -156,20 +156,18 @@ class Partition extends SubPartition
|
||||
$partitionMap = [];
|
||||
/** @var array $row */
|
||||
foreach ($result as $row) {
|
||||
if (isset($partitionMap[$row['PARTITION_NAME']])) {
|
||||
$partition = $partitionMap[$row['PARTITION_NAME']];
|
||||
} else {
|
||||
$partition = new Partition($row);
|
||||
$partitionMap[$row['PARTITION_NAME']] = $partition;
|
||||
if (empty($row['PARTITION_NAME'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$partition = $partitionMap[$row['PARTITION_NAME']] ?? new Partition($row);
|
||||
$partitionMap[$row['PARTITION_NAME']] = $partition;
|
||||
|
||||
if (empty($row['SUBPARTITION_NAME'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$parentPartition = $partition;
|
||||
$partition = new SubPartition($row);
|
||||
$parentPartition->addSubPartition($partition);
|
||||
$partition->addSubPartition(new SubPartition($row));
|
||||
}
|
||||
|
||||
return array_values($partitionMap);
|
||||
|
||||
@ -113,7 +113,7 @@ class ExportJson extends ExportPlugin
|
||||
$data = $this->encode([
|
||||
'type' => 'header',
|
||||
'version' => Version::VERSION,
|
||||
'comment' => 'Export to JSON plugin for PHPMyAdmin',
|
||||
'comment' => 'Export to JSON plugin for phpMyAdmin',
|
||||
]);
|
||||
if ($data === false) {
|
||||
return false;
|
||||
|
||||
@ -15,6 +15,7 @@ use TCPDF;
|
||||
|
||||
use function __;
|
||||
use function class_exists;
|
||||
use function extension_loaded;
|
||||
|
||||
/**
|
||||
* Produce a PDF report (export) from a query
|
||||
@ -332,6 +333,6 @@ class ExportPdf extends ExportPlugin
|
||||
|
||||
public static function isAvailable(): bool
|
||||
{
|
||||
return class_exists(TCPDF::class);
|
||||
return class_exists(TCPDF::class) && extension_loaded('curl');
|
||||
}
|
||||
}
|
||||
|
||||
@ -83,7 +83,7 @@ class ExportPhparray extends ExportPlugin
|
||||
$this->export->outputHandler(
|
||||
'<?php' . $GLOBALS['crlf']
|
||||
. '/**' . $GLOBALS['crlf']
|
||||
. ' * Export to PHP Array plugin for PHPMyAdmin' . $GLOBALS['crlf']
|
||||
. ' * Export to PHP Array plugin for phpMyAdmin' . $GLOBALS['crlf']
|
||||
. ' * @version ' . Version::VERSION . $GLOBALS['crlf']
|
||||
. ' */' . $GLOBALS['crlf'] . $GLOBALS['crlf']
|
||||
);
|
||||
|
||||
@ -53,7 +53,9 @@ use function strtoupper;
|
||||
use function trigger_error;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* Handles the export for the SQL class
|
||||
@ -1541,7 +1543,7 @@ class ExportSql extends ExportPlugin
|
||||
$message = sprintf(__('Error reading structure for table %s:'), $db . '.' . $table);
|
||||
$message .= ' ' . $tmpError;
|
||||
if (! defined('TESTSUITE')) {
|
||||
trigger_error($message, E_USER_ERROR);
|
||||
trigger_error($message, PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING);
|
||||
}
|
||||
|
||||
return $this->exportComment($message);
|
||||
@ -2270,7 +2272,7 @@ class ExportSql extends ExportPlugin
|
||||
$message = sprintf(__('Error reading data for table %s:'), $db . '.' . $table);
|
||||
$message .= ' ' . $tmpError;
|
||||
if (! defined('TESTSUITE')) {
|
||||
trigger_error($message, E_USER_ERROR);
|
||||
trigger_error($message, PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING);
|
||||
}
|
||||
|
||||
return $this->export->outputHandler(
|
||||
|
||||
@ -641,7 +641,7 @@ class Pdf extends PdfLib
|
||||
foreach ($data as $col => $txt) {
|
||||
$this->page = $currpage;
|
||||
$this->setXY($l, $h);
|
||||
if ($this->tablewidths[$col] > 0) {
|
||||
if (isset($this->tablewidths[$col]) && $this->tablewidths[$col] > 0) {
|
||||
$this->MultiCell(
|
||||
$this->tablewidths[$col],
|
||||
// phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
|
||||
|
||||
@ -723,18 +723,21 @@ class ImportCsv extends AbstractImportCsv
|
||||
}
|
||||
|
||||
// check to see if {filename} as table exist
|
||||
$nameArray = preg_grep('/' . $importFileName . '/isU', $result);
|
||||
$nameArray = preg_grep('/^' . $importFileName . '$/isU', $result);
|
||||
// if no use filename as table name
|
||||
if ($nameArray === false || count($nameArray) === 0) {
|
||||
return $importFileName;
|
||||
}
|
||||
|
||||
// check if {filename}_ as table exist
|
||||
$nameArray = preg_grep('/' . $importFileName . '_/isU', $result);
|
||||
$nameArray = preg_grep('/^' . $importFileName . '_$/isU', $result);
|
||||
if ($nameArray === false) {
|
||||
return $importFileName;
|
||||
}
|
||||
|
||||
// Filter for table names starting with the {filename}_ prefix
|
||||
$nameArray = preg_grep('/^' . $importFileName . '_/isU', $result);
|
||||
|
||||
return $importFileName . '_' . (count($nameArray) + 1);
|
||||
}
|
||||
|
||||
|
||||
@ -221,21 +221,27 @@ class Generator
|
||||
return $query;
|
||||
}
|
||||
|
||||
public static function getInformationSchemaDataForCreateRequest(string $user, string $host): string
|
||||
{
|
||||
public static function getInformationSchemaDataForCreateRequest(
|
||||
string $user,
|
||||
string $host,
|
||||
string $collation
|
||||
): string {
|
||||
// second part of query is for MariaDB that not show roles inside INFORMATION_SCHEMA db
|
||||
return 'SELECT 1 FROM `INFORMATION_SCHEMA`.`USER_PRIVILEGES` '
|
||||
. "WHERE `PRIVILEGE_TYPE` = 'CREATE USER' AND "
|
||||
. "'''" . $user . "''@''" . $host . "''' LIKE `GRANTEE`"
|
||||
. ' UNION '
|
||||
. 'SELECT 1 FROM mysql.user '
|
||||
. "WHERE `create_user_priv` = 'Y' COLLATE utf8mb4_general_ci AND "
|
||||
. "WHERE `create_user_priv` = 'Y' COLLATE " . $collation . ' AND '
|
||||
. "'" . $user . "' LIKE `User` AND '' LIKE `Host`"
|
||||
. ' LIMIT 1';
|
||||
}
|
||||
|
||||
public static function getInformationSchemaDataForGranteeRequest(string $user, string $host): string
|
||||
{
|
||||
public static function getInformationSchemaDataForGranteeRequest(
|
||||
string $user,
|
||||
string $host,
|
||||
string $collation
|
||||
): string {
|
||||
// second part of query is for MariaDB that not show roles inside INFORMATION_SCHEMA db
|
||||
return 'SELECT 1 FROM ('
|
||||
. 'SELECT `GRANTEE`, `IS_GRANTABLE` FROM '
|
||||
@ -250,7 +256,7 @@ class Generator
|
||||
. "'''" . $user . "''@''" . $host . "''' LIKE `GRANTEE` "
|
||||
. ' UNION '
|
||||
. 'SELECT 1 FROM mysql.user '
|
||||
. "WHERE `create_user_priv` = 'Y' COLLATE utf8mb4_general_ci AND "
|
||||
. "WHERE `create_user_priv` = 'Y' COLLATE " . $collation . ' AND '
|
||||
. "'" . $user . "' LIKE `User` AND '' LIKE `Host`"
|
||||
. ' LIMIT 1';
|
||||
}
|
||||
|
||||
@ -9,9 +9,11 @@ use PhpMyAdmin\Html\Generator;
|
||||
use PhpMyAdmin\Util;
|
||||
|
||||
use function __;
|
||||
use function array_key_exists;
|
||||
use function array_keys;
|
||||
use function count;
|
||||
use function mb_strtolower;
|
||||
use function number_format;
|
||||
use function strlen;
|
||||
use function ucfirst;
|
||||
|
||||
@ -44,11 +46,9 @@ final class Processes
|
||||
$sqlQuery = $showFullSql
|
||||
? 'SHOW FULL PROCESSLIST'
|
||||
: 'SHOW PROCESSLIST';
|
||||
if (
|
||||
(! empty($params['order_by_field'])
|
||||
&& ! empty($params['sort_order']))
|
||||
|| ! empty($params['showExecuting'])
|
||||
) {
|
||||
$useIS = ! empty($params['showExecuting']) ||
|
||||
(! empty($params['order_by_field']) && ! empty($params['sort_order']));
|
||||
if ($useIS) {
|
||||
$urlParams['order_by_field'] = $params['order_by_field'];
|
||||
$urlParams['sort_order'] = $params['sort_order'];
|
||||
$urlParams['showExecuting'] = $params['showExecuting'];
|
||||
@ -80,6 +80,15 @@ final class Processes
|
||||
unset($process[$key]);
|
||||
}
|
||||
|
||||
$progress = ! empty($process['Progress']) ? $process['Progress'] : '---';
|
||||
if ($useIS && ! empty($process['Progress'])) {
|
||||
$stage = array_key_exists('Stage', $process) ? (int) $process['Stage'] : null;
|
||||
$maxStage = array_key_exists('Max_stage', $process) ? (int) $process['Max_stage'] : null;
|
||||
if ($stage !== null && $maxStage !== null && $maxStage > 1) {
|
||||
$progress = number_format(($stage - 1) / $maxStage * 100 + ((float) $progress) / $maxStage, 3);
|
||||
}
|
||||
}
|
||||
|
||||
$rows[] = [
|
||||
'id' => $process['Id'],
|
||||
'user' => $process['User'],
|
||||
@ -88,7 +97,7 @@ final class Processes
|
||||
'command' => $process['Command'],
|
||||
'time' => $process['Time'],
|
||||
'state' => ! empty($process['State']) ? $process['State'] : '---',
|
||||
'progress' => ! empty($process['Progress']) ? $process['Progress'] : '---',
|
||||
'progress' => $progress,
|
||||
'info' => ! empty($process['Info']) ? Generator::formatSql($process['Info'], ! $showFullSql) : '---',
|
||||
];
|
||||
}
|
||||
|
||||
@ -21,9 +21,11 @@ use PhpMyAdmin\SqlParser\Utils\Query;
|
||||
use PhpMyAdmin\Utils\ForeignKey;
|
||||
|
||||
use function __;
|
||||
use function array_find_key;
|
||||
use function array_key_exists;
|
||||
use function array_keys;
|
||||
use function array_map;
|
||||
use function assert;
|
||||
use function bin2hex;
|
||||
use function ceil;
|
||||
use function count;
|
||||
@ -34,11 +36,13 @@ use function in_array;
|
||||
use function is_array;
|
||||
use function is_bool;
|
||||
use function is_object;
|
||||
use function is_string;
|
||||
use function session_start;
|
||||
use function session_write_close;
|
||||
use function sprintf;
|
||||
use function str_contains;
|
||||
use function str_replace;
|
||||
use function strtoupper;
|
||||
use function ucwords;
|
||||
|
||||
/**
|
||||
@ -745,6 +749,15 @@ class Sql
|
||||
/** @var SelectStatement $statement */
|
||||
$statement = $analyzedSqlResults['statement'];
|
||||
|
||||
assert($statement->options !== null);
|
||||
/** @var int|null $noCacheIndex */
|
||||
$noCacheIndex = array_find_key(
|
||||
$statement->options->options,
|
||||
/** @param mixed $value */
|
||||
static function ($value): bool {
|
||||
return is_string($value) && strtoupper($value) === 'SQL_NO_CACHE';
|
||||
}
|
||||
);
|
||||
$changeOrder = $analyzedSqlResults['order'] !== false;
|
||||
$changeLimit = $analyzedSqlResults['limit'] !== false;
|
||||
$changeExpression = $analyzedSqlResults['is_group'] === false
|
||||
@ -752,8 +765,14 @@ class Sql
|
||||
&& $analyzedSqlResults['union'] === false
|
||||
&& count($statement->expr) === 1;
|
||||
|
||||
if ($changeOrder || $changeLimit || $changeExpression) {
|
||||
if ($changeOrder || $changeLimit || $changeExpression || $noCacheIndex !== null) {
|
||||
$statement = clone $statement;
|
||||
// Remove SQL_NO_CACHE from subquery because it is not valid sql
|
||||
if ($noCacheIndex !== null) {
|
||||
assert($statement->options !== null);
|
||||
$statement->options = clone $statement->options;
|
||||
unset($statement->options->options[$noCacheIndex]);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove ORDER BY to decrease unnecessary sorting time
|
||||
@ -832,8 +851,8 @@ class Sql
|
||||
$GLOBALS['querytime'] = $this->dbi->lastQueryExecutionTime;
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
// reopen session
|
||||
session_start();
|
||||
// reopen session but prevent PHP from sending the session cookie again
|
||||
session_start(['use_cookies' => false]);
|
||||
}
|
||||
|
||||
// Displays an error message if required and stop parsing the script
|
||||
|
||||
@ -1555,8 +1555,8 @@ class Table implements Stringable
|
||||
|
||||
$this->messages[] = sprintf(
|
||||
__('Table %1$s has been renamed to %2$s.'),
|
||||
htmlspecialchars($oldName),
|
||||
htmlspecialchars($newName)
|
||||
$oldName,
|
||||
$newName
|
||||
);
|
||||
|
||||
return true;
|
||||
@ -2241,7 +2241,11 @@ class Table implements Stringable
|
||||
$masterField = $multiEditColumnsName[$masterFieldMd5];
|
||||
$foreignTable = $destinationTable[$masterFieldMd5];
|
||||
$foreignField = $destinationColumn[$masterFieldMd5];
|
||||
if (! empty($foreignDb) && ! empty($foreignTable) && ! empty($foreignField)) {
|
||||
if (
|
||||
$foreignDb !== ''
|
||||
&& $foreignTable !== '' && $foreignTable !== null
|
||||
&& $foreignField !== '' && $foreignField !== null
|
||||
) {
|
||||
if (! isset($existrel[$masterField])) {
|
||||
$updQuery = 'INSERT INTO '
|
||||
. Util::backquote($relationFeature->database)
|
||||
@ -2345,20 +2349,20 @@ class Table implements Stringable
|
||||
$emptyFields = false;
|
||||
foreach ($masterField as $key => $oneField) {
|
||||
if (
|
||||
(! empty($oneField) && empty($foreignField[$key]))
|
||||
|| (empty($oneField) && ! empty($foreignField[$key]))
|
||||
($oneField !== '' && (! isset($foreignField[$key]) || $foreignField[$key] === ''))
|
||||
|| ($oneField === '' && (isset($foreignField[$key]) && $foreignField[$key] !== ''))
|
||||
) {
|
||||
$emptyFields = true;
|
||||
}
|
||||
|
||||
if (! empty($oneField) || ! empty($foreignField[$key])) {
|
||||
if ($oneField !== '' || (isset($foreignField[$key]) && $foreignField[$key] !== '')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
unset($masterField[$key], $foreignField[$key]);
|
||||
}
|
||||
|
||||
if (! empty($foreignDb) && ! empty($foreignTable) && ! $emptyFields) {
|
||||
if ($foreignDb !== '' && $foreignTable !== '' && ! $emptyFields) {
|
||||
if (isset($existrelForeign[$masterFieldMd5])) {
|
||||
$constraintName = $existrelForeign[$masterFieldMd5]['constraint'];
|
||||
$onDelete = ! empty(
|
||||
@ -2466,8 +2470,8 @@ class Table implements Stringable
|
||||
$sqlQueryRecreate = '# Restoring the dropped constraint...' . "\n";
|
||||
$sqlQueryRecreate .= $this->getSQLToCreateForeignKey(
|
||||
$table,
|
||||
$masterField,
|
||||
$existrelForeign[$masterFieldMd5]['ref_db_name'],
|
||||
$existrelForeign[$masterFieldMd5]['index_list'],
|
||||
$existrelForeign[$masterFieldMd5]['ref_db_name'] ?? $GLOBALS['db'],
|
||||
$existrelForeign[$masterFieldMd5]['ref_table_name'],
|
||||
$existrelForeign[$masterFieldMd5]['ref_index_list'],
|
||||
$existrelForeign[$masterFieldMd5]['constraint'],
|
||||
|
||||
@ -20,8 +20,9 @@ use function trim;
|
||||
use function version_compare;
|
||||
|
||||
use const DIRECTORY_SEPARATOR;
|
||||
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* handles theme
|
||||
@ -168,7 +169,7 @@ class Theme
|
||||
__('No valid image path for theme %s found!'),
|
||||
$this->getName()
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
|
||||
return false;
|
||||
|
||||
@ -18,6 +18,7 @@ use function trigger_error;
|
||||
use const DIRECTORY_SEPARATOR;
|
||||
use const E_USER_ERROR;
|
||||
use const E_USER_WARNING;
|
||||
use const PHP_VERSION_ID;
|
||||
|
||||
/**
|
||||
* phpMyAdmin theme manager
|
||||
@ -83,7 +84,7 @@ class ThemeManager
|
||||
__('Default theme %s not found!'),
|
||||
htmlspecialchars($GLOBALS['cfg']['ThemeDefault'])
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
$configThemeExists = false;
|
||||
} else {
|
||||
@ -142,7 +143,7 @@ class ThemeManager
|
||||
__('Theme %s not found!'),
|
||||
htmlspecialchars((string) $theme)
|
||||
),
|
||||
E_USER_ERROR
|
||||
PHP_VERSION_ID < 80400 ? E_USER_ERROR : E_USER_WARNING
|
||||
);
|
||||
|
||||
return false;
|
||||
|
||||
@ -96,8 +96,8 @@ class Types
|
||||
public function getTextOperators()
|
||||
{
|
||||
return [
|
||||
'LIKE %...%',
|
||||
'LIKE',
|
||||
'LIKE %...%',
|
||||
'NOT LIKE',
|
||||
'NOT LIKE %...%',
|
||||
'=',
|
||||
@ -303,9 +303,10 @@ class Types
|
||||
|
||||
case 'TIMESTAMP':
|
||||
return __(
|
||||
'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)'
|
||||
'A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-19 ' .
|
||||
'03:14:07 UTC on 32-bit platforms (MariaDB 11.3 and earlier), ' .
|
||||
'and up to 2106-02-07 06:28:15 UTC on 64-bit platforms (MariaDB 11.5 and later), ' .
|
||||
'stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)'
|
||||
);
|
||||
|
||||
case 'TIME':
|
||||
|
||||
@ -267,6 +267,10 @@ class HttpRequest
|
||||
stream_context_create($context)
|
||||
);
|
||||
|
||||
if (function_exists('http_get_last_response_headers')) {
|
||||
$http_response_header = http_get_last_response_headers();
|
||||
}
|
||||
|
||||
if (! isset($http_response_header)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -14,12 +14,12 @@ use const VERSION_SUFFIX;
|
||||
final class Version
|
||||
{
|
||||
// The VERSION_SUFFIX constant is defined at libraries/constants.php
|
||||
public const VERSION = '5.2.2' . VERSION_SUFFIX;
|
||||
public const VERSION = '5.2.3' . VERSION_SUFFIX;
|
||||
public const SERIES = '5.2';
|
||||
public const MAJOR = 5;
|
||||
public const MINOR = 2;
|
||||
public const PATCH = 2;
|
||||
public const ID = 50202;
|
||||
public const PATCH = 3;
|
||||
public const ID = 50203;
|
||||
public const PRE_RELEASE_NAME = '';
|
||||
public const IS_DEV = false;
|
||||
}
|
||||
|
||||
14
package.json
14
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "phpmyadmin",
|
||||
"version": "5.2.2",
|
||||
"version": "5.2.3",
|
||||
"description": "A web interface for MySQL and MariaDB",
|
||||
"repository": "https://github.com/phpmyadmin/phpmyadmin.git",
|
||||
"author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
|
||||
@ -10,13 +10,13 @@
|
||||
"node": ">=12"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/cli": "^7.23.9",
|
||||
"@babel/core": "^7.23.9",
|
||||
"@babel/preset-env": "^7.23.9",
|
||||
"@babel/cli": "^7.28.3",
|
||||
"@babel/core": "^7.28.3",
|
||||
"@babel/preset-env": "^7.28.3",
|
||||
"@popperjs/core": "^2.11.8",
|
||||
"@zxcvbn-ts/core": "^2.0.1",
|
||||
"autoprefixer": "^10.4.17",
|
||||
"bootstrap": "5.3.3",
|
||||
"autoprefixer": "^10.4.21",
|
||||
"bootstrap": "5.3.8",
|
||||
"codemirror": "5.65.10",
|
||||
"jquery": "3.7.1",
|
||||
"jquery-debounce-throttle": "^1.0.6-rc.0",
|
||||
@ -28,7 +28,7 @@
|
||||
"js-cookie": "2.2.1",
|
||||
"locutus.sprintf": "^2.0.32-code-lts.1",
|
||||
"ol": "6.15.1",
|
||||
"postcss": "^8.4.14",
|
||||
"postcss": "^8.5.6",
|
||||
"postcss-cli": "^9.1.0",
|
||||
"rtlcss": "^3.5.0",
|
||||
"sass": "1.60.0",
|
||||
|
||||
@ -700,26 +700,11 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:findFiles\\(\\) return type has no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:getContext\\(\\) return type has no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:getFilesInfo\\(\\) return type has no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:validate\\(\\) return type has no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Only booleans are allowed in a ternary operator condition, \\(callable\\)\\|null given\\.$#"
|
||||
count: 1
|
||||
@ -745,16 +730,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$filePath of method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:getTemplateContents\\(\\) expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\$file of method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:validate\\(\\) expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Command/TwigLintCommand.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\$template of method PhpMyAdmin\\\\Command\\\\TwigLintCommand\\:\\:renderException\\(\\) expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
@ -1137,7 +1112,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Only booleans are allowed in an if condition, string\\|false given\\.$#"
|
||||
count: 4
|
||||
count: 3
|
||||
path: libraries/classes/Config.php
|
||||
|
||||
-
|
||||
@ -1160,11 +1135,6 @@ parameters:
|
||||
count: 2
|
||||
path: libraries/classes/Config.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$haystack of function mb_strstr expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Config.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$new_error_level of function error_reporting expects int, int\\|null given\\.$#"
|
||||
count: 1
|
||||
@ -1222,7 +1192,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\.\\.\\.\\$values of function sprintf expects bool\\|float\\|int\\|string\\|null, mixed given\\.$#"
|
||||
count: 1
|
||||
count: 2
|
||||
path: libraries/classes/Config.php
|
||||
|
||||
-
|
||||
@ -1575,11 +1545,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Config/Form.php
|
||||
|
||||
-
|
||||
message: "#^Unreachable statement \\- code above always terminates\\.$#"
|
||||
count: 2
|
||||
path: libraries/classes/Config/Form.php
|
||||
|
||||
-
|
||||
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
|
||||
count: 2
|
||||
@ -5137,7 +5102,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot use array destructuring on array\\|null\\.$#"
|
||||
count: 4
|
||||
count: 5
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
@ -5185,6 +5150,16 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\StructureController\\:\\:getValuesForCsvTable\\(\\) has parameter \\$currentTable with no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\StructureController\\:\\:getValuesForCsvTable\\(\\) return type has no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Controllers\\\\Database\\\\StructureController\\:\\:getValuesForInnodbTable\\(\\) has parameter \\$currentTable with no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
@ -5257,7 +5232,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$identifier of static method PhpMyAdmin\\\\Util\\:\\:backquote\\(\\) expects string\\|Stringable\\|null, mixed given\\.$#"
|
||||
count: 2
|
||||
count: 3
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
@ -5270,6 +5245,11 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$str of method PhpMyAdmin\\\\DatabaseInterface\\:\\:escapeString\\(\\) expects string, mixed given\\.$#"
|
||||
count: 2
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$string of function htmlspecialchars expects string, mixed given\\.$#"
|
||||
count: 4
|
||||
@ -5337,7 +5317,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\$table_name of method PhpMyAdmin\\\\DatabaseInterface\\:\\:getTable\\(\\) expects string, mixed given\\.$#"
|
||||
count: 4
|
||||
count: 5
|
||||
path: libraries/classes/Controllers/Database/StructureController.php
|
||||
|
||||
-
|
||||
@ -9211,7 +9191,7 @@ parameters:
|
||||
path: libraries/classes/Controllers/Table/GisVisualizationController.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$query of method PhpMyAdmin\\\\DatabaseInterface\\:\\:tryQuery\\(\\) expects string, mixed given\\.$#"
|
||||
message: "#^Parameter \\#1 \\$sqlQuery of method PhpMyAdmin\\\\Controllers\\\\Table\\\\GisVisualizationController\\:\\:getCandidateColumns\\(\\) expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Controllers/Table/GisVisualizationController.php
|
||||
|
||||
@ -12062,7 +12042,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Construct empty\\(\\) is not allowed\\. Use more strict comparison\\.$#"
|
||||
count: 8
|
||||
count: 7
|
||||
path: libraries/classes/Core.php
|
||||
|
||||
-
|
||||
@ -15647,7 +15627,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'MaxExactCount' on mixed\\.$#"
|
||||
count: 1
|
||||
count: 2
|
||||
path: libraries/classes/Display/Results.php
|
||||
|
||||
-
|
||||
@ -15757,7 +15737,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'max_rows' on mixed\\.$#"
|
||||
count: 19
|
||||
count: 20
|
||||
path: libraries/classes/Display/Results.php
|
||||
|
||||
-
|
||||
@ -15922,7 +15902,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot cast mixed to int\\.$#"
|
||||
count: 4
|
||||
count: 6
|
||||
path: libraries/classes/Display/Results.php
|
||||
|
||||
-
|
||||
@ -16527,7 +16507,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$var of function intval expects array\\|bool\\|float\\|int\\|resource\\|string\\|null, mixed given\\.$#"
|
||||
count: 4
|
||||
count: 2
|
||||
path: libraries/classes/Display/Results.php
|
||||
|
||||
-
|
||||
@ -16752,6 +16732,11 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Encoding\\:\\:convertString\\(\\) should return string but returns string\\|false\\.$#"
|
||||
count: 2
|
||||
path: libraries/classes/Encoding.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Encoding\\:\\:kanjiStrConv\\(\\) should return string but returns string\\|false\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Encoding.php
|
||||
|
||||
@ -24447,7 +24432,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Construct empty\\(\\) is not allowed\\. Use more strict comparison\\.$#"
|
||||
count: 7
|
||||
count: 8
|
||||
path: libraries/classes/Partitioning/Partition.php
|
||||
|
||||
-
|
||||
@ -28465,6 +28450,11 @@ parameters:
|
||||
count: 2
|
||||
path: libraries/classes/Plugins/Import/ImportCsv.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|false given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Plugins/Import/ImportCsv.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, mixed given\\.$#"
|
||||
count: 4
|
||||
@ -28477,7 +28467,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\$input of function preg_grep expects array, mixed given\\.$#"
|
||||
count: 2
|
||||
count: 3
|
||||
path: libraries/classes/Plugins/Import/ImportCsv.php
|
||||
|
||||
-
|
||||
@ -28860,16 +28850,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Plugins/Import/ImportOds.php
|
||||
|
||||
-
|
||||
message: "#^Variable property access on \\(SimpleXMLElement\\|null\\)\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Plugins/Import/ImportOds.php
|
||||
|
||||
-
|
||||
message: "#^Variable property access on SimpleXMLElement\\.$#"
|
||||
count: 2
|
||||
path: libraries/classes/Plugins/Import/ImportOds.php
|
||||
|
||||
-
|
||||
message: "#^Variable property access on mixed\\.$#"
|
||||
count: 1
|
||||
@ -29090,11 +29070,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Plugins/Import/ImportXml.php
|
||||
|
||||
-
|
||||
message: "#^Variable property access on \\(SimpleXMLElement\\|null\\)\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Plugins/Import/ImportXml.php
|
||||
|
||||
-
|
||||
message: "#^Variable property access on mixed\\.$#"
|
||||
count: 1
|
||||
@ -33582,7 +33557,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Construct empty\\(\\) is not allowed\\. Use more strict comparison\\.$#"
|
||||
count: 12
|
||||
count: 13
|
||||
path: libraries/classes/Server/Status/Processes.php
|
||||
|
||||
-
|
||||
@ -35052,7 +35027,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'index_list' on mixed\\.$#"
|
||||
count: 1
|
||||
count: 2
|
||||
path: libraries/classes/Table.php
|
||||
|
||||
-
|
||||
@ -35187,7 +35162,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Construct empty\\(\\) is not allowed\\. Use more strict comparison\\.$#"
|
||||
count: 41
|
||||
count: 30
|
||||
path: libraries/classes/Table.php
|
||||
|
||||
-
|
||||
@ -36020,11 +35995,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Theme.php
|
||||
|
||||
-
|
||||
message: "#^Unreachable statement \\- code above always terminates\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Theme.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'ThemeDefault' on mixed\\.$#"
|
||||
count: 3
|
||||
@ -36070,11 +36040,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/ThemeManager.php
|
||||
|
||||
-
|
||||
message: "#^If condition is always true\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/ThemeManager.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\ThemeManager\\:\\:getThemeCookie\\(\\) should return string\\|false but returns mixed\\.$#"
|
||||
count: 1
|
||||
@ -36125,11 +36090,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/ThemeManager.php
|
||||
|
||||
-
|
||||
message: "#^Unreachable statement \\- code above always terminates\\.$#"
|
||||
count: 2
|
||||
path: libraries/classes/ThemeManager.php
|
||||
|
||||
-
|
||||
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
|
||||
count: 1
|
||||
@ -38195,6 +38155,11 @@ parameters:
|
||||
count: 2
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 0 on mixed\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Method PhpMyAdmin\\\\Utils\\\\HttpRequest\\:\\:handleContext\\(\\) has parameter \\$context with no value type specified in iterable type array\\.$#"
|
||||
count: 1
|
||||
@ -38230,6 +38195,11 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#2 \\$subject of function preg_match expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Property PhpMyAdmin\\\\Utils\\\\HttpRequest\\:\\:\\$proxyPass \\(string\\) does not accept mixed\\.$#"
|
||||
count: 1
|
||||
@ -38245,11 +38215,6 @@ parameters:
|
||||
count: 1
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Variable \\$http_response_header in isset\\(\\) always exists and is not nullable\\.$#"
|
||||
count: 1
|
||||
path: libraries/classes/Utils/HttpRequest.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'Server' on mixed\\.$#"
|
||||
count: 1
|
||||
@ -40975,11 +40940,6 @@ parameters:
|
||||
count: 1
|
||||
path: test/classes/Command/TwigLintCommandTest.php
|
||||
|
||||
-
|
||||
message: "#^Dynamic call to static method PHPUnit\\\\Framework\\\\TestCase\\:\\:exactly\\(\\)\\.$#"
|
||||
count: 2
|
||||
path: test/classes/Command/TwigLintCommandTest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$array_arg of function sort expects TArray of array\\<T\\>, mixed given\\.$#"
|
||||
count: 2
|
||||
@ -41665,11 +41625,6 @@ parameters:
|
||||
count: 2
|
||||
path: test/classes/ConfigTest.php
|
||||
|
||||
-
|
||||
message: "#^Only booleans are allowed in a negated boolean, int\\|false given\\.$#"
|
||||
count: 1
|
||||
path: test/classes/ConfigTest.php
|
||||
|
||||
-
|
||||
message: "#^Only booleans are allowed in an elseif condition, string\\|false given\\.$#"
|
||||
count: 3
|
||||
@ -41677,16 +41632,6 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Only booleans are allowed in an if condition, string\\|false given\\.$#"
|
||||
count: 3
|
||||
path: test/classes/ConfigTest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$haystack of function mb_strstr expects string, array\\<int, string\\> given\\.$#"
|
||||
count: 1
|
||||
path: test/classes/ConfigTest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#1 \\$haystack of function mb_strstr expects string, mixed given\\.$#"
|
||||
count: 1
|
||||
path: test/classes/ConfigTest.php
|
||||
|
||||
@ -41720,11 +41665,6 @@ parameters:
|
||||
count: 1
|
||||
path: test/classes/Controllers/Database/PrivilegesControllerTest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#5 \\$dbi of class PhpMyAdmin\\\\Controllers\\\\Database\\\\PrivilegesController constructor expects PhpMyAdmin\\\\DatabaseInterface, mixed given\\.$#"
|
||||
count: 1
|
||||
path: test/classes/Controllers/Database/PrivilegesControllerTest.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'DisableIS' on mixed\\.$#"
|
||||
count: 2
|
||||
@ -42665,11 +42605,6 @@ parameters:
|
||||
count: 1
|
||||
path: test/classes/Controllers/Table/PrivilegesControllerTest.php
|
||||
|
||||
-
|
||||
message: "#^Parameter \\#6 \\$dbi of class PhpMyAdmin\\\\Controllers\\\\Table\\\\PrivilegesController constructor expects PhpMyAdmin\\\\DatabaseInterface, mixed given\\.$#"
|
||||
count: 1
|
||||
path: test/classes/Controllers/Table/PrivilegesControllerTest.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'DisableIS' on mixed\\.$#"
|
||||
count: 1
|
||||
@ -42927,7 +42862,7 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Cannot call method set\\(\\) on mixed\\.$#"
|
||||
count: 10
|
||||
count: 8
|
||||
path: test/classes/CoreTest.php
|
||||
|
||||
-
|
||||
@ -46445,6 +46380,11 @@ parameters:
|
||||
count: 6
|
||||
path: test/classes/Plugins/Auth/AuthenticationHttpTest.php
|
||||
|
||||
-
|
||||
message: "#^Call to static method PHPUnit\\\\Framework\\\\Assert\\:\\:assertSame\\(\\) with array\\{lifetime\\: 0, path\\: '/', domain\\: '', secure\\: false, partitioned\\?\\: false, httponly\\: false, samesite\\?\\: ''\\} and array\\{lifetime\\: int\\<0, max\\>, path\\: non\\-falsy\\-string, domain\\: string, secure\\: bool, httponly\\: bool, samesite\\: string\\} will always evaluate to false\\.$#"
|
||||
count: 1
|
||||
path: test/classes/Plugins/Auth/AuthenticationSignonTest.php
|
||||
|
||||
-
|
||||
message: "#^Cannot access offset 'LoginCookieValidity' on mixed\\.$#"
|
||||
count: 1
|
||||
@ -49292,7 +49232,12 @@ parameters:
|
||||
|
||||
-
|
||||
message: "#^Call to static method PHPUnit\\\\Framework\\\\Assert\\:\\:assertIsInt\\(\\) with 2 will always evaluate to true\\.$#"
|
||||
count: 2
|
||||
count: 1
|
||||
path: test/classes/VersionTest.php
|
||||
|
||||
-
|
||||
message: "#^Call to static method PHPUnit\\\\Framework\\\\Assert\\:\\:assertIsInt\\(\\) with 3 will always evaluate to true\\.$#"
|
||||
count: 1
|
||||
path: test/classes/VersionTest.php
|
||||
|
||||
-
|
||||
|
||||
110
po/af.po
110
po/af.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Afrikaans <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1589,30 +1589,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4069,7 +4069,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4386,7 +4386,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4752,7 +4752,7 @@ msgstr "SQL-stelling"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4782,7 +4782,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4896,7 +4896,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tabel %s is leeg gemaak."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4954,11 +4954,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Geen verandering"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5803,7 +5803,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6455,7 +6455,7 @@ msgid "Edit query"
|
||||
msgstr "Doen Navraag"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6731,7 +6731,7 @@ msgstr "Tabel kommentaar"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoreer"
|
||||
@ -6742,7 +6742,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7185,7 +7185,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7462,7 +7462,7 @@ msgstr "Overhead"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Databasis %1$s is geskep."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Database %s has been dropped."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8208,7 +8208,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Jou SQL-navraag is suksesvol uitgevoer."
|
||||
@ -8903,7 +8903,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -8911,7 +8911,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Begin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -8920,7 +8920,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Vorige"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -8929,7 +8929,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Volgende"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -8937,22 +8937,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Einde"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Gedeeltelike Tekste"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Volle Tekste"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8965,8 +8965,8 @@ msgstr "Volle Tekste"
|
||||
msgid "Descending"
|
||||
msgstr "Dalend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8979,45 +8979,45 @@ msgstr "Dalend"
|
||||
msgid "Ascending"
|
||||
msgstr "Dalend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Die ry is verwyder"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Vermoor"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Vertoon rye"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "totaal"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9336,12 +9336,12 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
msgid "Report"
|
||||
msgstr "Export"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Bediener weergawe"
|
||||
@ -9524,25 +9524,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9573,33 +9573,33 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Operasies"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Slegs struktuur"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9682,7 +9682,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12444,7 +12444,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Die naam van die primere sleutel moet PRIMARY wees!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/am.po
110
po/am.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:35+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Amharic <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1517,30 +1517,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3830,7 +3830,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4133,7 +4133,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4481,7 +4481,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4508,7 +4508,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4614,7 +4614,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4672,11 +4672,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5441,7 +5441,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6024,7 +6024,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6276,7 +6276,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6287,7 +6287,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6680,7 +6680,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6931,7 +6931,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7662,7 +7662,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8293,44 +8293,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8343,8 +8343,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8357,41 +8357,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8705,11 +8705,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8876,25 +8876,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8924,32 +8924,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9032,7 +9032,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11621,7 +11621,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/ar.po
110
po/ar.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-02-01 15:01+0000\n"
|
||||
"Last-Translator: Mohammed Al Otaibi <mopes.03.belle@icloud.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/phpmyadmin/5-2/ar/"
|
||||
@ -1588,30 +1588,30 @@ msgstr "عليك الترقية إلى %s%s أو لاحقا."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "خطأ: عدم تطابق الرمز المميز"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "إستغلال محتمل"
|
||||
|
||||
@ -4008,7 +4008,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4325,7 +4325,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4693,7 +4693,7 @@ msgstr "مِعراض استعلام SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "لا قواعد بيانات محددة."
|
||||
@ -4720,7 +4720,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4826,7 +4826,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "تم إفراغ محتويات الجدول %s."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4886,11 +4886,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "لا تغييرات"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "قائمة المفضلة ممتلئة!"
|
||||
|
||||
@ -5717,7 +5717,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "الرجاء إضافة متغير واحد على الأقل إلى السلسلة!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6321,7 +6321,7 @@ msgid "Edit query"
|
||||
msgstr "إرسال الإستعلام"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6582,7 +6582,7 @@ msgstr "محتوى نقطة البيانات"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "تجاهل"
|
||||
@ -6593,7 +6593,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "نسخ إلى الحافظة"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7007,7 +7007,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "يرجى النظر في الجزء السفلي من هذه النافذة."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "تجاهل الكل"
|
||||
|
||||
@ -7273,7 +7273,7 @@ msgstr "الحمل الزائد"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "تم إنشاء قاعدة البيانات %1$s."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8018,7 +8018,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "تم تنفيذ استعلام SQL الخاص بك بنجاح."
|
||||
@ -8683,44 +8683,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "بداية"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "سابق"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "التالي"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "نهاية"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "نصوص جزئيّة"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "نصوص كاملة"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8733,8 +8733,8 @@ msgstr "نصوص كاملة"
|
||||
msgid "Descending"
|
||||
msgstr "تنازليا"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8747,42 +8747,42 @@ msgstr "تنازليا"
|
||||
msgid "Ascending"
|
||||
msgstr "تصاعديا"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "تم حذف الصف."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "حذف"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
"ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأسئلة المتكررة 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "عرض الصفوف من %1s إلى %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d جملة %2$d طلب بحث"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "المجموع %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "استغرق الاستعلام %01.4f ثانية."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "لم يتم العثور على الرابط!"
|
||||
|
||||
@ -9096,11 +9096,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "كثيراً من رسائل الخطأ، لن تعرض كلها."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "أبلغ عن"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "إرسال التقرير تلقائيا في المرة القادمة"
|
||||
|
||||
@ -9272,25 +9272,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9320,33 +9320,33 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "خيارات"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "انتقل إلى قاعدة البيانات: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Missing data for %s"
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "بيانات مفقودة لـ %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "انتقل إلى الجدول: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "هيكل %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9429,7 +9429,7 @@ msgstr "عرض استعلام SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "تجاهل رمز اللغة غير المدعوم ."
|
||||
|
||||
@ -12228,7 +12228,7 @@ msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/ar_LY.po
110
po/ar_LY.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:35+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Arabic (Libya) <https://hosted.weblate.org/projects/"
|
||||
@ -1518,30 +1518,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3831,7 +3831,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4134,7 +4134,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4487,7 +4487,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4514,7 +4514,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4618,7 +4618,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4676,11 +4676,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5449,7 +5449,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6032,7 +6032,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6284,7 +6284,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6295,7 +6295,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6688,7 +6688,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6939,7 +6939,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7674,7 +7674,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8317,44 +8317,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8367,8 +8367,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8381,41 +8381,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8729,11 +8729,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8900,25 +8900,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8948,32 +8948,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9056,7 +9056,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11661,7 +11661,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/az.po
110
po/az.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-06-13 16:09+0000\n"
|
||||
"Last-Translator: Ricky From Hong Kong <lamricky11@hotmail.com>\n"
|
||||
"Language-Team: Azerbaijani <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
@ -1643,13 +1643,13 @@ msgstr "%s %s vəya yenisinə yüksəltməlisiniz."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1658,17 +1658,17 @@ msgstr ""
|
||||
"mbstring.func_overload PHP konfiqurasiyanızda aktivləşdirilib. Bu seçim "
|
||||
"phpMyAdmin ilə uyğunlaşmır və bəzi verilənlərin korlanmasına səbəb ola bilər!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4126,7 +4126,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4449,7 +4449,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4809,7 +4809,7 @@ msgstr "SQL sorğu konsolu"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Heç bir baza seçilmemişdir."
|
||||
@ -4838,7 +4838,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4948,7 +4948,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "%s cədvəli boşaldıldı."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5008,11 +5008,11 @@ msgstr "Bəli"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Deyişiklik Yoxdur"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Seçilmiş siyahı doludur!"
|
||||
|
||||
@ -5831,7 +5831,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6461,7 +6461,7 @@ msgid "Edit query"
|
||||
msgstr "Sorğunu göndər"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6720,7 +6720,7 @@ msgstr "Verilən nöqtə məzmunu"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Diqqətə Alma"
|
||||
@ -6731,7 +6731,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7156,7 +7156,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Zəhmət olmasa bu pəncərənin altına baxın."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Heç birin diqqətə alma"
|
||||
|
||||
@ -7432,7 +7432,7 @@ msgstr "Aşma dəyəri"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "%1$s verilənlər bazası yaradıldı."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8208,7 +8208,7 @@ msgstr "%s cədvəli artıq mövcuddur!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir."
|
||||
@ -8897,44 +8897,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Başlanğıc"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Əvvəlki"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Sonrakı"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Son"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Qismi Mətnlər"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Tam Mətnlər"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8947,8 +8947,8 @@ msgstr "Tam Mətnlər"
|
||||
msgid "Descending"
|
||||
msgstr "Azalan sırada"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8961,41 +8961,41 @@ msgstr "Azalan sırada"
|
||||
msgid "Ascending"
|
||||
msgstr "Artan sırada"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Sətir silindi."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Söndür"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Göstərilən sətir %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d toplam, %2$d sorğuda"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "cəmi %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "sorğu %01.4f saniyədə icra edildi."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Link tapılmadı!"
|
||||
|
||||
@ -9309,11 +9309,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Çoxlu sayda xəta mesajı, bəziləri göstərilə bilmədi."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Hesabat"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Hesabatı növbəti dəfə avtomatik olaraq birbaşa göndər"
|
||||
|
||||
@ -9493,25 +9493,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9541,32 +9541,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Seçimlər"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "%s Verilənlər Bazasına get"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "%s Cədvəlinə get"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "%s Strukturu"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9649,7 +9649,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12425,7 +12425,7 @@ msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Birinci dərəcəli açarın adı \"PRIMARY\" olmalıdır!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`%s` cədvəlinin indeksləri ilə əlaqəli problemlər"
|
||||
|
||||
124
po/be.po
124
po/be.po
@ -1,24 +1,24 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-06-03 12:01+0000\n"
|
||||
"Last-Translator: Gleb <DecibelMeta@gmail.com>\n"
|
||||
"Language-Team: Belarusian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"5-2/be/>\n"
|
||||
"Language: be\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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.11-dev\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 5.12-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
msgstr ""
|
||||
msgstr "Час бесперапыннай працы менш за адзін дзень"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:12
|
||||
msgid "Uptime is less than 1 day, performance tuning may not be accurate."
|
||||
@ -63,7 +63,7 @@ msgstr "Адсотак павольных запытаў"
|
||||
#: libraries/advisory_rules_generic.php:41
|
||||
msgid ""
|
||||
"There is a lot of slow queries compared to the overall amount of Queries."
|
||||
msgstr ""
|
||||
msgstr "Занадта шмат павольных запытаў у параўнанні з агульнай колькасцю."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:43
|
||||
#: libraries/advisory_rules_generic.php:56
|
||||
@ -1540,13 +1540,13 @@ msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазь
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1555,17 +1555,17 @@ msgstr ""
|
||||
"Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая "
|
||||
"опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3872,7 +3872,7 @@ msgstr "Прапускаць заблакаваныя табліцы"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4175,7 +4175,7 @@ msgstr "Свой"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4531,7 +4531,7 @@ msgstr "Кансоль SQL-запыту"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Ня выбраная база дадзеных."
|
||||
@ -4558,7 +4558,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4669,7 +4669,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Табліца %s была ачышчаная."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4729,11 +4729,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Няма зьменаў"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5530,7 +5530,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6121,7 +6121,7 @@ msgid "Edit query"
|
||||
msgstr "Выканаць запыт"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6373,7 +6373,7 @@ msgstr "Змест кропкі даных"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ігнараваць"
|
||||
@ -6384,7 +6384,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6779,7 +6779,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ігнараваць усё"
|
||||
|
||||
@ -7034,7 +7034,7 @@ msgstr "Выкарыстаньне рэсурсаў"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "База дадзеных %1$s створаная."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7915,7 +7915,7 @@ msgstr "Табліца %s ужо існуе!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Ваш SQL-запыт быў паспяхова выкананы."
|
||||
@ -8561,44 +8561,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Пачатак"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Папярэдняя"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Наступная"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Апошняя"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Частковыя тэксты"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Поўныя тэксты"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8611,8 +8611,8 @@ msgstr "Поўныя тэксты"
|
||||
msgid "Descending"
|
||||
msgstr "адваротны"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8625,41 +8625,41 @@ msgstr "адваротны"
|
||||
msgid "Ascending"
|
||||
msgstr "прамы"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Радок быў выдалены."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Спыніць"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Паказаныя запісы %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d усяго"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Запыт выконваўся %01.4f секунд."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Сувязь ня знойдзеная!"
|
||||
|
||||
@ -9021,11 +9021,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Справаздача"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Аўтаматычна адпраўляць справаздачу ў наступны раз"
|
||||
|
||||
@ -9205,25 +9205,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9253,32 +9253,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Налады"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Перайсці да базы даных: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Перайсці да табліцы: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Структура %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Перайсці да прадстаўлення: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9363,7 +9363,7 @@ msgstr "У выглядзе SQL-запыту"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID устаўленага радку: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12069,7 +12069,7 @@ msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Імя першаснага ключа мусіць быць PRIMARY!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Праблемы з індэксамі для табліцы `%s`"
|
||||
|
||||
110
po/be@latin.po
110
po/be@latin.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Belarusian (latin) <https://hosted.weblate.org/projects/"
|
||||
@ -1773,13 +1773,13 @@ msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1788,17 +1788,17 @@ msgstr ""
|
||||
"Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja "
|
||||
"opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4337,7 +4337,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4672,7 +4672,7 @@ msgstr "Inšy koler"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5053,7 +5053,7 @@ msgstr "SQL-zapyt"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Nia vybranaja baza dadzienych."
|
||||
@ -5081,7 +5081,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5199,7 +5199,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tablica %s była ačyščanaja."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5259,11 +5259,11 @@ msgstr "Tak"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Niama źmienaŭ"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -6180,7 +6180,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6867,7 +6867,7 @@ msgid "Edit query"
|
||||
msgstr "Vykanać zapyt"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7154,7 +7154,7 @@ msgstr "Pamier ukazalnika na dadzienyja"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignaravać"
|
||||
@ -7165,7 +7165,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7621,7 +7621,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7910,7 +7910,7 @@ msgstr "Vykarystańnie resursaŭ"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Baza dadzienych %1$s stvoranaja."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%s databases have been dropped successfully."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8813,7 +8813,7 @@ msgstr "Tablica %s užo isnuje!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9563,7 +9563,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9571,7 +9571,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Pieršaja staronka"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9580,7 +9580,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Papiaredniaja staronka"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9589,7 +9589,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Nastupnaja staronka"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9597,22 +9597,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Apošniaja staronka"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Častkovyja teksty"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Poŭnyja teksty"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9625,8 +9625,8 @@ msgstr "Poŭnyja teksty"
|
||||
msgid "Descending"
|
||||
msgstr "advarotny"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9639,48 +9639,48 @@ msgstr "advarotny"
|
||||
msgid "Ascending"
|
||||
msgstr "pramy"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Radok byŭ vydaleny"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Spynić"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
#, 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 "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Pakazanyja zapisy"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "usiaho"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Zapyt vykonvaŭsia %01.4f sek"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -10048,13 +10048,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "Imrart"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
#| msgid "Automatic recovery mode"
|
||||
msgid "Automatically send report next time"
|
||||
@ -10249,25 +10249,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10297,35 +10297,35 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Nałady"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
#| msgid "No databases"
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Bazy dadzienych adsutničajuć"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
#| msgid "No tables"
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Niama tablic"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Tolki strukturu"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10412,7 +10412,7 @@ msgstr "U vyhladzie SQL-zapytu"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID ustaŭlenaha radku: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -13397,7 +13397,7 @@ msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Imia pieršasnaha kluča musić być PRIMARY!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Prablemy z indeksami dla tablicy `%s`"
|
||||
|
||||
110
po/ber.po
110
po/ber.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-07-30 08:47+0000\n"
|
||||
"Last-Translator: William Desportes <williamdes@wdes.fr>\n"
|
||||
"Language-Team: Berber <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1517,30 +1517,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3828,7 +3828,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4131,7 +4131,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4479,7 +4479,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4506,7 +4506,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4610,7 +4610,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4668,11 +4668,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5437,7 +5437,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6020,7 +6020,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6272,7 +6272,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6283,7 +6283,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6676,7 +6676,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6927,7 +6927,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7658,7 +7658,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8289,44 +8289,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8339,8 +8339,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8353,41 +8353,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8701,11 +8701,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8872,25 +8872,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8920,32 +8920,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9028,7 +9028,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11617,7 +11617,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/bg.po
110
po/bg.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-10-13 04:15+0000\n"
|
||||
"Last-Translator: 109247019824 <stoyan@gmx.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1655,13 +1655,13 @@ msgstr "Осъвременете до %s %s или по-нова."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1670,17 +1670,17 @@ msgstr ""
|
||||
"Имате включено mbstring.func_overload в настройките на PHP. Тази опция е "
|
||||
"несъвместима с phpMyAdmin и може да причини повреда на данни!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "възможен пробив в сигурността"
|
||||
|
||||
@ -4283,7 +4283,7 @@ msgstr "Пропускане заключени таблици"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4606,7 +4606,7 @@ msgstr "Потребителски"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4984,7 +4984,7 @@ msgstr "SQL конзола"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Няма избрани БД."
|
||||
@ -5012,7 +5012,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5128,7 +5128,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Таблицата %s беше изчистена."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5186,11 +5186,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Няма промяна"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Листа с фаворитите е пълен!"
|
||||
|
||||
@ -6031,7 +6031,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Моля добавете поне една променлива към сериите!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6638,7 +6638,7 @@ msgid "Edit query"
|
||||
msgstr "Промяна на заявката"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6904,7 +6904,7 @@ msgstr "Съдържание на точката с данни"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Игнориране"
|
||||
@ -6915,7 +6915,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Копиране в клипборда"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7336,7 +7336,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Моля погледнете в края на този прозорец."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Игнориране на всички"
|
||||
|
||||
@ -7608,7 +7608,7 @@ msgstr "Загубено място"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Базата данни %1$s беше създадена."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8364,7 +8364,7 @@ msgstr "Таблица %s вече съществува!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "SQL заявката беше изпълнена успешно."
|
||||
@ -9041,44 +9041,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Начало"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Предна"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Следваща"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Последна"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Частични текстове"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Пълни текстове"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9091,8 +9091,8 @@ msgstr "Пълни текстове"
|
||||
msgid "Descending"
|
||||
msgstr "Низходящо"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9105,41 +9105,41 @@ msgstr "Низходящо"
|
||||
msgid "Ascending"
|
||||
msgstr "Възходящо"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Редът беше изтрит."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Спиране"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Показване на редове %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d общо, %2$d в питане"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d общо"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Заявката отне %01.4f секунди."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Връзката не е намерена!"
|
||||
|
||||
@ -9456,11 +9456,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Твърде много съобщения за грешки, някои не са показани."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Доклад"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Автоматично изпращане на доклад, следващият път"
|
||||
|
||||
@ -9636,25 +9636,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9684,32 +9684,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Към БД: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Редактиране настройките на %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Към таблица: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Структурата на %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9794,7 +9794,7 @@ msgstr "Показване на SQL заявкa"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Пренебрегване на неподдържан код на език."
|
||||
|
||||
@ -12639,7 +12639,7 @@ msgstr "Този MySQL сървър не поддържа хранилището
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Името на първичния ключ трябва да е \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблем с индексите на таблица `%s`"
|
||||
|
||||
110
po/bn.po
110
po/bn.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Bengali <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1704,13 +1704,13 @@ msgstr "আপনি অবশ্যই %s %s বা পরের কোন স
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "ভুল: টোকেন মিলে নাই"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1719,17 +1719,17 @@ msgstr ""
|
||||
"আপনার পিএইচপির জন্য mbstring.func_overload ফাংশনটি ব্যবহার করা হচ্ছে। এটা "
|
||||
"phpMyAdmin এর সঙ্গে সামঞ্জস্যপূর্ণ নয় এবং কিছু তথ্য নষ্ট করতে পারে!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS পুন লিখনের চেষ্টা"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "সাম্ভাব্য বিপদের সুযোগ"
|
||||
|
||||
@ -4371,7 +4371,7 @@ msgstr "লকড টেবল এড়িয়ে যাও"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4695,7 +4695,7 @@ msgstr "পরিবর্তন"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5137,7 +5137,7 @@ msgstr "SQL অনুসন্ধান বক্স"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
@ -5164,7 +5164,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5274,7 +5274,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "টেবিল %s খালি করা হয়েছে।"
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5333,11 +5333,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "পরিবর্তন নয়"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -6221,7 +6221,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "সিরিজে অন্তত একটি চলক যোগ করুন!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6864,7 +6864,7 @@ msgid "Edit query"
|
||||
msgstr "অনুসন্ধান পেশ কর"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7140,7 +7140,7 @@ msgstr "প্রতিটি পয়েন্টের বিষয়"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "উপেক্ষা"
|
||||
@ -7151,7 +7151,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7620,7 +7620,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7904,7 +7904,7 @@ msgstr "অতিরিক্ত"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "ডাটাবেইজ %1$s তৈরী করা হয়েছে।"
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8746,7 +8746,7 @@ msgstr "টেবিল %s পুর্ব থেকেই আছে!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "আপনার SQL অনুসন্ধানটি সফলভাবে কাজ করেছে."
|
||||
@ -9461,44 +9461,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "আরম্ভ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "পূর্ববর্তী"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "পরবর্তী"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "শেষ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "আংশিক লেখা"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "সম্পুর্ন লেখা"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9511,8 +9511,8 @@ msgstr "সম্পুর্ন লেখা"
|
||||
msgid "Descending"
|
||||
msgstr "অধ মুখী"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9525,41 +9525,41 @@ msgstr "অধ মুখী"
|
||||
msgid "Ascending"
|
||||
msgstr "উর্ধ্ব মূখী"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "রো টি মুছা হয়েছে।"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "হত্যা"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "রো দেখাচ্ছে %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "মোট %1$d, অনুসন্ধানে %2$d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d মোট"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "অনুসন্ধানে %01.4f সেঃ লেগেছ."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "সংযোগটি পাওয়া যায়নি!"
|
||||
|
||||
@ -9909,13 +9909,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "অনেক বেশী ভুল সংক্রান্ত তথ্য, কতগুলো দেখানো হয় নাই।"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "আমদানি"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "পরবর্তী সময়ে স্বয়ংক্রীয়ভাবে প্রতিবেদন পাঠাবে"
|
||||
|
||||
@ -10099,18 +10099,18 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "এই আকৃতিটি তৈরী করা বা পরিবর্তন করা হয়েছে। এখানে আপনি:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
#, fuzzy
|
||||
#| msgid "View a structure's contents by clicking on its name"
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "একটি আকৃতির বিশদ দেখুন তার নামে ক্লিক করে"
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Change any of its settings by clicking the corresponding \"Options\" link"
|
||||
@ -10118,13 +10118,13 @@ msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr "\"Options\" এ ক্লীক করে যে কোন সেটিংস পরিবর্তন করুন"
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
#, fuzzy
|
||||
#| msgid "Edit structure by following the \"Structure\" link"
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" সংযোগের দ্বারা"
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10154,32 +10154,32 @@ msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" স
|
||||
msgid "Options"
|
||||
msgstr "অপশনস"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "ডাটাবেইজ এ যাও: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "%s এর সেটিংস সম্পাদনা"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "টেবল এ যাও: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "%s এর আকৃতি"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "ভিউ এ যাও : %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10262,7 +10262,7 @@ msgstr "এসকিউএল অনুসন্ধান দেখাচ্ছ
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "প্রবেশকৃত রো আইডি: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -13134,7 +13134,7 @@ msgstr "এই MySQL সার্ভারটি %s মজুদ ব্যবস
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "প্রাথমিক কী'র নাম অবশ্যই \"PRIMARY\" হতে হবে!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "টেবল `%s` এর ইনডেক্সে সমস্যা আছে"
|
||||
|
||||
202
po/br.po
202
po/br.po
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2024-10-16 15:51+0000\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-03-17 19:29+0000\n"
|
||||
"Last-Translator: Fulup Jakez <fulup.jakez@gmail.com>\n"
|
||||
"Language-Team: Breton <https://hosted.weblate.org/projects/phpmyadmin/5-2/br/"
|
||||
">\n"
|
||||
@ -17,32 +17,34 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.8-rc\n"
|
||||
"X-Generator: Weblate 5.11-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
msgstr ""
|
||||
msgstr "Amzer hegerzded dindan un devezh"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:12
|
||||
msgid "Uptime is less than 1 day, performance tuning may not be accurate."
|
||||
msgstr ""
|
||||
"N'eus ket un devezh emañ ar reizhad o vont en-dro, diresis e c'hall bezañ an "
|
||||
"alioù berzhusded."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:14
|
||||
msgid ""
|
||||
"To have more accurate averages it is recommended to let the server run for "
|
||||
"longer than a day before running this analyzer"
|
||||
msgstr ""
|
||||
"Evit kaout disoc'hoù gwelloc'h eo erbedet lezel ar servijer da vont en-dro e-"
|
||||
"pad ouzhpenn un devezh a-raok implijout an dielfenner"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:17
|
||||
#, php-format
|
||||
msgid "The uptime is only %s"
|
||||
msgstr ""
|
||||
msgstr "An amzer hegerzhded a sav da %s hepken"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:22
|
||||
#, fuzzy
|
||||
#| msgid "Questions"
|
||||
msgid "Questions below 1,000"
|
||||
msgstr "Goulennoù"
|
||||
msgstr "Goulennoù dindan 1000"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:26
|
||||
msgid ""
|
||||
@ -1641,30 +1643,30 @@ msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3365,7 +3367,7 @@ msgstr ""
|
||||
#: templates/table/operations/index.twig:72
|
||||
#: templates/table/operations/index.twig:300
|
||||
msgid "Add AUTO_INCREMENT value"
|
||||
msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT"
|
||||
msgstr "Ouzhpennañ talvoud AUTO_INCREMENT"
|
||||
|
||||
#: libraries/classes/Config/Descriptions.php:708
|
||||
msgid "Enclose table and column names with backquotes"
|
||||
@ -4133,7 +4135,7 @@ msgstr ""
|
||||
#: templates/database/operations/index.twig:122
|
||||
#: templates/server/databases/index.twig:24
|
||||
msgid "Database name"
|
||||
msgstr ""
|
||||
msgstr "Anv an diaz roadennoù"
|
||||
|
||||
#: libraries/classes/Config/Descriptions.php:906
|
||||
msgid "Server port"
|
||||
@ -4313,7 +4315,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4642,7 +4644,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5031,7 +5033,7 @@ msgstr "Boest rekedoù SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -5060,7 +5062,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5175,7 +5177,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Goullonderet eo bet an daolenn %s."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5235,11 +5237,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -6123,7 +6125,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6784,7 +6786,7 @@ msgid "Edit query"
|
||||
msgstr "Kas ar reked"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7061,7 +7063,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Na ober van"
|
||||
@ -7072,7 +7074,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7513,7 +7515,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7796,7 +7798,7 @@ msgstr "Dilerc'hioù"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Krouet eo bet an diaz roadennoù %1$s."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Database %s has been dropped."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8545,7 +8547,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9282,7 +9284,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9290,7 +9292,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Kregiñ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9299,7 +9301,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Kent"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9308,7 +9310,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "War-lerc'h"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9316,18 +9318,18 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Fin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9340,8 +9342,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr "War zigresk"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9354,48 +9356,48 @@ msgstr "War zigresk"
|
||||
msgid "Ascending"
|
||||
msgstr "War gresk"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The bookmark has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Diverket eo bet ar sined."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
#, 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 ""
|
||||
"Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%s table"
|
||||
#| msgid_plural "%s tables"
|
||||
msgid "%d total"
|
||||
msgstr "%s daolenn"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Theme %s not found!"
|
||||
msgid "Link not found!"
|
||||
@ -9711,13 +9713,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "Enporzhiañ"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -9909,25 +9911,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9957,36 +9959,36 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Jump to database"
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Mont d'an diaz roadennoù"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Missing data for %s"
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Roadennoù a vank evit %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Set value: %s"
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Lakaat an talvoud da %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Ar framm hepken"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10073,7 +10075,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -10129,7 +10131,7 @@ msgstr "Ensoc'hañ"
|
||||
#: templates/server/sub_page_header.twig:2
|
||||
#: templates/table/privileges/index.twig:22
|
||||
msgid "Privileges"
|
||||
msgstr ""
|
||||
msgstr "Dreistwirioù"
|
||||
|
||||
#: libraries/classes/Menu.php:307 libraries/classes/Menu.php:317
|
||||
#: libraries/classes/Menu.php:397 libraries/classes/Util.php:1493
|
||||
@ -10369,10 +10371,8 @@ msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:43
|
||||
#, fuzzy
|
||||
#| msgid "Databases display options"
|
||||
msgid "Database operations"
|
||||
msgstr "Dibarzhioù diskwel an diazoù roadennoù"
|
||||
msgstr "Oberiadennoù an diaz roadennoù"
|
||||
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:648
|
||||
#, fuzzy
|
||||
@ -12521,17 +12521,15 @@ msgstr ""
|
||||
#: templates/database/privileges/index.twig:124
|
||||
#: templates/table/privileges/index.twig:127
|
||||
msgid "Not enough privilege to view users."
|
||||
msgstr ""
|
||||
msgstr "Dreistgwirioù re izel evit gallout gwelet an implijerien."
|
||||
|
||||
#: libraries/classes/Server/Privileges.php:1505
|
||||
#: templates/database/privileges/index.twig:80
|
||||
#: templates/server/privileges/new_user_ajax.twig:45
|
||||
#: templates/server/privileges/users_overview.twig:75
|
||||
#: templates/table/privileges/index.twig:84
|
||||
#, fuzzy
|
||||
#| msgid "Reloading Privileges"
|
||||
msgid "Edit privileges"
|
||||
msgstr "Oc'h adkargañ an dreistgwirioù"
|
||||
msgstr "Kemmañ an dreistgwirioù"
|
||||
|
||||
#: libraries/classes/Server/Privileges.php:1509
|
||||
msgid "Revoke"
|
||||
@ -12587,7 +12585,7 @@ msgstr ""
|
||||
#: templates/database/privileges/index.twig:102
|
||||
#: templates/table/privileges/index.twig:106
|
||||
msgid "No user found."
|
||||
msgstr ""
|
||||
msgstr "N'eus bet kavet implijer ebet."
|
||||
|
||||
#: libraries/classes/Server/Privileges.php:2452
|
||||
#, php-format
|
||||
@ -12836,7 +12834,7 @@ msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
@ -12953,21 +12951,21 @@ msgstr ""
|
||||
#: templates/database/structure/copy_form.twig:19
|
||||
#: templates/table/operations/index.twig:275
|
||||
msgid "Structure only"
|
||||
msgstr "Ar framm hepken"
|
||||
msgstr "Framm hepken"
|
||||
|
||||
#: libraries/classes/Tracking.php:315
|
||||
#: templates/database/operations/index.twig:143
|
||||
#: templates/database/structure/copy_form.twig:29
|
||||
#: templates/table/operations/index.twig:287
|
||||
msgid "Data only"
|
||||
msgstr "Ar roadennoù hepken"
|
||||
msgstr "Roadennoù hepken"
|
||||
|
||||
#: libraries/classes/Tracking.php:318
|
||||
#: templates/database/operations/index.twig:137
|
||||
#: templates/database/structure/copy_form.twig:24
|
||||
#: templates/table/operations/index.twig:281
|
||||
msgid "Structure and data"
|
||||
msgstr "Ar framm hag ar roadennoù ennañ"
|
||||
msgstr "Framm ha roadennoù"
|
||||
|
||||
#: libraries/classes/Tracking.php:383 libraries/classes/Tracking.php:451
|
||||
#, php-format
|
||||
@ -14897,19 +14895,15 @@ msgstr "Hizivaat ar reked"
|
||||
#: templates/database/operations/index.twig:9
|
||||
#: templates/database/operations/index.twig:13
|
||||
msgid "Database comment"
|
||||
msgstr "Evezhiadenn diwar-benn an diaz roadennoù :"
|
||||
msgstr "Evezhiadenn an diaz roadennoù"
|
||||
|
||||
#: templates/database/operations/index.twig:54
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to"
|
||||
msgstr "Cheñch anv an diaz roadennoù hag e envel"
|
||||
msgstr "Adenvel an diaz roadennoù e"
|
||||
|
||||
#: templates/database/operations/index.twig:58 templates/export.twig:282
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "New database name"
|
||||
msgstr "Goullo eo anv an diaz roadennoù !"
|
||||
msgstr "Anv nevez an diaz roadennoù"
|
||||
|
||||
#: templates/database/operations/index.twig:66
|
||||
#: templates/database/operations/index.twig:171
|
||||
@ -14920,6 +14914,8 @@ msgid ""
|
||||
"You don't have sufficient privileges to perform this operation; Please refer "
|
||||
"to the documentation for more details."
|
||||
msgstr ""
|
||||
"N'eo ket uhel a-walc'h gwirioù an implijer evit seveniñ an oberiadenn-mañ ; "
|
||||
"sellit ouzh an teuliadur evit gouzout hiroc'h."
|
||||
|
||||
#: templates/database/operations/index.twig:83
|
||||
msgid "Remove database"
|
||||
@ -14932,17 +14928,15 @@ msgstr "Diverket eo bet an diaz roadennoù %s."
|
||||
|
||||
#: templates/database/operations/index.twig:94
|
||||
msgid "Drop the database (DROP)"
|
||||
msgstr "Diverkañ an diaz roadennoù (DROP)"
|
||||
msgstr "Dilemel an diaz roadennoù (DROP)"
|
||||
|
||||
#: templates/database/operations/index.twig:118
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to"
|
||||
msgstr "Eilañ an diaz roadennoù war"
|
||||
msgstr "Eilañ an diaz roadennoù war-zu"
|
||||
|
||||
#: templates/database/operations/index.twig:150
|
||||
msgid "CREATE DATABASE before copying"
|
||||
msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ"
|
||||
msgstr "Ober CREATE DATABASE a-raok eilañ"
|
||||
|
||||
#: templates/database/operations/index.twig:165
|
||||
#: templates/database/structure/copy_form.twig:44
|
||||
@ -14955,20 +14949,18 @@ msgid "Switch to copied database"
|
||||
msgstr "Mont d'an diaz roadennoù eilet"
|
||||
|
||||
#: templates/database/operations/index.twig:216
|
||||
#, fuzzy
|
||||
#| msgid "Continued table caption"
|
||||
msgid "Change all tables collations"
|
||||
msgstr "Enklozañ an istitloù"
|
||||
msgstr "Kemmañ holl etrerummadoù an taolennoù"
|
||||
|
||||
#: templates/database/operations/index.twig:220
|
||||
msgid "Change all tables columns collations"
|
||||
msgstr ""
|
||||
msgstr "Cheñch etrerummadoù pep bann en holl daolennoù"
|
||||
|
||||
#: templates/database/privileges/index.twig:9
|
||||
#: templates/table/privileges/index.twig:8
|
||||
#, php-format
|
||||
msgid "Users having access to \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Implijerien ganto ur moned ouzh \"%s\""
|
||||
|
||||
#: templates/database/privileges/index.twig:17
|
||||
#: templates/server/privileges/login_information_fields.twig:6
|
||||
@ -14979,17 +14971,15 @@ msgstr ""
|
||||
#: templates/server/replication/primary_add_replica_user.twig:24
|
||||
#: templates/table/privileges/index.twig:19
|
||||
msgid "User name"
|
||||
msgstr ""
|
||||
msgstr "Anv implijer"
|
||||
|
||||
#: templates/database/privileges/index.twig:18
|
||||
#: templates/server/privileges/login_information_fields.twig:25
|
||||
#: templates/server/privileges/login_information_fields.twig:37
|
||||
#: templates/server/privileges/users_overview.twig:9
|
||||
#: templates/table/privileges/index.twig:20
|
||||
#, fuzzy
|
||||
#| msgid "Add constraints"
|
||||
msgid "Host name"
|
||||
msgstr "Ouzhpennañ ar strishadurioù"
|
||||
msgstr "Anv ostiz"
|
||||
|
||||
#: templates/database/privileges/index.twig:21
|
||||
#: templates/server/privileges/privileges_summary.twig:16
|
||||
@ -15004,29 +14994,27 @@ msgstr ""
|
||||
#: templates/server/privileges/users_overview.twig:36
|
||||
#: templates/table/privileges/index.twig:38
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
msgstr "Ne vern"
|
||||
|
||||
#: templates/database/privileges/index.twig:47
|
||||
#: templates/table/privileges/index.twig:49
|
||||
msgid "global"
|
||||
msgstr ""
|
||||
msgstr "hollek"
|
||||
|
||||
#: templates/database/privileges/index.twig:50
|
||||
#: templates/table/privileges/index.twig:52
|
||||
msgid "database-specific"
|
||||
msgstr ""
|
||||
msgstr "dibar d'an diaz roadennoù-mañ"
|
||||
|
||||
#: templates/database/privileges/index.twig:52
|
||||
#: templates/table/privileges/index.twig:54
|
||||
msgid "wildcard"
|
||||
msgstr ""
|
||||
msgstr "joker"
|
||||
|
||||
#: templates/database/privileges/index.twig:55
|
||||
#: templates/table/privileges/index.twig:59
|
||||
#, fuzzy
|
||||
#| msgid "Edit routine"
|
||||
msgid "routine"
|
||||
msgstr "Kemmañ un argerzh"
|
||||
msgstr "argerzh"
|
||||
|
||||
#: templates/database/privileges/index.twig:112
|
||||
#: templates/database/privileges/index.twig:115
|
||||
@ -15040,7 +15028,7 @@ msgstr "Kemmañ un argerzh"
|
||||
#: templates/table/privileges/index.twig:116
|
||||
#: templates/table/privileges/index.twig:119
|
||||
msgid "With selected:"
|
||||
msgstr "Evit ar re zo diuzet :"
|
||||
msgstr "Gant ar re diuzet :"
|
||||
|
||||
#: templates/database/privileges/index.twig:131
|
||||
#: templates/server/privileges/add_user_fieldset.twig:4
|
||||
@ -15057,10 +15045,8 @@ msgstr ""
|
||||
#: templates/server/privileges/user_overview.twig:24
|
||||
#: templates/server/privileges/users_overview.twig:140
|
||||
#: templates/table/privileges/index.twig:140
|
||||
#, fuzzy
|
||||
#| msgid "Add user"
|
||||
msgid "Add user account"
|
||||
msgstr "Ouzhpennañ un implijer"
|
||||
msgstr "Ouzhpennañ un gont implijer"
|
||||
|
||||
#: templates/database/qbe/index.twig:16
|
||||
#, php-format
|
||||
|
||||
110
po/brx.po
110
po/brx.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2015-09-04 09:33+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bodo <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
@ -1517,30 +1517,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3828,7 +3828,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4131,7 +4131,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4479,7 +4479,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4506,7 +4506,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4610,7 +4610,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4668,11 +4668,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5437,7 +5437,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6020,7 +6020,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6272,7 +6272,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6283,7 +6283,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6676,7 +6676,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6927,7 +6927,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7658,7 +7658,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8289,44 +8289,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8339,8 +8339,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8353,41 +8353,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8701,11 +8701,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8872,25 +8872,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8920,32 +8920,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9028,7 +9028,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11617,7 +11617,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/bs.po
110
po/bs.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Bosnian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1668,30 +1668,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4188,7 +4188,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4510,7 +4510,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4878,7 +4878,7 @@ msgstr "SQL upit"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
@ -4906,7 +4906,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5018,7 +5018,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tabela %s je ispražnjena."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5076,11 +5076,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Nema izmjena"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5945,7 +5945,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6607,7 +6607,7 @@ msgid "Edit query"
|
||||
msgstr "Izvrši SQL upit"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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 +6890,7 @@ msgstr "Sadržaj"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoriši"
|
||||
@ -6901,7 +6901,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7347,7 +7347,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7624,7 +7624,7 @@ msgstr "Prekoračenje"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Baza %1$s je kreirana."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%s databases have been dropped successfully."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8374,7 +8374,7 @@ msgstr "Korisnik %s već postoji!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9080,7 +9080,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9088,7 +9088,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Početak"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9097,7 +9097,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Prethodna"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9106,7 +9106,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Slijedeći"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9114,22 +9114,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Kraj"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Dio teksta"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Pun tekst"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9142,8 +9142,8 @@ msgstr "Pun tekst"
|
||||
msgid "Descending"
|
||||
msgstr "Opadajući"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9156,46 +9156,46 @@ msgstr "Opadajući"
|
||||
msgid "Ascending"
|
||||
msgstr "Rastući"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Red je obrisan"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Obustavi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Prikaz zapisa"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "ukupno"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Upit je trajao %01.4f sekundi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9514,12 +9514,12 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
msgid "Report"
|
||||
msgstr "Izvoz"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Verzija servera"
|
||||
@ -9700,25 +9700,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9749,33 +9749,33 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Operacije"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Samo struktura"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9860,7 +9860,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12754,7 +12754,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Ime primarnog ključa mora da bude PRIMARY!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/ca.po
110
po/ca.po
@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-03-12 11:57+0000\n"
|
||||
"Last-Translator: roger <616steam@gmail.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1850,7 +1850,7 @@ msgstr "Heu d'actualitzar a %s %s o posterior."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: no coincideix un testimoni"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1858,7 +1858,7 @@ msgstr ""
|
||||
"Ha fallat l'establiment de la galeta de sessió. Potser esteu utilitzant HTTP "
|
||||
"en lloc de HTTPS per accedir a phpMyAdmin."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1868,7 +1868,7 @@ msgstr ""
|
||||
"vostre PHP. Aquesta opció és incompatible amb phpMyAdmin i podria fer que "
|
||||
"algunes dades es corrompessin!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1876,11 +1876,11 @@ msgstr ""
|
||||
"Les funcions ini_get i/o ini_set estan inhabilitades al fitxer php.ini. "
|
||||
"phpMyAdmin requereix aquestes funcions!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "intent de sobreescriure la variable GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "possible aprofitament"
|
||||
|
||||
@ -4497,7 +4497,7 @@ msgstr "Omet les taules bloquejades"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4810,7 +4810,7 @@ msgstr "Personalitzat"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5220,7 +5220,7 @@ msgstr "Consola de consultes SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "No s'ha seleccionat cap base de dades."
|
||||
@ -5249,7 +5249,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5363,7 +5363,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "S'ha buidat la taula %s."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5423,11 +5423,11 @@ msgstr "Sí"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Sense canvis"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "La llista de preferits és plena!"
|
||||
|
||||
@ -6280,7 +6280,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Afegiu com a mínim una variable a les sèries!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6899,7 +6899,7 @@ msgid "Edit query"
|
||||
msgstr "Envia la consulta"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7165,7 +7165,7 @@ msgstr "Contingut del punter de dades"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignora"
|
||||
@ -7176,7 +7176,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Copia al porta-retalls"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7605,7 +7605,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Mireu la part inferior d'aquesta finestra."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignora-ho tot"
|
||||
|
||||
@ -7875,7 +7875,7 @@ msgstr "Desfragmentat"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "S'ha creat la base de dades %1$s."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8772,7 +8772,7 @@ msgstr "La taula %s ja existeix!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "La vostra consulta SQL ha estat executada amb èxit."
|
||||
@ -9439,44 +9439,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Inici"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Pàgina anterior"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Següent"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Final"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Texts parcials"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Texts complets"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9489,8 +9489,8 @@ msgstr "Texts complets"
|
||||
msgid "Descending"
|
||||
msgstr "Descendent"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9503,41 +9503,41 @@ msgstr "Descendent"
|
||||
msgid "Ascending"
|
||||
msgstr "Ascendent"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "S'ha esborrat la fila."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Mata"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Pot ser aproximat. Veieu [doc@faq3-11]PMF 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Es mostren les files %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d en total, %2$d a la consulta"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d en total"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "la consulta ha trigat %01.4f segons."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "No s'ha trobat l'enllaç!"
|
||||
|
||||
@ -9907,11 +9907,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Hi ha massa missatges d'error, alguns no es visualitzen."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Informa"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "La pròxima vegada envia automàticament l'informe"
|
||||
|
||||
@ -10088,27 +10088,27 @@ msgstr "s'han trobat %d errors durant l'anàlisi."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[S'ha produït un ROLLBACK.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Mostra el contingut d'una estructura en fer clic sobre el seu nom."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Canvieu qualsevol dels seus paràmetres en fer clic a l'enllaç \"Opcions\" "
|
||||
"corresponent."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Edita l'estructura seguint l'enllaç \"Estructura\"."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10138,32 +10138,32 @@ msgstr "Edita l'estructura seguint l'enllaç \"Estructura\"."
|
||||
msgid "Options"
|
||||
msgstr "Opcions"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Vés a la base de dades %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Edita els paràmetres per %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Vés a la taula: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Estructura de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Vés a la vista: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10251,7 +10251,7 @@ msgstr "Es mostra la consulta SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Id de la fila inserida: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignorant codi d'idioma no suportat."
|
||||
|
||||
@ -13111,7 +13111,7 @@ msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "El nom de la clau primària ha de ser \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemes amb els índexs de la taula `%s`"
|
||||
|
||||
110
po/ckb.po
110
po/ckb.po
@ -4,9 +4,9 @@
|
||||
# Automatically generated, 2012.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Kurdish (Central) <https://hosted.weblate.org/projects/"
|
||||
@ -1516,13 +1516,13 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1532,17 +1532,17 @@ msgstr ""
|
||||
"درووستی لەگەڵ PhpMyAdmin کار ناکات و لەوانەیە ببێتە هۆکاری تێکچوونی هەندێک "
|
||||
"داتای بنکەی دراوە!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3832,7 +3832,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4135,7 +4135,7 @@ msgstr "ڕاسپێراو"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4485,7 +4485,7 @@ msgstr "داواکاری سیكوێڵ"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە."
|
||||
@ -4513,7 +4513,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4619,7 +4619,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "خشتەی %s خاڵی کرا."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4679,11 +4679,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "لیستی دڵخوازەکان پڕە!"
|
||||
|
||||
@ -5481,7 +5481,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زیاد بکە"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6075,7 +6075,7 @@ msgid "Edit query"
|
||||
msgstr "ناردنی داواکاری"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6327,7 +6327,7 @@ msgstr "ناوەڕۆکی زانیاری خاڵ"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "فەرامۆشکردن"
|
||||
@ -6338,7 +6338,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "لەبەرگرتنەوە بۆ لەبەرگر"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6737,7 +6737,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "لە بیرکردنی هەموو"
|
||||
|
||||
@ -6990,7 +6990,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "بنکەی دراوەی %1$s درووستکرا."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7723,7 +7723,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجامدرا"
|
||||
@ -8359,44 +8359,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "دەسپێکردن"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "پێشتر"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "دواتر"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "کۆتایی"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "تێکستە لاوەکیەکان"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "تێکستە تەواوەکان"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8409,8 +8409,8 @@ msgstr "تێکستە تەواوەکان"
|
||||
msgid "Descending"
|
||||
msgstr "لە کۆتایی بۆ سەرەتا"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8423,41 +8423,41 @@ msgstr "لە کۆتایی بۆ سەرەتا"
|
||||
msgid "Ascending"
|
||||
msgstr "لە سەرەتاوە بۆ کۆتایی"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "ڕیزەکە سڕایەوە"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "ڕایگرە"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "ڕیزە پێشاندراوەکان لە %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d سەرجەم"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "داواکاریەکە %01.4f چرکەی خایاند"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "بەستەر نەدۆزرایەوە"
|
||||
|
||||
@ -8771,11 +8771,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "هەڵەنامەی زۆر، هەندێکیان پێشان نەدراون."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "هێنان"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8948,25 +8948,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8996,32 +8996,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "هەڵبژاردنەکان"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9104,7 +9104,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11707,7 +11707,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/cs.po
110
po/cs.po
@ -3,9 +3,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-03-29 10:58+0000\n"
|
||||
"Last-Translator: Vaniron CZ <vanironcz@gmail.com>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/5-2/cs/"
|
||||
@ -1719,7 +1719,7 @@ msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Chyba: neplatný token"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1727,7 +1727,7 @@ msgstr ""
|
||||
"Nepodařilo se nastavit relační cookie. Možná pro přístup do phpMyAdmina "
|
||||
"používáte protokol HTTP místo HTTPS."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1736,7 +1736,7 @@ msgstr ""
|
||||
"V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není "
|
||||
"kompatibilní s phpMyAdminem a může způsobit poškození dat!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1744,11 +1744,11 @@ msgstr ""
|
||||
"V souboru php.ini je zakázaná funkce ini_get nebo ini_set. phpMyAdmin však "
|
||||
"tyto funkce vyžaduje!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Pokus o přepsání GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "možný pokus o exploit"
|
||||
|
||||
@ -4243,7 +4243,7 @@ msgstr "Přeskočit zamčené tabulky"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4548,7 +4548,7 @@ msgstr "Vlastní"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4953,7 +4953,7 @@ msgstr "Konzole pro SQL dotazy"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Nebyla vybrána žádná databáze."
|
||||
@ -4980,7 +4980,7 @@ msgstr "Strana s názvem \"%s\" již existuje, zvolte prosím jiný název."
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5089,7 +5089,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tabulka %s byla vyprázdněna."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5148,11 +5148,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Žádná změna"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Seznam oblíbených je plný!"
|
||||
|
||||
@ -5986,7 +5986,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Prosím přidejte do série alespoň jednu hodnotu!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6594,7 +6594,7 @@ msgid "Edit query"
|
||||
msgstr "Provést dotaz"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6857,7 +6857,7 @@ msgstr "Obsah datového bodu"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorovat"
|
||||
@ -6868,7 +6868,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Zkopírovat do schránky"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7288,7 +7288,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Prosím podívejte se na spodní část okna."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignorovat vše"
|
||||
|
||||
@ -7549,7 +7549,7 @@ msgstr "Navíc"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Byla vytvořena databáze %1$s."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8389,7 +8389,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:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 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."
|
||||
@ -9044,44 +9044,44 @@ msgstr ""
|
||||
"Error 1045: Přístup zamítnut. Další podrobnosti jsou skryty administrátorem "
|
||||
"%s."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "První"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Předchozí"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Následující"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Poslední"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Zkrácené texty"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Celé texty"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9094,8 +9094,8 @@ msgstr "Celé texty"
|
||||
msgid "Descending"
|
||||
msgstr "Sestupně"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9108,41 +9108,41 @@ msgstr "Sestupně"
|
||||
msgid "Ascending"
|
||||
msgstr "Vzestupně"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Řádek byl smazán."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Ukončit"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Zobrazeny záznamy %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d celkem, %2$d v dotazu"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d celkem"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Dotaz trval %01.4f sekund."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Odkaz nebyl nalezen!"
|
||||
|
||||
@ -9498,11 +9498,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Příliš mnoho chyb, některé nebudou zobrazeny."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Nahlásit"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Příště odeslat hlášení automaticky"
|
||||
|
||||
@ -9677,25 +9677,25 @@ msgstr "Při analýze bylo nalezeno %d chyb."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[ROLLBACK nastal]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Obsah struktury se zobrazí po kliknutí na její název."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9725,32 +9725,32 @@ msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“."
|
||||
msgid "Options"
|
||||
msgstr "Nastavení"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Přejít na databázi: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Upravit nastavení pro %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Přejít na tabulku: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Struktura %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Přejít na pohled: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9837,7 +9837,7 @@ msgstr "Zobrazuji SQL dotaz"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID vloženého řádku: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignorován nepodporovaný jazykový kód."
|
||||
|
||||
@ -12615,7 +12615,7 @@ msgstr "Tento MySQL server nepodporuje úložiště %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Název primárního klíče musí být „PRIMARY“!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problémy s indexy v tabulce „%s\""
|
||||
|
||||
110
po/cy.po
110
po/cy.po
@ -4,9 +4,9 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Welsh <https://hosted.weblate.org/projects/phpmyadmin/5-2/cy/"
|
||||
@ -1757,30 +1757,30 @@ msgstr "Dylech uwchraddio i %s %s neu'n well."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4320,7 +4320,7 @@ msgstr "Neidio tablau ar glo"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4657,7 +4657,7 @@ msgstr "Lliw cwstwm"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5048,7 +5048,7 @@ msgstr "Tabl hanes ymholiadau SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
@ -5076,7 +5076,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5191,7 +5191,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Cafodd tabl %s ei wagu."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5250,11 +5250,11 @@ msgstr "Ie"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Dim newid"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -6152,7 +6152,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6840,7 +6840,7 @@ msgid "Edit query"
|
||||
msgstr "Cyflwyno Ymholiad"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7125,7 +7125,7 @@ msgstr "Datganiad diffiniad data"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Anwybyddu"
|
||||
@ -7136,7 +7136,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7589,7 +7589,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7872,7 +7872,7 @@ msgstr "Gorbenion"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Database %s has been dropped."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8627,7 +8627,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9376,7 +9376,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9384,7 +9384,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Dechrau"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9393,7 +9393,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Cynt"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9402,7 +9402,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Nesaf"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9410,22 +9410,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Diwedd"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Testunau Rhannol"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Testunau Llawn"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9438,8 +9438,8 @@ msgstr "Testunau Llawn"
|
||||
msgid "Descending"
|
||||
msgstr "Disgynnol"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9452,46 +9452,46 @@ msgstr "Disgynnol"
|
||||
msgid "Ascending"
|
||||
msgstr "Esgynnol"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Cafodd y rhes ei dileu"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Lladd"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Yn dangos rhesi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "cyfanswm"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9807,13 +9807,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "Mewnforio"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -9995,25 +9995,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10043,36 +10043,36 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Opsiynau"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
#| msgid "No databases"
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Dim cronfeydd data"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Missing data for %s"
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Data ar goll ar gyfer %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Count tables"
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Cyfrifwch y tablau"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Strwythur yn unig"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10161,7 +10161,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12996,7 +12996,7 @@ msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/da.po
110
po/da.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2021-01-22 17:26+0000\n"
|
||||
"Last-Translator: William Desportes <williamdes@wdes.fr>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
@ -1794,13 +1794,13 @@ msgstr "Du burde opdatere til %s %s eller senere."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fejl: Token uoverensstemmelse"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1810,17 +1810,17 @@ msgstr ""
|
||||
"indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse "
|
||||
"af nogle data!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "forsøg på overskrivning af GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "muligt sikkerhedshul"
|
||||
|
||||
@ -4366,7 +4366,7 @@ msgstr "Spring over låste tabeller"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4687,7 +4687,7 @@ msgstr "Brugerdefineret"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5085,7 +5085,7 @@ msgstr "SQL Query-konsol"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Ingen databaser valgt."
|
||||
@ -5112,7 +5112,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5221,7 +5221,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tabel %s blev tømt."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5280,11 +5280,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Ingen ændring"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Favoritliste er fyldt!"
|
||||
|
||||
@ -6128,7 +6128,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Tilføj mindst en variabel til serien!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6745,7 +6745,7 @@ msgid "Edit query"
|
||||
msgstr "Send forespørgsel"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7006,7 +7006,7 @@ msgstr "Datapunkt-indhold"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
@ -7017,7 +7017,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Kopier til udklipsholder"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7444,7 +7444,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Gennemse venligst bunden af denne side."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignorér alle"
|
||||
|
||||
@ -7712,7 +7712,7 @@ msgstr "Overhead"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s er oprettet."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8595,7 +8595,7 @@ msgstr "Tabellen %s eksisterer allerede!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Din SQL-forespørgsel blev udført korrekt."
|
||||
@ -9253,44 +9253,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Start"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Forrige"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Næste"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Slut"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Delvise tekster"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Komplette tekster"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9303,8 +9303,8 @@ msgstr "Komplette tekster"
|
||||
msgid "Descending"
|
||||
msgstr "Faldende"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9317,41 +9317,41 @@ msgstr "Faldende"
|
||||
msgid "Ascending"
|
||||
msgstr "Stigende"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Rækken er slettet."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Dræb (Kill)"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Viser rækkerne %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d i alt, %2$d i forespørgsel"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d i alt"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Forespørgsel tog %01.4f sekunder."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Link ikke fundet!"
|
||||
|
||||
@ -9710,11 +9710,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "For mange fejlmeddelelser, nogle vises ikke."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Send automatisk rapport næste gang"
|
||||
|
||||
@ -9891,27 +9891,27 @@ msgstr "Der blev fundet %d fejl under analysen."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[ROLLBACK opstod.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Vis en strukturs indhold ved at klikke på dens navn."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Ændre alle indstillinger ved at klikke på det tilhørende \"Indstilling\" "
|
||||
"link."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Rediger struktur ved at følge linket \"Struktur\"."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9941,32 +9941,32 @@ msgstr "Rediger struktur ved at følge linket \"Struktur\"."
|
||||
msgid "Options"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Gå til databasen: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Rediger indstillinger for %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Gå til tabellen: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Strukturen af %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Gå til view: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10053,7 +10053,7 @@ msgstr "Viser SQL-forespørgsel"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Indsatte række id: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignorér sprogkoder som ikke understøttes."
|
||||
|
||||
@ -12880,7 +12880,7 @@ msgstr "Denne MySQL-server understøtter ikke %s datalager."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Navnet på primærnøglen skal være \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemer med indeksene på tabel `%s`"
|
||||
|
||||
163
po/de.po
163
po/de.po
@ -3,9 +3,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2024-11-13 04:04+0000\n"
|
||||
"Last-Translator: Eric Marcel Black Stiller <marcelstiller2005@gmail.com>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-05-01 11:02+0000\n"
|
||||
"Last-Translator: M393 <maximilian.kroeg@geocept.com>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/phpmyadmin/5-2/de/"
|
||||
">\n"
|
||||
"Language: de\n"
|
||||
@ -13,7 +13,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.9-dev\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
@ -148,7 +148,7 @@ msgid ""
|
||||
"help troubleshooting badly performing queries."
|
||||
msgstr ""
|
||||
"Loggen von langsamen Abfragen einschalten, indem {log_slow_queries} auf 'ON' "
|
||||
"gesetzt wird. Das hilft beim Erkennen von grauenhaft langsamen Abfragen."
|
||||
"gesetzt wird. Das hilft beim Erkennen von schlecht optimierten Abfragen."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:88
|
||||
msgid "log_slow_queries is set to 'OFF'"
|
||||
@ -299,11 +299,11 @@ msgid ""
|
||||
"5.6/en/ha-memcached.html\">memcached</a> instead of the MySQL Query cache, "
|
||||
"especially if you have multiple replicas."
|
||||
msgstr ""
|
||||
"Sie verwenden den MySQL-Abfrage-Cache mit einer Datenbank mit ziemlich hohem "
|
||||
"Sie verwenden den MySQL-Abfrage-Cache mit einer Datenbank mit hohem "
|
||||
"Datenverkehr. Es könnte eine Überlegung wert sein, ein <a href=\"https://"
|
||||
"dev.mysql.com/doc/refman/5.6/en/ha-memcached.html\">memcached</a> anstelle "
|
||||
"des MySQL-Abfragecaches zu verwenden, insbesondere wenn Sie mehrere haben "
|
||||
"Repliken."
|
||||
"des MySQL-Abfrage-Caches zu verwenden, insbesondere wenn Sie mehrere "
|
||||
"Replikas haben."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:196
|
||||
#, php-format
|
||||
@ -351,8 +351,8 @@ msgstr "Prozentwert der Sortierungen, die temporäre Tabellen verursachen"
|
||||
msgid ""
|
||||
"Temporary tables average: %s, this value should be less than 1 per hour."
|
||||
msgstr ""
|
||||
"Durchschnitt temporäre Tabellen: %s, dieser Wert sollte kleiner als 1 pro "
|
||||
"Stunde sein."
|
||||
"Temporäre Tabellen durchschnittlich: %s, dieser Wert sollte kleiner als 1 "
|
||||
"pro Stunde sein."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:231
|
||||
msgid "Sort rows"
|
||||
@ -989,7 +989,7 @@ msgid ""
|
||||
"The InnoDB log file size is not an appropriate size, in relation to the "
|
||||
"InnoDB buffer pool."
|
||||
msgstr ""
|
||||
"Die InnoDB Protokollgröße ist nicht angemessen in Bezug zu der InnoDB "
|
||||
"Die InnoDB Protokollgröße ist unangemessen im Vergleich mit der InnoDB "
|
||||
"Pufferpoolgröße."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:615
|
||||
@ -1034,7 +1034,7 @@ msgstr "Max InnoDB Protokollgröße"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:664
|
||||
msgid "The InnoDB log file size is inadequately large."
|
||||
msgstr "Die InnoDB Protokollgröße ist nicht ausreichend groß."
|
||||
msgstr "Die InnoDB Protokollgröße ist unangemessen groß."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:666
|
||||
#, no-php-format
|
||||
@ -1088,16 +1088,17 @@ msgid ""
|
||||
"innodb_buffer_pool_size/\">this article</a>"
|
||||
msgstr ""
|
||||
"Der InnoDB-Pufferpool hat tiefgreifende Auswirkungen auf die Leistung für "
|
||||
"InnoDB-Tabellen. Weisen Sie dieser Puffer alle Ihren verbleibenden "
|
||||
"Arbeitsspeicher zuweisen. Für Datenbankserver, die ausschließlich InnoDB "
|
||||
"Tabellen als Speicher verwenden und keine anderen Dienste (z. B. ein "
|
||||
"Webserver) ausgeführt, können Sie diesen auf bis zu 80% Ihres verfügbaren "
|
||||
"Speichers festlegen. Wenn dieses nicht der Fall ist, müssen Sie sorgfältig "
|
||||
"den Speicherverbrauch von anderen Diensten und nicht-InnoDB-Tabellen "
|
||||
"bewerten und stellen Sie diese Variable entsprechend ein. Wenn der Wert zu "
|
||||
"hoch ist, startet Ihr System Speicher auf die Festplatte auszulagern, was "
|
||||
"die Leistung erheblich senkt. Siehe auch <a href=\"https://www.percona.com/"
|
||||
"blog/2007/11/03/choosing-innodb_buffer_pool_size/\">diesen Artikel</a>"
|
||||
"InnoDB-Tabellen. Weisen Sie diesem Puffer den gesamten verbleibenden "
|
||||
"Arbeitsspeicher zu. Für Datenbankserver, die ausschließlich InnoDB Tabellen "
|
||||
"als Speicher verwenden und keine anderen Dienste (z. B. ein Webserver) "
|
||||
"ausgeführt, können Sie diesen auf bis zu 80% Ihres verfügbaren Speichers "
|
||||
"festlegen. Wenn dies nicht der Fall ist, müssen Sie sorgfältig den "
|
||||
"Speicherverbrauch von anderen Diensten und nicht-InnoDB-Tabellen bewerten "
|
||||
"und diese Variable entsprechend einstellen. Wenn der Wert zu hoch ist, "
|
||||
"beginnt Ihr System Speicher auf die Festplatte auszulagern, was die Leistung "
|
||||
"erheblich senkt. Siehe auch <a href="
|
||||
"\"https://www.percona.com/blog/2007/11/03/choosing-innodb_buffer_pool_size/\""
|
||||
">diesen Artikel</a>"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:697
|
||||
#, php-format
|
||||
@ -1321,14 +1322,14 @@ msgid ""
|
||||
"(often invalidated due to table updates) increasing {query_cache_limit} "
|
||||
"might reduce efficiency."
|
||||
msgstr ""
|
||||
"Verändern von {query_cache_limit} (in der Regel durch erhöhen) kann die "
|
||||
"Verändern von {query_cache_limit} (in der Regel durch Erhöhen) kann die "
|
||||
"Effizienz steigern. Diese Variable bestimmt die maximale Größe eines "
|
||||
"Abfrageergebnis, das in den Abfrage-Cache eingefügt werden soll. Wenn es "
|
||||
"viele Abfrageergebnisse über 1 MiB gibt die sich auch zwischenspeichern "
|
||||
"lassen (viele Lesevorgänge, wenig schreibt) dann kann ein erhöhen von "
|
||||
"{query_cache_limit} die Effizienz erhöhen. Während bei viele "
|
||||
"Abfrageergebnisse über 1 MiB die nicht sehr gut zwischenspeicherbar sind "
|
||||
"(oft aufgrund von Aktualisierungen der Tabelle ungültig) ein Erhöhen von "
|
||||
"lassen (viele Lesevorgänge, wenig schreiben), dann kann ein Erhöhen von "
|
||||
"{query_cache_limit} die Effizienz steigern. Während bei vielen "
|
||||
"Abfrageergebnissen über 1 MiB, die nicht gut zwischenspeicherbar sind (oft "
|
||||
"aufgrund von Aktualisierungen der Tabelle ungültig geworden) ein Erhöhen von "
|
||||
"{query_cache_limit} die Effizienz reduzieren kann."
|
||||
|
||||
#: libraries/advisory_rules_mysql_before80003.php:120
|
||||
@ -1773,7 +1774,7 @@ msgstr "Sie sollten auf %s %s oder neuer aktualisieren."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fehler: Token stimmen nicht überein"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1781,7 +1782,7 @@ msgstr ""
|
||||
"Session-Cookie konnte nicht gesetzt werden. Möglicherweise verwenden Sie "
|
||||
"HTTP anstelle von HTTPS, um auf phpMyAdmin zuzugreifen."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1791,7 +1792,7 @@ msgstr ""
|
||||
"aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen "
|
||||
"und Datenverlust kommen kann!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1799,11 +1800,11 @@ msgstr ""
|
||||
"Die Funktionen ini_get und/oder ini_set sind in der php.ini deaktiviert. "
|
||||
"phpMyAdmin benötigt diese Funktionen!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS Überschreibversuch"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "Mögliche Ausnutzung"
|
||||
|
||||
@ -4355,7 +4356,7 @@ msgstr "Überspringe gesperrte Tabellen"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4660,7 +4661,7 @@ msgstr "Benutzerdefiniert"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5071,7 +5072,7 @@ msgstr "SQL-Abfragekonsole"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Es wurden keine Datenbanken ausgewählt."
|
||||
@ -5102,7 +5103,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5214,7 +5215,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Die Tabelle %s wurde geleert."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5274,11 +5275,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Keine Änderung"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Favoriten-Liste ist voll!"
|
||||
|
||||
@ -6136,7 +6137,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6752,7 +6753,7 @@ msgid "Edit query"
|
||||
msgstr "Abfrage bearbeiten"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7023,7 +7024,7 @@ msgstr "Datenpunkt-Inhalt"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
@ -7034,7 +7035,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "In Zwischenablage kopieren"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7471,7 +7472,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Bitte schauen Sie am unteren Ende dieses Fensters."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Alles ignorieren"
|
||||
|
||||
@ -7739,7 +7740,7 @@ msgstr "Überhang"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Die Datenbank %1$s wurde erzeugt."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8634,7 +8635,7 @@ msgstr "Die Tabelle %s existiert bereits!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
|
||||
@ -9306,44 +9307,44 @@ msgstr ""
|
||||
"zusätzliche Fehlerinformationen verfügbar, die jedoch durch die %s-"
|
||||
"Konfigurationsanweisung ausgeblendet werden."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Anfang"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Vorherige"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Nächste"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Ende"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Gekürzte Texte"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Vollständige Texte"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9356,8 +9357,8 @@ msgstr "Vollständige Texte"
|
||||
msgid "Descending"
|
||||
msgstr "Absteigend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9370,45 +9371,45 @@ msgstr "Absteigend"
|
||||
msgid "Ascending"
|
||||
msgstr "Aufsteigend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Der Datensatz wurde gelöscht."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Beenden"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
"Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch "
|
||||
"[doc@faq3-11]FAQ 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Zeige Datensätze %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d insgesamt, %2$d in Abfragen"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d insgesamt"
|
||||
|
||||
# (s is the abbreviation of "Sekunde", sec is it not (according to
|
||||
# International System of Units), so we wrote the complete one.)
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Die Abfrage dauerte %01.4f Sekunden."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Der Verweis wurde nicht gefunden!"
|
||||
|
||||
@ -9769,11 +9770,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Bericht"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Bericht nächstes Mal automatisch senden"
|
||||
|
||||
@ -9956,29 +9957,29 @@ msgstr "%d Fehler wurden während der Analyse gefunden."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[ROLLBACK aufgetreten.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
|
||||
"können Sie:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
"Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10008,32 +10009,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Optionen"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Gehe zur Datenbank: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Einstellung für %s bearbeiten"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Gehe zur Tabelle: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Struktur von %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Gehe zur Ansicht: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10120,7 +10121,7 @@ msgstr "Ansicht als SQL-Abfrage"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID der eingefügten Zeile: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignoriere nicht unterstützten Sprach-Code."
|
||||
|
||||
@ -12953,7 +12954,7 @@ msgstr "Dieser MySQL-Server unterstützt %s nicht."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Der Name des Primärschlüssels muss \"PRIMARY\" lauten!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
|
||||
@ -17907,7 +17908,7 @@ msgstr "Empfehlung:"
|
||||
|
||||
#: templates/server/status/advisor/index.twig:82
|
||||
msgid "Justification:"
|
||||
msgstr "Ausrichtung:"
|
||||
msgstr "Begründung:"
|
||||
|
||||
#: templates/server/status/advisor/index.twig:85
|
||||
msgid "Used variable / formula:"
|
||||
|
||||
110
po/en_GB.po
110
po/en_GB.po
@ -3,9 +3,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-10-13 04:15+0000\n"
|
||||
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
||||
"Language-Team: English (United Kingdom) <https://hosted.weblate.org/projects/"
|
||||
@ -1713,7 +1713,7 @@ msgstr "You should upgrade to %s %s or later."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: Token mismatch"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1721,7 +1721,7 @@ msgstr ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1731,7 +1731,7 @@ msgstr ""
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1739,11 +1739,11 @@ msgstr ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS overwrite attempt"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "possible exploit"
|
||||
|
||||
@ -4232,7 +4232,7 @@ msgstr "Skip locked tables"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4535,7 +4535,7 @@ msgstr "Custom"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4928,7 +4928,7 @@ msgstr "SQL Query Console"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "No databases selected."
|
||||
@ -4958,7 +4958,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5063,7 +5063,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Table %s has been emptied."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5123,11 +5123,11 @@ msgstr "Yes"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "No change"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Favourite List is full!"
|
||||
|
||||
@ -5962,7 +5962,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Please add at least one variable to the series!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6565,7 +6565,7 @@ msgid "Edit query"
|
||||
msgstr "Edit query"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6825,7 +6825,7 @@ msgstr "Data point content"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignore"
|
||||
@ -6836,7 +6836,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Copy to clipboard"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7257,7 +7257,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Please look at the bottom of this window."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignore All"
|
||||
|
||||
@ -7519,7 +7519,7 @@ msgstr "Overhead"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s has been created."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8372,7 +8372,7 @@ msgstr "Table %s already exists!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Your SQL query has been executed successfully."
|
||||
@ -9023,44 +9023,44 @@ msgstr ""
|
||||
"Error 1045: Access denied for user. Additional error information may be "
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Begin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Previous"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Next"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "End"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Partial texts"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Full texts"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9073,8 +9073,8 @@ msgstr "Full texts"
|
||||
msgid "Descending"
|
||||
msgstr "Descending"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9087,41 +9087,41 @@ msgstr "Descending"
|
||||
msgid "Ascending"
|
||||
msgstr "Ascending"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "The row has been deleted."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Kill"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Showing rows %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d total, %2$d in query"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d total"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Query took %01.4f seconds."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Link not found!"
|
||||
|
||||
@ -9481,11 +9481,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Too many error messages, some are not displayed."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Report"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Automatically send report next time"
|
||||
|
||||
@ -9658,27 +9658,27 @@ msgstr "%d errors were found during analysis."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[ROLLBACK occurred.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "View a structure's contents by clicking on its name."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Edit structure by following the \"Structure\" link."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9708,32 +9708,32 @@ msgstr "Edit structure by following the \"Structure\" link."
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Go to database: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Edit settings for %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Go to table: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Structure of %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Go to view: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9820,7 +9820,7 @@ msgstr "Showing SQL query"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Inserted row id: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignoring unsupported language code."
|
||||
|
||||
@ -12595,7 +12595,7 @@ msgstr "This MySQL server does not support the %s storage engine."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "The name of the primary key must be \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problems with indexes of table `%s`"
|
||||
|
||||
110
po/enm.po
110
po/enm.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-20 13:11+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: English (Middle) <https://hosted.weblate.org/projects/"
|
||||
@ -1517,30 +1517,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3828,7 +3828,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4131,7 +4131,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4479,7 +4479,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4506,7 +4506,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4610,7 +4610,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4668,11 +4668,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5437,7 +5437,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6020,7 +6020,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6272,7 +6272,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6283,7 +6283,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6676,7 +6676,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6927,7 +6927,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7658,7 +7658,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8289,44 +8289,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8339,8 +8339,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8353,41 +8353,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8701,11 +8701,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8872,25 +8872,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8920,32 +8920,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9028,7 +9028,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11617,7 +11617,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
172
po/eo.po
172
po/eo.po
@ -4,11 +4,11 @@
|
||||
# Automatically generated, 2014.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2022-07-30 08:21+0000\n"
|
||||
"Last-Translator: zeecho <lachose44@gmail.com>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-07-28 21:10+0000\n"
|
||||
"Last-Translator: Robin van der Vliet <info@robinvandervliet.com>\n"
|
||||
"Language-Team: Esperanto <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
"eo/>\n"
|
||||
"Language: eo\n"
|
||||
@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14-dev\n"
|
||||
"X-Generator: Weblate 5.13-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
@ -1608,30 +1608,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -2866,7 +2866,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Config/Descriptions.php:659
|
||||
msgid "Compression"
|
||||
msgstr ""
|
||||
msgstr "Densigo"
|
||||
|
||||
#: libraries/classes/Config/Descriptions.php:660
|
||||
#: libraries/classes/Config/Descriptions.php:667
|
||||
@ -3928,7 +3928,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4225,7 +4225,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:25
|
||||
msgid "Quick"
|
||||
msgstr ""
|
||||
msgstr "Rapida"
|
||||
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:29
|
||||
msgid "Custom"
|
||||
@ -4235,7 +4235,7 @@ msgstr "Propra"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4585,7 +4585,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4614,7 +4614,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4720,7 +4720,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4778,11 +4778,11 @@ msgstr "Jes"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -4934,12 +4934,12 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Import/ImportController.php:123
|
||||
msgid "Succeeded"
|
||||
msgstr ""
|
||||
msgstr "Sukcesa"
|
||||
|
||||
#: libraries/classes/Controllers/Import/ImportController.php:127
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:576
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
msgstr "Malsukcesa"
|
||||
|
||||
#: libraries/classes/Controllers/Import/ImportController.php:217
|
||||
#, php-format
|
||||
@ -5158,7 +5158,7 @@ msgstr ""
|
||||
#: templates/preferences/manage/main.twig:122
|
||||
#: templates/table/insert/actions_panel.twig:36
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
msgstr "Restarigi"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:99
|
||||
msgid "Reset all"
|
||||
@ -5533,7 +5533,7 @@ msgstr "Demandoj"
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:203
|
||||
#: templates/server/status/status/index.twig:14
|
||||
msgid "Traffic"
|
||||
msgstr ""
|
||||
msgstr "Trafiko"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:204
|
||||
#: libraries/classes/Menu.php:520 libraries/classes/Util.php:1944
|
||||
@ -5551,7 +5551,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -5688,7 +5688,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:248
|
||||
msgid "Unit"
|
||||
msgstr ""
|
||||
msgstr "Unuo"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:250
|
||||
msgid "From slow log"
|
||||
@ -5746,7 +5746,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:272
|
||||
msgid "Analyzing…"
|
||||
msgstr ""
|
||||
msgstr "Analizado…"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:273
|
||||
msgid "Explain output"
|
||||
@ -5789,7 +5789,7 @@ msgstr "Tabelo"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:279
|
||||
msgid "Chart"
|
||||
msgstr ""
|
||||
msgstr "Diagramo"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:281
|
||||
#: templates/export.twig:210
|
||||
@ -5943,7 +5943,7 @@ msgstr "Apliki"
|
||||
#: templates/server/status/monitor/index.twig:95
|
||||
#: templates/table/structure/display_structure.twig:359
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
msgstr "Ŝargado…"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:332
|
||||
msgid "Request aborted!!"
|
||||
@ -6138,7 +6138,7 @@ msgid "Edit query"
|
||||
msgstr "Ĝisdatigi peton"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6390,7 +6390,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignori"
|
||||
@ -6401,7 +6401,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6439,7 +6439,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:483
|
||||
msgid "Polygon"
|
||||
msgstr ""
|
||||
msgstr "Poligono"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:484
|
||||
#: templates/display/results/table.twig:177
|
||||
@ -6607,7 +6607,7 @@ msgstr "Kolumnoj"
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:544
|
||||
#: templates/modals/build_query.twig:17 templates/sql/query.twig:178
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
msgstr "Sendi"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:547
|
||||
msgid "Press escape to cancel editing.<br>- Shift+Enter for a newline."
|
||||
@ -6677,7 +6677,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:577
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
msgstr "Sukcesa"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:578
|
||||
msgid "Import status"
|
||||
@ -6723,7 +6723,7 @@ msgstr "Ŝanĝi pasvorton"
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:597
|
||||
#: templates/table/structure/display_structure.twig:130
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
msgstr "Pli"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:600
|
||||
msgid "Show panel"
|
||||
@ -6796,7 +6796,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -7051,7 +7051,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7782,7 +7782,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8413,44 +8413,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
msgstr "Fino"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8463,8 +8463,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8477,41 +8477,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8825,11 +8825,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Raporti"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8998,25 +8998,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9046,32 +9046,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Opcioj"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9154,7 +9154,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -9200,7 +9200,7 @@ msgstr "Serĉi"
|
||||
#: templates/database/structure/structure_table_row.twig:59
|
||||
#: templates/sql/query.twig:75
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
msgstr "Enmeti"
|
||||
|
||||
#: libraries/classes/Menu.php:296 libraries/classes/Menu.php:406
|
||||
#: libraries/classes/Server/Privileges.php:2843 libraries/classes/Util.php:1960
|
||||
@ -9250,7 +9250,7 @@ msgstr "Peto"
|
||||
#: libraries/classes/Menu.php:412 libraries/classes/Util.php:1961
|
||||
#: templates/database/routines/index.twig:3
|
||||
msgid "Routines"
|
||||
msgstr ""
|
||||
msgstr "Rutinoj"
|
||||
|
||||
#: libraries/classes/Menu.php:418
|
||||
#: libraries/classes/Navigation/Nodes/NodeEventContainer.php:25
|
||||
@ -11763,7 +11763,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
@ -12598,7 +12598,7 @@ msgstr ""
|
||||
#: templates/table/structure/display_structure.twig:477
|
||||
#: templates/table/tracking/structure_snapshot_indexes.twig:7
|
||||
msgid "Unique"
|
||||
msgstr ""
|
||||
msgstr "Unika"
|
||||
|
||||
#: templates/columns_definitions/column_attributes.twig:124
|
||||
#: templates/table/structure/display_structure.twig:219
|
||||
@ -12936,7 +12936,7 @@ msgstr ""
|
||||
|
||||
#: templates/console/display.twig:31 templates/console/display.twig:175
|
||||
msgid "Explain"
|
||||
msgstr ""
|
||||
msgstr "Klarigi"
|
||||
|
||||
#: templates/console/display.twig:40 templates/console/display.twig:184
|
||||
msgid "Bookmark"
|
||||
@ -12964,7 +12964,7 @@ msgstr ""
|
||||
|
||||
#: templates/console/display.twig:64
|
||||
msgid "Order:"
|
||||
msgstr ""
|
||||
msgstr "Ordo:"
|
||||
|
||||
#: templates/console/display.twig:64 templates/console/display.twig:84
|
||||
#: templates/table/find_replace/replace_preview.twig:16
|
||||
@ -13001,7 +13001,7 @@ msgstr "Aldoni legosignon"
|
||||
|
||||
#: templates/console/display.twig:121
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
msgstr "Etikedo"
|
||||
|
||||
#: templates/console/display.twig:124
|
||||
msgid "Target database"
|
||||
@ -13175,7 +13175,7 @@ msgstr ""
|
||||
#: templates/server/privileges/privileges_table.twig:109
|
||||
#: templates/server/replication/database_multibox.twig:7
|
||||
msgid "Select all"
|
||||
msgstr ""
|
||||
msgstr "Elekti ĉion"
|
||||
|
||||
#: templates/database/designer/database_tables.twig:37
|
||||
msgid "Show/hide columns"
|
||||
@ -13815,7 +13815,7 @@ msgstr ""
|
||||
|
||||
#: templates/database/qbe/selection_form.twig:22
|
||||
msgid "Show:"
|
||||
msgstr ""
|
||||
msgstr "Montri:"
|
||||
|
||||
#: templates/database/qbe/selection_form.twig:27
|
||||
msgid "Sort:"
|
||||
@ -14038,7 +14038,7 @@ msgstr ""
|
||||
#: templates/database/structure/check_all_tables.twig:15
|
||||
#: templates/database/structure/structure_table_row.twig:74
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
msgstr "Malplenigi"
|
||||
|
||||
#: templates/database/structure/check_all_tables.twig:18
|
||||
#: templates/table/operations/index.twig:334
|
||||
@ -14425,7 +14425,7 @@ msgstr "Importi / eksporti"
|
||||
|
||||
#: templates/export.twig:137
|
||||
msgid "Rows:"
|
||||
msgstr ""
|
||||
msgstr "Vicoj:"
|
||||
|
||||
#: templates/export.twig:141
|
||||
msgid "Dump all rows"
|
||||
@ -14441,7 +14441,7 @@ msgstr ""
|
||||
|
||||
#: templates/export.twig:170 templates/export.twig:332
|
||||
msgid "Output:"
|
||||
msgstr ""
|
||||
msgstr "Eligo:"
|
||||
|
||||
#: templates/export.twig:175 templates/export.twig:370
|
||||
#, php-format
|
||||
@ -14526,7 +14526,7 @@ msgstr ""
|
||||
|
||||
#: templates/export.twig:429
|
||||
msgid "Compression:"
|
||||
msgstr ""
|
||||
msgstr "Densigo:"
|
||||
|
||||
#: templates/export.twig:437
|
||||
msgid "zipped"
|
||||
@ -14656,7 +14656,7 @@ msgstr "Aldoni geometrion"
|
||||
|
||||
#: templates/gis_data_editor_form.twig:239
|
||||
msgid "Output"
|
||||
msgstr ""
|
||||
msgstr "Eligo"
|
||||
|
||||
#: templates/gis_data_editor_form.twig:241
|
||||
msgid ""
|
||||
|
||||
152
po/es.po
152
po/es.po
@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2023-02-08 11:35+0000\n"
|
||||
"Last-Translator: Juan <benitesjn@gmail.com>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-02-24 01:46+0000\n"
|
||||
"Last-Translator: Salvador Peña <salvadorp74@hotmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
"es/>\n"
|
||||
"Language: es\n"
|
||||
@ -13,7 +13,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
"X-Generator: Weblate 5.10.1-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
@ -1773,7 +1773,7 @@ msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: no coincide un «token»"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1781,7 +1781,7 @@ msgstr ""
|
||||
"No se pudo establecer la cookie de sesión. Tal vez está usando HTTP en lugar "
|
||||
"de HTTPS para acceder a phpMyAdmin."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1791,7 +1791,7 @@ msgstr ""
|
||||
"opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos "
|
||||
"datos!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1799,11 +1799,11 @@ msgstr ""
|
||||
"Las funciones ini_get y/o ini_set están deshabilitadas en php.ini. "
|
||||
"¡phpMyAdmin requiere estas funciones!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "intento de sobre-escritura de la variable GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "posible aprovechamiento"
|
||||
|
||||
@ -4368,7 +4368,7 @@ msgstr "Saltarse las tablas bloqueadas"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4678,7 +4678,7 @@ msgstr "Personalizado"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5086,7 +5086,7 @@ msgstr "Consola de consultas SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "No se seleccionaron bases de datos."
|
||||
@ -5112,11 +5112,11 @@ msgstr "Mostrando filas %1$s - %2$s."
|
||||
msgid ""
|
||||
"There already exists a page named \"%s\" please rename it to something else."
|
||||
msgstr ""
|
||||
"Ya existe una página llamada \"%s\", por favor, cámbiale el nombre por otro."
|
||||
"Ya existe una página llamada \"%s\", por favor cambie el nombre por otro."
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5225,7 +5225,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Se ha vaciado la tabla %s."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5285,11 +5285,11 @@ msgstr "Sí"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Sin cambios"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "¡La lista de favoritos está completa!"
|
||||
|
||||
@ -6137,7 +6137,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "¡Introduzca una longitud válida!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6746,13 +6746,11 @@ msgid "Show query box"
|
||||
msgstr "Mostrar ventana de consultas SQL"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:388
|
||||
#, fuzzy
|
||||
#| msgid "Submit query"
|
||||
msgid "Edit query"
|
||||
msgstr "Ejecutar la consulta"
|
||||
msgstr "Editar la consulta"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7019,7 +7017,7 @@ msgstr "Contenido del punto de datos"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
@ -7030,7 +7028,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Copiar al portapapeles"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7417,10 +7415,8 @@ msgid "up to date"
|
||||
msgstr "actualizada"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:613
|
||||
#, fuzzy
|
||||
#| msgid "There was an error importing the ESRI shape file: \"%s\"."
|
||||
msgid "There was an error in loading the Git information."
|
||||
msgstr "Hubo un error importando el archivo de forma ESRI: \"%s\"."
|
||||
msgstr "Hubo un error al cargar la información de Git."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:616
|
||||
msgid ""
|
||||
@ -7465,7 +7461,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Revise el pie de esta ventana."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignorar todos"
|
||||
|
||||
@ -7629,9 +7625,9 @@ msgid ""
|
||||
"working in your browser and your phpMyAdmin configuration storage is not "
|
||||
"configured for this."
|
||||
msgstr ""
|
||||
"No puede abrir, guardar o borrar tu diseño de página, ya que IndexedDB no "
|
||||
"funciona en tu navegador y tu almacenamiento de configuración de phpMyAdmin "
|
||||
"no está configurado para ello."
|
||||
"Usted no puede abrir, guardar o borrar su diseño de página, ya que IndexedDB "
|
||||
"no esta funcionando en su navegador y su configuración de almacenamiento de "
|
||||
"phpMyAdmin no esta configurada para esto."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:708
|
||||
#, php-format
|
||||
@ -7730,7 +7726,7 @@ msgstr "Residuo a depurar"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "La base de datos %1$s ha sido creada."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8620,7 +8616,7 @@ msgstr "La tabla %s ya existe!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Su consulta se ejecutó con éxito."
|
||||
@ -9276,48 +9272,48 @@ msgid ""
|
||||
"Error 1045: Access denied for user. Additional error information may be "
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
"Error 1045: Acceso denegado para el usuario. Puede haber información "
|
||||
"adicional del error disponible, pero está oculta debido a la directiva de "
|
||||
"configuración %s."
|
||||
"Error 1045: Acceso denegado al usuario. Información adicional del error "
|
||||
"puede estar disponible, pero es ocultada por la directiva de configuración "
|
||||
"%s."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Comenzar"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Siguiente"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Fin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Textos parciales"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Textos completos"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9330,8 +9326,8 @@ msgstr "Textos completos"
|
||||
msgid "Descending"
|
||||
msgstr "Descendente"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9344,41 +9340,41 @@ msgstr "Descendente"
|
||||
msgid "Ascending"
|
||||
msgstr "Ascendente"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "La fila se ha borrado."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Matar el proceso"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Mostrando filas %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d en total, %2$d en la consulta"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "total de %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "La consulta tardó %01.4f segundos."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "¡No se encontró el enlace!"
|
||||
|
||||
@ -9750,11 +9746,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Demasiados mensajes de error, algunos no son mostrados."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Reportar"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Enviar reporte automáticamente la próxima vez"
|
||||
|
||||
@ -9934,27 +9930,27 @@ msgstr "Se encontraron %d errores durante el análisis."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[Ocurrió un ROLLBACK.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Puede ver los contenidos de una estructura pulsando en su nombre."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
|
||||
"correspondiente."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Edite la estructura siguiendo el enlace \"Estructura\"."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9984,32 +9980,32 @@ msgstr "Edite la estructura siguiendo el enlace \"Estructura\"."
|
||||
msgid "Options"
|
||||
msgstr "Opciones"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Ir a la base de datos: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Editar configuración de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Ir a la tabla: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Estructura de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Ir a la vista: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10097,7 +10093,7 @@ msgstr "Mostrando la consulta SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "La Id de la fila insertada es: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignorando código de idioma no compatible."
|
||||
|
||||
@ -10874,10 +10870,8 @@ msgid "The table name is empty!"
|
||||
msgstr "¡El nombre de la tabla está vacío!"
|
||||
|
||||
#: libraries/classes/Partitioning/Maintenance.php:141
|
||||
#, fuzzy
|
||||
#| msgid "This is a read-only variable and can not be edited"
|
||||
msgid "This table is a view, it can not be truncated."
|
||||
msgstr "Esta es una variable de sólo lectura y no puede ser editada"
|
||||
msgstr "Esta tabla es una vista, no puede ser truncada."
|
||||
|
||||
#: libraries/classes/Pdf.php:142
|
||||
msgid "Error while creating PDF:"
|
||||
@ -10936,16 +10930,12 @@ msgid "Entered captcha is wrong, try again!"
|
||||
msgstr "El captcha introducido es incorrecto, ¡intente nuevamente!"
|
||||
|
||||
#: libraries/classes/Plugins/Auth/AuthenticationCookie.php:297
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Your password is too long. To prevent denial-of-service attacks, "
|
||||
#| "phpMyAdmin restricts passwords to less than 1000 characters."
|
||||
msgid ""
|
||||
"Your password is too long. To prevent denial-of-service attacks, phpMyAdmin "
|
||||
"restricts passwords to less than 2000 characters."
|
||||
msgstr ""
|
||||
"Tu contraseña es muy larga. Para evitar ataques DoS, phpMyAdmin limita las "
|
||||
"contraseñas a 1.000 caracteres."
|
||||
"contraseñas hasta menos de 2.000 caracteres."
|
||||
|
||||
#: libraries/classes/Plugins/Auth/AuthenticationCookie.php:316
|
||||
msgid "You are not allowed to log in to this MySQL server!"
|
||||
@ -12931,7 +12921,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "¡El nombre de la clave primaria tiene que ser «PRIMARY»!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemas con los índices de la tabla `%s`"
|
||||
@ -13487,8 +13477,8 @@ msgstr "No se pudo guardar la configuración"
|
||||
#: libraries/classes/UserPreferences.php:192
|
||||
msgid "The phpMyAdmin configuration storage database could not be accessed."
|
||||
msgstr ""
|
||||
"No se pudo acceder a la base de datos de almacenamiento de configuración de "
|
||||
"phpMyAdmin."
|
||||
"La base de datos de configuración de almacenamiento de phpMyAdmin no es "
|
||||
"accesible."
|
||||
|
||||
#: libraries/classes/Util.php:132
|
||||
#, php-format
|
||||
|
||||
110
po/et.po
110
po/et.po
@ -3,9 +3,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2023-11-21 17:04+0000\n"
|
||||
"Last-Translator: Kristjan Räts <kristjanrats@gmail.com>\n"
|
||||
"Language-Team: Estonian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1733,7 +1733,7 @@ msgstr "Peaksid uuendama %s %s või uuemale versioonile."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Viga: sobimatu sümbol"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1741,7 +1741,7 @@ msgstr ""
|
||||
"Sessiooni küpsise seadmine nurjus. Võib-olla kasutad sa phpMyAdmin'i HTTPS "
|
||||
"protokolli asemel HTTP protokolliga."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1750,7 +1750,7 @@ msgstr ""
|
||||
"Oled PHP seadistuses lubanud mbstring.func_overload. See ei ühildu "
|
||||
"phpMyAdminiga ja võib andmeid rikkuda!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1758,11 +1758,11 @@ msgstr ""
|
||||
"Funktsioon(id) ini_get ja/või ini_set on failis php.ini keelatud. phpMyAdmin "
|
||||
"vajab neid funktsioone!"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS ülekirjutamise katse"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "võimalik turvaauk"
|
||||
|
||||
@ -4240,7 +4240,7 @@ msgstr "Jäta lukustatud tabelid vahele"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4545,7 +4545,7 @@ msgstr "Kohandatud"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4941,7 +4941,7 @@ msgstr "SQL päringu konsool"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Ühtegi andmebaasi ei ole valitud."
|
||||
@ -4970,7 +4970,7 @@ msgstr "Lehekülg nimega \"%s\" on juba olemas. Palun anna talle uus nimi."
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5078,7 +5078,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tabel %s on tühjendatud."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5137,11 +5137,11 @@ msgstr "Jah"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Ei muudetud"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "Lemmikute nimekiri on täis!"
|
||||
|
||||
@ -5983,7 +5983,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Palun lisa seeriasse vähemalt üks muutuja!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6588,7 +6588,7 @@ msgid "Edit query"
|
||||
msgstr "Saada päring"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6853,7 +6853,7 @@ msgstr "Andmepunkti sisu"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoreeri"
|
||||
@ -6864,7 +6864,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Kopeeri lõikelauale"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7286,7 +7286,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Palun vaata selle akna alumisse serva."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignoreeri kõiki"
|
||||
|
||||
@ -7549,7 +7549,7 @@ msgstr "Ballast"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Andmebaas %1$s on loodud."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8401,7 +8401,7 @@ msgstr "%s tabel on juba olemas!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Sinu SQL päring teostati edukalt."
|
||||
@ -9051,44 +9051,44 @@ msgstr ""
|
||||
"Viga 1045: kasutajal puudub juurdepääs. Täiendav veateave võib olla "
|
||||
"saadaval, kuid konfiguratsiooni direktiivi %s tõttu on see peidetud."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Algus"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Eelmine"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Järgmine"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Lõpp"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Osalised tekstid"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Täistekstid"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9101,8 +9101,8 @@ msgstr "Täistekstid"
|
||||
msgid "Descending"
|
||||
msgstr "Kahanev"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9115,41 +9115,41 @@ msgstr "Kahanev"
|
||||
msgid "Ascending"
|
||||
msgstr "Kasvav"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Rida on kustutatud."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Sulge"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Kuvatakse read %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "Kokku %1$d, päringus %2$d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "kokku: %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "päring kestis %01.4f sekundit."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Linki ei leitud!"
|
||||
|
||||
@ -9505,11 +9505,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Liiga palju veasõnumeid, mõningaid pole näha."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Raport"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Saada järgmisel korral raport automaatselt"
|
||||
|
||||
@ -9682,25 +9682,25 @@ msgstr "Analüüsi käigus avastati %d viga."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[Toimus tagasipööramine.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "Järgnevaid struktuure on kas loodud või muudetud. Siin saad:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Vaata struktuuri sisu, klõpsates selle nimel."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr "Selle mistahes sätte muutmiseks klõpsa vastaval viidal \"Valikud\"."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9730,32 +9730,32 @@ msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"."
|
||||
msgid "Options"
|
||||
msgstr "Valikud"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Mine andmebaasi: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Muuda %s sätteid"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Mine tabelisse: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "%s struktuur"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Mine vaatesse: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9842,7 +9842,7 @@ msgstr "Näitan SQL päringut"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Lisatud rea id: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Tundmatu keele kood jäeti vahele."
|
||||
|
||||
@ -12618,7 +12618,7 @@ msgstr "See MySQL server ei toeta %s varundusmootorit."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Primaarvõtme nimi peab olema \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Probleemid `%s` tabeli indeksitega"
|
||||
|
||||
110
po/eu.po
110
po/eu.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Basque <https://hosted.weblate.org/projects/phpmyadmin/5-2/eu/"
|
||||
@ -1670,30 +1670,30 @@ msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4197,7 +4197,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4523,7 +4523,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4893,7 +4893,7 @@ msgstr "SQL kontsulta"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
@ -4921,7 +4921,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5030,7 +5030,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "%s taula hustu egin da."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5090,11 +5090,11 @@ msgstr "Bai"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Aldaketarik ez"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5957,7 +5957,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6625,7 +6625,7 @@ msgid "Edit query"
|
||||
msgstr "Kontsulta bidali"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6910,7 +6910,7 @@ msgstr "Edukinen taula"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ezikusi"
|
||||
@ -6921,7 +6921,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7361,7 +7361,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7637,7 +7637,7 @@ msgstr "Arazteko hondakina"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "%1$s datu-basea sortua izan da."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%s databases have been dropped successfully."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8390,7 +8390,7 @@ msgstr "%s erabiltzailea badago lehendik ere!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9098,7 +9098,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9106,7 +9106,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Hasi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9115,7 +9115,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Aurrekoa"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9124,7 +9124,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Hurrengoa"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9132,22 +9132,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Amaiera"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Testu partzialak"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Testu osoak"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9160,8 +9160,8 @@ msgstr "Testu osoak"
|
||||
msgid "Descending"
|
||||
msgstr "Beherantz"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9174,46 +9174,46 @@ msgstr "Beherantz"
|
||||
msgid "Ascending"
|
||||
msgstr "Goranzko"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Errenkada ezabatua izan da"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Hil"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Errenkadak erakusten"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "guztira"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9532,12 +9532,12 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
msgid "Report"
|
||||
msgstr "Esportatu"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Zerbitzariaren bertsioa"
|
||||
@ -9718,25 +9718,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9767,33 +9767,33 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Eragiketak"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Datu-baserik ez"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Datu-baserik ez"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Egitura soilik"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9878,7 +9878,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12788,7 +12788,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Lehen mailako gakoaren izenak behar du izan \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/fa.po
110
po/fa.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-04-14 08:20+0000\n"
|
||||
"Last-Translator: BahmanMD <bahman.mehrdad@gmail.com>\n"
|
||||
"Language-Team: Persian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1654,13 +1654,13 @@ msgstr "شما باید به %s %s یا جدیدتر به روز شوید."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1670,17 +1670,17 @@ msgstr ""
|
||||
"این خاصیت با ویرایشگر اصلی پی اچ پی سازگاری ندارد و ممکن است باعث از بین "
|
||||
"رفتن برخی از اطلاعات گردد!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "احتمال وجود exploit"
|
||||
|
||||
@ -4158,7 +4158,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4485,7 +4485,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4874,7 +4874,7 @@ msgstr "جعبه پرس و جوي SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
@ -4905,7 +4905,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5017,7 +5017,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "جدول %s خالی شد."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5077,11 +5077,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5963,7 +5963,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6612,7 +6612,7 @@ msgid "Edit query"
|
||||
msgstr "ثبت کوئری"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6894,7 +6894,7 @@ msgstr "محتوای داده ها"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "در نظر نگرفتن"
|
||||
@ -6905,7 +6905,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7371,7 +7371,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7655,7 +7655,7 @@ msgstr "بار بیش از حد"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "پایگاه داده %1$s ایجاد شد."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8402,7 +8402,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9118,47 +9118,47 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "شروع"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "قبلی"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "بعدی"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "انتها"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
msgid "Partial texts"
|
||||
msgstr "متغییر"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "كاملا متن"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9171,8 +9171,8 @@ msgstr "كاملا متن"
|
||||
msgid "Descending"
|
||||
msgstr "نزولي"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9185,44 +9185,44 @@ msgstr "نزولي"
|
||||
msgid "Ascending"
|
||||
msgstr "صعودي"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "سطر حذف گرديد"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "از کار انداختن"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "جمع كل"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9541,13 +9541,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "خطای زیاد،برخی نمایش داده نشدند."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "صدور"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
#| msgid "Automatically create versions"
|
||||
msgid "Automatically send report next time"
|
||||
@ -9735,25 +9735,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9784,33 +9784,33 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "عمليات"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "No databases"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "No databases"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "فقط ساختار"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9895,7 +9895,7 @@ msgstr "نمایش پرس و جو SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "درج شناسه ردیف: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12703,7 +12703,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "نام كليد اصلي بايد PRIMARY باشد !"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/fil.po
110
po/fil.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2023-11-11 17:57+0000\n"
|
||||
"Last-Translator: John Adrian Salitico <saliticoadrian@gmail.com>\n"
|
||||
"Language-Team: Filipino <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1520,30 +1520,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3835,7 +3835,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4138,7 +4138,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4486,7 +4486,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Walang piniling mga database."
|
||||
@ -4515,7 +4515,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4627,7 +4627,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4685,11 +4685,11 @@ msgstr "Oo"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5532,7 +5532,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Mangyaring magdagdag ng kahit isang variable sa serye!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6152,7 +6152,7 @@ msgid "Edit query"
|
||||
msgstr "Simulate ang query"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6420,7 +6420,7 @@ msgstr "Nilalaman ng punto ng data"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Huwag pansinin"
|
||||
@ -6431,7 +6431,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6860,7 +6860,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Mangyaring tingnan ang ilalim ng window na ito."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Huwag pansinin ang Lahat"
|
||||
|
||||
@ -7128,7 +7128,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7859,7 +7859,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8496,44 +8496,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8546,8 +8546,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8560,41 +8560,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8908,11 +8908,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -9079,25 +9079,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9127,32 +9127,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9235,7 +9235,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11830,7 +11830,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
124
po/fr.po
124
po/fr.po
@ -3,9 +3,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2024-08-30 14:09+0000\n"
|
||||
"Last-Translator: kjo-sdds <kjo@domo-supply.com>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-08-24 20:20+0000\n"
|
||||
"Last-Translator: Marc Delisle <marcdelisle60@gmail.com>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/phpmyadmin/5-2/fr/"
|
||||
">\n"
|
||||
"Language: fr\n"
|
||||
@ -13,7 +13,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.7.1-dev\n"
|
||||
"X-Generator: Weblate 5.13\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
@ -1769,7 +1769,7 @@ msgstr "Il faudrait utiliser %s en version %s ou plus récente."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Erreur : disparité du jeton"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
@ -1777,7 +1777,7 @@ msgstr ""
|
||||
"Impossible de créer le cookie de session. Peut-être HTTP est-il utilisé au "
|
||||
"lieu de HTTPS pour accéder à phpMyAdmin."
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1786,7 +1786,7 @@ msgstr ""
|
||||
"mbstring.func_overload a été activé dans la configuration PHP. Cette option "
|
||||
"est incompatible avec phpMyAdmin et pourrait corrompre certaines données !"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
@ -1794,11 +1794,11 @@ msgstr ""
|
||||
"Les fonctions ini_get et/ou ini_set sont désactivées dans php.ini. "
|
||||
"phpMyAdmin requiert ces fonctions !"
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentative d'écrasement de GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "vulnérabilité possible"
|
||||
|
||||
@ -4358,7 +4358,7 @@ msgstr "Ignorer les tables verrouillées"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4663,7 +4663,7 @@ msgstr "Personnalisé"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5072,7 +5072,7 @@ msgstr "Console de requête SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Aucune base de données n'a été sélectionnée."
|
||||
@ -5103,7 +5103,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5215,7 +5215,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "La table %s a été vidée."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5275,11 +5275,11 @@ msgstr "Oui"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Aucune modification"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "La liste des tables favorites est pleine !"
|
||||
|
||||
@ -6133,7 +6133,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Merci ajouter au moins une variable aux séries !"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6748,7 +6748,7 @@ msgid "Edit query"
|
||||
msgstr "Soumettre la requête"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7018,7 +7018,7 @@ msgstr "Données relatives à ce point"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
@ -7029,7 +7029,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Copier dans le presse-papiers"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7461,7 +7461,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Merci de regarder au bas de cette fenêtre."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignorer tout"
|
||||
|
||||
@ -7727,7 +7727,7 @@ msgstr "Perte"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "La base de données %1$s a été créée."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8602,7 +8602,7 @@ msgstr "La table %s existe déjà !"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "La requête SQL a été exécutée avec succès."
|
||||
@ -9269,44 +9269,44 @@ msgstr ""
|
||||
"supplémentaires sur les erreurs peuvent être disponibles, mais elles sont "
|
||||
"masquées par la directive de configuration %s."
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Début"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Fin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Textes partiels"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Textes complets"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9319,8 +9319,8 @@ msgstr "Textes complets"
|
||||
msgid "Descending"
|
||||
msgstr "Décroissant"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9333,41 +9333,41 @@ msgstr "Décroissant"
|
||||
msgid "Ascending"
|
||||
msgstr "Croissant"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "La ligne a été supprimée."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Tuer"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Affichage des lignes %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d au total, %2$d dans la requête"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "total de %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "traitement en %01.4f seconde(s)."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Lien absent !"
|
||||
|
||||
@ -9736,11 +9736,11 @@ msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
"Les messages d'erreur sont trop nombreux, certains ne sont pas affichés."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Rapporter"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "La prochaine fois, envoyer automatiquement le rapport"
|
||||
|
||||
@ -9921,29 +9921,29 @@ msgstr "%d erreurs trouvées lors de l'analyse."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[Un ROLLBACK a eu lieu]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
"Les structures suivantes ont été créées ou modifiées. Ici il est possible "
|
||||
"de :"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Consulter le contenu d'une structure en cliquant sur son nom."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Modifier l'un de ses paramètres en cliquant le lien « Options » "
|
||||
"correspondant."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Éditer la structure via le lien « Structure »."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9973,32 +9973,32 @@ msgstr "Éditer la structure via le lien « Structure »."
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Aller à la base de données : %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Éditer les paramètres pour %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Aller à la table : %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Structure de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Aller à la vue : %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10085,7 +10085,7 @@ msgstr "Affichage de la requête SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Identifiant de la ligne insérée : %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ce code de langue non pris en charge est ignoré."
|
||||
|
||||
@ -12912,7 +12912,7 @@ msgstr "Ce serveur MySQL ne prend pas en charge le moteur de stockage %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Le nom d'une clé primaire doit être « PRIMARY » !"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Il y a des problèmes avec les index de la table « %s »"
|
||||
@ -13811,7 +13811,7 @@ msgstr "Aucun(e)"
|
||||
#: templates/database/central_columns/main.twig:77
|
||||
#: templates/database/central_columns/main.twig:312
|
||||
msgid "As defined:"
|
||||
msgstr "Tel que défini :"
|
||||
msgstr "Tel que défini :"
|
||||
|
||||
#: templates/columns_definitions/column_attributes.twig:102
|
||||
msgid ""
|
||||
@ -13819,7 +13819,7 @@ msgid ""
|
||||
"to the documentation for more details"
|
||||
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"
|
||||
"opération ; merci de se référer à la documentation pour plus de détails"
|
||||
|
||||
#: templates/columns_definitions/column_attributes.twig:116
|
||||
#: templates/database/data_dictionary/index.twig:75 templates/indexes.twig:18
|
||||
@ -15788,7 +15788,7 @@ msgstr "La révision Git %1$s de la branche %2$s est en cours d'exécution."
|
||||
|
||||
#: templates/footer.twig:36
|
||||
msgid "Git information missing!"
|
||||
msgstr "Information Git manquante !"
|
||||
msgstr "Information Git manquante !"
|
||||
|
||||
#: templates/gis_data_editor_form.twig:4
|
||||
#, php-format
|
||||
@ -15868,11 +15868,11 @@ msgstr ""
|
||||
|
||||
#: templates/header.twig:35 templates/login/header.twig:13
|
||||
msgid "Javascript must be enabled past this point!"
|
||||
msgstr "JavaScript doit être activé !"
|
||||
msgstr "JavaScript doit être activé au-delà de ce point !"
|
||||
|
||||
#: templates/header.twig:46
|
||||
msgid "Click on the bar to scroll to top of page"
|
||||
msgstr "Cliquer sur la barre pour faire défiler en haut de page"
|
||||
msgstr "Cliquer sur la barre pour faire défiler vers le haut de la page"
|
||||
|
||||
#: templates/home/git_info.twig:2
|
||||
msgid "Git revision:"
|
||||
|
||||
110
po/fy.po
110
po/fy.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2015-12-24 23:02+0000\n"
|
||||
"Last-Translator: Robin van der Vliet <info@robinvandervliet.nl>\n"
|
||||
"Language-Team: Frisian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
@ -1600,30 +1600,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3953,7 +3953,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4266,7 +4266,7 @@ msgstr "Oanpast"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4614,7 +4614,7 @@ msgstr "SQL-queryconsole"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4641,7 +4641,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4747,7 +4747,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4805,11 +4805,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5594,7 +5594,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6203,7 +6203,7 @@ msgid "Edit query"
|
||||
msgstr "Ferstjoere"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6456,7 +6456,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6467,7 +6467,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6872,7 +6872,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -7137,7 +7137,7 @@ msgstr "Overhead"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7870,7 +7870,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8509,44 +8509,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Begjin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Folgjende"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Folsleine teksten"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8559,8 +8559,8 @@ msgstr "Folsleine teksten"
|
||||
msgid "Descending"
|
||||
msgstr "Ofrinnend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8573,41 +8573,41 @@ msgstr "Ofrinnend"
|
||||
msgid "Ascending"
|
||||
msgstr "Oprinnend"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8921,11 +8921,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Rapportearje"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -9098,25 +9098,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9146,32 +9146,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Opsjes"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Struktuer fan %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9254,7 +9254,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11899,7 +11899,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
110
po/gl.po
110
po/gl.po
@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-02-17 10:34+0000\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauricio@fauth.dev>\n"
|
||||
"Language-Team: Galician <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1950,13 +1950,13 @@ msgstr "Debería actualizar a %s %s ou posterior."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Erro: o token non coincide"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1965,17 +1965,17 @@ msgstr ""
|
||||
"Ten activada mbstring.func_overload na configuración do PHP. Esta opción é "
|
||||
"incompatíbel co phpMyAdmin e podería ocasionar danos nos datos!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentouse substituír GLOBALS"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "posíbel vulnerabilidade (exploit)"
|
||||
|
||||
@ -4712,7 +4712,7 @@ msgstr "Ignorar as táboas bloqueadas"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -5039,7 +5039,7 @@ msgstr "Personalizada"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5475,7 +5475,7 @@ msgstr "Consulta de consultas de SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Non hai ningunha base de datos escollida."
|
||||
@ -5504,7 +5504,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5614,7 +5614,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Baleirouse a táboa %s."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5674,11 +5674,11 @@ msgstr "Si"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Sen cambios"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "A lista de favoritos está chea!"
|
||||
|
||||
@ -6518,7 +6518,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Engádalle ao menos unha variábel á serie!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -7142,7 +7142,7 @@ msgid "Edit query"
|
||||
msgstr "Enviar esta consulta"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7402,7 +7402,7 @@ msgstr "Contido do punto de datos"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
@ -7413,7 +7413,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Copiar ao portapapeis"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7843,7 +7843,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Mire na parte inferior desta xanela."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Ignorar todo"
|
||||
|
||||
@ -8123,7 +8123,7 @@ msgstr "De máis (Overhead)"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Creouse a base de datos %1$s."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -9024,7 +9024,7 @@ msgstr "Xa existe a táboa %s!!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "A consulta de SQL executouse sen problemas."
|
||||
@ -9737,44 +9737,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Inicio"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Seguinte"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Fin"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Textos parciais"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Textos completos"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9787,8 +9787,8 @@ msgstr "Textos completos"
|
||||
msgid "Descending"
|
||||
msgstr "Descendente"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9801,42 +9801,42 @@ msgstr "Descendente"
|
||||
msgid "Ascending"
|
||||
msgstr "Ascendente"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "A fila foi eliminada."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Matar (kill)"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
"Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "A mostrar as filas %1s + %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d en total, %2$d en consulta"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d total"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "A consulta levou %01.4f segundos."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Non se atopou a ligazón!"
|
||||
|
||||
@ -10203,11 +10203,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Houbo demasiadas mensaxes de erro; algunhas non se mostran."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Informar"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "A próxima vez, enviar un informe automaticamente"
|
||||
|
||||
@ -10387,16 +10387,16 @@ msgstr "Atopáronse %d erros durante a análise."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Ver o contido dunha estrutura premendo no seu nome."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Change any of its settings by clicking the corresponding \"Options\" link"
|
||||
@ -10405,13 +10405,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente"
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
#, fuzzy
|
||||
#| msgid "Edit structure by following the \"Structure\" link"
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Editar a estrutura seguindo a ligazón «Estrutura»"
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10441,32 +10441,32 @@ msgstr "Editar a estrutura seguindo a ligazón «Estrutura»"
|
||||
msgid "Options"
|
||||
msgstr "Opcións"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Ir á base de datos: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Editar a configuración de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Ir á táboa: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "Estrutura de %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Ir á vista: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10551,7 +10551,7 @@ msgstr "Mostrar a consulta de SQL"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Identificador da fileira inserida: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Ignórase o código de idioma descoñecido."
|
||||
|
||||
@ -13477,7 +13477,7 @@ msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "O nome da chave primaria debe ser «PRIMARY»!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemas cos índices da táboa «%s»"
|
||||
|
||||
110
po/gu.po
110
po/gu.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2019-04-27 17:19+0000\n"
|
||||
"Last-Translator: William Desportes <williamdes@wdes.fr>\n"
|
||||
"Language-Team: Gujarati <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
@ -1517,30 +1517,30 @@ msgstr ""
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3828,7 +3828,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4131,7 +4131,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4479,7 +4479,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr ""
|
||||
@ -4506,7 +4506,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4610,7 +4610,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4668,11 +4668,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5437,7 +5437,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6020,7 +6020,7 @@ msgid "Edit query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6272,7 +6272,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
@ -6283,7 +6283,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6676,7 +6676,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr ""
|
||||
|
||||
@ -6927,7 +6927,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7658,7 +7658,7 @@ msgstr ""
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr ""
|
||||
@ -8289,44 +8289,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8339,8 +8339,8 @@ msgstr ""
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8353,41 +8353,41 @@ msgstr ""
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr ""
|
||||
|
||||
@ -8701,11 +8701,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr ""
|
||||
|
||||
@ -8872,25 +8872,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -8920,32 +8920,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9028,7 +9028,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -11617,7 +11617,7 @@ msgstr ""
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
163
po/he.po
163
po/he.po
@ -1,10 +1,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2024-10-13 04:15+0000\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-05-19 07:02+0000\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Language-Team: Hebrew <https://hosted.weblate.org/projects/phpmyadmin/5-2/he/"
|
||||
">\n"
|
||||
@ -13,7 +13,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.8-dev\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
@ -21,7 +21,7 @@ msgstr "זמן פעילות מתחת ליום אחד"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:12
|
||||
msgid "Uptime is less than 1 day, performance tuning may not be accurate."
|
||||
msgstr ""
|
||||
msgstr "זמן הפעילות הוא פחות מיום אחד, כוונון הביצועים עלול להיות לא מדויק."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:14
|
||||
msgid ""
|
||||
@ -588,15 +588,11 @@ msgid "Percentage of used open files limit"
|
||||
msgstr "אחוז מגבלת הקבצים הפתוחים שנוצל"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:433
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The number of open files is approaching the max number of open files. "
|
||||
#| "You may get a \"Too many open files\" error."
|
||||
msgid ""
|
||||
"The number of open files is approaching the max number of open files. You "
|
||||
"may get a \"Too many open files\" error."
|
||||
msgstr ""
|
||||
"מספר הקבצים הפתוחים מגיע לסף המרבי של קבצים פתוחים. יתכן ותתקבל שגיאת „יותר "
|
||||
"מספר הקבצים הפתוחים מגיע לסף המרבי של קבצים פתוחים. אולי תתקבל שגיאת „יותר "
|
||||
"מדי קבצים פתוחים”."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:437
|
||||
@ -1572,13 +1568,13 @@ msgstr "אתה צריך לשדרג אל %s %s לפחות."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1587,17 +1583,17 @@ msgstr ""
|
||||
"הפעלת את mbstring.func_overload בתצורת ה־PHP שלך. אפשרות זו אינה תואמת "
|
||||
"ל־phpMyAdmin ועלולה לגרום לפגם בנתונים!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -3915,7 +3911,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4220,7 +4216,7 @@ msgstr ""
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4570,7 +4566,7 @@ msgstr "מסוף שאילתות SQL"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "לא נבחר אף מסד נתונים."
|
||||
@ -4597,7 +4593,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4703,7 +4699,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "הטבלה %s רוקנה."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4761,11 +4757,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "ללא שינוי"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5581,7 +5577,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "נא להוסיף לסדרה משתנה אחד לפחות!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6184,7 +6180,7 @@ msgid "Edit query"
|
||||
msgstr "עריכת שאילתה"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6442,7 +6438,7 @@ msgstr "תוכן נקודת נתונים"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "התעלמות"
|
||||
@ -6453,7 +6449,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "העתקה ללוח הגזירים"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -6852,7 +6848,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "התעלמות מהכול"
|
||||
|
||||
@ -7110,7 +7106,7 @@ msgstr "תקורה"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "מסד הנתונים %1$s נוצר."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -7851,7 +7847,7 @@ msgstr "הטבלה %s כבר קיימת!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "שאילתת ה־SQL שלך רצה בהצלחה."
|
||||
@ -8354,11 +8350,11 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Database/Routines.php:998
|
||||
msgid "You must provide a routine name!"
|
||||
msgstr ""
|
||||
msgstr "חובה לספק שם שגרה!"
|
||||
|
||||
#: libraries/classes/Database/Routines.php:1063
|
||||
msgid "You must provide a routine definition."
|
||||
msgstr ""
|
||||
msgstr "חובה לספק הגדרת שגרה."
|
||||
|
||||
#: libraries/classes/Database/Routines.php:1143
|
||||
#: libraries/classes/Database/Routines.php:1312
|
||||
@ -8367,9 +8363,9 @@ msgid "No routine with name %1$s found in database %2$s."
|
||||
msgstr "לא נמצאה שגרה עם השם %1$s במסד הנתונים %2$s."
|
||||
|
||||
#: libraries/classes/Database/Routines.php:1182
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Execution results of routine %s"
|
||||
msgstr "מאפשר יצירת שגרות מאוחסנות."
|
||||
msgstr "תוצאות הפעלת השגרה %s"
|
||||
|
||||
#: libraries/classes/Database/Routines.php:1230
|
||||
#, php-format
|
||||
@ -8501,44 +8497,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "התחלה"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "הקודם"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "הבא"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "סיום"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "טקסטים חלקיים"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "טקסטים מלאים"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8551,8 +8547,8 @@ msgstr "טקסטים מלאים"
|
||||
msgid "Descending"
|
||||
msgstr "יורד"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8565,41 +8561,41 @@ msgstr "יורד"
|
||||
msgid "Ascending"
|
||||
msgstr "עולה"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "השורה נמחקה."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "חיסול"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "כנראה הערכה. יש לעיין ב[doc@faq3-11]שו״ת 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "מוצגות שורות %1s - %2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d סה״כ, %2$d בשאילתה"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "%d סה״כ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "השאילתה ארכה %01.4f שניות."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "קישור לא נמצא!"
|
||||
|
||||
@ -8913,11 +8909,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "דיווח"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "בפעם הבאה יש לשלוח דיווח אוטומטית"
|
||||
|
||||
@ -9088,25 +9084,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9136,32 +9132,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "אפשרויות"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "מעבר למסד נתונים: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "מעבר לטבלה: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "מבנה של %s"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9244,7 +9240,7 @@ msgstr ""
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -10791,10 +10787,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Plugins/Import/ImportLdi.php:62
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
msgid "Column names: "
|
||||
msgstr "שמות עמודה"
|
||||
msgstr "שמות עמודות: "
|
||||
|
||||
#: libraries/classes/Plugins/Import/ImportLdi.php:106
|
||||
msgid "This plugin does not support compressed imports!"
|
||||
@ -12012,7 +12006,7 @@ msgstr "שרת MySQL לא תומך במנוע אחסון %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "בעיות עם אינדקסים של טבלה `%s`"
|
||||
@ -12963,10 +12957,8 @@ msgstr ""
|
||||
#: templates/table/relation/common_form.twig:233
|
||||
#: templates/table/zoom_search/result_form.twig:26
|
||||
#: templates/table/zoom_search/result_form.twig:97
|
||||
#, fuzzy
|
||||
#| msgid "Loading…"
|
||||
msgid "Loading"
|
||||
msgstr "בטעינה…"
|
||||
msgstr "בטעינה"
|
||||
|
||||
#: templates/columns_definitions/column_name.twig:4
|
||||
#, php-format
|
||||
@ -13916,18 +13908,17 @@ msgstr "כבוי"
|
||||
msgid ""
|
||||
"@SERVER@ will become the server name and @DATABASE@ will become the database "
|
||||
"name."
|
||||
msgstr ""
|
||||
msgstr "@SERVER@ יהפוך לשם השרת ואילו @DATABASE@ יהפוך לשם מסד הנתונים."
|
||||
|
||||
#. l10n: A query that the user has written freely
|
||||
#: templates/database/export/index.twig:5 templates/table/export/index.twig:5
|
||||
msgid "Exporting a raw query"
|
||||
msgstr ""
|
||||
msgstr "מתבצע ייצוא של שאילתה גולמית"
|
||||
|
||||
#: templates/database/export/index.twig:7
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
#, php-format
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
|
||||
msgstr "מתבצע ייצוא של טבלאות ממסד הנתונים „%s”"
|
||||
|
||||
#: templates/database/export/index.twig:30
|
||||
#, fuzzy
|
||||
@ -14398,13 +14389,11 @@ msgid "Inside column:"
|
||||
msgstr "בתוך העמודה:"
|
||||
|
||||
#: templates/database/search/results.twig:12
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%1$s match inside table <i>%2$s</i>"
|
||||
#| msgid_plural "%1$s matches inside table <i>%2$s</i>"
|
||||
#, php-format
|
||||
msgid "%1$s match in <strong>%2$s</strong>"
|
||||
msgid_plural "%1$s matches in <strong>%2$s</strong>"
|
||||
msgstr[0] "תוצאה אחת (%1$s) בטבלה <i>%2$s</i>"
|
||||
msgstr[1] "%1$s תוצאות בטבלה <i>%2$s</i>"
|
||||
msgstr[0] "תוצאה אחת (%1$s) בטבלה <strong>%2$s</strong>"
|
||||
msgstr[1] "%1$s תוצאות בטבלה <strong>%2$s</strong>"
|
||||
|
||||
#: templates/database/search/results.twig:56
|
||||
msgid "<strong>Total:</strong> <em>%count%</em> match"
|
||||
@ -16069,10 +16058,8 @@ msgid "phpMyAdmin configuration storage"
|
||||
msgstr "תיעוד phpMyAdmin"
|
||||
|
||||
#: templates/relation/check_relations.twig:9
|
||||
#, fuzzy
|
||||
#| msgid "Modifications have been saved"
|
||||
msgid "Configuration of pmadb…"
|
||||
msgstr "שינויים נשמרו"
|
||||
msgstr "תצורה של pmadb…"
|
||||
|
||||
#: templates/relation/check_relations.twig:10
|
||||
#: templates/relation/check_relations.twig:56
|
||||
@ -18090,10 +18077,8 @@ msgid "Use the NULL value for this column."
|
||||
msgstr "ערך עבור העמודה „%s“"
|
||||
|
||||
#: templates/table/insert/column_row.twig:65
|
||||
#, fuzzy
|
||||
#| msgid "Because of its length,<br /> this field might not be editable "
|
||||
msgid "Because of its length,<br> this column might not be editable."
|
||||
msgstr "משום אורכם, <br /> השדה הזה יכול להיות בלתי עריך "
|
||||
msgstr "עקב אורכה,<br>העמודה הזאת עלולה להיות נעולה לעריכה."
|
||||
|
||||
#: templates/table/insert/column_row.twig:93
|
||||
msgid "Binary - do not edit"
|
||||
|
||||
110
po/hi.po
110
po/hi.po
@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2022-10-05 05:19+0000\n"
|
||||
"Last-Translator: rajnikant sharma <rajtrivedi2001@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/5-2/hi/"
|
||||
@ -1759,13 +1759,13 @@ msgstr "आपको %s %s या अधिक में नवीनीकृ
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1774,17 +1774,17 @@ msgstr ""
|
||||
"आपने PHP विन्यास में mbstring.func_overload को सक्षम किया है। यह विकल्प phpMyAdmin "
|
||||
"के साथ असंगत है और इसकी वजह से कुछ डाटा भ्रष्ट हो सकता है!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4612,7 +4612,7 @@ msgstr "बंद टेबलओं को छोड़"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4943,7 +4943,7 @@ msgstr "कस्टम"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5333,7 +5333,7 @@ msgstr "SQL क्वरी बॉक्स"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "कोइ डाटाबेस नहीं चुना गया है।"
|
||||
@ -5360,7 +5360,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5468,7 +5468,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "टेबल %s को खाली किया गया है."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5526,11 +5526,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "कोइ बदलाव नहीं"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "प्रिय सूची भरी हुई है!"
|
||||
|
||||
@ -6418,7 +6418,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -7080,7 +7080,7 @@ msgid "Edit query"
|
||||
msgstr "क्वरी भेजें"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7361,7 +7361,7 @@ msgstr "डॅटा बिन्दु सामग्री"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "उपेक्षा करें"
|
||||
@ -7372,7 +7372,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7832,7 +7832,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -8118,7 +8118,7 @@ msgstr "जरूरत से ज्यादा"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "%1$s डेटाबेस बनाया गया है।"
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, fuzzy, php-format
|
||||
#| msgid "%s databases have been dropped successfully."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
@ -8874,7 +8874,7 @@ msgstr "टेबल %s पहले से मौजूद है!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9605,7 +9605,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9613,7 +9613,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "प्रारंभ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9622,7 +9622,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "पिछला"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9631,7 +9631,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "अगला"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9639,18 +9639,18 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "आखरी"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "आंशिक पाठ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "पूर्ण पाठ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9663,8 +9663,8 @@ msgstr "पूर्ण पाठ"
|
||||
msgid "Descending"
|
||||
msgstr "अवरोही"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9677,48 +9677,48 @@ msgstr "अवरोही"
|
||||
msgid "Ascending"
|
||||
msgstr "आरोही"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "रौ को डिलीट कर दिया"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
#, 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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "रौ देखिये"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "कुल"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -10034,13 +10034,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "आयात करें"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
#| msgid "Automatically create versions"
|
||||
msgid "Automatically send report next time"
|
||||
@ -10227,18 +10227,18 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
#, fuzzy
|
||||
#| msgid "View a structure`s contents by clicking on its name"
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Change any of its settings by clicking the corresponding \"Options\" link"
|
||||
@ -10246,13 +10246,13 @@ msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
#, fuzzy
|
||||
#| msgid "Edit its structure by following the \"Structure\" link"
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10282,37 +10282,37 @@ msgstr "इसकी संरचना को संपादित करन
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Go to database"
|
||||
msgid "Go to database: %s"
|
||||
msgstr "डेटाबेस पर जायें"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Missing data for %s"
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "%s के लिए डेटा लापता"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Go to table"
|
||||
msgid "Go to table: %s"
|
||||
msgstr "टेबल पर जायें"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "केवल संरचना"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Go to view"
|
||||
msgid "Go to view: %s"
|
||||
msgstr "दृश्य पर जायें"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10397,7 +10397,7 @@ msgstr "SQL क्वेरी शो"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "इनसर्ट रो id: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -13242,7 +13242,7 @@ msgstr "यह MySQL सर्वर %s भंडारण इंजन का
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "प्राथमिक कुंजी का नाम \"प्राथमिक\" होना चाहिए!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
|
||||
|
||||
129
po/hr.po
129
po/hr.po
@ -1,39 +1,43 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"PO-Revision-Date: 2023-12-08 16:05+0000\n"
|
||||
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2025-01-31 02:01+0000\n"
|
||||
"Last-Translator: \"Mijo Galić (gmijo47)\" <gmijo47@gmail.com>\n"
|
||||
"Language-Team: Croatian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
"hr/>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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 5.3-dev\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 5.10-dev\n"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:9
|
||||
msgid "Uptime below one day"
|
||||
msgstr ""
|
||||
msgstr "Vrijeme aktivnosti ispod jednog dana"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:12
|
||||
msgid "Uptime is less than 1 day, performance tuning may not be accurate."
|
||||
msgstr ""
|
||||
"Vrijeme aktivnosti je manje od jednog dana, prilagođavanje performansi može "
|
||||
"biti netočno."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:14
|
||||
msgid ""
|
||||
"To have more accurate averages it is recommended to let the server run for "
|
||||
"longer than a day before running this analyzer"
|
||||
msgstr ""
|
||||
"“Da bi imali točnije prosjeke preporučljivo je da server radi više od jednog "
|
||||
"dana prije pokretanja ovog analizera."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:17
|
||||
#, php-format
|
||||
msgid "The uptime is only %s"
|
||||
msgstr ""
|
||||
msgstr "Vrijeme aktivnosti je samo %s"
|
||||
|
||||
#: libraries/advisory_rules_generic.php:22
|
||||
#, fuzzy
|
||||
@ -45,6 +49,7 @@ msgid ""
|
||||
"Fewer than 1,000 questions have been run against this server. The "
|
||||
"recommendations may not be accurate."
|
||||
msgstr ""
|
||||
"Manje od 1000 upita je pokrenuo na ovom serveru. Preporuke mogu biti netočne."
|
||||
|
||||
#: libraries/advisory_rules_generic.php:30
|
||||
msgid ""
|
||||
@ -1759,13 +1764,13 @@ msgstr "Trebali biste nadograditi na %s %s ili kasniju."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1775,17 +1780,17 @@ msgstr ""
|
||||
"opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati "
|
||||
"oštećivanje nekih podataka!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
@ -4342,7 +4347,7 @@ msgstr "Prikaži otvorene tablice"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4673,7 +4678,7 @@ msgstr "Prilagođena boja"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5055,7 +5060,7 @@ msgstr "SQL upit"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Nema odabrane baze podataka."
|
||||
@ -5083,7 +5088,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5195,7 +5200,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "Tablica %s je očišćena."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5254,11 +5259,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Bez izmjena"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -6128,7 +6133,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6805,7 +6810,7 @@ msgid "Edit query"
|
||||
msgstr "Podnesi upit"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7089,7 +7094,7 @@ msgstr "Veličina pokazatelja podataka"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoriraj"
|
||||
@ -7100,7 +7105,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7553,7 +7558,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Ignore"
|
||||
msgid "Ignore All"
|
||||
@ -7840,7 +7845,7 @@ msgstr "Prepunjenje"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "Baza podataka %1$s uspješno je izrađena."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8729,7 +8734,7 @@ msgstr "Tablica %s već postoji!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
#, fuzzy
|
||||
#| msgid "Your SQL query has been executed successfully."
|
||||
@ -9478,7 +9483,7 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
#, fuzzy
|
||||
#| msgid "Begin"
|
||||
@ -9486,7 +9491,7 @@ msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Na vrh stranice"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
#, fuzzy
|
||||
@ -9495,7 +9500,7 @@ msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Prethodni"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
#, fuzzy
|
||||
@ -9504,7 +9509,7 @@ msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Sljedeće"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
#, fuzzy
|
||||
#| msgid "End"
|
||||
@ -9512,22 +9517,22 @@ msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Završetak"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "Djelomični tekstovi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "Potpuni tekstovi"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9540,8 +9545,8 @@ msgstr "Potpuni tekstovi"
|
||||
msgid "Descending"
|
||||
msgstr "Silazno"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9554,48 +9559,48 @@ msgstr "Silazno"
|
||||
msgid "Ascending"
|
||||
msgstr "Uzlazno"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Redak je izbrisan"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Eliminiraj"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
#, 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 "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Showing rows"
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Prikazivanje redaka"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, fuzzy, php-format
|
||||
#| msgid "total"
|
||||
msgid "%d total"
|
||||
msgstr "ukupno"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Query took %01.4f sec"
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Upit je trajao %01.4f sek"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "Link not found!"
|
||||
@ -9959,13 +9964,13 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Previše poruka o greškama, neke nisu prikazane."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Import"
|
||||
msgid "Report"
|
||||
msgstr "Uvoz"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
#, fuzzy
|
||||
#| msgid "Automatic recovery mode"
|
||||
msgid "Automatically send report next time"
|
||||
@ -10161,25 +10166,25 @@ msgstr ""
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10209,34 +10214,34 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Opcije"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Nema baza podataka"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Uredi postavke za %s"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, fuzzy, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Nema baza podataka"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Structure only"
|
||||
msgid "Structure of %s"
|
||||
msgstr "Samo strukturu"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Export views"
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Vrsta izvoza"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10322,7 +10327,7 @@ msgstr "Prikazivanje SQL upita"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Umetnut ID retka: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -13307,7 +13312,7 @@ msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Naziv primarnog ključa mora biti \"PRIMARY\"!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemi s indeksima tablice `%s`"
|
||||
|
||||
110
po/hu.po
110
po/hu.po
@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2024-12-26 16:00+0000\n"
|
||||
"Last-Translator: Csörgő Márk Ábrahám <mcsorgo88@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/phpmyadmin/5-2/"
|
||||
@ -1817,13 +1817,13 @@ msgstr "Frissítenie kell %s %s vagy újabb verzióra."
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Hiba: Token eltérés"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1832,17 +1832,17 @@ msgstr ""
|
||||
"Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez "
|
||||
"a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS felülírási kísérlet"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "lehetséges kiaknázás"
|
||||
|
||||
@ -4447,7 +4447,7 @@ msgstr "A zárolt táblák kihagyása"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4768,7 +4768,7 @@ msgstr "Egyedi"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -5196,7 +5196,7 @@ msgstr "SQL lekérdezés konzol"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Nincs kiválasztott adatbázis."
|
||||
@ -5225,7 +5225,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -5338,7 +5338,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "A(z) %s tábla kiürítése megtörtént."
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -5398,11 +5398,11 @@ msgstr "Igen"
|
||||
#: 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Nincs változás"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr "A kedvencek listája tele van!"
|
||||
|
||||
@ -6245,7 +6245,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Legalább egy változót adjon meg a sorozathoz!"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6865,7 +6865,7 @@ msgid "Edit query"
|
||||
msgstr "Lekérdezés indítása"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -7130,7 +7130,7 @@ msgstr "Adatmutató tartalma"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Kihagyás"
|
||||
@ -7141,7 +7141,7 @@ msgid "Copy to clipboard"
|
||||
msgstr "Másolás vágólapra"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7568,7 +7568,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Nézze meg ennek az ablaknak az alját."
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Összes mellőzése"
|
||||
|
||||
@ -7837,7 +7837,7 @@ msgstr "Felülírás"
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "A(z) %1$s adatbázis elkészült."
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8719,7 +8719,7 @@ msgstr "Már létezik %s nevű tábla!"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Az SQL-lekérdezés végrehajtása sikerült."
|
||||
@ -9383,44 +9383,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Kezdet"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Előző"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Következő"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Vége"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Részleges szövegek"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Teljes szövegek"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -9433,8 +9433,8 @@ msgstr "Teljes szövegek"
|
||||
msgid "Descending"
|
||||
msgstr "Csökkenő"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -9447,41 +9447,41 @@ msgstr "Csökkenő"
|
||||
msgid "Ascending"
|
||||
msgstr "Növekvő"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "A sor törlése megtörtént."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Leállít"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
|
||||
msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]."
|
||||
|
||||
#: libraries/classes/Display/Results.php:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "Sorok megjelenítése %1s-%2s"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "%1$d összesen, %2$d a lekérdezésben"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "összesen %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "A lekérdezés %01.4f másodpercig tartott."
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Nem található a hivatkozás!"
|
||||
|
||||
@ -9844,11 +9844,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Túl sok hibaüzenet, néhány nem megjeleníthető."
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Jelentés"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Jelentés automatikus küldése legközelebb"
|
||||
|
||||
@ -10027,29 +10027,29 @@ msgstr "%d hibát találtunk az elemzés során."
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[ROLLBACK történt.]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
"A következő struktúrákat vagy már létrehozták vagy megváltoztattál. Itt "
|
||||
"lehet:"
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr "Szerkezet tartalmának megtekintése a nevére való kattintással."
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
"Bármelyik beállításának módosítása a megfelelő „Beállítások” hivatkozásra "
|
||||
"kattintva."
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve."
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -10079,32 +10079,32 @@ msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve."
|
||||
msgid "Options"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr "Ugrás az adatbázishoz: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "%s beállításainak szerkesztése"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Ugrás a táblához: %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "%s szerkezete"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Ugrás %s megtekintéséhez"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -10191,7 +10191,7 @@ msgstr "Megjelenítés SQL lekérdezésként"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "A beszúrt sor azonosítószáma: %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr "Nem támogatott nyelvi kód mellőzése."
|
||||
|
||||
@ -13049,7 +13049,7 @@ msgstr "Ez a MySQL kiszolgáló nem támogatja a(z) %s tárolómotort."
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Az elsődleges kulcs nevének \"PRIMARY\"-nak kell lennie!"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Probléma a(z) `%s` tábla indexeivel"
|
||||
|
||||
110
po/hy.po
110
po/hy.po
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 5.2.2-dev\n"
|
||||
"Project-Id-Version: phpMyAdmin 5.2.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2025-01-12 15:57-0300\n"
|
||||
"POT-Creation-Date: 2025-02-27 14:25-0300\n"
|
||||
"PO-Revision-Date: 2021-01-22 03:17+0000\n"
|
||||
"Last-Translator: William Desportes <williamdes@wdes.fr>\n"
|
||||
"Language-Team: Armenian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
@ -1618,13 +1618,13 @@ msgstr "Անհրաժեշտ է արդիացնել %s-ը %s կամ բարձր տա
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Սխալ՝ հետքանշիչի անհամապատասխանություն"
|
||||
|
||||
#: libraries/classes/Common.php:491
|
||||
#: libraries/classes/Common.php:498
|
||||
msgid ""
|
||||
"Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to "
|
||||
"access phpMyAdmin."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:552
|
||||
#: libraries/classes/Common.php:559
|
||||
msgid ""
|
||||
"You have enabled mbstring.func_overload in your PHP configuration. This "
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
@ -1634,17 +1634,17 @@ msgstr ""
|
||||
"դրույթը անհամատեղելի է phpMyAdmin-ի հետ և կարող է հանգեցնել որոշ տվյալների "
|
||||
"վնասմանը։"
|
||||
|
||||
#: libraries/classes/Common.php:569
|
||||
#: libraries/classes/Common.php:576
|
||||
msgid ""
|
||||
"The ini_get and/or ini_set functions are disabled in php.ini. phpMyAdmin "
|
||||
"requires these functions!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Common.php:580
|
||||
#: libraries/classes/Common.php:587
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS վրագրելու փորձ"
|
||||
|
||||
#: libraries/classes/Common.php:590
|
||||
#: libraries/classes/Common.php:597
|
||||
msgid "possible exploit"
|
||||
msgstr "հնարավոր խոցելիություն"
|
||||
|
||||
@ -4029,7 +4029,7 @@ msgstr "Զանցել կողպված աղյուսակները"
|
||||
#: libraries/classes/Config/Descriptions.php:946
|
||||
#: libraries/classes/ConfigStorage/UserGroups.php:122
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:387
|
||||
#: libraries/classes/Display/Results.php:2965
|
||||
#: libraries/classes/Display/Results.php:2978
|
||||
#: libraries/classes/Html/Generator.php:614
|
||||
#: libraries/classes/Html/Generator.php:868
|
||||
#: templates/console/bookmark_content.twig:7 templates/console/display.twig:31
|
||||
@ -4350,7 +4350,7 @@ msgstr "Ընտելական"
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:100
|
||||
#: libraries/classes/Config/Forms/User/ExportForm.php:128
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:712
|
||||
#: libraries/classes/Import.php:1308 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Import.php:1307 libraries/classes/Menu.php:247
|
||||
#: libraries/classes/Menu.php:357
|
||||
#: libraries/classes/Navigation/Nodes/NodeColumn.php:42
|
||||
#: libraries/classes/Navigation/Nodes/NodeDatabase.php:51
|
||||
@ -4726,7 +4726,7 @@ msgstr "SQL հարցման կառավարակետ"
|
||||
|
||||
#: libraries/classes/Controllers/AbstractController.php:73
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:342
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:68
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:73
|
||||
#: libraries/classes/DbTableExists.php:47
|
||||
msgid "No databases selected."
|
||||
msgstr "Տվյալների բազան ընտրած չէ։"
|
||||
@ -4757,7 +4757,7 @@ msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/Database/ExportController.php:81
|
||||
#: libraries/classes/Controllers/Database/TrackingController.php:130
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:442
|
||||
#: libraries/classes/Controllers/Export/ExportController.php:443
|
||||
#: libraries/classes/Database/Qbe.php:322
|
||||
#: templates/database/structure/index.twig:25
|
||||
#: templates/navigation/tree/path.twig:9
|
||||
@ -4866,7 +4866,7 @@ msgid "Table %s has been emptied."
|
||||
msgstr "%s աղյուսակը դատարկվել է։"
|
||||
|
||||
#: libraries/classes/Controllers/Database/StructureController.php:575
|
||||
#: libraries/classes/Display/Results.php:3976
|
||||
#: libraries/classes/Display/Results.php:3989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to "
|
||||
@ -4926,11 +4926,11 @@ 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:719 templates/preview_sql.twig:3
|
||||
#: libraries/classes/Core.php:737 templates/preview_sql.twig:3
|
||||
msgid "No change"
|
||||
msgstr "Առանց փոփոխությունների"
|
||||
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:109
|
||||
#: libraries/classes/Controllers/Database/Structure/FavoriteTableController.php:113
|
||||
msgid "Favorite List is full!"
|
||||
msgstr ""
|
||||
|
||||
@ -5764,7 +5764,7 @@ msgid "Please add at least one variable to the series!"
|
||||
msgstr "Ավելացրեք առնվազն մեկ փոփոխական այս շարքին։"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:207
|
||||
#: libraries/classes/Display/Results.php:1261
|
||||
#: libraries/classes/Display/Results.php:1274
|
||||
#: libraries/classes/Plugins/Export/ExportSql.php:2259
|
||||
#: libraries/classes/Plugins/Schema/SchemaPdf.php:99
|
||||
#: libraries/config.values.php:111
|
||||
@ -6391,7 +6391,7 @@ msgid "Edit query"
|
||||
msgstr "Կատարել հարցումը"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:389
|
||||
#: libraries/classes/Display/Results.php:3033
|
||||
#: libraries/classes/Display/Results.php:3046
|
||||
#: 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
|
||||
@ -6655,7 +6655,7 @@ msgstr "Տվյալների կետի պարունակությունը"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:475
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:633
|
||||
#: libraries/classes/ErrorHandler.php:422 libraries/classes/InsertEdit.php:2012
|
||||
#: libraries/classes/ErrorHandler.php:427 libraries/classes/InsertEdit.php:2012
|
||||
#: templates/table/index_form.twig:167 templates/table/index_form.twig:203
|
||||
msgid "Ignore"
|
||||
msgstr "Անտեսել"
|
||||
@ -6666,7 +6666,7 @@ msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:477
|
||||
#: libraries/classes/Display/Results.php:2969
|
||||
#: libraries/classes/Display/Results.php:2982
|
||||
#: libraries/classes/Html/Generator.php:75
|
||||
#: templates/display/results/table.twig:234
|
||||
#: templates/display/results/table.twig:235
|
||||
@ -7093,7 +7093,7 @@ msgid "Please look at the bottom of this window."
|
||||
msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։"
|
||||
|
||||
#: libraries/classes/Controllers/JavaScriptMessagesController.php:636
|
||||
#: libraries/classes/ErrorHandler.php:427
|
||||
#: libraries/classes/ErrorHandler.php:432
|
||||
msgid "Ignore All"
|
||||
msgstr "Անտեսել բոլորը"
|
||||
|
||||
@ -7367,7 +7367,7 @@ msgstr ""
|
||||
msgid "Database %1$s has been created."
|
||||
msgstr "%1$s տվյալների բազան ստեղծված է։"
|
||||
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:93
|
||||
#: libraries/classes/Controllers/Server/Databases/DestroyController.php:98
|
||||
#, php-format
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
@ -8108,7 +8108,7 @@ msgstr "%s աղյուսակը արդեն սիկ առկա է։"
|
||||
#: libraries/classes/Controllers/Table/RelationController.php:241
|
||||
#: libraries/classes/Controllers/View/OperationsController.php:87
|
||||
#: libraries/classes/Database/Routines.php:1222
|
||||
#: libraries/classes/Display/Results.php:3691 libraries/classes/Message.php:172
|
||||
#: libraries/classes/Display/Results.php:3704 libraries/classes/Message.php:172
|
||||
#: templates/sql/query.twig:7
|
||||
msgid "Your SQL query has been executed successfully."
|
||||
msgstr "Ձեր SQL հարցումը հաջողությամբ կատարվեց։"
|
||||
@ -8793,44 +8793,44 @@ msgid ""
|
||||
"available, but is being hidden by the %s configuration directive."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Display/Results.php:897 templates/list_navigator.twig:8
|
||||
#: libraries/classes/Display/Results.php:910 templates/list_navigator.twig:8
|
||||
#: templates/list_navigator.twig:13
|
||||
msgctxt "First page"
|
||||
msgid "Begin"
|
||||
msgstr "Սկիզբ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:904 templates/list_navigator.twig:16
|
||||
#: libraries/classes/Display/Results.php:917 templates/list_navigator.twig:16
|
||||
#: templates/list_navigator.twig:21 templates/server/binlog/index.twig:47
|
||||
#: templates/server/binlog/index.twig:52
|
||||
msgctxt "Previous page"
|
||||
msgid "Previous"
|
||||
msgstr "Նախորդ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:930 templates/list_navigator.twig:33
|
||||
#: libraries/classes/Display/Results.php:943 templates/list_navigator.twig:33
|
||||
#: templates/list_navigator.twig:35 templates/server/binlog/index.twig:72
|
||||
#: templates/server/binlog/index.twig:77
|
||||
msgctxt "Next page"
|
||||
msgid "Next"
|
||||
msgstr "Հաջորդ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:960 templates/list_navigator.twig:42
|
||||
#: libraries/classes/Display/Results.php:973 templates/list_navigator.twig:42
|
||||
#: templates/list_navigator.twig:44
|
||||
msgctxt "Last page"
|
||||
msgid "End"
|
||||
msgstr "Վերջ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1468
|
||||
#: libraries/classes/Display/Results.php:1481
|
||||
#: templates/display/results/table.twig:132
|
||||
msgid "Partial texts"
|
||||
msgstr "Մասնակի գրվածքներ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1472
|
||||
#: libraries/classes/Display/Results.php:1485
|
||||
#: templates/display/results/table.twig:136
|
||||
msgid "Full texts"
|
||||
msgstr "Ամբողջական գրվածքներ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1815
|
||||
#: libraries/classes/Display/Results.php:1841 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Display/Results.php:1828
|
||||
#: libraries/classes/Display/Results.php:1854 libraries/classes/Util.php:2567
|
||||
#: libraries/classes/Util.php:2590 libraries/config.values.php:113
|
||||
#: templates/database/multi_table_query/form.twig:69
|
||||
#: templates/database/qbe/sort_select_cell.twig:7
|
||||
@ -8843,8 +8843,8 @@ msgstr "Ամբողջական գրվածքներ"
|
||||
msgid "Descending"
|
||||
msgstr "Ըստ նվազման"
|
||||
|
||||
#: libraries/classes/Display/Results.php:1823
|
||||
#: libraries/classes/Display/Results.php:1833 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Display/Results.php:1836
|
||||
#: libraries/classes/Display/Results.php:1846 libraries/classes/Util.php:2559
|
||||
#: libraries/classes/Util.php:2582 libraries/config.values.php:112
|
||||
#: templates/database/multi_table_query/form.twig:68
|
||||
#: templates/database/qbe/sort_select_cell.twig:5
|
||||
@ -8857,41 +8857,41 @@ msgstr "Ըստ նվազման"
|
||||
msgid "Ascending"
|
||||
msgstr "Ըստ աճման"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3009
|
||||
#: libraries/classes/Display/Results.php:3024
|
||||
#: libraries/classes/Display/Results.php:3022
|
||||
#: libraries/classes/Display/Results.php:3037
|
||||
msgid "The row has been deleted."
|
||||
msgstr "Տողը ջնջվեց։"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3056
|
||||
#: libraries/classes/Display/Results.php:3069
|
||||
#: templates/server/status/processes/list.twig:44
|
||||
msgid "Kill"
|
||||
msgstr "Ավարտել"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3624
|
||||
#: libraries/classes/Display/Results.php:3637
|
||||
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:3985
|
||||
#: libraries/classes/Display/Results.php:3998
|
||||
#, php-format
|
||||
msgid "Showing rows %1s - %2s"
|
||||
msgstr "%1s -ից %2s տողերի ցուցադրում"
|
||||
|
||||
#: libraries/classes/Display/Results.php:3999
|
||||
#: libraries/classes/Display/Results.php:4012
|
||||
#, php-format
|
||||
msgid "%1$d total, %2$d in query"
|
||||
msgstr "Ընդամենը %1$d,%2$d հարցման մեջ"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4004
|
||||
#: libraries/classes/Display/Results.php:4017
|
||||
#, php-format
|
||||
msgid "%d total"
|
||||
msgstr "Ընդամենը %d"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4017 libraries/classes/Sql.php:988
|
||||
#: libraries/classes/Display/Results.php:4030 libraries/classes/Sql.php:988
|
||||
#, php-format
|
||||
msgid "Query took %01.4f seconds."
|
||||
msgstr "Հարցումը տևեց %01.4f վայրկյան։"
|
||||
|
||||
#: libraries/classes/Display/Results.php:4348
|
||||
#: libraries/classes/Display/Results.php:4361
|
||||
msgid "Link not found!"
|
||||
msgstr "Հղումներ չեն գտնվել։"
|
||||
|
||||
@ -9207,11 +9207,11 @@ msgstr ""
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
msgstr "Չափազանց մեծ սխալների քանակը, որոշները չեն ցուցադրվում։"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:411
|
||||
#: libraries/classes/ErrorHandler.php:416
|
||||
msgid "Report"
|
||||
msgstr "Զեկույց"
|
||||
|
||||
#: libraries/classes/ErrorHandler.php:416 templates/error/report_form.twig:25
|
||||
#: libraries/classes/ErrorHandler.php:421 templates/error/report_form.twig:25
|
||||
msgid "Automatically send report next time"
|
||||
msgstr "Հաջորդ անգամ զեկույցը ինքնաշխատ ուղարկել"
|
||||
|
||||
@ -9387,25 +9387,25 @@ msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։"
|
||||
msgid "[ROLLBACK occurred.]"
|
||||
msgstr "[Տեղի է ունեցել ՀԵՏԴԱՐՁ]"
|
||||
|
||||
#: libraries/classes/Import.php:1267
|
||||
#: libraries/classes/Import.php:1266
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1269
|
||||
#: libraries/classes/Import.php:1268
|
||||
msgid "View a structure's contents by clicking on its name."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1270
|
||||
#: libraries/classes/Import.php:1269
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1271
|
||||
#: libraries/classes/Import.php:1270
|
||||
msgid "Edit structure by following the \"Structure\" link."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1275 libraries/classes/Import.php:1309
|
||||
#: libraries/classes/Import.php:1274 libraries/classes/Import.php:1308
|
||||
#: libraries/classes/Plugins/Export/ExportCodegen.php:66
|
||||
#: libraries/classes/Plugins/Export/ExportCsv.php:46
|
||||
#: libraries/classes/Plugins/Export/ExportExcel.php:39
|
||||
@ -9435,32 +9435,32 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Կայանքներ"
|
||||
|
||||
#: libraries/classes/Import.php:1278
|
||||
#: libraries/classes/Import.php:1277
|
||||
#, php-format
|
||||
msgid "Go to database: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/classes/Import.php:1284 libraries/classes/Import.php:1327
|
||||
#: libraries/classes/Import.php:1283 libraries/classes/Import.php:1326
|
||||
#, php-format
|
||||
msgid "Edit settings for %s"
|
||||
msgstr "Խմբագրել կայանքներ %s-ի համար"
|
||||
|
||||
#: libraries/classes/Import.php:1312
|
||||
#: libraries/classes/Import.php:1311
|
||||
#, php-format
|
||||
msgid "Go to table: %s"
|
||||
msgstr "Անցնել աղյուսակին՝ %s"
|
||||
|
||||
#: libraries/classes/Import.php:1320
|
||||
#: libraries/classes/Import.php:1319
|
||||
#, php-format
|
||||
msgid "Structure of %s"
|
||||
msgstr "%s-ի կառուցվածքը"
|
||||
|
||||
#: libraries/classes/Import.php:1338
|
||||
#: libraries/classes/Import.php:1337
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr "Անցնել ներկայացնամնը (VIEW)՝ %s"
|
||||
|
||||
#: libraries/classes/Import.php:1366
|
||||
#: libraries/classes/Import.php:1365
|
||||
msgid ""
|
||||
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
|
||||
"engine tables can be rolled back."
|
||||
@ -9547,7 +9547,7 @@ msgstr "SQL հարցման ցուցադրում"
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Զետեղված տողի id՝ %1$d"
|
||||
|
||||
#: libraries/classes/LanguageManager.php:979
|
||||
#: libraries/classes/LanguageManager.php:980
|
||||
msgid "Ignoring unsupported language code."
|
||||
msgstr ""
|
||||
|
||||
@ -12199,7 +12199,7 @@ msgstr "Այս MySQL սպասարկիչը չի աջակցում աղյուսակ
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Առաջնային բանալիի անունը պետք է լինի \"PRIMARY\"։"
|
||||
|
||||
#: libraries/classes/Table/Maintenance.php:122
|
||||
#: libraries/classes/Table/Maintenance.php:123
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Խնդիրներ՝ `%s` աղյուսակի ցուցակագրերի հետ"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user