mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
resolved conflicts
This commit is contained in:
@@ -0,0 +1,604 @@
|
||||
# Change Log
|
||||
|
||||
## [5.10.2] - 2024-12-05
|
||||
|
||||
### Added
|
||||
|
||||
- Add MariaDb 11.6 and 11.7 contexts (#601)
|
||||
- Add context files for MySQL 9.1 (#603)
|
||||
|
||||
## [5.10.1] - 2024-11-10
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix parsing of ALTER TABLE … RENAME KEY (#580)
|
||||
- Fix parsing table names that start with "e1" (#578)
|
||||
- Improve handling of negative and overflowed offsets on TokensList (#582)
|
||||
- Fix parsing of queries with 'AND' (#590)
|
||||
- Fix C style comments with two asterisks (#597)
|
||||
- Fix parsing of SRID in column definition (#595)
|
||||
|
||||
## [5.10.0] - 2024-08-29
|
||||
|
||||
- Fix parsing of UPDATE ... SET (#577)
|
||||
- Fix parsing of WITH PARSER (#563)
|
||||
- Fix context files for MySQL and MariaDB (#572) (#576)
|
||||
- Allow using `::class` keyword to load a context (#571)
|
||||
- Fix query flags for lower-case functions (#564)
|
||||
- Improve context files by using constants (#570)
|
||||
- Fix case when a condition is not parsed correctly (#560)
|
||||
- Support parsing KILL statements (#556)
|
||||
- Fix replace clause of select statement with FOR UPDATE (#555)
|
||||
- Add support for ALTER FUNCTION and ALTER PROCEDURE statements (#553)
|
||||
|
||||
## [5.9.1] - 2024-08-13
|
||||
|
||||
- Allow parsing ALTER TABLE statement with column check constraint (#554)
|
||||
- Add support for PHPUnit 10 (#573)
|
||||
|
||||
## [5.9.0] - 2024-01-20
|
||||
|
||||
- Fix keywords not being recognized as table alias (#496)
|
||||
- Add `bin/sql-parser` executable file (#517)
|
||||
- Fix bind parameter in LIMIT OFFSET (#498)
|
||||
- Fix using ? as a parameter (#515)
|
||||
|
||||
## [5.8.2] - 2023-09-19
|
||||
|
||||
- Fix a regression with the ALTER operation (#511)
|
||||
|
||||
## [5.8.1] - 2023-09-15
|
||||
|
||||
- Fix `:=` was not recognized as an operator just like `=` (#306)
|
||||
- Fix `ALTER TABLE … MODIFY … ENUM('<reserved_keyword>')` is being wrongly parsed (#234)
|
||||
- Fix `ALTER TABLE … MODIFY … ENUM('<reserved_keyword>')` is being wrongly parsed (#478)
|
||||
- Fix MariaDB window function with alias gives bad linting errors (#283)
|
||||
- Fix unrecognized keyword `COLLATE` in `WHERE` clauses (#491)
|
||||
- Fix invalid hexadecimal prefix 0X (#508)
|
||||
|
||||
## [5.8.0] - 2023-06-05
|
||||
|
||||
- Fix `ALTER EVENT RENAME TO` to use expression instead of var (#419)
|
||||
- Fix incorrect order of operations to parse table/db called `` (#422)
|
||||
- Fix ALTER EVENT statement with DEFINER=user modifier fails to be parsed (#418)
|
||||
- Fix GROUP BY modifier WITH ROLLUP is treated as a syntax error and prevents export of SQL query results
|
||||
- Fix `TokensList::getPrevious` was not able to reach very first token (#428)
|
||||
- Fix `TransactionStatement::build()` "Call to a member function build() on null" when the transaction has no end
|
||||
- Fix MySQL-specific commands parsing (#226)
|
||||
- Fix `ALTER TABLE … RENAME COLUMN … TO …` is not understood by the parser/linter (#430)
|
||||
- Fix `PARTITION` syntax errors (#377)
|
||||
- Fix `ALTER USER` when used with `IDENTIFIED WITH/VIA/BY` option (#431)
|
||||
- Fix `COALESCE PARTITION` in `ALTER TABLE`, rather than `COALESCE` (#323)
|
||||
- Support `ALGORITHM` and `LOCK` options in `ALTER TABLE` statements (#319)
|
||||
- Fix way end of functions, procedures and triggers' bodies is identified (#438)
|
||||
- Fix `enclosed by` is not recognized by the parser when `fields` is in lower case (#236)
|
||||
- Support `KEY` on `CreateDefinition` (#330)
|
||||
- Fix `CALL` statements parsing (#372)
|
||||
- Implement support for `LEFT JOIN`, `JOIN`, `INNER JOIN` on `UpdateStatement` (#260)
|
||||
- Implement support for `TABLE` and `REPLACE` statements on `DESCRIBE` statements
|
||||
- Fix `DESCRIBE` to allow a schema.table syntax (#445)
|
||||
- Fix parsing insert queries with functions trims commas (#450)
|
||||
|
||||
## [5.7.0] - 2023-01-25
|
||||
|
||||
* Performance improvement to use less the `nextToken()` function (#397)
|
||||
* Lexer - Solving ambiguity on function keywords (#385)
|
||||
* Implement `ALTER EVENT` (#404)
|
||||
* Add `ALTER EVENT` keywords (#404)
|
||||
* Drop PHP 7.1 support
|
||||
* Fix the alter operation table options `RENAME INDEX x TO y` (#405)
|
||||
* Fix `CreateStatement` function's options (#406)
|
||||
* Fix a PHP notice on Linter using `ANALYZE` (#413)
|
||||
|
||||
## [5.6.0] - 2023-01-02
|
||||
|
||||
* Add missing return types annotations
|
||||
* Improve the WITH statements parser (#363)
|
||||
* Add support for passing `Context::SQL_MODE*` constants to `Context::setMode` method
|
||||
* Fix additional body tokens issue with `CREATE VIEW` statements (#371)
|
||||
* Exclude from composer vendor bundle /tests and /phpunit.xml.dist
|
||||
* Support table structure with `COMPRESSED` columns (#351)
|
||||
* Add `#[\AllowDynamicProperties]` on `Statement` and `Expression` classes for PHP 8.2 support
|
||||
* Support `ALTER` queries of `PARTITIONS` (#329)
|
||||
* Fixed differentiating between `ANALYZE` and `EXPLAIN` statements (#386)
|
||||
* Added "NOT" to the select options (#374)
|
||||
* Implement the `EXPLAIN` Parser (#389)
|
||||
* Context: Updated contexts to contain `multipoint` and `multipolygon` data types (#393)
|
||||
* Support more keywords on `Expression` component (#399)
|
||||
* Fix PHP 8.3 failing tests (#400)
|
||||
|
||||
## [5.5.0] - 2021-12-08
|
||||
|
||||
* Add WITH support (#165, #331)
|
||||
* Fixed BufferedQuery when it has an odd number of backslashes in the end (#340)
|
||||
* Fixed the issue that ignored the body tokens when creating views with union (#343)
|
||||
* Fixed parser errors on "ALTER TABLE" statements to add columns with SET type (#168)
|
||||
* Fixed PHP 8.1 fatal errors on classes that "implements ArrayAccess"
|
||||
* Add new contexts for MariaDB 10.4, 10.5, 10.6 (#328)
|
||||
* Fixed parser errors for "ALTER USER" with options (#342)
|
||||
* Fixed handling of the procedures and functions's options where part of the body (#339)
|
||||
* Fix PHP notice "Undefined index: name in src/Components/Key.php#206" for table keys using expressions (#347)
|
||||
* Added support for MySQL 8.0 table structure KEY expressions (#347)
|
||||
* Added support for KEY order (ASC/DESC) (#296)
|
||||
* Added missing KEY options for MySQL and MariaDB (#348)
|
||||
* Added support for ENFORCED and NOT ENFORCED on table create queries (#341)
|
||||
* Performance improvement to use less the "ord()" function (#352)
|
||||
* Added support for OVER() with an alias (AS) (#197)
|
||||
|
||||
## [5.4.2] - 2021-02-05
|
||||
|
||||
* Added check for quoted symbol to avoid parser error in case of keyword (#317)
|
||||
* Allow PHP 8
|
||||
|
||||
## [5.4.1] - 2020-10-15
|
||||
|
||||
* Fix array_key_exists warning when parsing a "DEFAULT FALSE" token (#299)
|
||||
|
||||
## [5.4.0] - 2020-10-08
|
||||
|
||||
* EXISTS is also a function. (#297)
|
||||
* Fix lexer to not allow numbers with letters (#300)
|
||||
* Add support for INVISIBLE keyword (#292)
|
||||
* Fix the "$" might be a character used in a name (#301)
|
||||
* Fix use stream_select instead of non-blocking STDIN (#309)
|
||||
* Add select validation to a create view statement (#310)
|
||||
|
||||
## [5.3.1] - 2020-03-20
|
||||
|
||||
* Revert some changes with the understanding of ANSI_QUOTES mode and identifiers
|
||||
* Suggest motranslator 5.0 in README
|
||||
|
||||
## [5.3.0] - 2020-03-20
|
||||
|
||||
* Stop instanciating an object to check its class name. (#290)
|
||||
* Replace sscanf by equivalent native PHP functions because sscanf can be disabled for security reasons. (#270)
|
||||
* Allow phpunit 9
|
||||
* Allow phpmyadmin/motranslator 5.0
|
||||
* Fix for php error when "INSERT INTO x SET a = 1" is "INSERT INTO x SET = 1" (#295)
|
||||
* Fixed lexer fails to detect "*" as a wildcard (#288)
|
||||
* Fixed ANSI_QUOTES support (#284)
|
||||
* Fixed parser mistakes with comments (#156)
|
||||
|
||||
## [5.2.0] - 2020-01-07
|
||||
|
||||
* Fix ALTER TABLE ... PRIMARY/UNIQUE KEY results in error (#267)
|
||||
* Prevent overwrite of offset in Limit clause by parenthesis (#275)
|
||||
* Allow SCHEMA to be used in CREATE Database statement (#231)
|
||||
* Add missing options in SET statement (#255)
|
||||
* Add support for DROP USER statement (#259)
|
||||
* Fix php error "undefined index" when replacing a non existing clause (#249)
|
||||
|
||||
## [5.1.0] - 2019-11-12
|
||||
|
||||
* Fix for PHP deprecations messages about implode for php 7.4+ (#258)
|
||||
* Parse CHECK keyword on table definition (#264)
|
||||
* Parse truncate statement (#221)
|
||||
* Fix wrong parsing of partitions (#265)
|
||||
|
||||
## [5.0.0] - 2019-05-09
|
||||
|
||||
* Drop support for PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, PHP 7.0 and HHVM
|
||||
* Enable strict mode on PHP files
|
||||
* Fix redundant whitespaces in build() outputs (#228)
|
||||
* Fix incorrect error on DEFAULT keyword in ALTER operation (#229)
|
||||
* Fix incorrect outputs from Query::getClause (#233)
|
||||
* Add support for reading an SQL file from stdin
|
||||
* Fix for missing tokenize-query in Composer's vendor/bin/ directory
|
||||
* Fix for PHP warnings with an incomplete CASE expression (#241)
|
||||
* Fix for error message with multiple CALL statements (#223)
|
||||
* Recognize the question mark character as a parameter (#242)
|
||||
|
||||
## [4.7.4] - YYYY-MM-DD
|
||||
|
||||
## [4.7.3] - 2021-12-08
|
||||
|
||||
- Fixed BufferedQuery when it has an odd number of backslashes in the end (#340)
|
||||
- Fixed the issue that ignored the body tokens when creating views with union (#343)
|
||||
- Fixed parser errors on "ALTER TABLE" statements to add columns with SET type (#168)
|
||||
- Fixed parser errors for "ALTER USER" with options (#342)
|
||||
- Fixed handling of the procedures and functions's options where part of the body (#339)
|
||||
- Fix PHP notice "Undefined index: name in src/Components/Key.php#206" for table keys using functions (#347)
|
||||
- Fix MySQL 8.0 table structure KEY expression not recognized (#347)
|
||||
- Fix KEY order (ASC/DESC) not part of the KEY definition (#296)
|
||||
- Fix missing KEY options for MySQL and MariaDB (#348)
|
||||
- Fix validation error when using ENFORCED option (#341)
|
||||
|
||||
## [4.7.2] - 2021-02-05
|
||||
|
||||
- Added check for quoted symbol to avoid parser error in case of keyword (#317)
|
||||
- Adjust PHP version constraint to not support PHP 8.0 on the 4.7 series (5.x series supports it)
|
||||
|
||||
## [4.7.1] - 2020-10-15
|
||||
|
||||
* Fix array_key_exists warning when parsing a "DEFAULT FALSE" token (#299)
|
||||
|
||||
## [4.7.0] - 2020-10-08
|
||||
|
||||
* EXISTS is also a function. (#297)
|
||||
* Fix lexer to not allow numbers with letters (#300)
|
||||
* Add support for INVISIBLE keyword (#292)
|
||||
* Fix the "$" might be a character used in a name (#301)
|
||||
* Fix use stream_select instead of non-blocking STDIN (#309)
|
||||
* Add select validation to a create view statement (#310)
|
||||
|
||||
## [4.6.1] - 2020-03-20
|
||||
|
||||
* Revert some changes with the understanding of ANSI_QUOTES mode and identifiers
|
||||
* Suggest motranslator 4.0 in README
|
||||
|
||||
## [4.6.0] - 2020-03-20
|
||||
|
||||
* Stop instanciating an object to check its class name. (#290)
|
||||
* Replace sscanf by equivalent native PHP functions because sscanf can be disabled for security reasons. (#270)
|
||||
* Allow phpunit 7
|
||||
* Fix for php error when "INSERT INTO x SET a = 1" is "INSERT INTO x SET = 1" (#295)
|
||||
* Fixed lexer fails to detect "*" as a wildcard (#288)
|
||||
* Fixed ANSI_QUOTES support (#284)
|
||||
* Fixed parser mistakes with comments (#156)
|
||||
|
||||
## [4.5.0] - 2020-01-07
|
||||
|
||||
* Fix ALTER TABLE ... PRIMARY/UNIQUE KEY results in error (#267)
|
||||
* Prevent overwrite of offset in Limit clause by parenthesis (#275)
|
||||
* Allow SCHEMA to be used in CREATE Database statement (#231)
|
||||
* Add missing options in SET statement (#255)
|
||||
* Add support for DROP USER statement (#259)
|
||||
* Fix php error "undefined index" when replacing a non existing clause (#249)
|
||||
|
||||
## [4.4.0] - 2019-11-12
|
||||
|
||||
* Fix for PHP deprecations messages about implode for php 7.4+ (#258)
|
||||
* Parse CHECK keyword on table definition (#264)
|
||||
* Parse truncate statement (#221)
|
||||
* Fix wrong parsing of partitions (#265)
|
||||
|
||||
## [4.3.2] - 2019-06-03
|
||||
|
||||
Backport fixes from 5.0.0 to QA branch:
|
||||
|
||||
* Fix redundant whitespaces in build() outputs (#228)
|
||||
* Fix incorrect error on DEFAULT keyword in ALTER operation (#229)
|
||||
* Fix incorrect outputs from Query::getClause (#233)
|
||||
* Add support for reading an SQL file from stdin
|
||||
* Fix for missing tokenize-query in Composer's vendor/bin/ directory
|
||||
* Fix for PHP warnings with an incomplete CASE expression (#241)
|
||||
* Fix for error message with multiple CALL statements (#223)
|
||||
* Recognize the question mark character as a parameter (#242)
|
||||
|
||||
## [4.3.1] - 2019-01-05
|
||||
|
||||
* Fixed incorrect error thrown on DEFAULT keyword in ALTER statement (#218)
|
||||
|
||||
## [4.3.0] - 2018-12-25
|
||||
|
||||
* Add support for aliases on CASE expressions (#162 and #192)
|
||||
* Add support for INDEX hints in SELECT statement (#199)
|
||||
* Add support for LOCK and UNLOCK TABLES statement (#180)
|
||||
* Add detection of extraneous comma in UPDATE statement (#160)
|
||||
* Add detection of a missing comma between two ALTER operations (#189)
|
||||
* Add missing support for STRAIGHT_JOIN (#196)
|
||||
* Add support for end options in SET statement (#190)
|
||||
* Fix building of RENAME statements (#201)
|
||||
* Add support for PURGE statements (#207)
|
||||
* Add support for COLLATE keyword (#190)
|
||||
|
||||
## [4.2.5] - 2018-10-31
|
||||
|
||||
* Fix issue with CREATE OR REPLACE VIEW.
|
||||
|
||||
## [4.2.4] - 2017-12-06
|
||||
|
||||
* Fix parsing of CREATE TABLE with per field COLLATE.
|
||||
* Improved Context::loadClosest to better deal with corner cases.
|
||||
* Localization updates.
|
||||
|
||||
## [4.2.3] - 2017-10-10
|
||||
|
||||
* Make mbstring extension optional (though Symfony polyfill).
|
||||
* Fixed build CREATE TABLE query with PARTITIONS having ENGINE but not VALUES.
|
||||
|
||||
## [4.2.2] - 2017-09-28
|
||||
|
||||
* Added support for binding parameters.
|
||||
|
||||
## [4.2.1] - 2017-09-08
|
||||
|
||||
* Fixed minor bug in Query::getFlags.
|
||||
* Localization updates.
|
||||
|
||||
## [4.2.0] - 2017-08-30
|
||||
|
||||
* Initial support for MariaDB SQL contexts.
|
||||
* Add support for MariaDB 10.3 INTERSECT and EXCEPT.
|
||||
|
||||
## [4.1.10] - 2017-08-21
|
||||
|
||||
* Use custom LoaderException for context loading errors.
|
||||
|
||||
## [4.1.9] - 2017-07-12
|
||||
|
||||
* Various code cleanups.
|
||||
* Improved error handling of several invalid statements.
|
||||
|
||||
## [4.1.8] - 2017-07-09
|
||||
|
||||
* Fixed parsing SQL comment at the end of query.
|
||||
* Improved handing of non utf-8 strings.
|
||||
* Added query flag for SET queries.
|
||||
|
||||
## [4.1.7] - 2017-06-06
|
||||
|
||||
* Fixed setting combination SQL Modes.
|
||||
|
||||
## [4.1.6] - 2017-06-01
|
||||
|
||||
* Fixed building query with GROUP BY clause.
|
||||
|
||||
## [4.1.5] - 2017-05-15
|
||||
|
||||
* Fixed invalid lexing of queries with : in strings.
|
||||
* Properly handle maximal length of delimiter.
|
||||
|
||||
## [4.1.4] - 2017-05-05
|
||||
|
||||
* Fixed wrong extract of string tokens with escaped characters.
|
||||
* Properly handle lowercase begin statement.
|
||||
|
||||
## [4.1.3] - 2017-04-06
|
||||
|
||||
* Added support for DELETE ... JOIN clauses.
|
||||
* Changed BufferedQuery to include comments in output.
|
||||
* Fixed parsing of inline comments.
|
||||
|
||||
## [4.1.2] - 2017-02-20
|
||||
|
||||
* Coding style improvements.
|
||||
* Chinese localization.
|
||||
* Improved order validatin for JOIN clauses.
|
||||
* Improved pretty printing of JOIN clauses.
|
||||
* Added support for LOAD DATA statements.
|
||||
|
||||
## [4.1.1] - 2017-02-07
|
||||
|
||||
* Localization using phpmyadmin/motranslator is now optional.
|
||||
* Improved testsuite.
|
||||
* Better handling of non upper cased not reserved keywords.
|
||||
* Minor performance and coding style improvements.
|
||||
|
||||
## [4.1.0] - 2017-01-23
|
||||
|
||||
* Use phpmyadmin/motranslator to localize messages.
|
||||
|
||||
## [4.0.1] - 2017-01-23
|
||||
|
||||
* Fixed CLI wrappers for new API.
|
||||
* Fixed README for new API.
|
||||
|
||||
## [4.0.0] - 2017-01-23
|
||||
|
||||
* Added PhpMyAdmin namespace prefix to follow PSR-4.
|
||||
|
||||
## [3.4.17] - 2017-01-20
|
||||
|
||||
* Coding style fixes.
|
||||
* Fixed indentation in HTML formatting.
|
||||
* Fixed parsing of unterminated variables.
|
||||
* Improved comments lexing.
|
||||
|
||||
## [3.4.16] - 2017-01-06
|
||||
|
||||
* Coding style fixes.
|
||||
* Properly handle operators AND, NOT, OR, XOR, DIV, MOD
|
||||
|
||||
## [3.4.15] - 2017-01-02
|
||||
|
||||
* Fix return value of Formatter.toString() when type is text
|
||||
* Fix parsing of FIELDS and LINES options in SELECT..INTO
|
||||
* PHP 7.2 compatibility.
|
||||
* Better parameter passing to query formatter.
|
||||
|
||||
## [3.4.14] - 2016-11-30
|
||||
|
||||
* Improved parsing of UNION queries.
|
||||
* Recognize BINARY function.
|
||||
|
||||
## [3.4.13] - 2016-11-15
|
||||
|
||||
* Fix broken incorrect clause order detection for Joins.
|
||||
* Add parsing of end options in Select statements.
|
||||
|
||||
## [3.4.12] - 2016-11-09
|
||||
|
||||
* Added verification order of SELECT statement clauses.
|
||||
|
||||
## [3.4.11] - 2016-10-25
|
||||
|
||||
* Fixed parsing of ON UPDATE option in field definition of TIMESTAMP type with precision
|
||||
* Fixed parsing of NATURAL JOIN, CROSS JOIN and related joins.
|
||||
* Fixed parsing of BEGIN/END labels.
|
||||
|
||||
## [3.4.10] - 2016-10-03
|
||||
|
||||
* Fixed API regression on DELETE statement
|
||||
|
||||
## [3.4.9] - 2016-10-03
|
||||
|
||||
* Added support for CASE expressions
|
||||
* Support for parsing and building DELETE statement
|
||||
* Support for parsing subqueries in FROM clause
|
||||
|
||||
## [3.4.8] - 2016-09-22
|
||||
|
||||
* No change release to sync GitHub releases with Packagist
|
||||
|
||||
## [3.4.7] - 2016-09-20
|
||||
|
||||
* Fix parsing of DEFINER without backquotes
|
||||
* Fixed escaping HTML entities in HTML formatter
|
||||
* Fixed escaping of control chars in CLI formatter
|
||||
|
||||
## [3.4.6] - 2016-09-13
|
||||
|
||||
* Fix parsing of REPLACE INTO ...
|
||||
* Fix parsing of INSERT ... ON DUPLICATE KEY UPDATE ...
|
||||
* Extended testsuite
|
||||
* Re-enabled PHP 5.3 support
|
||||
|
||||
## [3.4.5] - 2016-09-13
|
||||
|
||||
* Fix parsing of INSERT...SELECT and INSERT...SET syntax
|
||||
* Fix parsing of CREATE TABLE ... PARTITION
|
||||
* Fix parsing of SET CHARACTER SET, CHARSET, NAMES
|
||||
* Add Support for 'CREATE TABLE `table_copy` LIKE `table`
|
||||
|
||||
## [3.4.4] - 2016-04-26
|
||||
|
||||
* Add support for FULL OUTER JOIN
|
||||
|
||||
## [3.4.3] - 2016-04-19
|
||||
|
||||
* Fix parsing of query with \
|
||||
|
||||
## [3.4.2] - 2016-04-07
|
||||
|
||||
* Recognize UNION DISTINCT
|
||||
* Recognize REGEXP and RLIKE operators
|
||||
|
||||
## [3.4.1] - 2016-04-06
|
||||
|
||||
* Add FULLTEXT and SPATIAL keywords
|
||||
* Properly parse CREATE TABLE [AS] SELECT
|
||||
* Fix parsing of table with DEFAULT and COMMENT
|
||||
|
||||
## [3.4.0] - 2016-02-23
|
||||
|
||||
* Fix parsing DEFAULT value on CREATE
|
||||
* Fix parsing of ALTER VIEW
|
||||
|
||||
## [3.3.1] - 2016-02-12
|
||||
|
||||
* Condition: Allow keyword `INTERVAL`.
|
||||
|
||||
## [3.3.0] - 2016-02-12
|
||||
|
||||
* Expression: Refactored parsing options.
|
||||
|
||||
## [3.2.0] - 2016-02-11
|
||||
|
||||
* Context: Added custom mode that avoids escaping when possible.
|
||||
|
||||
## [3.1.0] - 2016-02-10
|
||||
|
||||
* ArrayObj: Handle more complex expressions in arrays.
|
||||
* BufferedQuery: Backslashes in comments escaped characters in comments.
|
||||
* Condition: Allow `IF` in conditions.
|
||||
* Context: Add `;` as operator.
|
||||
* Context: Updated contexts to contain `BIT` data type.
|
||||
* CreateStatement: The `DEFAULT` option may be an expression.
|
||||
* DescribeStatement: Added `DESC` as alias for `DESCRIBE`.
|
||||
* Expression: Rewrote expression parsing.
|
||||
* Misc: Added PHPUnit's Code Coverage 3.0 as a dependency.
|
||||
* Misc: Added support for PHP 5.4 back.
|
||||
* Misc: Removed dependency to Ctype.
|
||||
* Misc: Repository transferred from @udan11 to @phpMyAdmin.
|
||||
* Misc: Updated `.gitignore` to ignore `composer.lock`.
|
||||
* Misc: Updated Composer and Travis configuration for PHP 7 and PHPUnit 5.
|
||||
* Tools: Documented tags in `ContextGenerator`.
|
||||
|
||||
## [3.0.8] - 2015-12-18
|
||||
|
||||
* Allow `NULL` in expressions.
|
||||
* Downgraded PHPUnit to 4.8. Removed old PHP versions.
|
||||
* Updated PHPUnit to 5.1 and fixed some of the tests.
|
||||
* Added `UNION ALL` as a type of `UNION`.
|
||||
* Expressions are permitted in `SET` operations.
|
||||
* Added `STRAIGHT_JOIN` as a known type of join.
|
||||
* Added missing definitions for `MATCH` and `AGAINST`.
|
||||
* Added missing statement (`FLUSH` and `DEALLOCATE`).
|
||||
|
||||
## [3.0.7] - 2015-11-12
|
||||
|
||||
* Expressions may begin with a function that is also a reserved keyword (e.g. `IF`).
|
||||
|
||||
## [3.0.6] - 2015-11-12
|
||||
|
||||
* Fixed a bug where formatter split the function name and the parameters list.
|
||||
|
||||
## [3.0.5] - 2015-11-08
|
||||
|
||||
* Add GRANT as known statement.
|
||||
* Use JOIN expressions for flag detection.
|
||||
* Fix the order of clauses in SELECT statements involving UNIONs.
|
||||
* Added dummy parsers for CREATE USER and SET PASSWORD statements.
|
||||
* Accept NOT operator in conditions.
|
||||
* Fixed DELIMITER statements in BufferedQuery.
|
||||
* Added INSERT statement builder.
|
||||
|
||||
## [3.0.4] - 2015-10-21
|
||||
|
||||
* Fix error message in `SqlParser\Components\OptionsArray`.
|
||||
|
||||
## [3.0.3] - 2015-10-10
|
||||
|
||||
* Avoid building a field multiple times if clause has synonyms.
|
||||
|
||||
## [3.0.2] - 2015-10-10
|
||||
|
||||
* Add EXISTS as an acceptable keyword in conditions.
|
||||
|
||||
## [3.0.1] - 2015-10-06
|
||||
|
||||
* Handle backslashes separately for `SqlParser\Utils\BufferedQuery`. Fixes a bug where backslashes in combination with strings weren't handled properly.
|
||||
|
||||
## [3.0.0] - 2015-10-02
|
||||
|
||||
__Breaking changes:__
|
||||
|
||||
* `SqlParser\Components\Reference::$table` is now an instance of `SqlParser\Components\Expression` to support references from other tables.
|
||||
|
||||
## [2.1.3] - 2015-10-02
|
||||
|
||||
* Add definitions for all JOIN clauses.
|
||||
|
||||
## [2.1.2] - 2015-10-02
|
||||
|
||||
* Properly parse options when the value of the option is '='.
|
||||
|
||||
## [2.1.1] - 2015-09-30
|
||||
|
||||
* Only RANGE and LIST type partitions support VALUES.
|
||||
|
||||
## [2.1.0] - 2015-09-30
|
||||
|
||||
* Added utilities for handling tokens and tokens list.
|
||||
|
||||
## [2.0.3] - 2015-09-30
|
||||
|
||||
* Added missing NOT IN operator. This caused troubles when parsing conditions that contained the `NOT IN` operator.
|
||||
|
||||
## [2.0.2] - 2015-09-30
|
||||
|
||||
* Added support for `OUTER` as an optional keyword in joins.
|
||||
|
||||
## [2.0.1] - 2015-09-30
|
||||
|
||||
* Fixed a bug related to (sub)partitions options not being included in the built component. Also, the option `ENGINE` was unrecognized.
|
||||
|
||||
## [2.0.0] - 2015-09-25
|
||||
|
||||
* Better parsing for CREATE TABLE statements (related to breaking change 1).
|
||||
* Added support for JSON data type.
|
||||
* Refactoring and minor documentation improvements.
|
||||
|
||||
__Breaking changes:__
|
||||
* `SqlParser\Components\Key::$columns` is now an array of arrays. Each array must contain a `name` key which represents the name of the column and an optional `length` key which represents the length of the column.
|
||||
|
||||
## [1.0.0] - 2015-08-20
|
||||
|
||||
* First release of this library.
|
||||
|
||||
[5.10.2]: https://github.com/phpmyadmin/sql-parser/compare/5.10.1...5.10.2
|
||||
[5.10.1]: https://github.com/phpmyadmin/sql-parser/compare/5.10.0...5.10.1
|
||||
[5.10.0]: https://github.com/phpmyadmin/sql-parser/compare/5.9.1...5.10.0
|
||||
[5.9.1]: https://github.com/phpmyadmin/sql-parser/compare/5.9.0...5.9.1
|
||||
[5.9.0]: https://github.com/phpmyadmin/sql-parser/compare/5.8.2...5.9.0
|
||||
@@ -0,0 +1,339 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
||||
@@ -0,0 +1,137 @@
|
||||
# SQL Parser
|
||||
|
||||
A validating SQL lexer and parser with a focus on MySQL dialect.
|
||||
|
||||
## Code status
|
||||
|
||||

|
||||
[](https://scrutinizer-ci.com/g/phpmyadmin/sql-parser/?branch=master)
|
||||
[](https://codecov.io/github/phpmyadmin/sql-parser?branch=master)
|
||||
[](https://scrutinizer-ci.com/g/phpmyadmin/sql-parser/?branch=master)
|
||||
[](https://hosted.weblate.org/engage/phpmyadmin/?utm_source=widget)
|
||||
[](https://packagist.org/packages/phpmyadmin/sql-parser)
|
||||
[](https://www.codetriage.com/phpmyadmin/sql-parser)
|
||||
[](https://shepherd.dev/github/phpmyadmin/sql-parser)
|
||||
[](https://infection.github.io)
|
||||
|
||||
## Installation
|
||||
|
||||
Please use [Composer][1] to install:
|
||||
|
||||
```sh
|
||||
composer require phpmyadmin/sql-parser
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
The API documentation is available at
|
||||
<https://develdocs.phpmyadmin.net/sql-parser/>.
|
||||
|
||||
## Usage
|
||||
|
||||
### Command line utilities
|
||||
|
||||
Command line utility to syntax highlight SQL query:
|
||||
|
||||
```sh
|
||||
./vendor/bin/highlight-query --query "SELECT 1"
|
||||
```
|
||||
|
||||
Command line utility to lint SQL query:
|
||||
|
||||
```sh
|
||||
./vendor/bin/lint-query --query "SELECT 1"
|
||||
```
|
||||
|
||||
Command line utility to tokenize SQL query:
|
||||
|
||||
```sh
|
||||
./vendor/bin/tokenize-query --query "SELECT 1"
|
||||
```
|
||||
|
||||
All commands are able to parse input from stdin (standard in), such as:
|
||||
|
||||
```sh
|
||||
echo "SELECT 1" | ./vendor/bin/highlight-query
|
||||
cat example.sql | ./vendor/bin/lint-query
|
||||
```
|
||||
|
||||
### Formatting SQL query
|
||||
|
||||
```php
|
||||
echo PhpMyAdmin\SqlParser\Utils\Formatter::format($query, ['type' => 'html']);
|
||||
```
|
||||
|
||||
### Discoverying query type
|
||||
|
||||
```php
|
||||
use PhpMyAdmin\SqlParser\Parser;
|
||||
use PhpMyAdmin\SqlParser\Utils\Query;
|
||||
|
||||
$query = 'OPTIMIZE TABLE tbl';
|
||||
$parser = new Parser($query);
|
||||
$flags = Query::getFlags($parser->statements[0]);
|
||||
|
||||
echo $flags['querytype'];
|
||||
```
|
||||
|
||||
### Parsing and building SQL query
|
||||
|
||||
```php
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
$query1 = 'select * from a';
|
||||
$parser = new PhpMyAdmin\SqlParser\Parser($query1);
|
||||
|
||||
// inspect query
|
||||
var_dump($parser->statements[0]); // outputs object(PhpMyAdmin\SqlParser\Statements\SelectStatement)
|
||||
|
||||
// modify query by replacing table a with table b
|
||||
$table2 = new \PhpMyAdmin\SqlParser\Components\Expression('', 'b', '', '');
|
||||
$parser->statements[0]->from[0] = $table2;
|
||||
|
||||
// build query again from an array of object(PhpMyAdmin\SqlParser\Statements\SelectStatement) to a string
|
||||
$statement = $parser->statements[0];
|
||||
$query2 = $statement->build();
|
||||
var_dump($query2); // outputs string(19) 'SELECT * FROM `b` '
|
||||
|
||||
// Change SQL mode
|
||||
PhpMyAdmin\SqlParser\Context::setMode(PhpMyAdmin\SqlParser\Context::SQL_MODE_ANSI_QUOTES);
|
||||
|
||||
// build the query again using different quotes
|
||||
$query2 = $statement->build();
|
||||
var_dump($query2); // outputs string(19) 'SELECT * FROM "b" '
|
||||
```
|
||||
|
||||
## Localization
|
||||
|
||||
You can localize error messages installing `phpmyadmin/motranslator` version `5.0` or newer:
|
||||
|
||||
```sh
|
||||
composer require phpmyadmin/motranslator:^5.0
|
||||
```
|
||||
|
||||
The locale is automatically detected from your environment, you can also set a different locale
|
||||
|
||||
**From cli**:
|
||||
|
||||
```sh
|
||||
LC_ALL=pl ./vendor/bin/lint-query --query "SELECT 1"
|
||||
```
|
||||
|
||||
**From php**:
|
||||
|
||||
```php
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
$GLOBALS['lang'] = 'pl';
|
||||
|
||||
$query1 = 'select * from a';
|
||||
$parser = new PhpMyAdmin\SqlParser\Parser($query1);
|
||||
```
|
||||
|
||||
## More information
|
||||
|
||||
This library was originally created during the Google Summer of Code 2015 and has been used by phpMyAdmin since version 4.5.
|
||||
|
||||
[1]:https://getcomposer.org/
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$found) {
|
||||
die(
|
||||
"You need to set up the project dependencies using the following commands:" . PHP_EOL .
|
||||
"curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
|
||||
"php composer.phar install" . PHP_EOL
|
||||
);
|
||||
}
|
||||
|
||||
$cli = new PhpMyAdmin\SqlParser\Utils\CLI();
|
||||
exit($cli->runHighlight());
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$found) {
|
||||
die(
|
||||
"You need to set up the project dependencies using the following commands:" . PHP_EOL .
|
||||
"curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
|
||||
"php composer.phar install" . PHP_EOL
|
||||
);
|
||||
}
|
||||
|
||||
$cli = new PhpMyAdmin\SqlParser\Utils\CLI();
|
||||
exit($cli->runLint());
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (! $found) {
|
||||
die(
|
||||
"You need to set up the project dependencies using the following commands:" . PHP_EOL .
|
||||
"curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
|
||||
"php composer.phar install" . PHP_EOL
|
||||
);
|
||||
}
|
||||
|
||||
$cli = new PhpMyAdmin\SqlParser\Utils\CLI();
|
||||
exit($cli->run());
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$found) {
|
||||
die(
|
||||
"You need to set up the project dependencies using the following commands:" . PHP_EOL .
|
||||
"curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
|
||||
"php composer.phar install" . PHP_EOL
|
||||
);
|
||||
}
|
||||
|
||||
$cli = new PhpMyAdmin\SqlParser\Utils\CLI();
|
||||
exit($cli->runTokenize());
|
||||
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"name": "phpmyadmin/sql-parser",
|
||||
"description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": ["sql", "lexer", "parser", "analysis", "sql syntax highlighter", "sql lexer", "sql tokenizer", "sql parser", "sql linter", "query linter"],
|
||||
"homepage": "https://github.com/phpmyadmin/sql-parser",
|
||||
"authors": [
|
||||
{
|
||||
"name": "The phpMyAdmin Team",
|
||||
"email": "developers@phpmyadmin.net",
|
||||
"homepage": "https://www.phpmyadmin.net/team/"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/phpmyadmin/sql-parser/issues",
|
||||
"source": "https://github.com/phpmyadmin/sql-parser"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"type": "other",
|
||||
"url": "https://www.phpmyadmin.net/donate/"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^7.2 || ^8.0",
|
||||
"symfony/polyfill-mbstring": "^1.3",
|
||||
"symfony/polyfill-php80": "^1.16"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpbench/phpbench": "^1.1",
|
||||
"phpmyadmin/coding-standard": "^3.0",
|
||||
"phpmyadmin/motranslator": "^4.0 || ^5.0",
|
||||
"phpstan/extension-installer": "^1.1",
|
||||
"phpstan/phpstan": "^1.9.12",
|
||||
"phpstan/phpstan-phpunit": "^1.3.3",
|
||||
"phpunit/phpunit": "^8.5 || ^9.6",
|
||||
"psalm/plugin-phpunit": "^0.16.1",
|
||||
"vimeo/psalm": "^4.11",
|
||||
"zumba/json-serializer": "~3.0.2"
|
||||
},
|
||||
"conflict": {
|
||||
"phpmyadmin/motranslator": "<3.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-mbstring": "For best performance",
|
||||
"phpmyadmin/motranslator": "Translate messages to your favorite locale"
|
||||
},
|
||||
"bin": [
|
||||
"bin/highlight-query",
|
||||
"bin/lint-query",
|
||||
"bin/sql-parser",
|
||||
"bin/tokenize-query"
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PhpMyAdmin\\SqlParser\\": "src"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"PhpMyAdmin\\SqlParser\\Tests\\": "tests"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"phpcbf": "@php phpcbf",
|
||||
"phpcs": "@php phpcs",
|
||||
"phpstan": "@php phpstan analyse",
|
||||
"psalm": "@php psalm --no-diff",
|
||||
"phpunit": "@php phpunit --color=always",
|
||||
"phpbench": "@php phpbench run tests/benchmarks --report=aggregate",
|
||||
"test": [
|
||||
"@phpcs",
|
||||
"@phpstan",
|
||||
"@psalm",
|
||||
"@phpunit"
|
||||
],
|
||||
"update:baselines": [
|
||||
"@php phpstan analyse --generate-baseline",
|
||||
"@php psalm --set-baseline=psalm-baseline.xml"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"composer/package-versions-deprecated": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||
"phpstan/extension-installer": true
|
||||
}
|
||||
},
|
||||
"archive": {
|
||||
"exclude": [
|
||||
"/tests",
|
||||
"/phpunit.xml.dist"
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
+277
@@ -0,0 +1,277 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Afrikaans <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/af/>\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Nog nie geimplimenteer nie."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"’n Nuwe verklaring is gevind, maar geen afbakening tussen dit en die vorige "
|
||||
"een nie."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Ontbrekende komma voor die aanvang van 'n nuwe wysigingsbewerking."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Onherkenbare wysigingsbewerking."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d waardes is verwag, maar gevind %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "'n Openingshakie gevolg deur 'n stel waardes is verwag."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "'n Opening-hakie is verwag."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Onverwagte sleutelwoord."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Onverwagte einde van CASE-uitdrukking"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Potensiële duplikaat-alias van CASE-uitdrukking."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "'n Alias wat na AS verwag word, maar gekry het "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "'n Alias is voorheen gevind."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "'n Alias is na AS verwag."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"'n Simboolnaam is verwag! 'n Gereserveerde sleutelwoord kan nie as 'n "
|
||||
"kolomnaam gebruik word sonder agteraanhalings nie."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "'n Simboolnaam is verwag!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "'n Komma of 'n slothakie is verwag."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "’n Sluitingshakie is verwag."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Onherkende datatipe."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "'n Uitdrukking is verwag."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "'n Alias is verwag."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Onverwagte kolletjie."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Onverwagte teken."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "'n Verrekening is verwag."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Onverwagte einde van LOCK-uitdrukking."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Hierdie opsie bots met \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Die ou naam van die tafel was verwag."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Sleutelwoord \"AAN\" was verwag."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Die nuwe naam van die tafel was verwag."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "'n Hernoembewerking is verwag."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Ontbrekende uitdrukking."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Onverwagte karakter."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Verwagte witspasie(s) voor skeidingsteken."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Verwagte afbakening."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Eindkwotasie %1$s is verwag."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Veranderlike naam is verwag."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Onverwagte begin van stelling."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Onherkende stellingtipe."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Geen transaksie is voorheen begin nie."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Hierdie tipe klousule is voorheen ontleed."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Onherkende sleutelwoord."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Sleutelwoord aan die einde van stelling."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Onverwagte ordening van klousules."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Die naam van die entiteit is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "'n Tabelnaam is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Ten minste een kolomdefinisie is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "'n \"TERUGKEER\"-sleutelwoord is verwag."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Hierdie tipe klousule is nie geldig in Multi-table-navrae nie."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Onverwagte einde van LOCK-stelling."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Onverwagte sleutelwoord"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Die naam van die CTE is verwag."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "AS navraag is verwag."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Subnavraag van die CTE is verwag."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Onverwagte einde van die MET CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Onverwagte einde van LOCK-uitdrukking."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Fout"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Navraag dmv Voorbeeld"
|
||||
BIN
Binary file not shown.
+280
@@ -0,0 +1,280 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "لم تنفذ بعد."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "تم العثور على بيان جديد، ولكن لا يوجد محدد بينه وبين سابقه ."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "فاصلة مفقودة قبل بدء عملية تغيير جديدة."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "عملية تغيير غير معروفة."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "تم توقع قيم %1$d ، ولكن تم العثور على %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "من المتوقع وجود قوس فتح متبوعا بمجموعة من القيم."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "من المتوقع وجود قوس مفتوح."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "كلمة رئيسية غير متوقعة."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "نهاية غير متوقعة من التعبير"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "من المحتمل وجود مُسَمَّى إضافي متكرر لعبارة CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "يتوقع وضع مُسَمَّى إضافي بعد AS لكن تم وضع "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "اسم مستعار موجود مسبقا ."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "كان من المتوقع اسم مستعار بعد AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"كان من المتوقع وجود اسم رمز! لا يمكن استخدام كلمة رئيسية محجوزة كاسم عمود "
|
||||
"بدون علامات اقتباس."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "كان من المتوقع اسم رمز!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "من المتوقع وجود فاصلة أو قوس إغلاق."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "من المتوقع وجود قوس مغلق."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "نوع بيانات غير معروف."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "متوقع وجود تعبير ."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "كان من المتوقع وجود اسم مستعار."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "نقطة غير متوقعة."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "رمز غير متوقع."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "متوقع حدوث تعويض ."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "نهاية غير متوقعة لعبارة LOCK ."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "يتعارض هذا الخيار مع“%1$s“ ."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "متوفع وجود اسم الجدول القديم ."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "متوقع وجود الكلمة الرئيسية \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "متوقع وجود الاسم الجديد للجدول ."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "نتوقع منك اعادة تسمية ."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "تعبير مفقود ."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "حرف غير متوقع ."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "المسافات البيضاء المتوقعة قبل المحدد."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "المحدد المتوقع."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "نتوقع إنهاء الاقتباس %1$s ."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "متوقع منك اسم متغير ."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "بداية غير متوقعة للبيان."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "نوع بيان غير معروف."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "لم يتم بدء أي معاملة من قبل."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "تم تحليل هذا النوع من العبارات سابقا."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "كلمة محجوزة غير معروفة."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "الكلمة المفتاحية في نهاية البيان."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ترتيب غير متوقع للبنود."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "نتوفع منك ادراج اسم الكيان ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "نتوقع تسمية الجدول ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "نتوقع منك تعريف عمود علي الاقل ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "كانت الكلمة الرئيسية \"رجوع\" متوقعة."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "هذا النوع من الشرط غير صالح في الاستعلامات متعددة الجداول."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "نهاية غير متوقعة لبيان LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "كلمة أساسية غير متوقعة"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "نتوفع منك ادراج اسم الكيان ."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "كانت الكلمة الرئيسية \"رجوع\" متوقعة."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "نتوفع منك ادراج اسم الكيان ."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of LOCK statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "نهاية غير متوقعة لبيان LOCK."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "نهاية غير متوقعة لتعبير LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "الخطأ رقم 1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "خطأ صارم"
|
||||
BIN
Binary file not shown.
+283
@@ -0,0 +1,283 @@
|
||||
# phpMyAdmin SQL parser translation.
|
||||
# Copyright (C) 2015 - 2017 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the SQL parser package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-03-01 15:39+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Asturian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/ast/>\n"
|
||||
"Language: ast\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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-rc\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Entá nun se desendolcó."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Alcontróse una nueva declaración, pero nun hai llendador ente ésta y la "
|
||||
"anterior."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operación d'alteración desconocida."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Esperábense %1$d valores, pero s'alcontraron %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Esperábase un corchete d'apertura siguíu por un conxuntu de valores."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Esperábase un corchete d'apertura."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Palabra clave inesperada."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperáu d'espresión CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Final inesperáu d'espresión CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Alcontróse anteriormente un alcuñu."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Esperábase un alcuñu."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Esperábase un nome de símbolu. Una palabra acutada nun puede usase como nome "
|
||||
"de columna ensin comines."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Esperábase un nome de símbolu"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Esperábase una coma o un corchete de zarru."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Esperábase un corchete de zarru."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipu de datu desconocíu."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Esperábase una espresión."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Esperábase un alcuñu."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Puntu inesperáu."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Esperábase un desplazamientu."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Final inesperáu d'espresión LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Esta opción fai conflictu con \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Esperábase'l nome anterior de la tabla."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Esperábase la palabra clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Esperábase'l nome nuevu de la tabla."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Esperábase una operación de cambiu de nome."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Falta una espresión."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Carácter inesperáu."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Esperábase espaciu(os) en blancu antes d'un llendador."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Esperábase un llendador."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Esperábense les comines de final %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Esperábase un nome de variable."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Final inesperáu d'espresión LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Palabra clave inesperada"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The new name of the table was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Esperábase'l nome nuevu de la tabla."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Keyword \"TO\" was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Esperábase la palabra clave \"TO\"."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Keyword \"TO\" was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Esperábase la palabra clave \"TO\"."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Final inesperáu d'espresión CASE"
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Final inesperáu d'espresión LOCK."
|
||||
BIN
Binary file not shown.
+298
@@ -0,0 +1,298 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2017-11-25 14:44+0000\n"
|
||||
"Last-Translator: Sevdimali İsa <sevdimaliisayev@mail.ru>\n"
|
||||
"Language-Team: Azerbaijani <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.18-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Hələki tətbiq edilməyib."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Kateqoriya olunmamış alter əməliyyatı."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d gözlənilirdi, amma %2$d tapıldı."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Mötərizə ardından bir qrup dəyər gözlənilməkdə."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Gözlənilməyən açar söz."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Gözlənməz Böyük/Kiçik hərf ifadəsi sonu"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Gözlənməz Böyük/Kiçik hərf ifadəsi sonu"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Daha öncə alias tapıldı."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Alias gözlənilirdi."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Bir simvol adı gözlənilirdi! Dırnaqsız reserv sözlər sütün adı olaraq "
|
||||
"istifadə edilə bilməz."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Simvol adı gözlənilirdi!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Vergül və ya mötərizə gözlənilirdi."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Mötərizə gözlənilirdi."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tanınmayan verilən tipi."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "İfadə gözlənilməkdə."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Alias gözlənilirdi."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Gözlənilməz nöqtə."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Gözlənilməyən token."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Gözlənməz Böyük/Kiçik hərf ifadəsi sonu"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Bu seçim %1$s bununla zidiyyət təşkil edir."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Cədvəlin köhnə adı gözlənilirdi."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "\"TO\" açar sözü gözlənilirdi."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Cədvəlin yeni adı gözlənilirdi."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Yenidən adlandırma əməliyyatı gözlənilirdi."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Əksik ifadə."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Gözlənilməyən simvol."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "%1$s hadisəsi yaradıldı."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Dəyişən adı gözlənilirdi."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "İfadənin gözlənilməz başlanğıcı."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tanınmayan ifadə tipi."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Daha öncə tranzaksiya başladılmadı."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Tanınmayan açarsöz."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "İfadənin sonunda açar söz."
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Cədvəlin başına"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Açıq olan cədvəl sayı."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Cədvəl adı gözlənilirdi."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Ən az bir sütün açıqlaması gözlənilirdi."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "\"RETURNS\" açarsözü gözlənilirdi."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "İfadənin gözlənilməz başlanğıcı."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected keyword."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Gözlənilməyən açar söz."
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Açıq olan cədvəl sayı."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "\"RETURNS\" açarsözü gözlənilirdi."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Açıq olan cədvəl sayı."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "İfadənin gözlənilməz başlanğıcı."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Unexpected end of CASE expression"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Gözlənməz Böyük/Kiçik hərf ifadəsi sonu"
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "xəta #1"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query error"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Sorğu xətası"
|
||||
BIN
Binary file not shown.
+285
@@ -0,0 +1,285 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Belarusian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/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.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Яшчэ не рэалізавана."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Знойдзена новае сцвярджэнне, але між ім і папярэднім няма раздзяляльніка."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Адсутнічае коска перад пачаткам новай аперацыі alter."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Нераспазнаная аперацыя змены."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Чакалася %1$d значэнняў, а знойдзена %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Чакаліся адкрывальная дужка і спіс значэнняў."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Чакалася адкрывальная дужка."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Нечаканае ключавое слова."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Нечаканы канец CASE-выразу"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Патэнцыйны дублікат псеўданіма ў CASE-выразе."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Псеўданім быў знайдзены раней."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Чакаўся псеўданім."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Чакалася назва сімвала! Зарэзерваваныя ключавыя словы нельга выкарыстоўваць "
|
||||
"як назву слупка без двукоссяў."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Чакалася назва сімвала!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Чакалася коска або закрывальная дужка."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Чакалася закрывальная дужка."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Нераспазнаны тып даных."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Чакаўся выраз."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Чакаўся псеўданім."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Нечаканая кропка."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Нечаканы знак."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Чакаўся соступ."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Нечаканы канец LOCK-выразу."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Гэты параметр канфліктуе з «%1$s»."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Чакалася старая назва табліцы."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Чакалаcя ключавое слова «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Чакалася новая назва табліцы."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Чакалася аперацыя перайменавання."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Адсутнічае выраз."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Нечаканы сімвал."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Чакаўся прагал(ы) перад раздзяляльнікам."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Чакаецца раздзяляльнік."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Чакалася канцавое двукоссе %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Чакалася назва зменнай."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Нечаканы пачатак сцвярджэння."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Нераспазнаны тып сцвярджэння."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Няма папярэдне запушчанай транзакцыі."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Гэты тып выразу быў папярэдне разабраны."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Нераспазнанае ключавое слова."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Ключавое слова ў канцы сцвярджэння."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Нечаканы парадак выразаў."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Чакалася назва сутнасці."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Чакалася назва табліцы."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Чакалася азначэнне прынамсі аднаго слупка."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Чакалася ключавое слова «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Гэты тып выразу не правільны для мультытаблічных запытаў."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Нечаканы пачатак сцвярджэння."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Нечаканае ключавое слова"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Чакалася назва сутнасці."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Чакалася ключавое слова «RETURNS»."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Чакалася назва сутнасці."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Нечаканы пачатак сцвярджэння."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Нечаканы канец LOCK-выразу."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "памылка #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "недапушчальная памылка"
|
||||
BIN
Binary file not shown.
+288
@@ -0,0 +1,288 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Belarusian (latin) <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/sql-parser/be_Latn/>\n"
|
||||
"Language: be@latin\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.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Jašče nie realizavana."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Znojdziena novaje scviardžennie, alie miž im i papiarednim niama "
|
||||
"razdzialiaĺnika."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Nieraspaznanaja apieracyja zmieny."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Čakalasia %1$d značenniaŭ, a znojdziena %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Čakalisia adkryvaĺnaja dužka i spis značenniaŭ."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Čakalasia adkryvaĺnaja dužka."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Niečakanaje kliučavoje slova."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Niečakany kaniec CASE-vyrazu"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Niečakany kaniec CASE-vyrazu"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Psieŭdanim byŭ znajdzieny raniej."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Čakaŭsia psieŭdanim."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Čakalasia nazva simvala! Zareziervavanyja kliučavyja slovy nieĺha "
|
||||
"vykarystoŭvać jak nazvu slupka biez dvukossiaŭ."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Čakalasia nazva simvala!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Čakalasia koska abo zakryvaĺnaja dužka."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Čakalasia zakryvaĺnaja dužka."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Nieraspaznany typ danych."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Čakaŭsia vyraz."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Čakaŭsia psieŭdanim."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Niečakanaja kropka."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Niečakany znak."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Čakaŭsia sostup."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Niečakany kaniec LOCK-vyrazu."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Hety paramietr kanfliktuje z «%1$s»."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Čakalasia staraja nazva tablicy."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Čakalacja kliučavoje slova «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Čakalasia novaja nazva tablicy."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Čakalasia apieracyja pierajmienavannia."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Adsutničaje vyraz."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Niečakany simval."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Čakaŭsia prahal(y) pierad razdzialiaĺnikam."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Čakajecca razdzialiaĺnik."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Čakalasia kancavoje dvukossie %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Čakalasia nazva zmiennaj."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Niečakany pačatak scviardžennia."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Nieraspaznany typ scviardžennia."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Niama papiarednie zapuščanaj tranzakcyi."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Hety typ vyrazu byŭ papiarednie razabrany."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Nieraspaznanaje kliučavoje slova."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Kliučavoje slova ŭ kancy scviardžennia."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Niečakany paradak vyrazaŭ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Čakalasia nazva sutnasci."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Čakalasia nazva tablicy."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Čakalasia aznačennie prynamsi adnaho slupka."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Čakalasia kliučavoje slova «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Hety typ vyrazu nie praviĺny dlia muĺtytabličnych zapytaŭ."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Niečakany pačatak scviardžennia."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Niečakanaje kliučavoje slova"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Čakalasia nazva sutnasci."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Čakalasia kliučavoje slova «RETURNS»."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Čakalasia nazva sutnasci."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Niečakany pačatak scviardžennia."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Niečakany kaniec LOCK-vyrazu."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "pamylka #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "niedapuščaĺnaja pamylka"
|
||||
BIN
Binary file not shown.
+323
@@ -0,0 +1,323 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2020-10-14 10:02+0000\n"
|
||||
"Last-Translator: Пламен <plamen_mbx@yahoo.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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.3-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Все още не е внедрена."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Беше открито ново изявление, но не и разграничител между него и предишния."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Липсва запетая пред началото на нова операция alter."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Неизвестна промяна на операцията."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d стойности бяха очаквани, но бяха намерени %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Очаква се отваряща скоба последвана от списък стойности."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Очаква се отваряща скоба."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Неочаквана ключова дума."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Неочакван край на израза CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Потенциален дублиращ се псевдоним на изявата на CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Псевдоним, очакван след AS, но получи "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Преди това е открит псевдоним."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Псевдоним се очакваше след AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Очакваше се име на символ! Запазената ключова дума не може да се използва "
|
||||
"като име на колона без обратни кавички."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Очаква се име на символ!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Очакваше се запетая или затваряща скоба."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "Няма върнати редове"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Няма избрани таблици."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected token."
|
||||
msgstr "Неочаквани знаци на ред %s."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Редът беше изтрит"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "като регулярен израз"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "Неочаквани знаци на ред %s."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Събитието %1$s беше създадено."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Шаблон за име на таблица"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Шаблон за име на таблица"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Редът беше изтрит"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Неочаквани знаци на ред %s."
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Няма върнати редове"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "В началото на таблицата"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "грешки."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Събиране на грешки"
|
||||
BIN
Binary file not shown.
+329
@@ -0,0 +1,329 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2021-03-02 18:02+0000\n"
|
||||
"Last-Translator: Nokib Sarkar <nokibsarkar@gmail.com>\n"
|
||||
"Language-Team: Bengali <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/bn/>\n"
|
||||
"Language: bn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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.5\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "এখনো বাস্তবায়িত হয়নি।"
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"একটি নতুন বিবৃতি পাওয়া গেছে, তবে এটি এবং পূর্ববর্তীটির মধ্যে কোনও বিভাজক নেই।"
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "নতুন অল্টার অপারেশন শুরুর আগে কমা খুঁজে পাওয়া যায় নি।"
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।"
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "কোন রো নির্বাচন করা হয় নাই"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected token."
|
||||
msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।"
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "রো টি মুছা হয়েছে।"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "রেগুলার এক্সপ্রেশনের মত"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।"
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "ইভেন্ট %1$s তৈরী হয়েছে।"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "রো টি মুছা হয়েছে।"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "কোন রো নির্বাচন করা হয় নাই"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "ভুলসমূহ"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "ভুলসমূহ জড়ো"
|
||||
BIN
Binary file not shown.
+318
@@ -0,0 +1,318 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2011 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2014-03-28 11:07+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Breton <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"br/>\n"
|
||||
"Language: br\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 1.9-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An alias was expected."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The bookmark has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Diverket eo bet ar sined."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "evel un droienn reoliek"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Routine %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Krouet eo bet an argerzh %1s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The bookmark has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Diverket eo bet ar sined."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Routine %1$s has been created."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Krouet eo bet an argerzh %1s."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Number of inserted rows"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Fazi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Dastum ar fazioù"
|
||||
BIN
Binary file not shown.
+264
@@ -0,0 +1,264 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2015 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2015.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\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/"
|
||||
"brx/>\n"
|
||||
"Language: brx\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 2.4-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+309
@@ -0,0 +1,309 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:31+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bosnian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/bs/>\n"
|
||||
"Language: bs\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 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An expression was expected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Red je obrisan"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Tabela %s je odbačena"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Red je obrisan"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Tabela %s je odbačena"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Na početku tabele"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Greška"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query type"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Vrsta upita"
|
||||
BIN
Binary file not shown.
+287
@@ -0,0 +1,287 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Encara no implementat."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"S'ha trobat una sentència nova, però no hi ha cap delimitador entre aquesta "
|
||||
"i l'anterior."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operació de modificació no reconeguda."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "S'esperaven %1$d valors, però s'han trobat %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "S'esperava un claudàtor d'obertura seguit per un conjunt de valors."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "S'esperava un claudàtor d'obertura."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Paraula clau no esperada."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperat d'expressió CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Final inesperat d'expressió CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "S'ha trobat un àlies anteriorment."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "S'esperava un àlies."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"S'esperava un nom de símbol! No es pot utilitzar una paraula clau reservada "
|
||||
"com a nom de columna sense les cometes invertides."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "S'esperava un nom de símbol!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "S'esperava una coma o un claudàtor de tancament."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "S'esperava un claudàtor de tancament."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipus de dades desconegut."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "S'esperava una expressió."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "S'esperava un àlies."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Punt inesperat."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Testimoni no esperat."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "S'esperava un desplaçament."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Final inesperat d'expressió LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Aquesta opció està en conflicte amb \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "S'esperava el nom antic de la taula."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "S'esperava la paraula clau \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "S'esperava el nom nou de la taula."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "S'esperava una operació de canvi de nom."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expressió no trobada."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caràcter no esperat."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "S'esperaven espais en blanc abans del delimitador."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "S'esperava un delimitador."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "S'esperava una cometa de tancament %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "S'esperava un nom de variable."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Començament no esperat de sentència."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipus de sentència no reconegut."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "No s'ha iniciat cap transacció anteriorment."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Aquest tipus de clàusula s'ha analitzat anteriorment."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Paraula clau no reconeguda."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Paraula clau al final de la sentència."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ordre de condicions no esperat."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "S'esperava el nom de l'entitat."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "S'esperava un nom de taula."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "S'esperava al menys la definició d'una columna."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "S'esperava una paraula clau \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Aquest tipus de clàusula no és vàlid en consultes de diverses taules."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Començament no esperat de sentència."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Paraula clau no esperada"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "S'esperava el nom de l'entitat."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "S'esperava una paraula clau \"RETURNS\"."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "S'esperava el nom de l'entitat."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Començament no esperat de sentència."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Final inesperat d'expressió LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "error #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Error estricte"
|
||||
BIN
Binary file not shown.
+310
@@ -0,0 +1,310 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2012 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-11-20 15:47+0000\n"
|
||||
"Last-Translator: Dana Akram <dana@kurdish.one>\n"
|
||||
"Language-Team: Kurdish Sorani <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/master/ckb/>\n"
|
||||
"Language: ckb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "هیچ ڕیزێک هەڵنەبژێراوە"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "ڕیزەکە سڕایەوە"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "Versions"
|
||||
msgid "Missing expression."
|
||||
msgstr "وەشانەکان"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "ڕیزەکە سڕایەوە"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "هیچ ڕیزێک هەڵنەبژێراوە"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Number of rows"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "هەڵە"
|
||||
BIN
Binary file not shown.
+275
@@ -0,0 +1,275 @@
|
||||
#
|
||||
# Michal Čihař <michal@cihar.com>, 2010, 2011, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2022-10-25 08:02+0000\n"
|
||||
"Last-Translator: mixeros <mixer@mixercz.cz>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/cs/>\n"
|
||||
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Zatím není implementováno."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "Byl nalezen nový výraz bez oddělovače od předchozího výrazu."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Chybí čárka před začátkem nové operace změny."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Nerozpoznaná operace změny."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Byly nalezeny %2$d hodnoty, namísto očekávaných %1$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Byla očekávána úvodní závorka následovaná sadou hodnot."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Byla očekávána úvodní závorka."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Neočekávané klíčové slovo."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Neočekávaný konec CASE výrazu"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Možný duplicitní alias CASE výrazu."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Za klíčovým slovem AS byl očekáván alias, ale bylo nalezeno "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Byl nalezen alias."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Za klíčovým slovem AS byl očekáván alias."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Byl očekáván název symbolu! Vyhrazené klíčové slovo nelze použít jako název "
|
||||
"sloupce bez zpětných apostrofů."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Byl očekáván název symbolu!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Byla očekávána čárka nebo koncová závorka."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Byla očekávána koncová závorka."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Nerozpoznaný datový typ."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Byl očekáván výraz."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Byl očekáván alias."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Neočekávaná tečka."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Neočekávaný token."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Byl očekáván offset."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Neočekávaný konec LOCK výrazu."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Tato volba koliduje s \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Byl očekáván starý název tabulky."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Bylo očekáváno klíčové slovo \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Byl očekáván nový název tabulky."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Byla očekávána operace přejmenování."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Chybí výraz."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Neočekávaný znak."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Před oddělovačem byla očekávána mezera."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Byl očekáván oddělovač."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Byly očekávány koncové uvozovky %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Byl očekáván název proměnné."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Neočekávaný začátek výrazu."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Nerozpoznaný typ výrazu."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Nebyla zahájena žádná transakce."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Pro tento typ klauzule proběhlo parsování."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Nerozpoznané klíčové slovo."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Klíčové slovo na konci výrazu."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Neočekávané pořadí klauzulí."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Byl očekáván název entity."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Byl očekáván název tabulky."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Byla očekávána alespoň jedna definice sloupce."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Bylo očekáváno klíčové slovo \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Tento typ klauzule je ve vícetabulkových dotazech neplatný."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Neočekávaný konec LOCK výrazu."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Neočekávané klíčové slovo"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Byl očekáván název CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Bylo očekáváno klíčové slovo AS."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Byl očekáván dílčí dotaz CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Neočekávaný konec WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Neočekávaný konec LOCK výrazu."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "chyba #1"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Sbírat chyby"
|
||||
BIN
Binary file not shown.
+318
@@ -0,0 +1,318 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2010 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:04+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Welsh <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"cy/>\n"
|
||||
"Language: cy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : "
|
||||
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An expression was expected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Cafodd y rhes ei dileu"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "fel mynegiad arferol (regular expression)"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Cafodd y rhes ei dileu"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Show dimension of tables"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Gwall"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Ymholiad"
|
||||
BIN
Binary file not shown.
+288
@@ -0,0 +1,288 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Endnu ikke implementeret."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Et nyt statement blev fundet, men der var ingen adskillelsestegn mellem det "
|
||||
"og det foregående."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Ukendt alter opgave."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d værdier var ventet, men fandt %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "En kantet venstreparentes efterfulgt af et sæt værdier blev forventet."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "En kantet venstreparantes var forventet."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Uventet nøgleord."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Uventet afslutning af CASE udtryk"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Uventet afslutning af CASE udtryk"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Et alias er fundet tidligere."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Et alias var verntet."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Et symbolnavn var ventet! Et reserveret nøgleord kan ikke bruges som et "
|
||||
"feltnavn uden backquotes."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Et symbol var ventet!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Et komma eller lukke parentes var ventet."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "En kantet højreparantes var ventet."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Ukendt datatype."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Et udtryk var ventet."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Et alias var verntet."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Uventet punktum."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Uventet token."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "En forskydning var ventet."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Uventet afslutning af LOCK udtryk."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Denne indstilling er i konflikt med \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Tabellens gamle navn var ventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Nøgleordet \"TO\" var forventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Tabellens nye navn var ventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "En omdøbsopgave var ventet."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Manglende udtryk."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Uventet karakter."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Forventede whitespace(s) før adskillelsestegn."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Forventede adskillelsestegn."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Slut quote %1$s var ventet."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variabelnavn var ventet."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Uventet start på statement."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Ukendt type af statement."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Ingen transaktion er blevet startet tidligere."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Denne type af sætningskonstruktion er tidligere blevet parset."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Ukendt nøgleord."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Nøgleord i slutningen af udtryk."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Uventet clause rækkefølge."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Enhedens navn var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Et tabelnavn var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Mindst en kolonne definition var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Et \"RETURNS\" nøgleord var forventet."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
"Denn type af sætningskonstruktion er ikke gyldig i multitabel forespørgsler."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Uventet start på statement."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Uventet nøgleord"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Enhedens navn var ventet."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Et \"RETURNS\" nøgleord var forventet."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Enhedens navn var ventet."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Uventet start på statement."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Uventet afslutning af LOCK udtryk."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "fejl #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "stringent fejl"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2022-03-19 21:46+0000\n"
|
||||
"Last-Translator: Justin Nogossek <justmegaliga10000@gmail.com>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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.12-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Noch nicht implementiert."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Eine neue Anweisung wurde gefunden, aber kein Trennzeichen zwischen ihm und "
|
||||
"dem vorhergehenden."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Fehlendes Komma vor einer neuen ALTER-Operation."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Unerkannte ALTER-Operation."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d Werte erwartet, aber %2$d gefunden."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
"Eine öffnende Klammer, gefolgt von einer Liste von Werten, wurde erwartet."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Eine öffnende Klammer wurde erwartet."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Unerwartetes Schlüsselwort."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Unerwartetes Ende eines CASE Ausdrucks"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Möglicher doppelter Alias eines CASE Ausdrucks."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Ein Alias wurde nach AS erwartet, aber stattdessen "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Ein Alias wurde zuvor gefunden."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Ein Alias wurde nach AS erwartet."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Ein Symbolname wurde erwartet! Ein reserviertes Schlüsselwort kann nicht "
|
||||
"ohne Backquotes als Tabellenname verwendet werden."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Ein Symbolname wurde erwartet!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Ein Komma oder eine schließende Klammer wurde erwartet."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Eine schließende Klammer wurde erwartet."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Unerkannter Datentyp."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Ein Ausdruck wurde erwartet."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Ein Alias wurde erwartet."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Unerwarteter Punkt."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Unerwartetes Zeichen."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Ein Offset wurde erwartet."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Unerwartetes Ende eines LOCK-Ausdrucks."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Diese Option widerspricht „%1$s“."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Der ursprüngliche Tabellenname wurde erwartet."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Schlüsselwort „TO“ wurde erwartet."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Der neue Tabellenname wurde erwartet."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Eine Umbenennungsoperation wurde erwartet."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Fehlender Ausdruck."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Unerwartetes Zeichen."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Erwartete Whitespace vor dem Trennzeichen."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Erwartete Trennzeichen."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Schließendes Anführungszeichen %1$s wurde erzeugt."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variablenname wurde erwartet."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Unerwarteter Statement-Anfang."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Unerkannte Statement-Typ."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Bisher wurde keine Transaktion gestartet."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Diese Art von Klausel wurde zuvor analysiert."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Unerkanntes Schlüsselwort."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Schlüsselwort am Ende der Anweisung."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Unerwartete Datensatzanforderung."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Der Name der Entität wurde erwartet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Tabellenname wurde erwartet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Mindestens eine Felddefinition wurde erwartet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Ein „RETURNS“-Schlüsselwort wurde erwartet."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Diese Art von Klausel ist in Mehr-Tabellen-Anfragen nicht zulässig."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Unerwartetes Ende einer LOCK-Anweisung."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Unerwartetes Schlüsselwort"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Der Name des CTE wurde erwartet."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Das Schlüsselwort AS wurde erwartet."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Es wurde eine Unterabfrage des CTE erwartet."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Unerwartetes Ende des WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Unerwartetes Ende eines LOCK-Ausdrucks."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Fehler #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "strikter Fehler"
|
||||
BIN
Binary file not shown.
+281
@@ -0,0 +1,281 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Δεν εφαρμόστηκε ακόμα."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Βρέθηκε μια νέα δήλωση, αλλά χωρίς διαχωριστικό μεταξύ της και της "
|
||||
"προηγούμενης."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Λείπει κόμμα πριν από την έναρξη μιας νέας λειτουργίας αλλαγής."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Μη αναγνωρισμένη λειτουργία αλλαγής."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Αναμενόταν %1$d τιμές, αλλά βρέθηκαν %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Αναμενόταν μια ανοιχτή αγκύλη ακολουθούμενη από ένα σύνολο τιμών."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Αναμενόταν μια ανοιχτή αγκύλη."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Μη αναμενόμενη λέξη-κλειδί."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Μη αναμενόμενο τέλος της έκφρασης CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Μη αναμενόμενο τέλος της έκφρασης CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Ένα ψευδώνυμο αναμενόταν μετά το AS αλλά πήρε "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Βρέθηκε μια ετικέτα προηγουμένως."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Ένα ψευδώνυμο αναμενόταν μετά το AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Αναμενόταν ένα όνομα συμβόλου! Μια δεσμευμένη λέξη-κλειδί δεν μπορεί να "
|
||||
"χρησιμοποιηθεί ως όνομα στήλης χωρίς εισαγωγικά."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Αναμενόταν όνομα συμβόλου!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Αναμενόταν κλείσιμο αγκύλης."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Μη αναγνωρισμένος τύπος δεδομένων."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Αναμενόταν μια έκφραση."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Αναμενόταν μια ετικέτα."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Μη αναμενόμενη τελεία."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Μη αναμενόμενο τεκμήριο."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Αναμενόταν μια αντιστάθμιση."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Μη αναμενόμενο τέλος της έκφρασης LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Αυτή η επιλογή έχει διαίνεξη με το «%1$s»."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Αναμενόταν το παλαιό όνομα του πίνακα."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Αναμενόταν η λέξη-κλειδί «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Αναμενόταν το νέο όνομα του πίνακα."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Αναμενόταν μια λειτουργία μετονομασίας."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Απολεσθείσα έκφραση."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Μη αναμενόμενος χαρακτήρας."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Αναμενόταν λευκό(ά) διάστημα(τα) πριν τον διαχωριστή."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Αναμενόταν διαχωριστής."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Αναμενόταν τελικό εισαγωγικό %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Αναμενόταν όνομα μεταβλητής."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Μη αναμενόμενη έναρξη δήλωσης."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Μη αναγνωρισμένος τύπος δήλωσης."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Αυτός ο τύπος ρύτρας έχει αναλυθεί προηγουμένως."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Μη αναγνωρισμένη λέξη κλειδί."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Λέξη-κλειδί στο τέλος της δήλωσης."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Μη αναμενόμενη ταξινόμηση δηλώσεων."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Αναμενόταν το όνομα της οντότητας."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Αναμενόταν όνομα πίνακα."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Αναμενόταν τουλάχιστον ένας ορισμός πεδίου."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Αυτός ο τύπος ρύτρας δεν είναι έγκυρος σε ερωτήματα πολλαπλών πινάκων."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Μη αναμενόμενο τέλος της δήλωσης LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Μη αναμενόμενη λέξη-κλειδί"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Αναμενόταν το όνομα της οντότητας."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Αναμενόταν το όνομα της οντότητας."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of LOCK statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Μη αναμενόμενο τέλος της δήλωσης LOCK."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Μη αναμενόμενο τέλος της έκφρασης LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "σφάλμα #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "περιορισμένο σφάλμα"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# Automatically generated <>, 2010.
|
||||
# Robert Readman <robert_readman@hotmail.com>, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: English (United Kingdom) <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/sql-parser/en_GB/>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Not implemented yet."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Missing comma before start of a new alter operation."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Unrecognised alter operation."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d values were expected, but found %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "An opening bracket followed by a set of values was expected."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "An opening bracket was expected."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Unexpected keyword."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Unexpected end of CASE expression"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Potential duplicate alias of CASE expression."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "An alias expected after AS but got "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "An alias was previously found."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "An alias was expected after AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"A symbol name was expected! A reserved keyword cannot be used as a column "
|
||||
"name without backquotes."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "A symbol name was expected!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "A comma or a closing bracket was expected."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "A closing bracket was expected."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Unrecognised data type."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "An expression was expected."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "An alias was expected."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Unexpected dot."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Unexpected token."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "An offset was expected."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Unexpected end of LOCK expression."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "This option conflicts with \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "The old name of the table was expected."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Keyword \"TO\" was expected."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "The new name of the table was expected."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "A rename operation was expected."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Missing expression."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Unexpected character."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Expected whitespace(s) before delimiter."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Expected delimiter."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Ending quote %1$s was expected."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variable name was expected."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Unexpected beginning of statement."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Unrecognised statement type."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "No transaction was previously started."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "This type of clause was previously parsed."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Unrecognised keyword."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Keyword at end of statement."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Unexpected ordering of clauses."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "The name of the entity was expected."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "A table name was expected."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "At least one column definition was expected."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "A \"RETURNS\" keyword was expected."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "This type of clause is not valid in Multi-table queries."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Unexpected end of LOCK statement."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Unexpected keyword"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "The name of the CTE was expected."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "AS keyword was expected."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Subquery of the CTE was expected."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Unexpected end of the WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Unexpected end of LOCK expression."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "error #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "strict error"
|
||||
BIN
Binary file not shown.
+266
@@ -0,0 +1,266 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2014 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2014.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2016-12-21 15:58+0000\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Esperanto <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/eo/>\n"
|
||||
"Language: eo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.10\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "eraro #1"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2022-04-19 18:11+0000\n"
|
||||
"Last-Translator: Cristian Alexander Avila González <ag089222@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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.12-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Aún no implementado."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Se encontró una nueva declaración, pero no hay delimitador entre éste y el "
|
||||
"anterior."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Falta la coma antes de comenzar la operación de modificación."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operación de modificación desconocida."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Se esperaban %1$d valores, pero encontró %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
"Se esperaba un corchete de apertura seguido por un conjunto de valores."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Se esperaba un corchete de apertura."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Palabra clave inesperada."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperado de expresión CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Posible alias duplicado de la expresión CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Un alias se esperaba tras AS pero se obtiene "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Se encontró anteriormente un alias."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Se esperaba un alias después de AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"¡Se esperaba un nombre de símbolo! Una palabra reservada no puede usarse "
|
||||
"como nombre de columna sin comillas."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "¡Se esperaba un nombre de símbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Se esperaba una coma o un corchete de cierre."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Se esperaba un corchete de cierre."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipo de dato desconocido."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Se esperaba una expresión."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Se esperaba un alias."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Punto inesperado."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Símbolo (token) inesperado."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Se espera un desplazamiento."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Final inesperado de la expresión LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Esta opción tiene conflictos con \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Se esperaba el nombre anterior de la tabla."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Se esperaba la palabra clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Se esperaba el nuevo nombre de la tabla."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Se esperaba un cambio de nombre."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expresión desaparecida."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caracter inesperado."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Espacio(s) en blanco esperado(s) antes de delimitador."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Delimitador esperado."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Se esperaba terminar la cita %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Se esperaba el nombre de la variable."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Comienzo inesperado de declaración."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipo de declaración desconocida."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Ninguna operación se inició anteriormente."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Este tipo de cláusula se analizó previamente."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Palabra clave no reconocida."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Palabra clave al final de la sentencia."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Orden inesperado de condiciones."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Se esperaba el nombre de la entidad."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Se esperaba un nombre de tabla."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Se esperaba la definición de al menos una columna."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Se esperaba una palabra \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Este tipo de cláusula no es válida en consultas multi-tabla."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Fin inesperado de la instrucción LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Palabra clave inesperada"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Se esperaba el nombre del CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Se esperaba la palabra clave AS."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Se esperaba subconsulta del CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Final inesperado del CON CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Final inesperado de la expresión de bloqueo."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "error #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "error estricto"
|
||||
BIN
Binary file not shown.
+273
@@ -0,0 +1,273 @@
|
||||
#
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2022-10-20 10:05+0000\n"
|
||||
"Last-Translator: Kristjan Räts <kristjanrats@gmail.com>\n"
|
||||
"Language-Team: Estonian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/et/>\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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.2-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Hetkel veel rakendamata."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "Leiti uus lause, kuid selle ja talle järgneva vahelt puudub eraldaja."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Uue ALTER operatsiooni eest puudub koma."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Tundmatu ALTER operatsioon."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Oodati %1$d väärtust, kuid leiti %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Oodati avanevat sulgu, millele järgnevad väärtused."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Oodati avanevat sulgu."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Ootamatu võtmesõna."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Ootamatu CASE lause lõpp"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Võimalik topelt alias CASE lauses."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Fraasi AS järel oodati aliast, kuid leiti "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Eelnevalt leiti alias."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Fraasi AS taha oodati aliast."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Oodati sümboli nime! Reserveeritud võtmesõna saab kasutada veeru nimena "
|
||||
"ainult siis, kui ta on ühekordsete tagurpidi jutumärkide vahel."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Oodati sümboli nime!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Oodati koma või lõpetavat sulgu."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Oodati lõpetavat sulgu."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tundmatu andmetüüp."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Oodati avaldist."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Oodati aliast."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Ootamatu punkt."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Ootamatud märk."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Oodati nihet."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Ootamatu LOCK lause lõpp."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "See säte põhjustab konflikti sättega \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Oodati tabeli vana nime."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Oodati võtmesõna \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Oodati tabeli uut nime."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Oodati ümbernimetamist."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Avaldis puudub."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Ootamatu sümbol."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Oodati eraldajale eelnevat tühemikku."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Oodati eraldajat."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Oodati lõpetavat sümbolit %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Oodati muutuja nime."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Ootamatu lause algus."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tundmatut tüüpi lause."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Transaktsiooni ei olnud eelnevalt alustatud."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Sellist tüüpi klausel parsiti eelnevalt."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Tundmatu võtmesõna."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Võtmesõna lause lõpus."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ootamatu lausete järjestus."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Oodati olemi nime."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Oodati tabeli nime."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Oodati vähemalt ühe veeru kirjeldust."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Oodati võtmesõna \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Sellist tüüpi klausel ei ole mitme tabeli päringus kehtiv."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Ootamatu LOCK lause lõpp."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Ootamatu võtmesõna"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Oodati CTE nime."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Oodati võtmesõna \"AS\"."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Oodati CTE alampäringut."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Ootamatu WITH CTE lõpp."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Ootamatu LOCK lause lõpp."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "viga #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "otsene viga"
|
||||
BIN
Binary file not shown.
+308
@@ -0,0 +1,308 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:26+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Basque <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"eu/>\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An expression was expected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Errenkada ezabatua izan da"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "adierazpen erregular moduan"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "%s taula ezabatu egin da"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Errenkada ezabatua izan da"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "%s taula ezabatu egin da"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Taularen hasieran"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Errorea"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query type"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Kontsulta mota"
|
||||
BIN
Binary file not shown.
+309
@@ -0,0 +1,309 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Persian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/fa/>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "هنوز پیاده سازی نشده."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "بیانیهی جدیدی یافت شد،اما هیچ محدودیتی قبل و بعد از آن یافت نشد."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "عملیاتِ تغییرِ غیر قابل تشخیص."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "مقادیر %1$d انتظار می رود، اما %2$d یافت شد."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "باید یک براکت آغازین و بعد از آن چند مقدار وجود داشته باشد."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "یک براکت آغازین باید وجود داشته باشد."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "کلمات کلیدی غیرمنتظره."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "پایان غیرمنتظره برای عبارت CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "پایان ناشناخته عبارات."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "هیچ سطری انتخاب نشده است"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "پایان ناشناخته عبارات"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "سطر حذف گرديد"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "بعنوان مبين منظم(as regular expression)"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "جدول %s حذف گرديد"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "سطر حذف گرديد"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "کلمه کلیدی ناشناس"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "هیچ سطری انتخاب نشده است"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "جدول %s حذف گرديد"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "پایان ناشناخته عبارات"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "خطا"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "پرس و جو"
|
||||
BIN
Binary file not shown.
+304
@@ -0,0 +1,304 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Ei vielä toteutettu."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Löydettiin uusi lauseke, muttei erotinta sen ja sitä edeltäneen välillä."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Tunnistamaton \"alter\"-toiminto."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Odotettiin arvoa %1$d , mutta löydettiin %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
#, fuzzy
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Odotettiin avausmerkki ja sitä odotettiin seuraavan arvoja."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Odotettiin avausmerkkiä."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Odottamaton avainsana."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Odottamaton loppu CASE-ilmaisulle"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Odottamaton loppu CASE-ilmaisulle"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Odotettiin aliasta."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Odotettiin symbolin nimeä! Varattua avainsanaa ei voida käyttää palstan "
|
||||
"nimenä ilman lainausmerkkejä."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Odotettiin symbolinimeä!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Odotettiin pilkkua tai sulkumerkkiä."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Odotettiin sulkumerkkiä."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tunnistamaton datatyyppi."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Odotettiin ilmaisua."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Odotettiin aliasta."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Odottamaton piste."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Odottamaton merkki."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Odottamaton loppu LOCK-ilmaisulle."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Odotettiin vanhaa taulunimeä."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Odotettiin uutta taulunimeä."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Odotettiin uudelleennimeämistoimintoa."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "regexp-haku"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Odottamatton merkki."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Odotettiin loppumerkkiä %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Odotettiin muuttujaa."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Taulun alkuun"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Avoinna olevien taulujen määrä."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Taulunimen pohja"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Rivi on nyt poistettu."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Odottamaton avainsana"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Avoinna olevien taulujen määrä."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "An expression was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Odotettiin ilmaisua."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Avoinna olevien taulujen määrä."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Odottamaton loppu LOCK-ilmaisulle."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "virhettä."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Kerää virheet"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Pas encore mis en œuvre."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Un nouvel énoncé a été trouvé, mais il n'y a aucun délimiteur entre celui-ci "
|
||||
"et le précédent."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Virgule manquante avant le début d’une nouvelle opération ALTER."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Opération ALTER non reconnue."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d valeurs étaient attendues, mais %2$d ont été trouvées."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
"Une parenthèse gauche suivie d'un ensemble de valeurs étaient attendus."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Une parenthèse gauche était attendue."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Mot clef inattendu."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Fin inattendue d'une expression CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Potentiel duplicata de l'alias d'expression CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Un alias était attendu après AS mais obtenu : "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Un alias a été constaté précédemment."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Un alias était attendu après AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Un nom de symbole était attendu ! Un mot clé réservé ne peut pas servir "
|
||||
"comme nom de colonne sans les apostrophes inverses."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Un nom de variable était attendu !"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Une virgule ou une parenthèse droite était attendus."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Une parenthèse droite était attendue."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Type de données non reconnu."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Une expression était attendue."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Un alias était attendu."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Point inattendu."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Jeton inattendu."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Un décalage était prévu."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Fin inattendue de l'expression LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Cette option entre en conflit avec « %1$s »."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "L'ancien nom de la table était attendu."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Le mot clé « TO » était attendu."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Le nouveau nom de la table était attendu."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Une opération de renommage était attendue."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expression manquante."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caractère inattendu."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Des espaces ou tabulations étaient attendus avant le délimiteur."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Un délimiteur était attendu."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Un guillemet %1$s était attendu."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Un nom de variable était attendu."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Début d'énoncé inattendu."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Type d'énoncé non reconnu."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Aucune transaction n'a été précédemment démarrée."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Ce type de clause a été analysé précédemment."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Mot clé non reconnu."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Mot clé à la fin de l'énoncé."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Classement inattendu des clauses."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Le nom de l'entité était attendu."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Un nom de table était attendu."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "La définition d'au moins une colonne était attendue."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Le mot clé « RETURNS » était attendu."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Ce type de clause a été analysé précédemment."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Fin inattendue de l'instruction LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Mot clef inattendu"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Le nom du CTE était attendu."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Le mot clé AS était attendu."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Une sous-requête du CTE était attendue."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Fin inattendue du WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Fin inattendue de l'expression LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "erreur #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "erreur stricte"
|
||||
BIN
Binary file not shown.
+293
@@ -0,0 +1,293 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2014 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2014.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\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/"
|
||||
"master/fy/>\n"
|
||||
"Language: fy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "Compression"
|
||||
msgid "Missing expression."
|
||||
msgstr "Kompresje"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Number of tables:"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Oantal tabellen:"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Flater"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query error"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Queryflater"
|
||||
BIN
Binary file not shown.
+330
@@ -0,0 +1,330 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2016-01-17 22:02+0000\n"
|
||||
"Last-Translator: Xosé Calvo <xosecalvo@gmail.com>\n"
|
||||
"Language-Team: Galician <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/gl/>\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
#, fuzzy
|
||||
#| msgid "Iconic table operations"
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operacións de táboas con iconas"
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Hai caracteres inesperados na liña %s."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Non hai ningunha base de datos escollida."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Modelo de nome dos ficheiros"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Non hai ningunha base de datos escollida."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "Non hai ningunha fileira seleccionada"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Non hai ningunha base de datos escollida."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected token."
|
||||
msgstr "Hai caracteres inesperados na liña %s."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "O número de táboas abertas."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "O número de táboas abertas."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Eliminouse a fileira"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "Hai caracteres inesperados na liña %s."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "O acontecemento %1$s foi creado."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Modelo de nome dos ficheiros"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "O número de táboas abertas."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Modelo de nome dos ficheiros"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Eliminouse a fileira"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Hai caracteres inesperados na liña %s."
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "O número de táboas abertas."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Non hai ningunha fileira seleccionada"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "O número de táboas abertas."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "No comezo da táboa"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "erros."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Recoller os erros"
|
||||
BIN
Binary file not shown.
+283
@@ -0,0 +1,283 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2015 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2016.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Gujarati <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/gu/>\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "હજુ સુધી અમલમાં નથી મુકાયુ."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "નવો નિવેદન મળ્યો હતો, પરંતુ તે અને પાછલા એક વચ્ચે કોઈ વિભાજક અક્ષરો નથી મળયા."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "આ ફેરફાર માન્ય નથી."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d આ પ્રકાર ની values અપેક્ષિત હતી, પણ મળ્યું %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "ઓપનિંગ બ્રેકેટ અપેક્ષિત હતું."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "અનપેક્ષિત કીવર્ડ."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An offset was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "ઓફસેટ અપેક્ષિત હતી."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "અલ્પવિરામ અથવા કલોસિંગ બ્રેકેટની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "કલોસિંગ બ્રેકેટની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "અનપેક્ષિત ડેટા પ્રકાર."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "નિવેદનની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "અનપેક્ષિત પૂર્ણ વિરામ."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "ઓફસેટ અપેક્ષિત હતી."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "અનપેક્ષિત અંત LOCK નિવેદન નો."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "ટેબલનુ જૂનું નામ અપેક્ષિત હતુ."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "કીવર્ડ \"TO\" અપેક્ષિત હતો."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected keyword."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "અનપેક્ષિત કીવર્ડ."
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The old name of the table was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "ટેબલનુ જૂનું નામ અપેક્ષિત હતુ."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Keyword \"TO\" was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "કીવર્ડ \"TO\" અપેક્ષિત હતો."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Keyword \"TO\" was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "કીવર્ડ \"TO\" અપેક્ષિત હતો."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "અનપેક્ષિત અંત LOCK નિવેદન નો."
|
||||
BIN
Binary file not shown.
+272
@@ -0,0 +1,272 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-28 03:41+0000\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Language-Team: Hebrew <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "לא מוטמע עדיין."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "נמצא ביטוי חדש, אך לא נמצא מפריד בינו לבין הביטוי הקודם."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "חסר פסיק לפני תחילת פעולת שינוי חדשה."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "פעולת שינוי בלתי מזוהה."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "היו אמורים להיות %1$d ערכים, אך נמצאו %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "היו אמורים להיות סוגריים מרובעים פותחים ואחריהם סדרה של ערכים."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "היו אמורים להיות סוגריים מרובעים פותחים."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "מילת מפתח בלתי צפויה."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "סיום בלתי צפוי לביטוי התניה (CASE)"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "כנראה כינוי כפול לביטוי התניה (CASE)."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "אמור היה להיות כינוי אחרי AS (בשם) אבל במקום נמצא "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "נמצא כינוי בעבר."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "אמור היה להיות כינוי אחרי ה־AS (בשם)."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"אמור היה להיות שם של סמל! אסור להשתמש במילה שמורה בתור שם עמודה ללא סימן "
|
||||
"הטעמה משני (`)."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "אמור היה להיות שם סמל!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "אמורים היו להיות פסיק או סוגריים סוגרים."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "אמורים היו להיות סוגריים סוגרים."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "סוג הנתונים אינו מזוהה."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "אמור היה להיות ביטוי."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "אמור היה להיות כינוי."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "נקודה בלתי צפויה."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "אסימון בלתי צפוי."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "אמור היה להיות היסט."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "סיום בלתי צפוי לביטוי נעילה (LOCK)."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "אפשרות זו סותרת את „%1$s”."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "אמור היה להיות השם הישן של הטבלה."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "אמורה הייתה להיות מילת המפתח „TO” (אל)."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "אמור היה להיות השם החדש של הטבלה."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "אמורה הייתה להיות פעולת שינוי שם."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "ביטוי חסר."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "תו בלתי צפוי."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "אמורים היו להיות רווחים לפני המפריד."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "אמור היה להיות מפריד."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "אמורות היו להיות מירכאות סוגרות %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "אמור היה להיות שם משתנה."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "תחילת הביטוי אינו צפוי."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "סוג המשפט בלתי מזוהה."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "לא החלה העברה בעבר."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "סוג הסעיף הזה כבר נותח בעבר."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "מילת מפתח בלתי מזוהה."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "מילת מפתח בסוף משפט."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "סידור הסעיפים בלתי צפוי."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "אמור היה להיות שם היישות."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "אמור היה להיות שם טבלה."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "אמורה הייתה להיות לפחות הגדרת עמודה אחת."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "אמורה הייתה להיות מילת מפתח „RETURNS” (מחזירה)."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "סוג סעיף זה אינו תקף בשאילתות מרובות טבלאות."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "סיום בלתי צפוי להכרזת נעילה (LOCK)."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "מילת מפתח בלתי צפויה"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "אמור היה להיות שם ביטוי הטבלה השיתופית (CTE)."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "אמורה הייתה להיות מילת המפתח AS (בשם)."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "אמור היה להיות תת־שאילתה של ביטוי טבלה שיתופית (CTE)."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "סיום בלתי צפוי ל־WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "סיום בלתי צפוי לביטוי נעילה."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "שגיאה #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "שגיאת הקפדה"
|
||||
BIN
Binary file not shown.
+302
@@ -0,0 +1,302 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "अभी लागू नहीं किया गया।"
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "एक नया कथन मिला, परंतु पूर्व कथन और नए कथन के बीच कोई सीमांकक नहीं मिला।"
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "नए बदलाव संक्रिया के आरंभ में अल्प विराम नही है।"
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "अमान्य बदलाव संक्रिया।"
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d आपेक्षित था परन्तु %2$d मिला।"
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "एक खुला कोष्ठक आपेक्षित था।"
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "अनापेक्षित बीजशब्द।"
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "CASE वाक्यांश का अनापेक्षित अंत"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "कोइ डाटाबेस नहीं चुना गया है।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "एक प्रतीक नाम आपेक्षित था!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "एक अल्पविराम या एक समापन कोष्ठक अपेक्षित था।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "एक समापन कोष्ठक अपेक्षित था।"
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "आंकड़े का अमान्य प्रकार।"
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "एक वाक्यांश अपेक्षित था।"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "कोइ डाटाबेस नहीं चुना गया है।"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "अनापेक्षित बिंदु।"
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "अनापेक्षित टोकन।"
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "एक सीमांक अपेक्षित था।"
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "LOCK वाक्यांश का अनापेक्षित अंत।"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
#, fuzzy
|
||||
#| msgid "Title of browser window when a table is selected"
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है"
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "रौ को डिलीट कर दिया"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "नियमित अभिव्यक्ति के रूप में"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Table %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "%1$s टेबल बना दिया गया है"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "चर नाम अपेक्षित।"
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "कथन का अनापेक्षित आरंभ।"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "अमान्य कथन प्रकार।"
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "पूर्व में कोई अंतरण आरंभ नहीं किया गया था।"
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "टेबल नाम टेम्पलेट"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "रौ को डिलीट कर दिया"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Title of browser window when a table is selected"
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "An offset was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "एक सीमांक अपेक्षित था।"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "An offset was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "एक सीमांक अपेक्षित था।"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "LOCK वाक्यांश का अनापेक्षित अंत।"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "त्रुटियों"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "त्रुटियों को इकट्ठा करें"
|
||||
BIN
Binary file not shown.
+318
@@ -0,0 +1,318 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:24+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Croatian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/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 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Nema odabrane baze podataka."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Nema odabrane baze podataka."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "Nema odabranih redova"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Nema odabrane baze podataka."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Redak je izbrisan"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "kao regularan izraz"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Table %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Tablica %1$s je izrađena."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Redak je izbrisan"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Nema odabranih redova"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Pri početku tablice"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "errors."
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "greške."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Skupi greške"
|
||||
BIN
Binary file not shown.
+300
@@ -0,0 +1,300 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2016-12-21 15:58+0000\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.10\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Még nincs megvalósítva."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Egy új utasítás található, de nincs elválasztó közte és az előző között."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Felismerhetetlen módosítás művelet."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d értékek voltak elvárva, de %2$d található."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Nyitó kapcsos zárójelet és az azt követő értékeket vártuk."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Nyitó kapcsos zárójelet vártunk."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected token."
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Váratlan jelsor."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Egy álnév korábban már megtalálva."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Egy álnév várt."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Egy szimbólumnév várt!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Egy vessző vagy egy záró zárójel várt."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Záró kapcsos zárójelet vártunk."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Felismerhetetlen adattípus."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Egy kifejezés várt."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Egy álnév várt."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Váratlan pont."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Váratlan jelsor."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Offsetet vártunk."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Ez a lehetőség ütközik ezzel: „%1$s”."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "A tábla régi neve várt."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "\"TO\" kulcsszavat vártunk."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "A tábla új neve várt."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Egy átnevezési művelet várt."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "reguláris kifejezésként"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Váratlan karakter."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "A határoló előtt szóközö(ke)t vártunk."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Határolót vártunk."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "A(z) %1$s záró idézés várt."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Változónév várt."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Felismerhetetlen utasítástípus."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Nem volt korábban elindított tranzakció."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "A kikötés ezen típusa korábban fel lett dolgozva."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Felismerhetetlen kulcsszó."
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "at beginning of table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "a tábla elejénél"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Az entitás neve várt."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Táblanév sablon"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Legalább egy oszlopmeghatározás várt."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "\"RETURNS\" kulcsszavat vártunk."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
#, fuzzy
|
||||
#| msgid "No transaction was previously started."
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Nem volt korábban elindított tranzakció."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected token."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Váratlan jelsor."
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Az entitás neve várt."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "\"RETURNS\" kulcsszavat vártunk."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Az entitás neve várt."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "at beginning of table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "a tábla elejénél"
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "hiba #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "szigorú hiba"
|
||||
BIN
Binary file not shown.
+305
@@ -0,0 +1,305 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2012 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-12-18 18:19+0000\n"
|
||||
"Last-Translator: Andrey Aleksanyants <aaleksanyants@yahoo.com>\n"
|
||||
"Language-Team: Armenian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/hy/>\n"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected character."
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Անսպասելի նշան։"
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Սպասվում էր այլանունը։"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Variable name was expected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Սպասվում էր ստորակետը կամ փակող փակագիծը։"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Սպասվում էր արտահայտությունը։"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Սպասվում էր այլանունը։"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի հին անունը։"
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի նոր անունը։"
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Սպասվում էր վերանվանման գործողությունը։"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "որպես կանոնավոր արտահայտություն"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Անսպասելի նշան։"
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Սպասվում էր %1$s փակող չակերտը։"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Variable name was expected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Սպասվում էր առնվազն մեկ սյունակի սահմանումը։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected character."
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Անսպասելի նշան։"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The new name of the table was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի նոր անունը։"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "An expression was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Սպասվում էր արտահայտությունը։"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The old name of the table was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի հին անունը։"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Unexpected characters on line %s."
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Սխալ"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query error"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Հարցման սխալ"
|
||||
BIN
Binary file not shown.
+285
@@ -0,0 +1,285 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2013 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2013.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Interlingua <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/ia/>\n"
|
||||
"Language: ia\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Ancora non actuate."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"On trovava un nove declaration, ma il non ha alcun demarcator inter isto e "
|
||||
"le previe."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "mancante comma ante initiar un nove operation de alterar."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operation d alteration non recognoscite."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d valores esseva expectate, ma il trovava %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "On expectava un parenthesis aperite sequite per un insimul de valores."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "On expectava un parenthesis aperite."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Un parola clave non expectate."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Un fin inexpectate del expression CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Un potential alias duplicate del expression CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Un alias attendite post AS ma obteneva "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Previemente on trovava un pseudonymo."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "On expectava un pseudonymo AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"On expectava un nomine de symbolo! Un parola clave reservate non pte esser "
|
||||
"usate como nomine de columna sin retro citationes (backquotes)."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "On expectava un nomine de symbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "On expectava un comma o un parentheses claudite."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "On expectava un parenthesis claudite."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Typo de datos non cognoscite."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "On expectava un expression."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "On expectava un alias."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Puncto inexpectate."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Un indicio non expectate."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "On expectava un displaciamento."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Un fin inexpectate del expression LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Iste option conflige con \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "On expectava le vetule nomine de le tabella."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "On expectava le parola clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "On expectava le nove nomine del tabella."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "On expectava un operation de renominar.."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expression mancante."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Un character non expectate."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "On expectava spatio(s) blanc ante le demarcator."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "On expectava demarcator."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "On expectava le fin de citation %1$s ."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "On expectava un nomine de variabile."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Un initio de instruction non expectate."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Typo de declaration non recognoscite."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Necun transaction esseva initiate previemente."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Iste typo de proposition esseva analysate previemente."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Parola clave non recognoscite."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Parola clave al fin del instruction."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Un ordine de clausas non expectate."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "On expectava le nomine del entitate."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "On expectava un nomine de tabella."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "On expectava al minus un definition de columna."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "On expectava le parola clave \"RETURN\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Iste typo de proposition non es valide in query de multi-tabella."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Un initio de instruction LOCK non expectate."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Un parola clave non expectate"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "On expectava le nomine del entitate."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "On expectava le parola clave \"RETURN\"."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "On expectava le nomine del entitate."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of LOCK statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Un initio de instruction LOCK non expectate."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Un fin inexpectate del expression LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "error #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "stricte error"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
"X-Poedit-Basepath: ../../..\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Belum diimplementasikan."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Suatu pernyataan baru ditemukan, tetapi tanpa pembatas antara itu dan "
|
||||
"sebelumnya."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Tidak ada koma sebelum memulai operasi perubahan baru."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operasi ubah tabel (alter) tak dikenal."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Nilai %1$d diharapkan. Namun, ditemukan %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Sebuah kurung buka yang diikuti oleh nilai-nilai diharapkan."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Sebuah kurung buka diharapkan."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Kata kunci tak terduga."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Akhir operasi CASE tak terduga"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Alias potensial duplikat dari ekspresi CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Alias yang diharapkan setelah AS tetapi didapat "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Sebuah alias telah ditemukan sebelumnya."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Sebuah alias diharapkan."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Sebuah nama simbol diharapkan! Kata kunci yang telah diatur tidak dapat "
|
||||
"digunakan sebagai nama kolom tanpa tanda kutip."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Sebuah nama simbol diharapkan!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Sebuah koma atau kurung tutup diharapkan."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Sebuah kurung tutup diharapkan."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipe data tak dikenal."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Sebuah perintah (expression) diharapkan."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Sebuah alias diharapkan."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Titik tak terduga."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Token tak terduga."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Suatu pergeseran (offset) diharapkan."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Akhir ekspresi LOCK tak terduga."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Pilihan ini bertentangan dengan \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Nama lama tabel diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Kata kunci \"TO\" diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Nama baru tabel diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Sebuah operasi ganti nama diharapkan."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Perintah (expression) hilang."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Karakter tak terduga."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Mengharapkan spasi sebelum pembatas."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Mengharapkan pembatas."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Petik akhir %1$s diharapkan."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Nama variabel diharapkan."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Awal pernyataan tak terduga."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Jenis pernyataan tak dikenal."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Tidak ada transaksi yang dimulai sebelumnya."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Jenis klausa ini telah diurai sebelumnya."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Kata kunci tak dikenal."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Kata kunci pada akhir pernyataan."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Pengurutan klausa tak terduga."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Nama entitas diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Sebuah nama tabel diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Setidaknya satu definisi kolom diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Sebuah kata kunci \"RETURNS\" diharapkan."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Jenis klausa ini tidak sah dalam kueri multitabel."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Awal pernyataan tak terduga."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Kata kunci tidak ada"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Nama CTE diharapkan."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "kata kunci AS diharapkan."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Subquery dari CTE diharapkan."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Akhir yang tidak terduga dari WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Akhir ekspresi Lock tak terduga."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "galat #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "galat ketat"
|
||||
BIN
Binary file not shown.
+273
@@ -0,0 +1,273 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Non ancora implementato."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"E' stato trovato un nuovo statement, ma non c'è alcun delimitatore tra il "
|
||||
"nuovo statement e il precedente."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "Virgola assente prima dell'inizio di una nuova operazione alter."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Operazione di modifica non riconosciuta."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Erano attesi %1$d valori, ma ne sono stati trovati %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Era attesa una parentesi aperta seguita da un insieme di valori."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Era attesa una parentesi aperta."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Keyword inaspettata."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Inattesa fine dell'espressione CASE"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "Potenziale alias duplicato dell'espressione CASE."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "Atteso un alias dopo AS ma trovato "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Un alias è stato trovato precedentemente."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Era atteso un alias dopo AS."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Era atteso un nome di simbolo! Un termine riservato non può essere usato "
|
||||
"come nome di un campo senza inserirlo tra backquotes ( ` )."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Era atteso un nome di simbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Era attesa una virgola o una parentesi chiusa."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Era attesa una parentesi chiusa."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipo dati non riconosciuto."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Era attesa un'espressione."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Era atteso un alias."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Segno di punteggiatura \"punto\" inatteso."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Token inatteso."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Era atteso un offset."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "Inattesa fine dell'espressione LOCK."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Questa opzione è in conflitto con \"%1$s\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Era atteso il vecchio nome della tabella."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Era attesa la parola chiave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Era atteso il nuovo nome della tabella."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Era attesa una operazione di rinomina."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Espressione mancante."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Carattere inatteso."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Erano attesi uno o più spazi bianchi prima del delimitatore."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Era atteso un delimitatore."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Era atteso il fine quote %1$s."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Era atteso un nome di variabile."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Inizio di statement inatteso."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipo statement non riconosciuto."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Non è stata iniziata alcuna transazione in precedenza."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Questo tipo di clausola è stata esaminata in precedenza."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Parola chiave non riconosciuta."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Parola chiave alla fine dello statement."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ordinamento di clausole inatteso."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Era atteso il nome dell'entity."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Era atteso un nome di tabella."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Era attesa almeno la definizione di un campo."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Era attesa una parola chiave \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Questo tipo di clausola non è valida nelle query Multi-tabella."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Inattesa fine dello statement LOCK."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Keyword inaspettata"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Era atteso il nome della CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Era attesa la parola chiave AS."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Era attesa una subquery della CTE."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Inattesa fine dell'espressione WITH CTE."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "Inattesa fine dell'espressione LOCK."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "errore #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "errore di tipo strict"
|
||||
BIN
Binary file not shown.
+273
@@ -0,0 +1,273 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "実装されていません。"
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"新しいステートメントが見つかりましたが、その前の文との間に区切り文字がありま"
|
||||
"せん。"
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "新しい ALTER 操作を開始する前にカンマがありません。"
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "認識できない alter 操作。"
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "値 %1$d があるべきですが、 %2$d が見つかりました。"
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "左括弧とそれに続く一連の値があるべきです。"
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "左括弧が必要です。"
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "予期しないキーワードです。"
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "予期しない CASE 式の終了"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "CASE 式でエイリアスが重複している可能性があります。"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "AS の後にエイリアスが必要ですが、取得したものは "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "エイリアスが前に見つかっています。"
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "AS の後にエイリアスが必要です。"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"シンボル名が必要です。 予約語をバッククォートなしでカラム名として使用すること"
|
||||
"はできません。"
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "シンボル名が必要です!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "カンマか閉じ括弧が必要です。"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "閉じる括弧があるべきです。"
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "認識できないデータ形式。"
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "式が必要です。"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "エイリアスが必要です。"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "予期しないドット。"
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "予期しないトークン。"
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "オフセットがあるべきです。"
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "予期しない LOCK 式の終了。"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "このオプションは \"%1$s\" と競合しています。"
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "テーブルの古い名前が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "キーワード \"TO\" が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "テーブルの新しい名前が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "リネーム操作が必要です。"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "式がありません。"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "予期しない文字です。"
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "区切り文字の前に空白が必要です。"
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "区切り文字が必要です。"
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "終端クォート %1$s が必要です。"
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "変数名があるべきです。"
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ここで文を始めることができません。"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "認識されないステートメント形式です。"
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "開始されているトランザクションはありません。"
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "この種類の句は以前に解釈済みです。"
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "認識できないキーワードです。"
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ステートメントの末尾にキーワードがあります。"
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "予期しない節の順序です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "エンティティの名前が予想されていました。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "テーブル名が必要です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "少なくとも 1 つのカラム定義が必要です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "キーワード \"RETURNS\" が必要です。"
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "この句の種類は、複数テーブルクエリでは無効です。"
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "LOCK ステートメントが予期せず終了しました。"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "予期しないキーワード"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "CTE の名前が必要です。"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "キーワード AS が必要です。"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "CTE のサブクエリが必要です。"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "WITH CTE が予期せず終了しました。"
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "予期しない LOCK 式の終了。"
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "エラー #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "厳格なエラー"
|
||||
BIN
Binary file not shown.
+312
@@ -0,0 +1,312 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Georgian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/ka/>\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "An expression was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "An alias was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "სტრიქონი წაიშალა"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "რეგულარული გამოსახულება"
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Table %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Table %1$s has been created."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "სტრიქონი წაიშალა"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Table %1$s has been created."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Table %1$s has been created."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "At Beginning of Table"
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "შეცდომა"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Ignore errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "შეცდომების იგნორირება"
|
||||
BIN
Binary file not shown.
+290
@@ -0,0 +1,290 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2012 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Kazakh <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/kk/>\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"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"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Áli iske asyrylmady."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
"Jańa nusqaý tabyldy, biraq onyń men aldyńǵy bireý arasynda bólgish joq."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "Tanylmaǵan ózgertý áreketi."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d mánderi kútilgen, biraq %2$d tabyldy."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Ashýshy jaqsha, sodan keıin mánder jıyntyǵy kútilgen."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Ashýshy jaqsha kútilgen."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "Kútpegen kilt sóz."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "CASE órneginiń kútpegen sońy"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "CASE órneginiń kútpegen sońy"
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Aldynda búrkenshik aty tabylǵan."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "An alias was expected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Búrkenshik aty kútilgen."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"Tańba aty kútilgen! Saqtalǵan kilt sózdi doǵal ekpindersiz baǵan aty retinde "
|
||||
"paıdalanýǵa bolmaıdy."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Tańba aty kútilgen!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Útir nemese jabushy jaqsha kútilgen."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Jabushy jaqsha kútilgen."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tanylmaǵan derekter túri."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Órnek kútilgen."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Búrkenshik aty kútilgen."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Kútpegen núkte."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "Kútpegen tańbalaýysh."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Yǵysý kútilgen."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "LOCK órneginiń kútpegen sońy."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "Bul opsıa «%1$s» degenmen qaıshy keledi."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Kesteniń eski ataýy kútilgen."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "«TO» kilt sózi kútilgen."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Kesteniń jańa ataýy kútilgen."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Qaıta ataý áreketi kútilgen."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Órnek joq."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Kútpegen tańba."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Bólgishke deıin bosoryn(dar) kútilgen."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Bólgish kútilgen."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "«%1$s» jabýshy tyrnaqshasy kútilgen."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Aınymaly aty kútilgen."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Nusqaýdyń kútpegen bastalýy."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tanylmaǵan nusqaý túri."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Eshbir tranzaksıa aldynda bastalǵan joq."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Bul sóılemdiń túri aldynda taldandy."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Tanylmaǵan kilt sóz."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Nusqaý aıaǵynda kilt sóz."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Kútpegen sóılemder reti."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Nysan aty kútilgen."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Keste aty kútilgen."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Eń keminde bir baǵannyń anyqtamsy kútilgen."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "«RETURNS» kilt sózi kútilgen."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Birneshe keste saýaldarynda bul sóılem tyri jaramsyz."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Nusqaýdyń kútpegen bastalýy."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Kútpegen kilt sóz"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Nysan aty kútilgen."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "A \"RETURNS\" keyword was expected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "«RETURNS» kilt sózi kútilgen."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The name of the entity was expected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Nysan aty kútilgen."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "Nusqaýdyń kútpegen bastalýy."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "LOCK órneginiń kútpegen sońy."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "qate № 1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "qatań qate"
|
||||
BIN
Binary file not shown.
+289
@@ -0,0 +1,289 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2014 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2014.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2017-08-12 15:08+0000\n"
|
||||
"Last-Translator: ប៉ុកណូ រ៉ូយ៉ាល់ <royalpokno68@gmail.com>\n"
|
||||
"Language-Team: Central Khmer <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/km/>\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2.16\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An expression was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The bookmark has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "បានលុបចំណាំ។"
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "The bookmark has been deleted."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "បានលុបចំណាំ។"
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "មិនបានជ្រើសមូលដ្ឋានទិន្នន័យ។"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "កំហុស #1"
|
||||
BIN
Binary file not shown.
+261
@@ -0,0 +1,261 @@
|
||||
# phpMyAdmin SQL parser translation.
|
||||
# Copyright (C) 2015 - 2020 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the SQL parser package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kmr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2013 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2013.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-07-24 13:05+0200\n"
|
||||
"Last-Translator: Shameem Ahmed A Mulla <shameem.sam@gmail.com>\n"
|
||||
"Language-Team: Kannada <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/kn/>\n"
|
||||
"Language: kn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.4-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+271
@@ -0,0 +1,271 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2023-01-26 07:10+0000\n"
|
||||
"Last-Translator: liviuconcioiu <liviu.concioiu@gmail.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "아직 구현되지 않은 기능입니다."
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr "새로운 문장이 발견되었지만, 이전 문장과의 구분기호가 없습니다."
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr "새 alter operation 시작 전에 쉼표가 누락되었습니다."
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr "인식되지 않은 alter 작업입니다."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "값 %1$d 이 예상되었지만, %2$d 가 발견되었습니다."
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "일련의 값들에 의해 여는 괄호('(')가 예상됩니다."
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "여는 괄호가 예상됩니다."
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr "예상되지 않은 키워드입니다."
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "예기치 못한 CASE 표현식의 끝"
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "CASE 표현식의 잠재적 중복 별명입니다."
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "AS뒤에 별명이 필요합니다. : "
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr "이미 사용중인 별명입니다."
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "AS뒤에 별명이 필요합니다."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
"심볼 이름이 필요합니다! 예약어는 역따옴표 없이 열 이름으로 사용될 수 없습니"
|
||||
"다."
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "심볼 이름이 필요합니다!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "쉼표 또는 닫는 대괄호가 필요합니다."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "닫는 괄호가 필요합니다."
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "인식할 수 없는 데이터 형식입니다."
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "식이 필요합니다."
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "별명이 필요합니다."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "예기치 못한 점(.)입니다."
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr "예기치 못한 토큰입니다."
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "오프셋이 필요합니다."
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr "LOCK 표현식이 예기치 않게 끝났습니다."
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr "이 옵션은 \"%1$s\"와(과) 충돌합니다."
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "테이블의 이전 이름이 팔요합니다."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "키워드 \"TO\"가 팔요합니다."
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "테이블의 새로운 이름이 팔요합니다."
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "이름 바꾸기 작업이 필요합니다."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "누락된 표현입니다."
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "예상치 못한 문자입니다."
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "구분기호 앞에 공백이 필요합니다."
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "구분기호가 필요합니다."
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "닫는 따옴표 %1$s 가 팔요합니다."
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "변수명이 필요합니다."
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "명령문이 예기치 않게 시작되었습니다."
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "인식할 수 없는 명령문 유형입니다."
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "이전에 시작된 처리가 없습니다."
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "이 유형의 절은 이전에 구문 분석되었습니다."
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "인식할 수 없는 키워드입니다."
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "명령문 끝에 있는 키워드."
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "예기치 못한 문장(절) 순서입니다."
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "개체 이름이 필요합니다."
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "테이블 이름이 필요합니다."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "최소 하나의 열 정의가 필요합니다."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "\"RETURNS\"키워드가 필요합니다."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "이 유형의 문장(절)은 다중테이블 요청에서 유효하지 않습니다."
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "LOCK 표현식이 예기치 않게 끝났습니다."
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "예상치 못한 키워드"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "CTE 이름이 필요합니다."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "AS 키워드가 필요합니다."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "CTE의 서브쿼리가 필요합니다."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr "WITH CTE 표현식이 예기치 않게 끝났습니다."
|
||||
|
||||
#~ msgid "Unexpected end of Lock expression."
|
||||
#~ msgstr "LOCK 표현식이 예기치 않게 끝났습니다."
|
||||
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "오류 #1"
|
||||
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "엄격한 오류"
|
||||
BIN
Binary file not shown.
+274
@@ -0,0 +1,274 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2014 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2014.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2014-10-02 15:09+0200\n"
|
||||
"Last-Translator: Purodha <publi@web.de>\n"
|
||||
"Language-Team: Colognian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/ksh/>\n"
|
||||
"Language: ksh\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==0 ? 0 : n==1 ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 1.10-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "Kein Name för di Dahtebangk!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Kein Name för di Dahtebangk!"
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "Kein Name för di Dahtebangk!"
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "Kein Name för di Dahtebangk!"
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "The database name is empty!"
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "Kein Name för di Dahtebangk!"
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+284
@@ -0,0 +1,284 @@
|
||||
# phpMyAdmin translation.
|
||||
# Copyright (C) 2003 - 2013 phpMyAdmin devel team
|
||||
# This file is distributed under the same license as the phpMyAdmin package.
|
||||
# Automatically generated, 2013.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2023-02-26 22:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Kyrgyz <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"ky/>\n"
|
||||
"Language: ky\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:415 src/Statement.php:359
|
||||
msgid ""
|
||||
"A new statement was found, but no delimiter between it and the previous one."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:427
|
||||
msgid "Missing comma before start of a new alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:472
|
||||
msgid "Unrecognized alter operation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:133 src/Components/CaseExpression.php:161
|
||||
#: src/Components/CaseExpression.php:172 src/Components/CaseExpression.php:184
|
||||
#: src/Components/IndexHint.php:134 src/Components/IndexHint.php:164
|
||||
#: src/Components/LockExpression.php:173 src/Components/LockExpression.php:180
|
||||
#: src/Components/LockExpression.php:188 src/Statements/DeleteStatement.php:249
|
||||
#: src/Statements/DeleteStatement.php:268
|
||||
#: src/Statements/DeleteStatement.php:308
|
||||
#: src/Statements/DeleteStatement.php:320
|
||||
#: src/Statements/DeleteStatement.php:346
|
||||
#: src/Statements/DeleteStatement.php:353
|
||||
#: src/Statements/InsertStatement.php:189
|
||||
#: src/Statements/InsertStatement.php:220 src/Statements/LoadStatement.php:265
|
||||
#: src/Statements/LockStatement.php:85 src/Statements/ReplaceStatement.php:149
|
||||
#: src/Statements/ReplaceStatement.php:178
|
||||
msgid "Unexpected keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:238 src/Components/Expression.php:352
|
||||
#: src/Components/Expression.php:372 src/Components/Expression.php:424
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:252
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "An alias was expected after AS."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Components/CreateDefinition.php:255
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "An alias was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/IndexHint.php:140 src/Components/IndexHint.php:170
|
||||
#: src/Components/Key.php:259 src/Components/LockExpression.php:161
|
||||
#: src/Components/SetOperation.php:138 src/Statement.php:258
|
||||
#: src/Statements/DeleteStatement.php:263
|
||||
#: src/Statements/DeleteStatement.php:315
|
||||
#: src/Statements/ExplainStatement.php:161
|
||||
#: src/Statements/InsertStatement.php:203
|
||||
#: src/Statements/InsertStatement.php:240 src/Statements/LoadStatement.php:270
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/LockStatement.php:93 src/Statements/LockStatement.php:100
|
||||
#: src/Statements/PurgeStatement.php:106 src/Statements/PurgeStatement.php:119
|
||||
#: src/Statements/PurgeStatement.php:140
|
||||
#: src/Statements/ReplaceStatement.php:163 src/Statements/WithStatement.php:132
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/LockExpression.php:91 src/Components/LockExpression.php:201
|
||||
msgid "Unexpected end of LOCK expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/OptionsArray.php:146
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "A table name was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "The name of the CTE was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Statements/WithStatement.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "AS keyword was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Statements/WithStatement.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Database %1$s has been created."
|
||||
msgid "Subquery of the CTE was expected."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: src/Statements/WithStatement.php:266
|
||||
msgid "Unexpected end of the WITH CTE."
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user