* Update sqlparser to fit php8.
This commit is contained in:
Vendored
+19
-1
@@ -2,6 +2,24 @@
|
||||
|
||||
// autoload.php @generated by Composer
|
||||
|
||||
if (PHP_VERSION_ID < 50600) {
|
||||
if (!headers_sent()) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
}
|
||||
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||
if (!ini_get('display_errors')) {
|
||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||
fwrite(STDERR, $err);
|
||||
} elseif (!headers_sent()) {
|
||||
echo $err;
|
||||
}
|
||||
}
|
||||
trigger_error(
|
||||
$err,
|
||||
E_USER_ERROR
|
||||
);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInitea8a35d9469bbaa4fe54772aaf0cb8ae::getLoader();
|
||||
return ComposerAutoloaderInitf821a0f8fd95aaf0fa9c3b24cac86074::getLoader();
|
||||
|
||||
+6
-4
@@ -108,10 +108,12 @@ if (PHP_VERSION_ID < 80000) {
|
||||
}
|
||||
}
|
||||
|
||||
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
|
||||
include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/highlight-query');
|
||||
exit(0);
|
||||
if (
|
||||
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|
||||
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
|
||||
) {
|
||||
return include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/highlight-query');
|
||||
}
|
||||
}
|
||||
|
||||
include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/highlight-query';
|
||||
return include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/highlight-query';
|
||||
|
||||
Vendored
+6
-4
@@ -108,10 +108,12 @@ if (PHP_VERSION_ID < 80000) {
|
||||
}
|
||||
}
|
||||
|
||||
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
|
||||
include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/lint-query');
|
||||
exit(0);
|
||||
if (
|
||||
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|
||||
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
|
||||
) {
|
||||
return include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/lint-query');
|
||||
}
|
||||
}
|
||||
|
||||
include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/lint-query';
|
||||
return include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/lint-query';
|
||||
|
||||
+6
-4
@@ -108,10 +108,12 @@ if (PHP_VERSION_ID < 80000) {
|
||||
}
|
||||
}
|
||||
|
||||
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
|
||||
include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/tokenize-query');
|
||||
exit(0);
|
||||
if (
|
||||
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|
||||
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
|
||||
) {
|
||||
return include("phpvfscomposer://" . __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/tokenize-query');
|
||||
}
|
||||
}
|
||||
|
||||
include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/tokenize-query';
|
||||
return include __DIR__ . '/..'.'/phpmyadmin/sql-parser/bin/tokenize-query';
|
||||
|
||||
+27
-14
@@ -42,6 +42,9 @@ namespace Composer\Autoload;
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var \Closure(string):void */
|
||||
private static $includeFile;
|
||||
|
||||
/** @var ?string */
|
||||
private $vendorDir;
|
||||
|
||||
@@ -106,6 +109,7 @@ class ClassLoader
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
self::initializeIncludeClosure();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -425,7 +429,8 @@ class ClassLoader
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
includeFile($file);
|
||||
$includeFile = self::$includeFile;
|
||||
$includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
@@ -555,18 +560,26 @@ class ClassLoader
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
* @private
|
||||
*/
|
||||
function includeFile($file)
|
||||
{
|
||||
include $file;
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private static function initializeIncludeClosure()
|
||||
{
|
||||
if (self::$includeFile !== null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
self::$includeFile = \Closure::bind(static function($file) {
|
||||
include $file;
|
||||
}, null, null);
|
||||
}
|
||||
}
|
||||
|
||||
+21
-12
@@ -21,12 +21,14 @@ use Composer\Semver\VersionParser;
|
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||
*
|
||||
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
|
||||
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
@@ -37,7 +39,7 @@ class InstalledVersions
|
||||
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static $installedByVendor = array();
|
||||
|
||||
@@ -96,7 +98,7 @@ class InstalledVersions
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (isset($installed['versions'][$packageName])) {
|
||||
return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
|
||||
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -117,7 +119,7 @@ class InstalledVersions
|
||||
*/
|
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
||||
{
|
||||
$constraint = $parser->parseConstraints($constraint);
|
||||
$constraint = $parser->parseConstraints((string) $constraint);
|
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
||||
|
||||
return $provided->matches($constraint);
|
||||
@@ -241,7 +243,7 @@ class InstalledVersions
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
|
||||
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
|
||||
*/
|
||||
public static function getRootPackage()
|
||||
{
|
||||
@@ -255,7 +257,7 @@ class InstalledVersions
|
||||
*
|
||||
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
|
||||
* @return array[]
|
||||
* @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
|
||||
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
|
||||
*/
|
||||
public static function getRawData()
|
||||
{
|
||||
@@ -278,7 +280,7 @@ class InstalledVersions
|
||||
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
||||
*
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
public static function getAllRawData()
|
||||
{
|
||||
@@ -301,7 +303,7 @@ class InstalledVersions
|
||||
* @param array[] $data A vendor/composer/installed.php data set
|
||||
* @return void
|
||||
*
|
||||
* @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
|
||||
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
|
||||
*/
|
||||
public static function reload($data)
|
||||
{
|
||||
@@ -311,7 +313,7 @@ class InstalledVersions
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static function getInstalled()
|
||||
{
|
||||
@@ -326,7 +328,9 @@ class InstalledVersions
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require $vendorDir.'/composer/installed.php';
|
||||
$installed[] = self::$installedByVendor[$vendorDir] = $required;
|
||||
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||
self::$installed = $installed[count($installed) - 1];
|
||||
}
|
||||
@@ -338,12 +342,17 @@ class InstalledVersions
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
self::$installed = require __DIR__ . '/installed.php';
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require __DIR__ . '/installed.php';
|
||||
self::$installed = $required;
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
$installed[] = self::$installed;
|
||||
|
||||
if (self::$installed !== array()) {
|
||||
$installed[] = self::$installed;
|
||||
}
|
||||
|
||||
return $installed;
|
||||
}
|
||||
|
||||
+6
-1
@@ -2,9 +2,14 @@
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
||||
'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
|
||||
'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
||||
'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
||||
);
|
||||
|
||||
+2
-1
@@ -2,9 +2,10 @@
|
||||
|
||||
// autoload_files.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
|
||||
);
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
|
||||
+2
-1
@@ -2,10 +2,11 @@
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(dirname(__FILE__));
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
|
||||
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
|
||||
'PhpMyAdmin\\SqlParser\\' => array($vendorDir . '/phpmyadmin/sql-parser/src'),
|
||||
);
|
||||
|
||||
+16
-46
@@ -2,7 +2,7 @@
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitea8a35d9469bbaa4fe54772aaf0cb8ae
|
||||
class ComposerAutoloaderInitf821a0f8fd95aaf0fa9c3b24cac86074
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
@@ -24,57 +24,27 @@ class ComposerAutoloaderInitea8a35d9469bbaa4fe54772aaf0cb8ae
|
||||
|
||||
require __DIR__ . '/platform_check.php';
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitea8a35d9469bbaa4fe54772aaf0cb8ae', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitea8a35d9469bbaa4fe54772aaf0cb8ae', 'loadClassLoader'));
|
||||
spl_autoload_register(array('ComposerAutoloaderInitf821a0f8fd95aaf0fa9c3b24cac86074', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitf821a0f8fd95aaf0fa9c3b24cac86074', 'loadClassLoader'));
|
||||
|
||||
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
||||
if ($useStaticLoader) {
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae::getInitializer($loader));
|
||||
} else {
|
||||
$map = require __DIR__ . '/autoload_namespaces.php';
|
||||
foreach ($map as $namespace => $path) {
|
||||
$loader->set($namespace, $path);
|
||||
}
|
||||
|
||||
$map = require __DIR__ . '/autoload_psr4.php';
|
||||
foreach ($map as $namespace => $path) {
|
||||
$loader->setPsr4($namespace, $path);
|
||||
}
|
||||
|
||||
$classMap = require __DIR__ . '/autoload_classmap.php';
|
||||
if ($classMap) {
|
||||
$loader->addClassMap($classMap);
|
||||
}
|
||||
}
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074::getInitializer($loader));
|
||||
|
||||
$loader->register(true);
|
||||
|
||||
if ($useStaticLoader) {
|
||||
$includeFiles = Composer\Autoload\ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae::$files;
|
||||
} else {
|
||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
||||
}
|
||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||
composerRequireea8a35d9469bbaa4fe54772aaf0cb8ae($fileIdentifier, $file);
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074::$files;
|
||||
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
require $file;
|
||||
}
|
||||
}, null, null);
|
||||
foreach ($filesToLoad as $fileIdentifier => $file) {
|
||||
$requireFile($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $fileIdentifier
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
function composerRequireea8a35d9469bbaa4fe54772aaf0cb8ae($fileIdentifier, $file)
|
||||
{
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
require $file;
|
||||
}
|
||||
}
|
||||
|
||||
+15
-4
@@ -4,15 +4,17 @@
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae
|
||||
class ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074
|
||||
{
|
||||
public static $files = array (
|
||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
|
||||
);
|
||||
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'S' =>
|
||||
array (
|
||||
'Symfony\\Polyfill\\Php80\\' => 23,
|
||||
'Symfony\\Polyfill\\Mbstring\\' => 26,
|
||||
),
|
||||
'P' =>
|
||||
@@ -22,6 +24,10 @@ class ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'Symfony\\Polyfill\\Php80\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
|
||||
),
|
||||
'Symfony\\Polyfill\\Mbstring\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
|
||||
@@ -33,15 +39,20 @@ class ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
||||
'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
|
||||
'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
||||
'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitea8a35d9469bbaa4fe54772aaf0cb8ae::$classMap;
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitf821a0f8fd95aaf0fa9c3b24cac86074::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
|
||||
+138
-22
@@ -2,46 +2,55 @@
|
||||
"packages": [
|
||||
{
|
||||
"name": "phpmyadmin/sql-parser",
|
||||
"version": "5.5.0",
|
||||
"version_normalized": "5.5.0.0",
|
||||
"version": "5.9.0",
|
||||
"version_normalized": "5.9.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpmyadmin/sql-parser.git",
|
||||
"reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5"
|
||||
"reference": "011fa18a4e55591fac6545a821921dd1d61c6984"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/8ab99cd0007d880f49f5aa1807033dbfa21b1cb5",
|
||||
"reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5",
|
||||
"shasum": ""
|
||||
"url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/011fa18a4e55591fac6545a821921dd1d61c6984",
|
||||
"reference": "011fa18a4e55591fac6545a821921dd1d61c6984",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1 || ^8.0",
|
||||
"symfony/polyfill-mbstring": "^1.3"
|
||||
"php": "^7.2 || ^8.0",
|
||||
"symfony/polyfill-mbstring": "^1.3",
|
||||
"symfony/polyfill-php80": "^1.16"
|
||||
},
|
||||
"conflict": {
|
||||
"phpmyadmin/motranslator": "<3.0"
|
||||
},
|
||||
"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.2",
|
||||
"phpstan/phpstan-phpunit": "^1.0",
|
||||
"phpstan/phpstan": "^1.9.12",
|
||||
"phpstan/phpstan-phpunit": "^1.3.3",
|
||||
"phpunit/php-code-coverage": "*",
|
||||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
|
||||
"psalm/plugin-phpunit": "^0.16.1",
|
||||
"vimeo/psalm": "^4.11",
|
||||
"zumba/json-serializer": "^3.0"
|
||||
"zumba/json-serializer": "~3.0.2"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-mbstring": "For best performance",
|
||||
"phpmyadmin/motranslator": "Translate messages to your favorite locale"
|
||||
},
|
||||
"time": "2021-12-09T04:31:52+00:00",
|
||||
"time": "2024-01-20T20:34:02+00:00",
|
||||
"bin": [
|
||||
"bin/highlight-query",
|
||||
"bin/lint-query",
|
||||
"bin/sql-parser",
|
||||
"bin/tokenize-query"
|
||||
],
|
||||
"type": "library",
|
||||
@@ -68,28 +77,46 @@
|
||||
"analysis",
|
||||
"lexer",
|
||||
"parser",
|
||||
"sql"
|
||||
"query linter",
|
||||
"sql",
|
||||
"sql lexer",
|
||||
"sql linter",
|
||||
"sql parser",
|
||||
"sql syntax highlighter",
|
||||
"sql tokenizer"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/phpmyadmin/sql-parser/issues",
|
||||
"source": "https://github.com/phpmyadmin/sql-parser"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.phpmyadmin.net/donate/",
|
||||
"type": "other"
|
||||
}
|
||||
],
|
||||
"install-path": "../phpmyadmin/sql-parser"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-mbstring",
|
||||
"version": "v1.26.0",
|
||||
"version_normalized": "1.26.0.0",
|
||||
"version": "v1.28.0",
|
||||
"version_normalized": "1.28.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
|
||||
"reference": "42292d99c55abe617799667f454222c54c60e229"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
||||
"shasum": ""
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
|
||||
"reference": "42292d99c55abe617799667f454222c54c60e229",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
@@ -100,11 +127,11 @@
|
||||
"suggest": {
|
||||
"ext-mbstring": "For best performance"
|
||||
},
|
||||
"time": "2022-05-24T11:49:31+00:00",
|
||||
"time": "2023-07-28T09:04:16+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.26-dev"
|
||||
"dev-main": "1.28-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
@@ -144,7 +171,7 @@
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
|
||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -161,6 +188,95 @@
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/polyfill-mbstring"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-php80",
|
||||
"version": "v1.29.0",
|
||||
"version_normalized": "1.29.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-php80.git",
|
||||
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
|
||||
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"time": "2024-01-29T20:11:03+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Php80\\": ""
|
||||
},
|
||||
"classmap": [
|
||||
"Resources/stubs"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ion Bazan",
|
||||
"email": "ion.bazan@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/polyfill-php80"
|
||||
}
|
||||
],
|
||||
"dev": true,
|
||||
|
||||
+18
-9
@@ -1,40 +1,49 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => '__root__',
|
||||
'pretty_version' => '1.0.0+no-version-set',
|
||||
'version' => '1.0.0.0',
|
||||
'reference' => NULL,
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'reference' => NULL,
|
||||
'name' => '__root__',
|
||||
'dev' => true,
|
||||
),
|
||||
'versions' => array(
|
||||
'__root__' => array(
|
||||
'pretty_version' => '1.0.0+no-version-set',
|
||||
'version' => '1.0.0.0',
|
||||
'reference' => NULL,
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'reference' => NULL,
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'phpmyadmin/sql-parser' => array(
|
||||
'pretty_version' => '5.5.0',
|
||||
'version' => '5.5.0.0',
|
||||
'pretty_version' => '5.9.0',
|
||||
'version' => '5.9.0.0',
|
||||
'reference' => '011fa18a4e55591fac6545a821921dd1d61c6984',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../phpmyadmin/sql-parser',
|
||||
'aliases' => array(),
|
||||
'reference' => '8ab99cd0007d880f49f5aa1807033dbfa21b1cb5',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-mbstring' => array(
|
||||
'pretty_version' => 'v1.26.0',
|
||||
'version' => '1.26.0.0',
|
||||
'pretty_version' => 'v1.28.0',
|
||||
'version' => '1.28.0.0',
|
||||
'reference' => '42292d99c55abe617799667f454222c54c60e229',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
|
||||
'aliases' => array(),
|
||||
'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-php80' => array(
|
||||
'pretty_version' => 'v1.29.0',
|
||||
'version' => '1.29.0.0',
|
||||
'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
|
||||
+2
-2
@@ -4,8 +4,8 @@
|
||||
|
||||
$issues = array();
|
||||
|
||||
if (!(PHP_VERSION_ID >= 50300)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.';
|
||||
if (!(PHP_VERSION_ID >= 70200)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.0". You are running ' . PHP_VERSION . '.';
|
||||
}
|
||||
|
||||
if ($issues) {
|
||||
|
||||
+156
-1
@@ -1,5 +1,159 @@
|
||||
# Change Log
|
||||
|
||||
## [5.9.x] - YYYY-MM-DD
|
||||
|
||||
- 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)
|
||||
@@ -25,7 +179,6 @@
|
||||
## [4.7.0] - 2020-10-08
|
||||
|
||||
* EXISTS is also a function. (#297)
|
||||
* Remove some useless dev-dependencies
|
||||
* 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)
|
||||
@@ -65,6 +218,8 @@
|
||||
|
||||
## [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)
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
# Contributing to SQL Parser
|
||||
|
||||
## Reporting issues
|
||||
|
||||
Our issue tracker is hosted at GitHub:
|
||||
|
||||
https://github.com/phpmyadmin/sql-parser/issues
|
||||
|
||||
Please search for existing issues before reporting new ones.
|
||||
|
||||
## Working with Git checkout
|
||||
|
||||
The dependencies are managed by Composer, to get them all installed (or update
|
||||
on consequent runs) do:
|
||||
|
||||
```
|
||||
composer update
|
||||
```
|
||||
|
||||
## Submitting patches
|
||||
|
||||
Please submit your patches using GitHub pull requests, this allows us to review
|
||||
them and to run automated tests on the code.
|
||||
|
||||
## Coding standards
|
||||
|
||||
We do follow PSR-1 and PSR-2 coding standards.
|
||||
|
||||
You can use phpcbf to fix the code to match our expectations:
|
||||
|
||||
```
|
||||
./vendor/bin/phpcbf
|
||||
```
|
||||
|
||||
## Testsuite
|
||||
|
||||
Our code comes with quite comprehensive testsuite, it is automatically executed
|
||||
on every commit and pull request, you can also run it locally:
|
||||
|
||||
```
|
||||
./vendor/bin/phpunit
|
||||
```
|
||||
|
||||
The testsuite relies on fixtures of parser states, in case you need to
|
||||
regenerate some of these there are helper scripts in tools directory:
|
||||
|
||||
```
|
||||
# Remove file you want to regenerate
|
||||
rm tests/data/parser/parse.out
|
||||
|
||||
# Run the generator located in the tools directory
|
||||
./tools/run_generators.sh
|
||||
```
|
||||
+17
-12
@@ -4,13 +4,15 @@ 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=QA)
|
||||
[](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
|
||||
|
||||
@@ -22,7 +24,7 @@ composer require phpmyadmin/sql-parser
|
||||
|
||||
## Documentation
|
||||
|
||||
The API documentation is available at
|
||||
The API documentation is available at
|
||||
<https://develdocs.phpmyadmin.net/sql-parser/>.
|
||||
|
||||
## Usage
|
||||
@@ -57,7 +59,7 @@ cat example.sql | ./vendor/bin/lint-query
|
||||
### Formatting SQL query
|
||||
|
||||
```php
|
||||
echo PhpMyAdmin\SqlParser\Utils\Formatter::format($query, array('type' => 'html'));
|
||||
echo PhpMyAdmin\SqlParser\Utils\Formatter::format($query, ['type' => 'html']);
|
||||
```
|
||||
|
||||
### Discoverying query type
|
||||
@@ -78,50 +80,53 @@ echo $flags['querytype'];
|
||||
```php
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
$query1 = "select * from a";
|
||||
$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", "", "");
|
||||
$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` "
|
||||
var_dump($query2); // outputs string(19) 'SELECT * FROM `b` '
|
||||
|
||||
// Change SQL mode
|
||||
PhpMyAdmin\SqlParser\Context::setMode('ANSI_QUOTES');
|
||||
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" "
|
||||
var_dump($query2); // outputs string(19) 'SELECT * FROM "b" '
|
||||
```
|
||||
|
||||
## Localization
|
||||
|
||||
You can localize error messages installing `phpmyadmin/motranslator` version `4.0` or newer:
|
||||
You can localize error messages installing `phpmyadmin/motranslator` version `5.0` or newer:
|
||||
|
||||
```sh
|
||||
composer require phpmyadmin/motranslator:^4.0
|
||||
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";
|
||||
$query1 = 'select * from a';
|
||||
$parser = new PhpMyAdmin\SqlParser\Parser($query1);
|
||||
```
|
||||
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = array(
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
);
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = array(
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
);
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
@@ -27,4 +28,3 @@ if (!$found) {
|
||||
|
||||
$cli = new PhpMyAdmin\SqlParser\Utils\CLI();
|
||||
exit($cli->runLint());
|
||||
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
$files = array(
|
||||
$files = [
|
||||
__DIR__ . "/../vendor/autoload.php",
|
||||
__DIR__ . "/../../vendor/autoload.php",
|
||||
__DIR__ . "/../../../autoload.php",
|
||||
"vendor/autoload.php"
|
||||
);
|
||||
];
|
||||
|
||||
$found = false;
|
||||
foreach ($files as $file) {
|
||||
|
||||
+54
-5
@@ -2,7 +2,7 @@
|
||||
"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"],
|
||||
"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": [
|
||||
{
|
||||
@@ -15,13 +15,29 @@
|
||||
"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": "^5.3.0 || ^7.0",
|
||||
"symfony/polyfill-mbstring": "^1.3"
|
||||
"php": "^7.2 || ^8.0",
|
||||
"symfony/polyfill-mbstring": "^1.3",
|
||||
"symfony/polyfill-php80": "^1.16"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.8 || ~5.7 || ~6.5 || ^7.0",
|
||||
"squizlabs/php_codesniffer": "~2.9 || ~3.4"
|
||||
"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/php-code-coverage": "*",
|
||||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
|
||||
"psalm/plugin-phpunit": "^0.16.1",
|
||||
"vimeo/psalm": "^4.11",
|
||||
"zumba/json-serializer": "~3.0.2"
|
||||
},
|
||||
"conflict": {
|
||||
"phpmyadmin/motranslator": "<3.0"
|
||||
@@ -33,6 +49,7 @@
|
||||
"bin": [
|
||||
"bin/highlight-query",
|
||||
"bin/lint-query",
|
||||
"bin/sql-parser",
|
||||
"bin/tokenize-query"
|
||||
],
|
||||
"autoload": {
|
||||
@@ -44,5 +61,37 @@
|
||||
"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.
+181
-145
@@ -1,241 +1,277 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:30+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Afrikaans <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/af/>\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 2.5-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
msgstr "Nog nie geimplimenteer nie."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
msgstr "Onherkenbare wysigingsbewerking."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
msgstr "%1$d waardes is verwag, maar gevind %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
msgstr "'n Openingshakie gevolg deur 'n stel waardes is verwag."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "'n Opening-hakie is verwag."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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 ""
|
||||
msgstr "Onverwagte sleutelwoord."
|
||||
|
||||
#: src/Components/CaseExpression.php:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
msgstr "Onverwagte einde van CASE-uitdrukking"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#, fuzzy
|
||||
#| msgid "With selected:"
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Met gekose:"
|
||||
msgstr "'n Simboolnaam is verwag!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#, fuzzy
|
||||
#| msgid "With selected:"
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Met gekose:"
|
||||
msgstr "'n Komma of 'n slothakie is verwag."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "’n Sluitingshakie is verwag."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
msgstr "Onherkende datatipe."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "With selected:"
|
||||
msgid "An alias was expected."
|
||||
msgstr "Met gekose:"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#, fuzzy
|
||||
#| msgid "With selected:"
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Met gekose:"
|
||||
msgstr "'n Uitdrukking is verwag."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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 ""
|
||||
msgstr "'n Verrekening is verwag."
|
||||
|
||||
#: src/Components/OptionsArray.php:143
|
||||
#: 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 ""
|
||||
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 "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
msgstr "Sleutelwoord \"AAN\" was verwag."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
msgstr "Die nuwe naam van die tafel was verwag."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Die ry is verwyder"
|
||||
msgstr "'n Hernoembewerking is verwag."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "as 'n regular expression"
|
||||
msgstr "Ontbrekende uitdrukking."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
msgstr "Onverwagte karakter."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
msgstr "Verwagte witspasie(s) voor skeidingsteken."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
msgstr "Verwagte afbakening."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#, fuzzy, php-format
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Tabel %s is verwyder"
|
||||
msgstr "Eindkwotasie %1$s is verwag."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
msgstr "Veranderlike naam is verwag."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "By Begin van Tabel"
|
||||
msgstr "Onverwagte begin van stelling."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
msgstr "Onherkende stellingtipe."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
msgstr "Geen transaksie is voorheen begin nie."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
msgstr "Hierdie tipe klousule is voorheen ontleed."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
msgstr "Onherkende sleutelwoord."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "By Begin van Tabel"
|
||||
msgstr "Sleutelwoord aan die einde van stelling."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "By Begin van Tabel"
|
||||
msgstr "Onverwagte ordening van klousules."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
msgstr "Die naam van die entiteit is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#, fuzzy
|
||||
#| msgid "With selected:"
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Met gekose:"
|
||||
msgstr "'n Tabelnaam is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Die ry is verwyder"
|
||||
msgstr "Ten minste een kolomdefinisie is verwag."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
msgstr "'n \"TERUGKEER\"-sleutelwoord is verwag."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
msgstr "Hierdie tipe klousule is nie geldig in Multi-table-navrae nie."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Fout"
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#, fuzzy
|
||||
#| msgid "Query"
|
||||
msgid "strict error"
|
||||
msgstr "Navraag dmv Voorbeeld"
|
||||
#~| msgid "Error"
|
||||
#~ msgid "error #1"
|
||||
#~ msgstr "Fout"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Query"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Navraag dmv Voorbeeld"
|
||||
|
||||
BIN
Binary file not shown.
+143
-81
@@ -1,11 +1,11 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2018-01-25 23:34+0000\n"
|
||||
"Last-Translator: yagoub fadel <yagoub76@gmail.com>\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"
|
||||
@@ -14,18 +14,22 @@ msgstr ""
|
||||
"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 2.19-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "لم تنفذ بعد."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 "عملية تغيير غير معروفة."
|
||||
|
||||
@@ -34,34 +38,53 @@ msgstr "عملية تغيير غير معروفة."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "تم توقع قيم %1$d ، ولكن تم العثور على %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "من المتوقع وجود قوس فتح متبوعا بمجموعة من القيم."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "من المتوقع وجود قوس مفتوح."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "نهاية غير متوقعة من التعبير"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -69,150 +92,189 @@ msgstr ""
|
||||
"كان من المتوقع وجود اسم رمز! لا يمكن استخدام كلمة رئيسية محجوزة كاسم عمود "
|
||||
"بدون علامات اقتباس."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "كان من المتوقع اسم رمز!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "من المتوقع وجود فاصلة أو قوس إغلاق."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "من المتوقع وجود قوس مغلق."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "نوع بيانات غير معروف."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "كان من المتوقع وجود اسم مستعار."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "اسم مستعار موجود مسبقا ."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "نقطة غير متوقعة."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "متوقع وجود تعبير ."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "متوفع وجود اسم الجدول القديم ."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "متوقع وجود الكلمة الرئيسية \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "متوقع وجود الاسم الجديد للجدول ."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "نتوقع منك اعادة تسمية ."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "تعبير مفقود ."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "حرف غير متوقع ."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "المسافات البيضاء المتوقعة قبل المحدد."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "المحدد المتوقع."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "نتوقع إنهاء الاقتباس %1$s ."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "متوقع منك اسم متغير ."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "بداية غير متوقعة للبيان."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "نوع بيان غير معروف."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "لم يتم بدء أي معاملة من قبل."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "رمز غير متوقع."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "تم تحليل هذا النوع من العبارات سابقا."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "كلمة محجوزة غير معروفة."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "الكلمة المفتاحية في نهاية الافادة"
|
||||
msgstr "الكلمة المفتاحية في نهاية البيان."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ترتيب غير متوقع للبنود."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "نتوفع منك ادراج اسم الكيان ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "نتوقع تسمية الجدول ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "نتوقع منك تعريف عمود علي الاقل ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "كانت الكلمة الرئيسية \"رجوع\" متوقعة."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "هذا النوع من الشرط غير صالح في الاستعلامات متعددة الجداول."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "الخطأ رقم 1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "نهاية غير متوقعة لبيان LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
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 "كانت الكلمة الرئيسية \"رجوع\" متوقعة."
|
||||
|
||||
#: 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.
+143
-83
@@ -5,32 +5,36 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-09-28 07:44+0000\n"
|
||||
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
|
||||
"Language-Team: Asturian <https://hosted.weblate.org/projects/phpmyadmin/sql-"
|
||||
"parser/ast/>\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 2.17-dev\n"
|
||||
"X-Generator: Weblate 4.16-rc\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Entá nun se desendolcó."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -39,34 +43,57 @@ msgstr "Operación d'alteración desconocida."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperáu d'espresión CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -74,150 +101,183 @@ msgstr ""
|
||||
"Esperábase un nome de símbolu. Una palabra acutada nun puede usase como nome "
|
||||
"de columna ensin comines."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Esperábase un nome de símbolu"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipu de datu desconocíu."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Esperábase un alcuñu."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Alcontróse anteriormente un alcuñu."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Puntu inesperáu."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Esperábase una espresión."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Esperábase la palabra clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Falta una espresión."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Carácter inesperáu."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Esperábase espaciu(os) en blancu antes d'un llendador."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Esperábase un llendador."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Esperábense les comines de final %1$s."
|
||||
msgstr "Esperábense les comines de final %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Esperábase un nome de variable."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr ""
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Final inesperáu d'espresión LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr ""
|
||||
#: 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.
+155
-81
@@ -1,13 +1,13 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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-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"
|
||||
@@ -15,16 +15,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.18-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Hələki tətbiq edilməyib."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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ı."
|
||||
|
||||
@@ -33,34 +37,57 @@ msgstr "Kateqoriya olunmamış alter əməliyyatı."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: 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/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -68,157 +95,204 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Simvol adı gözlənilirdi!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tanınmayan verilən tipi."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Alias gözlənilirdi."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Daha öncə alias tapıldı."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Gözlənilməz nöqtə."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "İfadə gözlənilməkdə."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "\"TO\" açar sözü gözlənilirdi."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Əksik ifadə."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Gözlənilməyən simvol."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Dəyişən adı gözlənilirdi."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "İfadənin gözlənilməz başlanğıcı."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tanınmayan ifadə tipi."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Daha öncə tranzaksiya başladılmadı."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Gözlənilməyən token."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Tanınmayan açarsöz."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "İfadənin sonunda açar söz."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: 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:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Cədvəl adı gözlənilirdi."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "\"RETURNS\" açarsözü gözlənilirdi."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "xəta #1"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Query error"
|
||||
msgid "strict error"
|
||||
msgstr "Sorğu xətası"
|
||||
#| 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.
+150
-84
@@ -1,32 +1,36 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-08-22 09:47+0000\n"
|
||||
"Last-Translator: Viktar Vauchkevich <victorenator@gmail.com>\n"
|
||||
"Language-Team: Belarusian <https://hosted.weblate.org/projects/phpmyadmin"
|
||||
"/sql-parser/be/>\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 2.17-dev\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Яшчэ не рэалізавана."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 "Нераспазнаная аперацыя змены."
|
||||
|
||||
@@ -35,34 +39,55 @@ msgstr "Нераспазнаная аперацыя змены."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Чакалася %1$d значэнняў, а знойдзена %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Чакаліся адкрывальная дужка і спіс значэнняў."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Чакалася адкрывальная дужка."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Нечаканы канец CASE-выразу"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,150 +95,191 @@ msgstr ""
|
||||
"Чакалася назва сімвала! Зарэзерваваныя ключавыя словы нельга выкарыстоўваць "
|
||||
"як назву слупка без двукоссяў."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Чакалася назва сімвала!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Чакалася коска або закрывальная дужка."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Чакалася закрывальная дужка."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Нераспазнаны тып даных."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Чакаўся псеўданім."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Псеўданім быў знайдзены раней."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Нечаканая кропка."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Чакаўся выраз."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Чакалася старая назва табліцы."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Чакалаcя ключавое слова «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Чакалася новая назва табліцы."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Чакалася аперацыя перайменавання."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Адсутнічае выраз."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Нечаканы сімвал."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Чакаўся прагал(ы) перад раздзяляльнікам."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Чакаецца раздзяляльнік."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Чакалася канцавое двукоссе %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Чакалася назва зменнай."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Нечаканы пачатак сцвярджэння."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Нераспазнаны тып сцвярджэння."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Няма папярэдне запушчанай транзакцыі."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Нечаканы знак."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Гэты тып выразу быў папярэдне разабраны."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Нераспазнанае ключавое слова."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Ключавое слова ў канцы сцвярджэння."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Нечаканы парадак выразаў."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Чакалася назва сутнасці."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Чакалася назва табліцы."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Чакалася азначэнне прынамсі аднаго слупка."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Чакалася ключавое слова «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Гэты тып выразу не правільны для мультытаблічных запытаў."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "памылка #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Нечаканы пачатак сцвярджэння."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
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.
+152
-84
@@ -1,33 +1,37 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-08-22 09:47+0000\n"
|
||||
"Last-Translator: Viktar Vauchkevich <victorenator@gmail.com>\n"
|
||||
"Language-Team: Belarusian (latin) "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/sql-parser/be_Latn/>\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 2.17-dev\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Jašče nie realizavana."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -36,34 +40,57 @@ msgstr "Nieraspaznanaja apieracyja zmieny."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Čakalasia %1$d značenniaŭ, a znojdziena %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Niečakany kaniec CASE-vyrazu"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -71,150 +98,191 @@ msgstr ""
|
||||
"Čakalasia nazva simvala! Zareziervavanyja kliučavyja slovy nieĺha "
|
||||
"vykarystoŭvać jak nazvu slupka biez dvukossiaŭ."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Čakalasia nazva simvala!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Nieraspaznany typ danych."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Čakaŭsia psieŭdanim."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Psieŭdanim byŭ znajdzieny raniej."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Niečakanaja kropka."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Čakaŭsia vyraz."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Čakalasia staraja nazva tablicy."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Čakalacja kliučavoje slova «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Čakalasia novaja nazva tablicy."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Čakalasia apieracyja pierajmienavannia."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Adsutničaje vyraz."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Niečakany simval."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Čakaŭsia prahal(y) pierad razdzialiaĺnikam."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Čakajecca razdzialiaĺnik."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Čakalasia kancavoje dvukossie %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Čakalasia nazva zmiennaj."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Niečakany pačatak scviardžennia."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Nieraspaznany typ scviardžennia."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Niama papiarednie zapuščanaj tranzakcyi."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Niečakany znak."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Hety typ vyrazu byŭ papiarednie razabrany."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Nieraspaznanaje kliučavoje slova."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Kliučavoje slova ŭ kancy scviardžennia."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Niečakany paradak vyrazaŭ."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Čakalasia nazva sutnasci."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Čakalasia nazva tablicy."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Čakalasia aznačennie prynamsi adnaho slupka."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Čakalasia kliučavoje slova «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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ŭ."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "pamylka #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Niečakany pačatak scviardžennia."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "niedapuščaĺnaja pamylka"
|
||||
#: 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.
+219
-153
@@ -1,11 +1,11 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-08-07 11:22+0000\n"
|
||||
"Last-Translator: Filip Obretenov <filip.obretenovbg@gmail.com>\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"
|
||||
@@ -13,245 +13,311 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.16-dev\n"
|
||||
"X-Generator: Weblate 4.3-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Все още не е внедрена."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
msgstr "%1$d стойности бяха очаквани, но бяха намерени %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
msgstr "Очаква се отваряща скоба последвана от списък стойности."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "Очаква се отваряща скоба."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
#: 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 "Неочаквани знаци на ред %s."
|
||||
msgstr "Неочаквана ключова дума."
|
||||
|
||||
#: src/Components/CaseExpression.php:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
msgstr "Неочакван край на израза CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Шаблон за име на таблица"
|
||||
msgstr "Очаква се име на символ!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Няма избрани таблици."
|
||||
msgstr "Очакваше се запетая или затваряща скоба."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Няма избрани таблици."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "Няма върнати редове"
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
msgid "An offset was expected."
|
||||
#: 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/OptionsArray.php:143
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Броят отворени таблици."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Редът беше изтрит"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "като регулярен израз"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "Неочаквани знаци на ред %s."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Събитието %1$s беше създадено."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Шаблон за име на таблица"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Parser.php:442
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: 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/ReplaceStatement.php:190
|
||||
#: 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/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Шаблон за име на таблица"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "грешки."
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "В началото на таблицата"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Събиране на грешки"
|
||||
#| 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.
+217
-144
@@ -1,30 +1,35 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:44+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bengali <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/bn/>\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 2.5-dev\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 4.5\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
msgstr "এখনো বাস্তবায়িত হয়নি।"
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -33,224 +38,292 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "কোন রো নির্বাচন করা হয় নাই"
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
msgid "An offset was expected."
|
||||
#: 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/OptionsArray.php:143
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "খোলা টেবিলের সংখ্যা।"
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "রো টি মুছা হয়েছে।"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "রেগুলার এক্সপ্রেশনের মত"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।"
|
||||
|
||||
#: src/Lexer.php:278
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "ইভেন্ট %1$s তৈরী হয়েছে।"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Parser.php:442
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: 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/ReplaceStatement.php:190
|
||||
#: 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/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "টেবলের নামের নকশা"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "ভুলসমূহ"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "টেবিলের শুরুতে"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "ভুলসমূহ জড়ো"
|
||||
#| 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.
+151
-81
@@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 1.9-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,212 +41,278 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An alias was expected."
|
||||
msgstr "N'eus bet diuzet linenn ebet"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "evel un droienn reoliek"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: 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:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: 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:503
|
||||
#: 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:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Fazi"
|
||||
#| msgid "Number of inserted rows"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Niver a linennoù da ensoc'hañ"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Dastum ar fazioù"
|
||||
#| 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.
+120
-75
@@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 2.4-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,183 +41,224 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
#: 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.
+151
-83
@@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -12,20 +12,24 @@ msgstr ""
|
||||
"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"
|
||||
"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:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -34,208 +38,272 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Nije izabrana ni jedna baza."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Tabela %s je odbačena"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Šablon imena datoteke"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Greška"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Na početku tabele"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Query type"
|
||||
msgid "strict error"
|
||||
msgstr "Vrsta upita"
|
||||
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.
+148
-80
@@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2018-01-15 17:44+0000\n"
|
||||
"Last-Translator: Robert Antoni Buj Gelonch <robert.buj@gmail.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.19-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Encara no implementat."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,34 +39,57 @@ msgstr "Operació de modificació no reconeguda."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperat d'expressió CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,150 +97,191 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "S'esperava un nom de símbol!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipus de dades desconegut."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "S'esperava un àlies."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "S'ha trobat un àlies anteriorment."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Punt inesperat."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "S'esperava una expressió."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "S'esperava la paraula clau \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "S'esperava una operació de canvi de nom."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expressió no trobada."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caràcter no esperat."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "S'esperaven espais en blanc abans del delimitador."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "S'esperava un delimitador."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "S'esperava un nom de variable."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Començament no esperat de sentència."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipus de sentència no reconegut."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "No s'ha iniciat cap transacció anteriorment."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Testimoni no esperat."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Paraula clau no reconeguda."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Paraula clau al final de la sentència."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ordre de condicions no esperat."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "S'esperava un nom de taula."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "S'esperava una paraula clau \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "error #1"
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "Error estricte"
|
||||
#: 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.
+146
-79
@@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,207 +41,270 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "هیچ ڕیزێک هەڵنەبژێراوە"
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "ڕیزەکە سڕایەوە"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "Versions"
|
||||
msgid "Missing expression."
|
||||
msgstr "وەشانەکان"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "هیچ خشتەیەک هەڵنەبژێردراوە."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "هەڵە"
|
||||
#| msgid "Number of rows"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "ژمارەی ڕیزەکان"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
#: 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.
+196
-175
@@ -3,252 +3,273 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2019-04-28 12:48+0000\n"
|
||||
"Last-Translator: William Desportes <williamdes@wdes.fr>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/cs/>\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 3.6.1\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Zatím není implementováno."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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 ""
|
||||
msgstr "Byl nalezen nový výraz bez oddělovače od předchozího výrazu."
|
||||
|
||||
#: src/Components/AlterOperation.php:253
|
||||
#, fuzzy
|
||||
#| msgid "Iconic table operations"
|
||||
#: 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 "Zobrazení ikon pro operace s tabulkami"
|
||||
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:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
msgstr "Byla očekávána úvodní závorka následovaná sadou hodnot."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "Byla očekávána úvodní závorka."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Neočekávaný konec CASE výrazu"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Vzor pro jméno tabulky"
|
||||
msgstr "Byl očekáván název symbolu!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Nebyly vybrány žádné tabulky."
|
||||
msgstr "Byla očekávána čárka nebo koncová závorka."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "Byla očekávána koncová závorka."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Nerozpoznaný datový typ."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No tables selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Nebyly vybrány žádné tabulky."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#, fuzzy
|
||||
#| msgid "No versions selected."
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Nebyly vybrány žádné verze."
|
||||
msgstr "Byl očekáván výraz."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
#: src/Components/Expression.php:257 src/Components/Expression.php:435
|
||||
msgid "An alias was expected."
|
||||
msgstr "Byl očekáván alias."
|
||||
|
||||
#: src/Components/OptionsArray.php:143
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Neočekávaná tečka."
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Počet aktuálně otevřených tabulek."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#, fuzzy
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Bylo očekáváno klíčové slovo \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Počet aktuálně otevřených tabulek."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#, fuzzy
|
||||
#| msgid "Template was deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Šablona byla smazána."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "jako regulární výraz"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
msgid "Unexpected character."
|
||||
msgstr "Neočekávaný znak."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Byl očekáván oddělovač."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Event %1$s has been created."
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Byla vytvořena událost %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Vzor pro jméno tabulky"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "at beginning of table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "na začátku tabulky"
|
||||
|
||||
#: src/Parser.php:442
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Nerozpoznaný typ výrazu."
|
||||
|
||||
#: src/Parser.php:527
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: 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/ReplaceStatement.php:190
|
||||
#: 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/Statement.php:306
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "Byl očekáván offset."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: 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:377
|
||||
#, fuzzy
|
||||
#| msgid "at beginning of table"
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "na začátku tabulky"
|
||||
msgstr "Klíčové slovo na konci výrazu."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#, fuzzy
|
||||
#| msgid "at beginning of table"
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "na začátku tabulky"
|
||||
msgstr "Neočekávané pořadí klauzulí."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Počet aktuálně otevřených tabulek."
|
||||
msgstr "Byl očekáván název entity."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Bylo očekáváno jméno tabulky."
|
||||
msgstr "Byl očekáván název tabulky."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#, fuzzy
|
||||
#| msgid "Template was deleted."
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Šablona byla smazána."
|
||||
msgstr "Byla očekávána alespoň jedna definice sloupce."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#, fuzzy
|
||||
#: 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:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
msgstr "Tento typ klauzule je ve vícetabulkových dotazech neplatný."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "chyba #1"
|
||||
#: 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"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Sbírat chyby"
|
||||
#~| msgid "Gather errors"
|
||||
#~ msgid "strict error"
|
||||
#~ msgstr "Sbírat chyby"
|
||||
|
||||
BIN
Binary file not shown.
+151
-81
@@ -4,9 +4,9 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,212 +41,278 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Dim cronfeydd data wedi'u dewis."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "fel mynegiad arferol (regular expression)"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Templed enw tabl"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Gwall"
|
||||
#| msgid "Show dimension of tables"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Dangos dimensiynau'r tabl"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Query"
|
||||
msgid "strict error"
|
||||
msgstr "Ymholiad"
|
||||
#| 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.
+148
-80
@@ -1,11 +1,11 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-09-14 19:11+0000\n"
|
||||
"Last-Translator: Claus Svalekjaer <just.my.smtp.server@gmail.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.17-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Endnu ikke implementeret."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,34 +39,57 @@ msgstr "Ukendt alter opgave."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Uventet afslutning af CASE udtryk"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,151 +97,192 @@ msgstr ""
|
||||
"Et symbolnavn var ventet! Et reserveret nøgleord kan ikke bruges som et "
|
||||
"feltnavn uden backquotes."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Et symbol var ventet!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Ukendt datatype."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Et alias var verntet."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Et alias er fundet tidligere."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Uventet punktum."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Et udtryk var ventet."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Tabellens gamle navn var ventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Nøgleordet \"TO\" var forventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Tabellens nye navn var ventet."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "En omdøbsopgave var ventet."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Manglende udtryk."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Uventet karakter."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Forventede whitespace(s) før adskillelsestegn."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Forventede adskillelsestegn."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Slut quote %1$s var ventet."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variabelnavn var ventet."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Uventet start på statement."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Ukendt type af statement."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Ingen transaktion er blevet startet tidligere."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Uventet token."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Ukendt nøgleord."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Nøgleord i slutningen af udtryk."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Uventet clause rækkefølge."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Enhedens navn var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Et tabelnavn var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Mindst en kolonne definition var ventet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Et \"RETURNS\" nøgleord var forventet."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "fejl #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Uventet start på statement."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "stringent fejl"
|
||||
#: 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.
+133
-79
@@ -3,9 +3,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-11-08 18:00+0000\n"
|
||||
"Last-Translator: Thomas Artmann <thwohmas@gmail.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.18-dev\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Noch nicht implementiert."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,35 +39,54 @@ msgstr "Unerkannte ALTER-Operation."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d Werte erwartet, aber %2$d gefunden."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Unerwartetes Ende eines CASE Ausdrucks"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -71,150 +94,181 @@ msgstr ""
|
||||
"Ein Symbolname wurde erwartet! Ein reserviertes Schlüsselwort kann nicht "
|
||||
"ohne Backquotes als Tabellenname verwendet werden."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Ein Symbolname wurde erwartet!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Unerkannter Datentyp."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Ein Alias wurde erwartet."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Ein Alias wurde zuvor gefunden."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Unerwarteter Punkt."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Ein Ausdruck wurde erwartet."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Schlüsselwort „TO“ wurde erwartet."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Der neue Tabellenname wurde erwartet."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Eine Umbenennungsoperation wurde erwartet."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Fehlender Ausdruck."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Unerwartetes Zeichen."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Erwartete Whitespace vor dem Trennzeichen."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Erwartete Trennzeichen."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variablenname wurde erwartet."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Unerwarteter Statement-Anfang."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Unerkannte Statement-Typ."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Bisher wurde keine Transaktion gestartet."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Unerwartetes Zeichen."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Diese Art von Klausel wurde zuvor analysiert."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Unerkanntes Schlüsselwort."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Schlüsselwort am Ende der Anweisung."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Unerwartete Datensatzanforderung."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Tabellenname wurde erwartet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Mindestens eine Felddefinition wurde erwartet."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Ein „RETURNS“-Schlüsselwort wurde erwartet."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "Fehler #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Unerwartetes Ende einer LOCK-Anweisung."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "strikter Fehler"
|
||||
#: 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.
+143
-83
@@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-01-24 07:02+0000\n"
|
||||
"Last-Translator: Παναγιώτης Παπάζογλου <papaz_p@yahoo.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.11-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Δεν εφαρμόστηκε ακόμα."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 "Μη αναγνωρισμένη λειτουργία αλλαγής."
|
||||
|
||||
@@ -35,34 +39,53 @@ msgstr "Μη αναγνωρισμένη λειτουργία αλλαγής."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Αναμενόταν %1$d τιμές, αλλά βρέθηκαν %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "Αναμενόταν μια ανοιχτή αγκύλη ακολουθούμενη από ένα σύνολο τιμών."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Αναμενόταν μια ανοιχτή αγκύλη."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Μη αναμενόμενο τέλος της έκφρασης CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,152 +93,189 @@ msgstr ""
|
||||
"Αναμενόταν ένα όνομα συμβόλου! Μια δεσμευμένη λέξη-κλειδί δεν μπορεί να "
|
||||
"χρησιμοποιηθεί ως όνομα στήλης χωρίς εισαγωγικά."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Αναμενόταν όνομα συμβόλου!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Αναμενόταν κλείσιμο αγκύλης."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Μη αναγνωρισμένος τύπος δεδομένων."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Αναμενόταν μια ετικέτα."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Βρέθηκε μια ετικέτα προηγουμένως."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Μη αναμενόμενη τελεία."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Αναμενόταν μια έκφραση."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Αναμενόταν το παλαιό όνομα του πίνακα."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Αναμενόταν η λέξη-κλειδί «TO»."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Αναμενόταν το νέο όνομα του πίνακα."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Αναμενόταν μια λειτουργία μετονομασίας."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Απολεσθείσα έκφραση."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Μη αναμενόμενος χαρακτήρας."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Αναμενόταν λευκό(ά) διάστημα(τα) πριν τον διαχωριστή."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Αναμενόταν διαχωριστής."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Αναμενόταν τελικό εισαγωγικό %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Αναμενόταν όνομα μεταβλητής."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Μη αναμενόμενη έναρξη δήλωσης."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Μη αναγνωρισμένος τύπος δήλωσης."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Μη αναμενόμενο τεκμήριο."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Αυτός ο τύπος ρύτρας έχει αναλυθεί προηγουμένως."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Μη αναγνωρισμένη λέξη κλειδί."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Μη αναμενόμενη έναρξη δήλωσης."
|
||||
msgstr "Λέξη-κλειδί στο τέλος της δήλωσης."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Μη αναμενόμενη ταξινόμηση δηλώσεων."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Αναμενόταν το όνομα της οντότητας."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Αναμενόταν όνομα πίνακα."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Αναμενόταν τουλάχιστον ένας ορισμός πεδίου."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "Αυτός ο τύπος ρύτρας δεν είναι έγκυρος σε ερωτήματα πολλαπλών πινάκων."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "σφάλμα #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Μη αναμενόμενο τέλος της δήλωσης LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
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 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.
+136
-82
@@ -3,31 +3,35 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-10-26 23:49+0000\n"
|
||||
"Last-Translator: Bo Anderson <bo@toxicflames.co.uk>\n"
|
||||
"Language-Team: English (United Kingdom) "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/sql-parser/en_GB/>\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 2.17\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Not implemented yet."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -36,34 +40,53 @@ msgstr "Unrecognised alter operation."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d values were expected, but found %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Unexpected end of CASE expression"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -71,150 +94,181 @@ msgstr ""
|
||||
"A symbol name was expected! A reserved keyword cannot be used as a column "
|
||||
"name without backquotes."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "A symbol name was expected!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Unrecognised data type."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "An alias was expected."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "An alias was previously found."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Unexpected dot."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "An expression was expected."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Keyword \"TO\" was expected."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "A rename operation was expected."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Missing expression."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Unexpected character."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Expected whitespace(s) before delimiter."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Expected delimiter."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Ending quote %1$s was expected."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Variable name was expected."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Unexpected beginning of statement."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Unrecognised statement type."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "No transaction was previously started."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Unexpected token."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "This type of clause was previously parsed."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Unrecognised keyword."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Keyword at end of statement."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Unexpected ordering of clauses."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "A table name was expected."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "A \"RETURNS\" keyword was expected."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "error #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Unexpected end of LOCK statement."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "strict error"
|
||||
#: 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.
+125
-77
@@ -4,9 +4,9 @@
|
||||
# Automatically generated, 2014.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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-"
|
||||
@@ -18,16 +18,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.10\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -36,183 +40,227 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "eraro #1"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
#: 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.
+134
-80
@@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-09-10 09:25+0000\n"
|
||||
"Last-Translator: Franco <francobenedetti.59+github1@gmail.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.17-dev\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Aún no implementado."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,35 +39,54 @@ msgstr "Operación de modificación desconocida."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Se esperaban %1$d valores, pero encontró %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Final inesperado de expresión CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -71,150 +94,181 @@ msgstr ""
|
||||
"¡Se esperaba un nombre de símbolo! Una palabra reservada no puede usarse "
|
||||
"como nombre de columna sin comillas."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "¡Se esperaba un nombre de símbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipo de dato desconocido."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Se esperaba un alias."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Se encontró anteriormente un alias."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Punto inesperado."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Se esperaba una expresión."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Se esperaba la palabra clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Se esperaba un cambio de nombre."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expresión desaparecida."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caracter inesperado."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Espacio(s) en blanco esperado(s) antes de delimitador."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Delimitador esperado."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Se esperaba terminar la cita %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Se esperaba el nombre de la variable."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Comienzo inesperado de declaración."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipo de declaración desconocida."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Ninguna operación se inició anteriormente."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Símbolo (token) inesperado."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Este tipo de cláusula se analizó previamente."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Palabra clave no reconocida."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Palabra clave al final de la sentencia."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Orden inesperado de condiciones."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Se esperaba un nombre de tabla."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Se esperaba una palabra \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "error #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Fin inesperado de la instrucción LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "error estricto"
|
||||
#: 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.
+133
-79
@@ -3,10 +3,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-09-06 19:45+0000\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"
|
||||
@@ -15,18 +15,22 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.17-dev\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Hetkel veel rakendamata."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,34 +39,53 @@ msgstr "Tundmatu ALTER operatsioon."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Oodati %1$d väärtust, kuid leiti %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Oodati avanevat sulgu."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Ootamatu CASE lause lõpp"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,150 +93,181 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Oodati sümboli nime!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tundmatu andmetüüp."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Oodati aliast."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Eelnevalt leiti alias."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Ootamatu punkt."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Oodati avaldist."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Oodati tabeli vana nime."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Oodati võtmesõna \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Oodati tabeli uut nime."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Oodati ümbernimetamist."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Avaldis puudub."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Ootamatu sümbol."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Oodati eraldajale eelnevat tühemikku."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Oodati eraldajat."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Oodati lõpetavat sümbolit %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Oodati muutuja nime."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Ootamatu lause algus."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tundmatut tüüpi lause."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Transaktsiooni ei olnud eelnevalt alustatud."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Ootamatud märk."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Sellist tüüpi klausel parsiti eelnevalt."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Tundmatu võtmesõna."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Võtmesõna lause lõpus."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ootamatu lausete järjestus."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Oodati olemi nime."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Oodati tabeli nime."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Oodati vähemalt ühe veeru kirjeldust."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Oodati võtmesõna \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "viga #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Ootamatu LOCK lause lõpp."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "otsene viga"
|
||||
#: 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.
+149
-81
@@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -15,16 +15,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -33,208 +37,272 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Ez dago datu-baserik aukeratuta."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "adierazpen erregular moduan"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "%s taula ezabatu egin da"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Txantiloi-fitxategiaren izena"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Errorea"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Taularen hasieran"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Query type"
|
||||
msgid "strict error"
|
||||
msgstr "Kontsulta mota"
|
||||
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.
+162
-101
@@ -1,248 +1,309 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2019-03-25 19:40+0000\n"
|
||||
"Last-Translator: manssour <nikman360@yahoo.com>\n"
|
||||
"Language-Team: Persian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/fa/>\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 3.6-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#, fuzzy
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "هنوز پیاده سازی نشده."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#, fuzzy
|
||||
#: 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 "بیانیه جدیدی یافت شد،اما هیچ محدودیتی قبل و بعد از ان یافت نشد"
|
||||
msgstr "بیانیهی جدیدی یافت شد،اما هیچ محدودیتی قبل و بعد از آن یافت نشد."
|
||||
|
||||
#: src/Components/AlterOperation.php:253
|
||||
#, fuzzy
|
||||
#: 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 "عملیات غیر قابل تشخیص"
|
||||
msgstr "عملیاتِ تغییرِ غیر قابل تشخیص."
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "%1$d مقادیر انتظار می رود، اما یافت شد %2$d"
|
||||
msgstr "مقادیر %1$d انتظار می رود، اما %2$d یافت شد."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#, fuzzy
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "یک براکت باز دنبال شده توسط مقادیر قرار داده شده"
|
||||
msgstr "باید یک براکت آغازین و بعد از آن چند مقدار وجود داشته باشد."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#, fuzzy
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "یک براکت باز دنبال شده"
|
||||
msgstr "یک براکت آغازین باید وجود داشته باشد."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#, fuzzy
|
||||
#: 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 "کلمه کلیدی ناشناس"
|
||||
msgstr "کلمات کلیدی غیرمنتظره."
|
||||
|
||||
#: src/Components/CaseExpression.php:199
|
||||
#, fuzzy
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "پایان ناشناخته عبارات"
|
||||
msgstr "پایان غیرمنتظره برای عبارت CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
msgstr "هیچ سطری انتخاب نشده است"
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "سطر حذف گرديد"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "بعنوان مبين منظم(as regular expression)"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, fuzzy, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "جدول %s حذف گرديد"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "هیچ پایگاه داده ای انتخاب نشده است."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "خطا"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "در ابتداي جدول"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Query"
|
||||
msgid "strict error"
|
||||
msgstr "پرس و جو"
|
||||
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.
+150
-82
@@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-12-01 19:45+0000\n"
|
||||
"Last-Translator: ekeimaja <ekeimaja@gmail.com>\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"
|
||||
@@ -13,19 +13,23 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.18-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Ei vielä toteutettu."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -34,35 +38,58 @@ msgstr "Tunnistamaton \"alter\"-toiminto."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Odotettiin arvoa %1$d , mutta löydettiin %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "Odotettiin avausmerkkiä."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Odottamaton loppu CASE-ilmaisulle"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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 "
|
||||
@@ -71,166 +98,207 @@ msgstr ""
|
||||
"Odotettiin symbolin nimeä! Varattua avainsanaa ei voida käyttää palstan "
|
||||
"nimenä ilman lainausmerkkejä."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Odotettiin symbolinimeä!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Odotettiin pilkkua tai sulkumerkkiä."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "Odotettiin sulkumerkkiä."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tunnistamaton datatyyppi."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Odotettiin aliasta."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Odottamaton piste."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Odotettiin ilmaisua."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Odotettiin vanhaa taulunimeä."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Odotettiin uutta taulunimeä."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Odotettiin uudelleennimeämistoimintoa."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "regexp-haku"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Odottamatton merkki."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Odotettiin loppumerkkiä %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Odotettiin muuttujaa."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Odottamaton merkki."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Taulun alkuun"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Taulunimen pohja"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "virhettä."
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Odottamaton ilmaisun alku."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr "Odottamaton avainsana"
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Kerää virheet"
|
||||
#| 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.
+137
-82
@@ -3,30 +3,34 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2018-12-23 05:01+0000\n"
|
||||
"Last-Translator: tmtisfree <tmtisfree@free.fr>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/fr/>\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 3.4-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Pas encore mis en œuvre."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,34 +39,54 @@ msgstr "Opération ALTER non reconnue."
|
||||
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:111
|
||||
#: 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 était attendus."
|
||||
msgstr ""
|
||||
"Une parenthèse gauche suivie d'un ensemble de valeurs étaient attendus."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Fin inattendue d'une expression CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,150 +94,181 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Un nom de variable était attendu !"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Type de données non reconnu."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Un alias était attendu."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Un alias a été constaté précédemment."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Point inattendu."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Une expression était attendue."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Le mot clé « TO » était attendu."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Une opération de renommage était attendue."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expression manquante."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Caractère inattendu."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Des espaces ou tabulations étaient attendus avant le délimiteur."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Un délimiteur était attendu."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Un guillemet %1$s était attendu."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Un nom de variable était attendu."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Début d'énoncé inattendu."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Type d'énoncé non reconnu."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: 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:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Jeton inattendu."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Mot clé non reconnu."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Mot clé à la fin de l'énoncé."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Classement inattendu des clauses."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Un nom de table était attendu."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Le mot clé « RETURNS » était attendu."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "erreur #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Fin inattendue de l'instruction LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "erreur stricte"
|
||||
#: 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.
+141
-79
@@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,195 +41,253 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "Compression"
|
||||
msgid "Missing expression."
|
||||
msgstr "Kompresje"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Flater"
|
||||
#| msgid "Number of tables:"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Oantal tabellen:"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: 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 "Query error"
|
||||
msgid "strict error"
|
||||
msgstr "Queryflater"
|
||||
#| 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.
+209
-137
@@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -15,16 +15,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
@@ -35,224 +39,292 @@ msgstr "Operacións de táboas con iconas"
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: 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:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Non hai ningunha base de datos escollida."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
msgid "An offset was expected."
|
||||
#: 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/OptionsArray.php:143
|
||||
#, php-format
|
||||
msgid "This option conflicts with \"%1$s\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:109
|
||||
#, 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:119
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#, 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:153
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Eliminouse a fileira"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected character."
|
||||
msgstr "Hai caracteres inesperados na liña %s."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#, 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:884
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Modelo de nome dos ficheiros"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: src/Parser.php:442
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: 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/ReplaceStatement.php:190
|
||||
#: 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/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: 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:503
|
||||
#: 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:375
|
||||
#: 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:430
|
||||
#: 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:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "erros."
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "No comezo da táboa"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Recoller os erros"
|
||||
#| 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.
+148
-85
@@ -5,216 +5,279 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2018-12-05 14:09+0000\n"
|
||||
"Last-Translator: Hardik Jogadia <hardikbjogadia@gmail.com>\n"
|
||||
"Language-Team: Gujarati <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/gu/>\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 3.4-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "હજુ સુધી અમલમાં નથી મુકાયુ."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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 ""
|
||||
"નવો નિવેદન મળ્યો હતો, પરંતુ તે અને પાછલા એક વચ્ચે કોઈ વિભાજક અક્ષરો નથી મળયા."
|
||||
msgstr "નવો નિવેદન મળ્યો હતો, પરંતુ તે અને પાછલા એક વચ્ચે કોઈ વિભાજક અક્ષરો નથી મળયા."
|
||||
|
||||
#: src/Components/AlterOperation.php:253
|
||||
#: 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."
|
||||
msgstr "%1$d આ પ્રકાર ની values અપેક્ષિત હતી, પણ મળ્યું %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "ઓપનિંગ બ્રેકેટ અપેક્ષિત હતું."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "અલ્પવિરામ અથવા કલોસિંગ બ્રેકેટની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "કલોસિંગ બ્રેકેટની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "અનપેક્ષિત ડેટા પ્રકાર."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "અનપેક્ષિત પૂર્ણ વિરામ."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "નિવેદનની અપેક્ષા હતી."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "ટેબલનુ જૂનું નામ અપેક્ષિત હતુ."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "કીવર્ડ \"TO\" અપેક્ષિત હતો."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr ""
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected end of CASE expression"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "અનપેક્ષિત અંત CASE નિવેદન નો"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr ""
|
||||
#: 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.
+135
-81
@@ -1,31 +1,35 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2018-04-25 11:54+0000\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-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 3.0-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "לא מוטמע עדיין."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 "פעולת שינוי בלתי מזוהה."
|
||||
|
||||
@@ -34,34 +38,53 @@ msgstr "פעולת שינוי בלתי מזוהה."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "היו אמורים להיות %1$d ערכים, אך נמצאו %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "היו אמורים להיות סוגריים מרובעים פותחים ואחריהם סדרה של ערכים."
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "היו אמורים להיות סוגריים מרובעים פותחים."
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "סיום בלתי צפוי לביטוי התניה (CASE)"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -69,150 +92,181 @@ msgstr ""
|
||||
"אמור היה להיות שם של סמל! אסור להשתמש במילה שמורה בתור שם עמודה ללא סימן "
|
||||
"הטעמה משני (`)."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "אמור היה להיות שם סמל!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "אמורים היו להיות פסיק או סוגריים סוגרים."
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "אמורים היו להיות סוגריים סוגרים."
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "סוג הנתונים אינו מזוהה."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "אמור היה להיות כינוי."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "נמצא כינוי בעבר."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "נקודה בלתי צפויה."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "אמור היה להיות ביטוי."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "אמור היה להיות השם הישן של הטבלה."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "אמורה הייתה להיות מילת המפתח „TO” (אל)."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "אמור היה להיות השם החדש של הטבלה."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "אמורה הייתה להיות פעולת שינוי שם."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "ביטוי חסר."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "תו בלתי צפוי."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "אמורים היו להיות רווחים לפני המפריד."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "אמור היה להיות מפריד."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "אמורות היו להיות מירכאות סוגרות %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "אמור היה להיות שם משתנה."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "תחילת הביטוי אינו צפוי."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "סוג המשפט בלתי מזוהה."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "לא החלה העברה בעבר."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "אסימון בלתי צפוי."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "סוג הסעיף הזה כבר נותח בעבר."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "מילת מפתח בלתי מזוהה."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "מילת מפתח בסוף משפט."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "סידור הסעיפים בלתי צפוי."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "אמור היה להיות שם היישות."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "אמור היה להיות שם טבלה."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "אמורה הייתה להיות לפחות הגדרת עמודה אחת."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "אמורה הייתה להיות מילת מפתח „RETURNS” (מחזירה)."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "סוג סעיף זה אינו תקף בשאילתות מרובות טבלאות."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "שגיאה #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "סיום בלתי צפוי להכרזת נעילה (LOCK)."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "שגיאת הקפדה"
|
||||
#: 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.
+162
-108
@@ -1,248 +1,302 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2015-10-15 11:29+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"hi/>\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 2.5-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
msgstr "अभी लागू नहीं किया गया।"
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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 ""
|
||||
msgstr "एक नया कथन मिला, परंतु पूर्व कथन और नए कथन के बीच कोई सीमांकक नहीं मिला।"
|
||||
|
||||
#: src/Components/AlterOperation.php:253
|
||||
#, fuzzy
|
||||
#| msgid "Iconic table operations"
|
||||
#: 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 "चिह्न टेबल ऑपरेटरों"
|
||||
msgstr "अमान्य बदलाव संक्रिया।"
|
||||
|
||||
#: src/Components/Array2d.php:88
|
||||
#, php-format
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
msgstr "%1$d आपेक्षित था परन्तु %2$d मिला।"
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "एक खुला कोष्ठक आपेक्षित था।"
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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 ""
|
||||
msgstr "अनापेक्षित बीजशब्द।"
|
||||
|
||||
#: src/Components/CaseExpression.php:199
|
||||
#: 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/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "टेबल नाम टेम्पलेट"
|
||||
msgstr "एक प्रतीक नाम आपेक्षित था!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "कोइ डाटाबेस नहीं चुना गया है।"
|
||||
msgstr "एक अल्पविराम या एक समापन कोष्ठक अपेक्षित था।"
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
msgstr "एक समापन कोष्ठक अपेक्षित था।"
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
msgstr "आंकड़े का अमान्य प्रकार।"
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#: 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:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
#: src/Components/Expression.php:403
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
msgstr "अनापेक्षित बिंदु।"
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#, fuzzy
|
||||
#| msgid "No rows selected"
|
||||
msgid "An expression was expected."
|
||||
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:86 src/Components/Limit.php:108
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr ""
|
||||
msgstr "एक सीमांक अपेक्षित था।"
|
||||
|
||||
#: src/Components/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "रौ को डिलीट कर दिया"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "नियमित अभिव्यक्ति के रूप में"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "टेबल नाम टेम्पलेट"
|
||||
msgstr "चर नाम अपेक्षित।"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "टेबल के शुरू में"
|
||||
msgstr "कथन का अनापेक्षित आरंभ।"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
msgstr "अमान्य कथन प्रकार।"
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
msgstr "पूर्व में कोई अंतरण आरंभ नहीं किया गया था।"
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Table name template"
|
||||
msgid "A table name was expected."
|
||||
msgstr "टेबल नाम टेम्पलेट"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "त्रुटियों"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "टेबल के शुरू में"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "त्रुटियों को इकट्ठा करें"
|
||||
#| 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.
+153
-83
@@ -1,9 +1,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -12,20 +12,24 @@ msgstr ""
|
||||
"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"
|
||||
"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:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -34,215 +38,281 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "No databases selected."
|
||||
msgid "An alias was expected."
|
||||
msgstr "Nema odabrane baze podataka."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: 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:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "kao regularan izraz"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
#, fuzzy
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: 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:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
msgid "A table name was expected."
|
||||
msgstr "Predložak naziva datoteka"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "errors."
|
||||
msgid "error #1"
|
||||
msgstr "greške."
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Pri početku tablice"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "strict error"
|
||||
msgstr "Skupi greške"
|
||||
#| 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.
+149
-77
@@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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-"
|
||||
@@ -15,17 +15,21 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.10\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Még nincs megvalósítva."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -34,195 +38,263 @@ msgstr "Felismerhetetlen módosítás művelet."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Egy szimbólumnév várt!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Felismerhetetlen adattípus."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Egy álnév várt."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Egy álnév korábban már megtalálva."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Váratlan pont."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Egy kifejezés várt."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "\"TO\" kulcsszavat vártunk."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Egy átnevezési művelet várt."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "reguláris kifejezésként"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Váratlan karakter."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: 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:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Határolót vártunk."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Változónév várt."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Felismerhetetlen utasítástípus."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Nem volt korábban elindított tranzakció."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Váratlan jelsor."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: 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:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Felismerhetetlen kulcsszó."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: 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:503
|
||||
#: 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:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Az entitás neve várt."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: 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:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "\"RETURNS\" kulcsszavat vártunk."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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ó."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "hiba #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected beginning of statement."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Váratlan utasítás kezdet."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "szigorú hiba"
|
||||
#: 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.
+151
-79
@@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -19,16 +19,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -37,197 +41,265 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Variable name was expected."
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: src/Components/CreateDefinition.php:300
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "Սպասվում էր ստորակետը կամ փակող փակագիծը։"
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Սպասվում էր այլանունը։"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Սպասվում էր արտահայտությունը։"
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի հին անունը։"
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Սպասվում էր աղյուսակի նոր անունը։"
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Սպասվում էր վերանվանման գործողությունը։"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "որպես կանոնավոր արտահայտություն"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Անսպասելի նշան։"
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Սպասվում էր %1$s փակող չակերտը։"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Variable name was expected."
|
||||
msgid "A table name was expected."
|
||||
msgstr "Սպասվում էր փոփոխականի անունը։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Սպասվում էր առնվազն մեկ սյունակի սահմանումը։"
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "Սխալ"
|
||||
#| msgid "Unexpected characters on line %s."
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Անսպասելի նշաններ %s տողում։"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Query error"
|
||||
msgid "strict error"
|
||||
msgstr "Հարցման սխալ"
|
||||
#| 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.
+146
-84
@@ -5,32 +5,36 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-11-14 22:08+0000\n"
|
||||
"Last-Translator: Giovanni Sora <g.sora@tiscali.it>\n"
|
||||
"Language-Team: Interlingua <https://hosted.weblate.org/projects/phpmyadmin"
|
||||
"/sql-parser/ia/>\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 2.18-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Ancora non actuate."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -39,34 +43,53 @@ msgstr "Operation d alteration non recognoscite."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Un fin inexpectate del expression CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -74,150 +97,189 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "On expectava un nomine de symbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Typo de datos non cognoscite."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "On expectava un alias."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Previemente on trovava un pseudonymo."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Puncto inexpectate."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "On expectava un expression."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "On expectava le parola clave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "On expectava un operation de renominar.."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Expression mancante."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Un character non expectate."
|
||||
msgstr "Un character non expectate."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "On expectava spatio(s) blanc ante le demarcator."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "On expectava demarcator."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "On expectava un nomine de variabile."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Un initio de instruction non expectate."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Typo de declaration non recognoscite."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Necun transaction esseva initiate previemente."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Un indicio non expectate."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Iste typo de proposition esseva analysate previemente."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Parola clave non recognoscite."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Parola clave al fin del instruction."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Un ordine de clausas non expectate."
|
||||
msgstr "Un ordine de clausas non expectate."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "On expectava le nomine del entitate."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "On expectava un nomine de tabella."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "On expectava le parola clave \"RETURN\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "error #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Un initio de instruction LOCK non expectate."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "stricte error"
|
||||
#: 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.
+134
-81
@@ -1,12 +1,11 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2019-03-11 15:03+0000\n"
|
||||
"Last-Translator: Muhammad Rifqi Priyo Susanto "
|
||||
"<muhammadrifqipriyosusanto@gmail.com>\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"
|
||||
@@ -14,21 +13,25 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.5.1\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
"X-Poedit-Basepath: ../../..\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Belum diimplementasikan."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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."
|
||||
|
||||
@@ -37,34 +40,53 @@ msgstr "Operasi ubah tabel (alter) tak dikenal."
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "Nilai %1$d diharapkan. Namun, ditemukan %2$d."
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Akhir operasi CASE tak terduga"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -72,150 +94,181 @@ msgstr ""
|
||||
"Sebuah nama simbol diharapkan! Kata kunci yang telah diatur tidak dapat "
|
||||
"digunakan sebagai nama kolom tanpa tanda kutip."
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Sebuah nama simbol diharapkan!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipe data tak dikenal."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Sebuah alias diharapkan."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Sebuah alias telah ditemukan sebelumnya."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Titik tak terduga."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Sebuah perintah (expression) diharapkan."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "Nama lama tabel diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Kata kunci \"TO\" diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "Nama baru tabel diharapkan."
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Sebuah operasi ganti nama diharapkan."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Perintah (expression) hilang."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Karakter tak terduga."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Mengharapkan spasi sebelum pembatas."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Mengharapkan pembatas."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Petik akhir %1$s diharapkan."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Nama variabel diharapkan."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Awal pernyataan tak terduga."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Jenis pernyataan tak dikenal."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Tidak ada transaksi yang dimulai sebelumnya."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Token tak terduga."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Jenis klausa ini telah diurai sebelumnya."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Kata kunci tak dikenal."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Kata kunci pada akhir pernyataan."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Pengurutan klausa tak terduga."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Nama entitas diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Sebuah nama tabel diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "Setidaknya satu definisi kolom diharapkan."
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Sebuah kata kunci \"RETURNS\" diharapkan."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "galat #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Awal pernyataan tak terduga."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "galat ketat"
|
||||
#: 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.
+135
-81
@@ -1,11 +1,11 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2017-09-09 08:40+0000\n"
|
||||
"Last-Translator: Dan Ungureanu <udan1107@gmail.com>\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"
|
||||
@@ -13,20 +13,24 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.17-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "Non ancora implementato."
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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 c'è alcun delimitatore tra questo "
|
||||
"E' stato trovato un nuovo statement, ma non c'è alcun delimitatore tra il "
|
||||
"nuovo statement e il precedente."
|
||||
|
||||
#: src/Components/AlterOperation.php:253
|
||||
#: 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."
|
||||
|
||||
@@ -35,34 +39,53 @@ msgstr "Operazione di modifica non riconosciuta."
|
||||
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:111
|
||||
#: 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:114 src/Components/CreateDefinition.php:201
|
||||
#: 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:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "Inattesa fine dell'espressione CASE"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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."
|
||||
@@ -70,150 +93,181 @@ 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Era atteso un nome di simbolo!"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: 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:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "Tipo dati non riconosciuto."
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "Era atteso un alias."
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr "Un alias è stato trovato precedentemente."
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr "Segno di punteggiatura \"punto\" inatteso."
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: src/Components/ExpressionArray.php:106 src/Statements/WithStatement.php:197
|
||||
msgid "An expression was expected."
|
||||
msgstr "Era attesa un'espressione."
|
||||
|
||||
#: src/Components/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: 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:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "Era attesa la parola chiave \"TO\"."
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: 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:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "Era attesa una operazione di rinomina."
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "Espressione mancante."
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "Carattere inatteso."
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "Erano attesi uno o più spazi bianchi prima del delimitatore."
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "Era atteso un delimitatore."
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "Era atteso il fine quote %1$s."
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "Era atteso un nome di variabile."
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "Inizio di statement inatteso."
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "Tipo statement non riconosciuto."
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "Non è stata iniziata alcuna transazione in precedenza."
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "Token inatteso."
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "Questo tipo di clausola è stata esaminata in precedenza."
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "Parola chiave non riconosciuta."
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "Parola chiave alla fine dello statement."
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "Ordinamento di clausole inatteso."
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "Era atteso il nome dell'entity."
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "Era atteso un nome di tabella."
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "Era attesa una parola chiave \"RETURNS\"."
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: 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."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "errore #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "Inattesa fine dello statement LOCK."
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "errore di tipo strict"
|
||||
#: 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.
+165
-109
@@ -1,32 +1,36 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\n"
|
||||
"PO-Revision-Date: 2019-02-22 16:18+0000\n"
|
||||
"Last-Translator: Joshua PowellNishiyama <nzjpnboy@outlook.com>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"sql-parser/ja/>\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 3.5-dev\n"
|
||||
"X-Generator: Weblate 4.16-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr "実装されていません。"
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 操作。"
|
||||
|
||||
@@ -35,183 +39,235 @@ msgstr "認識できない alter 操作。"
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr "値 %1$d があるべきですが、 %2$d が見つかりました。"
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr "左括弧とそれに続く一連の値が予期されていました。"
|
||||
msgstr "左括弧とそれに続く一連の値があるべきです。"
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr "左括弧が予期されていました。"
|
||||
msgstr "左括弧が必要です。"
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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 "予期しないキーワード。"
|
||||
msgstr "予期しないキーワードです。"
|
||||
|
||||
#: src/Components/CaseExpression.php:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr "予期しないCASE式の終了"
|
||||
msgstr "予期しない CASE 式の終了"
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
msgid ""
|
||||
"A symbol name was expected! A reserved keyword can not be used as a column "
|
||||
"name without backquotes."
|
||||
msgstr "シンボル名が予期されていました。 カラム名は予約語を利用するときに、バッククォートでエスケープする必要があります。"
|
||||
#: src/Components/CaseExpression.php:212
|
||||
msgid "Potential duplicate alias of CASE expression."
|
||||
msgstr "CASE 式でエイリアスが重複している可能性があります。"
|
||||
|
||||
#: src/Components/CreateDefinition.php:237
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "シンボル名があるべきです!"
|
||||
#: src/Components/CaseExpression.php:225
|
||||
msgid "An alias expected after AS but got "
|
||||
msgstr "AS の後にエイリアスが必要ですが、取得したものは "
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
msgid "A comma or a closing bracket was expected."
|
||||
msgstr "カンマか閉じる括弧があるべきです。"
|
||||
|
||||
#: src/Components/CreateDefinition.php:286
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr "閉じる括弧があるべきです。"
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
msgid "Unrecognized data type."
|
||||
msgstr "認識できないデータ形式。"
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
msgid "An alias was expected."
|
||||
msgstr "エイリアスがあるべきです。"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
#: 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/Expression.php:364
|
||||
#: 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/ExpressionArray.php:102
|
||||
msgid "An expression was expected."
|
||||
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:86 src/Components/Limit.php:108
|
||||
#: src/Components/Limit.php:78 src/Components/Limit.php:105
|
||||
msgid "An offset was expected."
|
||||
msgstr "オフセットがあるべきです。"
|
||||
|
||||
#: src/Components/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr "テーブルの古い名前が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr "キーワード \"TO\" があるべきです。"
|
||||
msgstr "キーワード \"TO\" が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr "テーブルの新しい名前が必要です。"
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "リネーム操作が必要です。"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
msgid "Missing expression."
|
||||
msgstr "式がありません。"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr "予期しない文字。"
|
||||
msgstr "予期しない文字です。"
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr "空白が区切り文字の前にあるべきです。"
|
||||
msgstr "区切り文字の前に空白が必要です。"
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr "区切り文字があるべきです。"
|
||||
msgstr "区切り文字が必要です。"
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: src/Lexer.php:1004
|
||||
#, php-format
|
||||
msgid "Ending quote %1$s was expected."
|
||||
msgstr "終端クォート %1$s があるべきです。"
|
||||
msgstr "終端クォート %1$s が必要です。"
|
||||
|
||||
#: src/Lexer.php:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr "変数名があるべきです。"
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ステートメントの開始があるべきです。"
|
||||
msgstr "ここで文を始めることができません。"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr "認識されないステートメント形式。"
|
||||
msgstr "認識されないステートメント形式です。"
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr "開始されているトランザクションはありません。"
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr "予期しないトークン。"
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr "この句種類は既に処理しました。"
|
||||
msgstr "この種類の句は以前に解釈済みです。"
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr "認識できないキーワードです。"
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ステートメントの末尾にキーワードがあります。"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "予期しない節の順序。"
|
||||
msgstr "予期しない節の順序です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr "エンティティの名前が予想されていました。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
msgid "A table name was expected."
|
||||
msgstr "テーブル名があるべきです。"
|
||||
msgstr "テーブル名が必要です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: src/Statements/CreateStatement.php:603
|
||||
msgid "At least one column definition was expected."
|
||||
msgstr "少なくとも 1 つのカラム定義が必要です。"
|
||||
|
||||
#: src/Statements/CreateStatement.php:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr "キーワード \"RETURNS\" があるべきです。"
|
||||
msgstr "キーワード \"RETURNS\" が必要です。"
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr "この句の種類は、複数テーブルクエリでは無効です。"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
msgid "error #1"
|
||||
msgstr "エラー #1"
|
||||
#: src/Statements/LockStatement.php:120
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "LOCK ステートメントが予期せず終了しました。"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
msgid "strict error"
|
||||
msgstr "厳格なエラー"
|
||||
#: 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.
+151
-81
@@ -1,9 +1,9 @@
|
||||
# Automatically generated <>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SQL parser 0\n"
|
||||
"Project-Id-Version: SQL parser 5\n"
|
||||
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
|
||||
"POT-Creation-Date: 2017-08-21 12:54+0200\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/"
|
||||
@@ -15,16 +15,20 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2.5-dev\n"
|
||||
|
||||
#: src/Component.php:43 src/Component.php:63
|
||||
#: src/Component.php:39 src/Component.php:59
|
||||
msgid "Not implemented yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/AlterOperation.php:241 src/Statement.php:334
|
||||
#: 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:253
|
||||
#: 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 ""
|
||||
|
||||
@@ -33,210 +37,276 @@ msgstr ""
|
||||
msgid "%1$d values were expected, but found %2$d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Array2d.php:111
|
||||
#: src/Components/Array2d.php:108
|
||||
msgid "An opening bracket followed by a set of values was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ArrayObj.php:114 src/Components/CreateDefinition.php:201
|
||||
#: src/Components/ArrayObj.php:106 src/Components/CreateDefinition.php:233
|
||||
msgid "An opening bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CaseExpression.php:135 src/Components/CaseExpression.php:164
|
||||
#: src/Components/CaseExpression.php:176 src/Components/CaseExpression.php:190
|
||||
#: src/Statements/DeleteStatement.php:227
|
||||
#: src/Statements/DeleteStatement.php:244
|
||||
#: src/Statements/DeleteStatement.php:292
|
||||
#: src/Statements/DeleteStatement.php:303
|
||||
#: src/Statements/DeleteStatement.php:333
|
||||
#: src/Statements/DeleteStatement.php:344
|
||||
#: 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:217 src/Statements/LoadStatement.php:258
|
||||
#: src/Statements/ReplaceStatement.php:155
|
||||
#: src/Statements/ReplaceStatement.php:182
|
||||
#: 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:199
|
||||
#: src/Components/CaseExpression.php:192
|
||||
msgid "Unexpected end of CASE expression"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/CreateDefinition.php:223
|
||||
#: 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:237
|
||||
#: src/Components/CreateDefinition.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "A symbol name was expected!"
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/CreateDefinition.php:270
|
||||
#: 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:286
|
||||
#: src/Components/CreateDefinition.php:313 src/Statements/WithStatement.php:328
|
||||
msgid "A closing bracket was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/DataType.php:123
|
||||
#: src/Components/DataType.php:130
|
||||
msgid "Unrecognized data type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:244 src/Components/Expression.php:394
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "An alias was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Components/Expression.php:332 src/Components/Expression.php:351
|
||||
#: src/Components/Expression.php:383
|
||||
msgid "An alias was previously found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/Expression.php:364
|
||||
msgid "Unexpected dot."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/ExpressionArray.php:102
|
||||
#: 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/Limit.php:86 src/Components/Limit.php:108
|
||||
#: 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/OptionsArray.php:143
|
||||
#: 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:109
|
||||
#: src/Components/RenameOperation.php:103
|
||||
msgid "The old name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:119
|
||||
#: src/Components/RenameOperation.php:109
|
||||
msgid "Keyword \"TO\" was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:135
|
||||
#: src/Components/RenameOperation.php:124
|
||||
msgid "The new name of the table was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/RenameOperation.php:153
|
||||
#: src/Components/RenameOperation.php:140
|
||||
#, fuzzy
|
||||
#| msgid "The row has been deleted."
|
||||
msgid "A rename operation was expected."
|
||||
msgstr "სტრიქონი წაიშალა"
|
||||
|
||||
#: src/Components/SetOperation.php:117
|
||||
#: src/Components/SetOperation.php:121
|
||||
#, fuzzy
|
||||
#| msgid "as regular expression"
|
||||
msgid "Missing expression."
|
||||
msgstr "რეგულარული გამოსახულება"
|
||||
|
||||
#: src/Lexer.php:237
|
||||
#: src/Lexer.php:274
|
||||
msgid "Unexpected character."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:278
|
||||
#: src/Lexer.php:313
|
||||
msgid "Expected whitespace(s) before delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:296 src/Lexer.php:314
|
||||
#: src/Lexer.php:329 src/Lexer.php:348
|
||||
msgid "Expected delimiter."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lexer.php:843
|
||||
#: 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:884
|
||||
#: src/Lexer.php:1056
|
||||
msgid "Variable name was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:423
|
||||
#: src/Parser.php:456
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected beginning of statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Parser.php:442
|
||||
#: src/Parser.php:499
|
||||
msgid "Unrecognized statement type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:527
|
||||
#: src/Parser.php:587
|
||||
msgid "No transaction was previously started."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:242 src/Statements/DeleteStatement.php:254
|
||||
#: src/Statements/DeleteStatement.php:306
|
||||
#: src/Statements/InsertStatement.php:226
|
||||
#: src/Statements/InsertStatement.php:246 src/Statements/LoadStatement.php:261
|
||||
#: src/Statements/LoadStatement.php:291 src/Statements/LoadStatement.php:310
|
||||
#: src/Statements/ReplaceStatement.php:190
|
||||
msgid "Unexpected token."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:306
|
||||
#: src/Statement.php:327
|
||||
msgid "This type of clause was previously parsed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:366
|
||||
#: src/Statement.php:398
|
||||
msgid "Unrecognized keyword."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statement.php:377
|
||||
#: src/Statement.php:409
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Keyword at end of statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Statement.php:503
|
||||
#: src/Statement.php:555
|
||||
#, fuzzy
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected ordering of clauses."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: src/Statements/CreateStatement.php:375
|
||||
#: src/Statements/CreateStatement.php:549
|
||||
msgid "The name of the entity was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/CreateStatement.php:430
|
||||
#: src/Statements/CreateStatement.php:598
|
||||
#, fuzzy
|
||||
#| msgid "Remove selected users"
|
||||
msgid "A table name was expected."
|
||||
msgstr "Remove selected users"
|
||||
|
||||
#: src/Statements/CreateStatement.php:438
|
||||
#: 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:550
|
||||
#: src/Statements/CreateStatement.php:707
|
||||
msgid "A \"RETURNS\" keyword was expected."
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/DeleteStatement.php:314
|
||||
#: src/Statements/DeleteStatement.php:329
|
||||
msgid "This type of clause is not valid in Multi-table queries."
|
||||
msgstr ""
|
||||
|
||||
#: tests/Lexer/LexerTest.php:19 tests/Parser/ParserTest.php:58
|
||||
#: src/Statements/LockStatement.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Error"
|
||||
msgid "error #1"
|
||||
msgstr "შეცდომა"
|
||||
#| msgid "At Beginning of Table"
|
||||
msgid "Unexpected end of LOCK statement."
|
||||
msgstr "ცხრილის დასაწყისში"
|
||||
|
||||
#: tests/Lexer/LexerTest.php:46 tests/Parser/ParserTest.php:80
|
||||
#: src/Statements/PurgeStatement.php:138
|
||||
msgid "Unexpected keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/Statements/WithStatement.php:118
|
||||
#, fuzzy
|
||||
#| msgid "Ignore errors"
|
||||
msgid "strict error"
|
||||
msgstr "შეცდომების იგნორირება"
|
||||
#| 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 "შეცდომების იგნორირება"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user