Merge remote branch 'upstream/master'

This commit is contained in:
Chanaka Indrajith 2012-05-21 18:43:44 +05:30
commit 2a5961c43a
7 changed files with 428 additions and 371 deletions

View File

@ -97,8 +97,9 @@ require_once './libraries/dbi/'
*
* @return mixed
*/
function PMA_DBI_query($query, $link = null, $options = 0, $cache_affected_rows = true)
{
function PMA_DBI_query($query, $link = null, $options = 0,
$cache_affected_rows = true
) {
$res = PMA_DBI_try_query($query, $link, $options, $cache_affected_rows)
or PMA_mysqlDie(PMA_DBI_getError($link), $query);
return $res;
@ -114,8 +115,9 @@ function PMA_DBI_query($query, $link = null, $options = 0, $cache_affected_rows
*
* @return mixed
*/
function PMA_DBI_try_query($query, $link = null, $options = 0, $cache_affected_rows = true)
{
function PMA_DBI_try_query($query, $link = null, $options = 0,
$cache_affected_rows = true
) {
if (empty($link)) {
if (isset($GLOBALS['userlink'])) {
$link = $GLOBALS['userlink'];
@ -131,7 +133,9 @@ function PMA_DBI_try_query($query, $link = null, $options = 0, $cache_affected_r
$r = PMA_DBI_real_query($query, $link, $options);
if ($cache_affected_rows) {
$GLOBALS['cached_affected_rows'] = PMA_DBI_affected_rows($link, $get_from_cache = false);
$GLOBALS['cached_affected_rows'] = PMA_DBI_affected_rows(
$link, $get_from_cache = false
);
}
if ($GLOBALS['cfg']['DBG']['sql']) {
@ -144,7 +148,8 @@ function PMA_DBI_try_query($query, $link = null, $options = 0, $cache_affected_r
} else {
$_SESSION['debug']['queries'][$hash] = array();
if ($r == false) {
$_SESSION['debug']['queries'][$hash]['error'] = '<b style="color:red">'.mysqli_error($link).'</b>';
$_SESSION['debug']['queries'][$hash]['error']
= '<b style="color:red">' . mysqli_error($link) . '</b>';
}
$_SESSION['debug']['queries'][$hash]['count'] = 1;
$_SESSION['debug']['queries'][$hash]['query'] = $query;
@ -156,7 +161,6 @@ function PMA_DBI_try_query($query, $link = null, $options = 0, $cache_affected_r
$trace[] = PMA_Error::relPath($trace_step['file']) . '#'
. $trace_step['line'] . ': '
. (isset($trace_step['class']) ? $trace_step['class'] : '')
//. (isset($trace_step['object']) ? get_class($trace_step['object']) : '')
. (isset($trace_step['type']) ? $trace_step['type'] : '')
. (isset($trace_step['function']) ? $trace_step['function'] : '')
. '('
@ -314,12 +318,16 @@ function PMA_usort_comparison_callback($a, $b)
$sorter = 'strcasecmp';
}
/* No sorting when key is not present */
if (! isset($a[$GLOBALS['callback_sort_by']]) || ! isset($b[$GLOBALS['callback_sort_by']])) {
if (! isset($a[$GLOBALS['callback_sort_by']])
|| ! isset($b[$GLOBALS['callback_sort_by']])
) {
return 0;
}
// produces f.e.:
// return -1 * strnatcasecmp($a["SCHEMA_TABLES"], $b["SCHEMA_TABLES"])
return ($GLOBALS['callback_sort_order'] == 'ASC' ? 1 : -1) * $sorter($a[$GLOBALS['callback_sort_by']], $b[$GLOBALS['callback_sort_by']]);
return ($GLOBALS['callback_sort_order'] == 'ASC' ? 1 : -1) * $sorter(
$a[$GLOBALS['callback_sort_by']], $b[$GLOBALS['callback_sort_by']]
);
} // end of the 'PMA_usort_comparison_callback()' function
/**
@ -377,7 +385,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
$sql_where_table = 'AND t.`TABLE_COMMENT` LIKE \''
. PMA_escapeMysqlWildcards(PMA_sqlAddSlashes($table)) . '%\'';
} else {
$sql_where_table = 'AND t.`TABLE_NAME` = \'' . PMA_sqlAddSlashes($table) . '\'';
$sql_where_table = 'AND t.`TABLE_NAME` = \''
. PMA_sqlAddSlashes($table) . '\'';
}
} else {
$sql_where_table = '';
@ -398,11 +407,15 @@ function PMA_DBI_get_tables_full($database, $table = false,
if (isset($engine_info['InnoDB'])
&& $engine_info['InnoDB']['module_library'] == 'innobase'
) {
$stats_join = "LEFT JOIN data_dictionary.INNODB_SYS_TABLESTATS stat ON (t.ENGINE = 'InnoDB' AND stat.NAME = (t.TABLE_SCHEMA || '/') || t.TABLE_NAME)";
$stats_join = "LEFT JOIN data_dictionary.INNODB_SYS_TABLESTATS stat"
. " ON (t.ENGINE = 'InnoDB' AND stat.NAME"
. " = (t.TABLE_SCHEMA || '/') || t.TABLE_NAME)";
}
// data_dictionary.table_cache may not contain any data for some tables, it's just a table cache
// auto_increment == 0 is cast to NULL because currently (2011.03.13 GA) Drizzle doesn't provide correct value
// data_dictionary.table_cache may not contain any data for some tables,
// it's just a table cache
// auto_increment == 0 is cast to NULL because currently (2011.03.13 GA)
// Drizzle doesn't provide correct value
$sql = "
SELECT t.*,
t.TABLE_SCHEMA AS `Db`,
@ -431,7 +444,9 @@ function PMA_DBI_get_tables_full($database, $table = false,
NULL AS `Create_options`, -- CREATE_OPTIONS
t.TABLE_COMMENT AS `Comment`
FROM data_dictionary.TABLES t
LEFT JOIN data_dictionary.TABLE_CACHE tc ON tc.TABLE_SCHEMA = t.TABLE_SCHEMA AND tc.TABLE_NAME = t.TABLE_NAME
LEFT JOIN data_dictionary.TABLE_CACHE tc
ON tc.TABLE_SCHEMA = t.TABLE_SCHEMA AND tc.TABLE_NAME
= t.TABLE_NAME
$stats_join
WHERE t.TABLE_SCHEMA IN ('" . implode("', '", $this_databases) . "')
" . $sql_where_table;
@ -460,7 +475,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
`CREATE_OPTIONS` AS `Create_options`,
`TABLE_COMMENT` AS `Comment`
FROM `information_schema`.`TABLES` t
WHERE ' . (PMA_IS_WINDOWS ? '' : 'BINARY') . ' `TABLE_SCHEMA` IN (\'' . implode("', '", $this_databases) . '\')
WHERE ' . (PMA_IS_WINDOWS ? '' : 'BINARY') . ' `TABLE_SCHEMA`
IN (\'' . implode("', '", $this_databases) . '\')
' . $sql_where_table;
}
@ -477,7 +493,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
unset($sql_where_table, $sql);
if (PMA_DRIZZLE) {
// correct I_S and D_D names returned by D_D.TABLES - Drizzle generally uses lower case for them,
// correct I_S and D_D names returned by D_D.TABLES -
// Drizzle generally uses lower case for them,
// but TABLES returns uppercase
foreach ((array)$database as $db) {
$db_upper = strtoupper($db);
@ -509,7 +526,9 @@ function PMA_DBI_get_tables_full($database, $table = false,
if ($table || (true === $tbl_is_group)) {
$sql = 'SHOW TABLE STATUS FROM '
. PMA_backquote($each_database)
.' LIKE \'' . PMA_escapeMysqlWildcards(PMA_sqlAddSlashes($table, true)) . '%\'';
.' LIKE \''
. PMA_escapeMysqlWildcards(PMA_sqlAddSlashes($table, true))
. '%\'';
} else {
$sql = 'SHOW TABLE STATUS FROM '
. PMA_backquote($each_database);
@ -519,8 +538,10 @@ function PMA_DBI_get_tables_full($database, $table = false,
if (extension_loaded('apc')
&& isset($GLOBALS['cfg']['Server']['StatusCacheDatabases'])
&& ! empty($GLOBALS['cfg']['Server']['StatusCacheLifetime'])) {
$statusCacheDatabases = (array) $GLOBALS['cfg']['Server']['StatusCacheDatabases'];
&& ! empty($GLOBALS['cfg']['Server']['StatusCacheLifetime'])
) {
$statusCacheDatabases
= (array) $GLOBALS['cfg']['Server']['StatusCacheDatabases'];
if (in_array($each_database, $statusCacheDatabases)) {
$useStatusCache = true;
}
@ -529,7 +550,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
$each_tables = null;
if ($useStatusCache) {
$cacheKey = 'phpMyAdmin_tableStatus_' . sha1($GLOBALS['cfg']['Server']['host'] . '_' . $sql);
$cacheKey = 'phpMyAdmin_tableStatus_'
. sha1($GLOBALS['cfg']['Server']['host'] . '_' . $sql);
$each_tables = apc_fetch($cacheKey);
}
@ -539,7 +561,10 @@ function PMA_DBI_get_tables_full($database, $table = false,
}
if ($useStatusCache) {
apc_store($cacheKey, $each_tables, $GLOBALS['cfg']['Server']['StatusCacheLifetime']);
apc_store(
$cacheKey, $each_tables,
$GLOBALS['cfg']['Server']['StatusCacheLifetime']
);
}
// Sort naturally if the config allows it and we're sorting
@ -557,7 +582,9 @@ function PMA_DBI_get_tables_full($database, $table = false,
// Size = Data_length + Index_length
if ($sort_by == 'Data_length') {
foreach ($each_tables as $table_name => $table_data) {
${$sort_by}[$table_name] = strtolower($table_data['Data_length'] + $table_data['Index_length']);
${$sort_by}[$table_name] = strtolower(
$table_data['Data_length'] + $table_data['Index_length']
);
}
} else {
foreach ($each_tables as $table_name => $table_data) {
@ -576,7 +603,9 @@ function PMA_DBI_get_tables_full($database, $table = false,
}
if ($limit_count) {
$each_tables = array_slice($each_tables, $limit_offset, $limit_count);
$each_tables = array_slice(
$each_tables, $limit_offset, $limit_count
);
}
foreach ($each_tables as $table_name => $each_table) {
@ -603,6 +632,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
// MySQL forward compatibility
// so pma could use this array as if every server is of version >5.0
// todo : remove and check usage in the rest of the code,
// MySQL 5.0 is required by current PMA version
$each_tables[$table_name]['TABLE_SCHEMA'] = $each_database;
$each_tables[$table_name]['TABLE_NAME'] =& $each_tables[$table_name]['Name'];
$each_tables[$table_name]['ENGINE'] =& $each_tables[$table_name]['Engine'];
@ -649,7 +680,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
// we would lose a db name thats consists only of numbers
foreach ($tables as $one_database => $its_tables) {
if (isset(PMA_Table::$cache[$one_database])) {
PMA_Table::$cache[$one_database] = PMA_Table::$cache[$one_database] + $tables[$one_database];
PMA_Table::$cache[$one_database]
= PMA_Table::$cache[$one_database] + $tables[$one_database];
} else {
PMA_Table::$cache[$one_database] = $tables[$one_database];
}
@ -669,7 +701,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
return $tables[strtolower($database)];
} else {
// one database but inexact letter case match
// as Drizzle is always case insensitive, we can safely return the only result
// as Drizzle is always case insensitive,
// we can safely return the only result
if (PMA_DRIZZLE && count($tables) == 1) {
$keys = array_keys($tables);
if (strlen(array_pop($keys)) == strlen($database)) {
@ -692,7 +725,8 @@ function PMA_DBI_get_tables_full($database, $table = false,
* @param string $sort_by column to order by
* @param string $sort_order ASC or DESC
* @param integer $limit_offset starting offset for LIMIT
* @param bool|int $limit_count row count for LIMIT or true for $GLOBALS['cfg']['MaxDbList']
* @param bool|int $limit_count row count for LIMIT or true
* for $GLOBALS['cfg']['MaxDbList']
*
* @todo move into PMA_List_Database?
*
@ -753,8 +787,12 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false,
if ($force_stats) {
$engine_info = PMA_cacheGet('drizzle_engines', true);
$stats_join = "LEFT JOIN (SELECT 0 NUM_ROWS) AS stat ON false";
if (isset($engine_info['InnoDB']) && $engine_info['InnoDB']['module_library'] == 'innobase') {
$stats_join = "LEFT JOIN data_dictionary.INNODB_SYS_TABLESTATS stat ON (t.ENGINE = 'InnoDB' AND stat.NAME = (t.TABLE_SCHEMA || '/') || t.TABLE_NAME)";
if (isset($engine_info['InnoDB'])
&& $engine_info['InnoDB']['module_library'] == 'innobase'
) {
$stats_join = "LEFT JOIN data_dictionary.INNODB_SYS_TABLESTATS"
. " stat ON (t.ENGINE = 'InnoDB' AND stat.NAME"
. " = (t.TABLE_SCHEMA || '/') || t.TABLE_NAME)";
}
$sql .= "
@ -803,7 +841,9 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false,
// display only databases also in official database list
// f.e. to apply hide_db and only_db
$drops = array_diff(array_keys($databases), (array) $GLOBALS['pma']->databases);
$drops = array_diff(
array_keys($databases), (array) $GLOBALS['pma']->databases
);
if (count($drops)) {
foreach ($drops as $drop) {
unset($databases[$drop]);
@ -815,6 +855,8 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false,
foreach ($GLOBALS['pma']->databases as $database_name) {
// MySQL forward compatibility
// so pma could use this array as if every server is of version >5.0
// todo : remove and check the rest of the code for usage,
// MySQL 5.0 or higher is required for current PMA version
$databases[$database_name]['SCHEMA_NAME'] = $database_name;
if ($force_stats) {
@ -832,7 +874,8 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false,
$databases[$database_name]['SCHEMA_LENGTH'] = 0;
$databases[$database_name]['SCHEMA_DATA_FREE'] = 0;
$res = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($database_name) . ';');
$res = PMA_DBI_query('SHOW TABLE STATUS FROM '
. PMA_backquote($database_name) . ';');
while ($row = PMA_DBI_fetch_assoc($res)) {
$databases[$database_name]['SCHEMA_TABLES']++;
$databases[$database_name]['SCHEMA_TABLE_ROWS']
@ -903,17 +946,20 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
// get columns information from information_schema
if (null !== $database) {
$sql_wheres[] = '`TABLE_SCHEMA` = \'' . PMA_sqlAddSlashes($database) . '\' ';
$sql_wheres[] = '`TABLE_SCHEMA` = \''
. PMA_sqlAddSlashes($database) . '\' ';
} else {
$array_keys[] = 'TABLE_SCHEMA';
}
if (null !== $table) {
$sql_wheres[] = '`TABLE_NAME` = \'' . PMA_sqlAddSlashes($table) . '\' ';
$sql_wheres[] = '`TABLE_NAME` = \''
. PMA_sqlAddSlashes($table) . '\' ';
} else {
$array_keys[] = 'TABLE_NAME';
}
if (null !== $column) {
$sql_wheres[] = '`COLUMN_NAME` = \'' . PMA_sqlAddSlashes($column) . '\' ';
$sql_wheres[] = '`COLUMN_NAME` = \''
. PMA_sqlAddSlashes($column) . '\' ';
} else {
$array_keys[] = 'COLUMN_NAME';
}
@ -998,6 +1044,8 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
// MySQL forward compatibility
// so pma could use this array as if every server is of version >5.0
// todo : remove and check the rest of the code for usage,
// MySQL 5.0 or higher is required for current PMA version
$columns[$column_name]['COLUMN_NAME'] =& $columns[$column_name]['Field'];
$columns[$column_name]['COLUMN_TYPE'] =& $columns[$column_name]['Type'];
$columns[$column_name]['COLLATION_NAME'] =& $columns[$column_name]['Collation'];
@ -1068,7 +1116,8 @@ function PMA_DBI_get_columns_sql($database, $table, $column = null, $full = fals
// * used in primary key => PRI
// * unique one-column => UNI
// * indexed, one-column or first in multi-column => MUL
// Promotion of UNI to PRI in case no promary index exists is done after query is executed
// Promotion of UNI to PRI in case no promary index exists
// is done after query is executed
$sql = "SELECT
column_name AS `Field`,
(CASE
@ -1124,8 +1173,9 @@ function PMA_DBI_get_columns_sql($database, $table, $column = null, $full = fals
* @return false|array array indexed by column names or,
* if $column is given, flat array description
*/
function PMA_DBI_get_columns($database, $table, $column = null, $full = false, $link = null)
{
function PMA_DBI_get_columns($database, $table, $column = null, $full = false,
$link = null
) {
$sql = PMA_DBI_get_columns_sql($database, $table, $column, $full);
$fields = PMA_DBI_fetch_result($sql, 'Field', null, $link);
if (! is_array($fields) || count($fields) == 0) {
@ -1139,7 +1189,10 @@ function PMA_DBI_get_columns($database, $table, $column = null, $full = false, $
if ($f['Key'] == 'PRI') {
$has_pk = true;
break;
} else if ($f['Null'] == 'NO' && ($f['Key'] == 'MUL' || $f['Key'] == 'UNI')) {
} else if ($f['Null'] == 'NO'
&& ($f['Key'] == 'MUL'
|| $f['Key'] == 'UNI')
) {
$has_pk_candidates = true;
}
}
@ -1148,7 +1201,8 @@ function PMA_DBI_get_columns($database, $table, $column = null, $full = false, $
$sql = "
SELECT i.index_name, p.column_name
FROM data_dictionary.indexes i
JOIN data_dictionary.index_parts p USING (table_schema, table_name)
JOIN data_dictionary.index_parts p
USING (table_schema, table_name)
WHERE i.table_schema = '" . PMA_sqlAddSlashes($database) . "'
AND i.table_name = '" . PMA_sqlAddSlashes($table) . "'
AND i.is_unique
@ -1214,12 +1268,14 @@ function PMA_DBI_get_table_indexes_sql($database, $table, $where = null)
NULL AS Comment,
i.index_comment AS Index_comment
FROM data_dictionary.index_parts ip
LEFT JOIN data_dictionary.indexes i USING (table_schema, table_name, index_name)
LEFT JOIN data_dictionary.indexes i
USING (table_schema, table_name, index_name)
WHERE table_schema = '" . PMA_sqlAddSlashes($database) . "'
AND table_name = '" . PMA_sqlAddSlashes($table) . "'
";
} else {
$sql = 'SHOW INDEXES FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table);
$sql = 'SHOW INDEXES FROM ' . PMA_backquote($database) . '.'
. PMA_backquote($table);
}
if ($where) {
$sql .= (PMA_DRIZZLE ? ' AND (' : ' WHERE (') . $where . ')';
@ -1323,7 +1379,9 @@ function PMA_DBI_postConnect($link, $is_controluser = false)
define('PMA_MYSQL_MAJOR_VERSION', (int)$match[0]);
define(
'PMA_MYSQL_INT_VERSION',
(int) sprintf('%d%02d%02d', $match[0], $match[1], intval($match[2]))
(int) sprintf(
'%d%02d%02d', $match[0], $match[1], intval($match[2])
)
);
define('PMA_MYSQL_STR_VERSION', $version['@@version']);
define('PMA_MYSQL_VERSION_COMMENT', $version['@@version_comment']);
@ -1364,7 +1422,8 @@ function PMA_DBI_postConnect($link, $is_controluser = false)
if (! empty($GLOBALS['collation_connection'])) {
PMA_DBI_query("SET CHARACTER SET 'utf8';", $link, PMA_DBI_QUERY_STORE);
PMA_DBI_query(
"SET collation_connection = '" . PMA_sqlAddSlashes($GLOBALS['collation_connection']) . "';",
"SET collation_connection = '"
. PMA_sqlAddSlashes($GLOBALS['collation_connection']) . "';",
$link,
PMA_DBI_QUERY_STORE
);
@ -1794,7 +1853,8 @@ function PMA_DBI_get_triggers($db, $table = '', $delimiter = '//')
. ' WHERE TRIGGER_SCHEMA= \'' . PMA_sqlAddSlashes($db) . '\'';
if (! empty($table)) {
$query .= " AND EVENT_OBJECT_TABLE = '" . PMA_sqlAddSlashes($table) . "';";
$query .= " AND EVENT_OBJECT_TABLE = '"
. PMA_sqlAddSlashes($table) . "';";
}
} else {
$query = "SHOW TRIGGERS FROM " . PMA_backquote($db);
@ -1823,7 +1883,9 @@ function PMA_DBI_get_triggers($db, $table = '', $delimiter = '//')
// do not prepend the schema name; this way, importing the
// definition into another schema will work
$one_result['full_trigger_name'] = PMA_backquote($trigger['TRIGGER_NAME']);
$one_result['full_trigger_name'] = PMA_backquote(
$trigger['TRIGGER_NAME']
);
$one_result['drop'] = 'DROP TRIGGER IF EXISTS '
. $one_result['full_trigger_name'];
$one_result['create'] = 'CREATE TRIGGER '
@ -1870,22 +1932,25 @@ function PMA_DBI_formatError($error_number, $error_message)
if ($error_number == 2002) {
$error .= ' - ' . $error_message;
$error .= '<br />' . __('The server is not responding (or the local server\'s socket is not correctly configured).');
$error .= '<br />';
$error .= __('The server is not responding (or the local server\'s socket is not correctly configured).');
} elseif ($error_number == 2003) {
$error .= ' - ' . $error_message;
$error .= '<br />' . __('The server is not responding.');
} elseif ($error_number == 1005) {
if (strpos($error_message, 'errno: 13') !== false) {
$error .= ' - ' . $error_message;
$error .= '<br />' . __('Please check privileges of directory containing database.');
$error .= '<br />'
. __('Please check privileges of directory containing database.');
} else {
/* InnoDB contraints, see
* http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html
*/
$error .= ' - ' . $error_message .
' (<a href="server_engines.php' .
PMA_generate_common_url(array('engine' => 'InnoDB', 'page' => 'Status')) .
'">' . __('Details...') . '</a>)';
PMA_generate_common_url(
array('engine' => 'InnoDB', 'page' => 'Status')
) . '">' . __('Details...') . '</a>)';
}
} else {
$error .= ' - ' . $error_message;

199
po/ckb.po
View File

@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-18 00:00+0200\n"
"Last-Translator: Darya Said <daryashapol@gmail.com>\n"
"PO-Revision-Date: 2012-05-20 00:56+0200\n"
"Last-Translator: dilan kurdistani <dilan.gilli@gmail.com>\n"
"Language-Team: none\n"
"Language: ckb\n"
"MIME-Version: 1.0\n"
@ -240,7 +240,7 @@ msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى درا
#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراوە"
msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراو"
#: db_export.php:40 db_search.php:334 server_export.php:22
msgid "Select All"
@ -306,7 +306,7 @@ msgstr "بنکەی دراوە درووست بکە پێش ڕوونووسکردن"
#: libraries/config/messages.inc.php:139 tbl_operations.php:569
#, php-format
msgid "Add %s"
msgstr "زۆرکردن %s"
msgstr "زیادکردن %s"
#: db_operations.php:540 libraries/config/messages.inc.php:123
#: tbl_operations.php:321 tbl_operations.php:571
@ -315,7 +315,7 @@ msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە"
#: db_operations.php:544 tbl_operations.php:578
msgid "Add constraints"
msgstr ""
msgstr "زیادکردنی مەرج"
#: db_operations.php:559
msgid "Switch to copied database"
@ -329,7 +329,7 @@ msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو"
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
msgid "Collation"
msgstr ""
msgstr "ڕێکخستن"
#: db_operations.php:599
#, php-format
@ -337,6 +337,7 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"شێوەی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %shere%s"
#: db_operations.php:633
msgid "Edit or export relational schema"
@ -438,7 +439,7 @@ msgstr "مەرج"
#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585
msgid "Ins"
msgstr ""
msgstr "Ins"
#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582
msgid "And"
@ -509,7 +510,7 @@ msgstr ""
#: db_search.php:216
#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
msgstr ""
msgstr "ئەنجامی گەڕان بۆ \"<i>%s</i>\" %s:"
#: db_search.php:239
#, php-format
@ -522,7 +523,7 @@ msgstr[1] ""
#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
msgstr "گەڕۆک"
#: db_search.php:252
#, php-format
@ -558,15 +559,16 @@ msgstr ""
#: db_search.php:297
msgid "Find:"
msgstr "دۆزنەوە:"
msgstr "دۆزینەوە:"
#: db_search.php:301 db_search.php:302
msgid "Words are separated by a space character (\" \")."
msgstr ""
#: db_search.php:315
#, fuzzy
msgid "Inside tables:"
msgstr ""
msgstr "لەناو خشتە:\n"
#: db_search.php:345
msgid "Inside column:"
@ -579,7 +581,7 @@ msgstr "هیچ خشتەیەک نەدۆزرایەوە لە بنکەی دراو"
#: db_structure.php:242 libraries/mysql_charsets.lib.php:411
#: libraries/mysql_charsets.lib.php:418
msgid "unknown"
msgstr ""
msgstr "نەناسراوە"
#: db_structure.php:367 tbl_operations.php:717
#, php-format
@ -620,11 +622,11 @@ msgstr "نیشاندان"
#: libraries/db_structure.lib.php:35 server_replication.php:31
#: server_replication.php:189 server_status.php:610
msgid "Replication"
msgstr ""
msgstr "دووپاتکاری"
#: db_structure.php:624
msgid "Sum"
msgstr ""
msgstr "سەرجەم"
#: db_structure.php:631 libraries/StorageEngine.class.php:344
#, php-format
@ -637,7 +639,7 @@ msgstr ""
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:"
#: db_structure.php:682 libraries/display_tbl.lib.php:2989
#: server_databases.php:292 server_privileges.php:781
@ -663,18 +665,18 @@ msgstr ""
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
#: server_status.php:1625 setup/frames/menu.inc.php:22
msgid "Export"
msgstr ""
msgstr "هەناردن"
#: db_structure.php:701 db_structure.php:749
#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
msgstr "پارچەیەک بۆ چاپکردن"
#: db_structure.php:705 libraries/common.lib.php:3388
#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
msgstr "بەتاڵ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
@ -685,7 +687,7 @@ msgstr ""
#: db_structure.php:709 tbl_operations.php:620
msgid "Check table"
msgstr ""
msgstr "پشکنینی خشتە"
#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:882
msgid "Optimize table"
@ -693,27 +695,27 @@ msgstr ""
#: db_structure.php:714 tbl_operations.php:662
msgid "Repair table"
msgstr ""
msgstr "چاکردنی خشتە"
#: db_structure.php:717 tbl_operations.php:647
msgid "Analyze table"
msgstr ""
msgstr "شیکردنەوەى خشتە"
#: db_structure.php:719
msgid "Add prefix to table"
msgstr ""
msgstr "زیادکردنی پێشگر بۆ خشتە"
#: db_structure.php:721 libraries/mult_submits.inc.php:276
msgid "Replace table prefix"
msgstr ""
msgstr "گۆڕینی پێشگری خشتە"
#: db_structure.php:723 libraries/mult_submits.inc.php:276
msgid "Copy table with prefix"
msgstr ""
msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر"
#: db_structure.php:752 libraries/schema/User_Schema.class.php:426
msgid "Data Dictionary"
msgstr ""
msgstr "فەرهەنگی زانیاریەکان"
#: db_tracking.php:74
msgid "Tracked tables"
@ -729,25 +731,25 @@ msgstr ""
#: server_status.php:1254 server_synchronize.php:1448
#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
msgstr "بنکەی دراو"
#: db_tracking.php:81
msgid "Last version"
msgstr ""
msgstr "وەشانی کۆتا"
#: db_tracking.php:82 tbl_tracking.php:713
msgid "Created"
msgstr ""
msgstr "دروستکراوە"
#: db_tracking.php:83 tbl_tracking.php:714
msgid "Updated"
msgstr ""
msgstr "بارکراوە"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
msgstr "ڕەوش"
#: db_tracking.php:85 libraries/Index.class.php:455
#: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53
@ -755,7 +757,7 @@ msgstr ""
#: server_databases.php:221 server_privileges.php:1857
#: server_privileges.php:2075 server_privileges.php:2422 tbl_structure.php:218
msgid "Action"
msgstr ""
msgstr "کردار"
#: db_tracking.php:96 js/messages.php:34
msgid "Delete tracking data for this table"
@ -763,15 +765,15 @@ msgstr ""
#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725
msgid "active"
msgstr ""
msgstr "چالاک"
#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727
msgid "not active"
msgstr ""
msgstr "ناچالاکە"
#: db_tracking.php:135
msgid "Versions"
msgstr ""
msgstr "وەشانەکان"
#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745
msgid "Tracking report"
@ -799,7 +801,7 @@ msgstr ""
#: export.php:87
msgid "Selected export type has to be saved in file!"
msgstr ""
msgstr "دەستنیشانکردنی جۆری هەناردن بۆ پاشەکەوتکردنی لە پەڕگە!"
#: export.php:116
msgid "Bad parameters!"
@ -841,7 +843,7 @@ msgstr ""
#: gis_data_editor.php:134
msgid "SRID"
msgstr ""
msgstr "SRID"
#: gis_data_editor.php:151 js/messages.php:330
#: libraries/display_tbl.lib.php:825
@ -850,7 +852,7 @@ msgstr ""
#: gis_data_editor.php:171 js/messages.php:326
msgid "Point"
msgstr ""
msgstr "خاڵ"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
#: gis_data_editor.php:296 js/messages.php:324
@ -871,7 +873,7 @@ msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
#: js/messages.php:333
msgid "Add a point"
msgstr ""
msgstr "زیادکردنی خاڵ"
#: gis_data_editor.php:219 js/messages.php:328
msgid "Linestring"
@ -903,11 +905,11 @@ msgstr ""
#: gis_data_editor.php:309
msgid "Add geometry"
msgstr ""
msgstr "زیادکردنی ئەندازەگەری"
#: gis_data_editor.php:316
msgid "Output"
msgstr ""
msgstr "بەرهەم"
#: gis_data_editor.php:317
msgid ""
@ -933,7 +935,7 @@ msgstr ""
#: import.php:315 import.php:368 libraries/File.class.php:425
#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
msgstr "ناتوانیت پەڕگە بخوێنیتەوە"
#: import.php:323 import.php:332 import.php:351 import.php:360
#: libraries/File.class.php:577
@ -991,7 +993,7 @@ msgstr ""
#: import_status.php:117 libraries/common.lib.php:728
#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210
msgid "Back"
msgstr ""
msgstr "گەڕانەوە"
#: index.php:162
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
@ -1040,11 +1042,11 @@ msgstr ""
#: js/messages.php:42
msgid "Add Index"
msgstr ""
msgstr "زیادکردنی نیشاندەر"
#: js/messages.php:43
msgid "Edit Index"
msgstr ""
msgstr "چاکردنی نیشاندەر"
#: js/messages.php:44 tbl_indexes.php:311
#, php-format
@ -1058,15 +1060,15 @@ msgstr ""
#: js/messages.php:51
msgid "The host name is empty!"
msgstr ""
msgstr "ناوی خانەخوێ بەتاڵە!"
#: js/messages.php:52
msgid "The user name is empty!"
msgstr ""
msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!"
#: js/messages.php:53 server_privileges.php:1432 user_password.php:103
msgid "The password is empty!"
msgstr ""
msgstr "وشەی نهێنی بەتاڵە!"
#: js/messages.php:54 server_privileges.php:1430 user_password.php:106
msgid "The passwords aren't the same!"
@ -1075,7 +1077,7 @@ msgstr ""
#: js/messages.php:55 server_privileges.php:1947 server_privileges.php:1971
#: server_privileges.php:2383 server_privileges.php:2577
msgid "Add user"
msgstr ""
msgstr "زیادکردنی بەکارهێنەر"
#: js/messages.php:56
msgid "Reloading Privileges"
@ -1088,7 +1090,7 @@ msgstr ""
#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:281
#: tbl_tracking.php:473
msgid "Close"
msgstr ""
msgstr "داخستن"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
@ -1096,7 +1098,7 @@ msgstr ""
#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
msgstr "چاکردن"
#: js/messages.php:62 server_status.php:807
msgid "Live traffic chart"
@ -1120,7 +1122,7 @@ msgstr ""
#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
msgstr "سەرجەم"
#. l10n: Other, small valued, queries
#: js/messages.php:70 server_status.php:616 server_status.php:1026
@ -1130,12 +1132,12 @@ msgstr ""
#. l10n: Thousands separator
#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
msgstr ","
#. l10n: Decimal separator
#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
msgstr "."
#: js/messages.php:76
msgid "KiB sent since last refresh"
@ -1340,7 +1342,7 @@ msgstr ""
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
msgstr "هیچ"
#: js/messages.php:140
msgid "Resume monitor"
@ -1403,13 +1405,13 @@ msgstr ""
#: js/messages.php:155
#, php-format
msgid "Enable %s"
msgstr ""
msgstr "چالاکردن %s"
#. l10n: Disable in this context means setting a status variable to OFF
#: js/messages.php:157
#, php-format
msgid "Disable %s"
msgstr ""
msgstr "ناچالاکردن %s"
#. l10n: %d seconds
#: js/messages.php:159
@ -1429,7 +1431,7 @@ msgstr ""
#: js/messages.php:162
msgid "Current settings"
msgstr ""
msgstr "ڕێکخستنەکانی هەنووکە"
#: js/messages.php:164 server_status.php:1670
msgid "Chart Title"
@ -1443,11 +1445,11 @@ msgstr ""
#: js/messages.php:167
#, php-format
msgid "Divided by %s"
msgstr ""
msgstr "دابەشکراوە لەلایەن %s"
#: js/messages.php:168
msgid "Unit"
msgstr ""
msgstr "یەکە"
#: js/messages.php:170
msgid "From slow log"
@ -1467,7 +1469,7 @@ msgstr ""
#: js/messages.php:174
msgid "Cancel request"
msgstr ""
msgstr "لابردنی داواکاریی"
#: js/messages.php:175
msgid ""
@ -1511,11 +1513,11 @@ msgstr ""
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
msgstr "کات"
#: js/messages.php:187
msgid "Total time:"
msgstr ""
msgstr "هەموو کاتەکان:"
#: js/messages.php:188
msgid "Profiling results"
@ -1524,7 +1526,7 @@ msgstr ""
#: js/messages.php:189
msgctxt "Display format"
msgid "Table"
msgstr ""
msgstr "خشتە"
#: js/messages.php:190
msgid "Chart"
@ -1536,7 +1538,7 @@ msgstr ""
#: js/messages.php:192
msgid "Series"
msgstr ""
msgstr "زنجیرە"
#. l10n: A collection of available filters
#: js/messages.php:195
@ -1546,7 +1548,7 @@ msgstr ""
#. l10n: Filter as in "Start Filtering"
#: js/messages.php:197
msgid "Filter"
msgstr ""
msgstr "پاڵێو"
#: js/messages.php:198
msgid "Filter queries by word/regexp:"
@ -1562,7 +1564,7 @@ msgstr ""
#: js/messages.php:201
msgid "Total:"
msgstr ""
msgstr "سەرجەم:"
#: js/messages.php:203
msgid "Loading logs"
@ -1581,7 +1583,7 @@ msgstr ""
#: js/messages.php:206
msgid "Reload page"
msgstr ""
msgstr "بارکردنەوەى پەڕە"
#: js/messages.php:208
msgid "Affected rows:"
@ -1602,7 +1604,7 @@ msgstr ""
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
msgid "Import"
msgstr ""
msgstr "هێنان"
#: js/messages.php:213
msgid "Import monitor configuration"
@ -1626,7 +1628,7 @@ msgstr ""
#: js/messages.php:222
msgid "Issue"
msgstr ""
msgstr "ئەنجام"
#: js/messages.php:223
msgid "Recommendation"
@ -1652,11 +1654,11 @@ msgstr ""
#: pmd_general.php:563 pmd_general.php:611 pmd_general.php:687
#: pmd_general.php:741 pmd_general.php:804 pmd_general.php:835
msgid "Cancel"
msgstr ""
msgstr "لابردن"
#: js/messages.php:235
msgid "Loading"
msgstr ""
msgstr "ئامادەکردن"
#: js/messages.php:236
msgid "Processing Request"
@ -1682,7 +1684,7 @@ msgstr ""
#: pmd_general.php:609 pmd_general.php:685 pmd_general.php:739
#: pmd_general.php:802
msgid "OK"
msgstr ""
msgstr "باشە"
#: js/messages.php:242
msgid "Click to dismiss this notification"
@ -1694,11 +1696,11 @@ msgstr ""
#: js/messages.php:246
msgid "Reload Database"
msgstr ""
msgstr "بارکردنەوەى بنکەی دراو"
#: js/messages.php:247
msgid "Copying Database"
msgstr ""
msgstr "لەبەرگرتنەوەی بنکەی دراو"
#: js/messages.php:248
msgid "Changing Charset"
@ -1726,11 +1728,11 @@ msgstr ""
#: js/messages.php:258 libraries/mult_submits.inc.php:321
msgid "(Enabled)"
msgstr ""
msgstr "(چالاکە)"
#: js/messages.php:259 libraries/mult_submits.inc.php:321
msgid "(Disabled)"
msgstr ""
msgstr "(ناچالاکە)"
#: js/messages.php:262
msgid "Searching"
@ -1798,7 +1800,7 @@ msgstr ""
#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
msgstr "گۆڕین"
#: js/messages.php:287
msgid "Query execution time"
@ -1816,7 +1818,7 @@ msgstr ""
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
msgstr "پاشەکەوتکردن"
#: js/messages.php:294
msgid "Hide search criteria"
@ -4853,7 +4855,7 @@ msgstr ""
#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
msgstr "پەستانی پەیوەندی"
#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
@ -4861,7 +4863,7 @@ msgstr ""
#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
msgstr "جۆری پەیوەندی"
#: libraries/config/messages.inc.php:384
msgid "Control user password"
@ -4903,7 +4905,7 @@ msgstr ""
#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
msgstr "شێوەسازی خشتە"
#: libraries/config/messages.inc.php:393
msgid ""
@ -4929,7 +4931,7 @@ msgstr ""
#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
msgstr "شاردنەوەى بنکەی دراو"
#: libraries/config/messages.inc.php:399
msgid ""
@ -4951,7 +4953,7 @@ msgstr ""
#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
msgstr "چوونەدەرەوە بەستەر"
#: libraries/config/messages.inc.php:404
msgid ""
@ -4969,7 +4971,7 @@ msgstr ""
#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
msgstr "پەیوەندی بەبێ وشەی نهێنی"
#: libraries/config/messages.inc.php:408
msgid ""
@ -4982,7 +4984,7 @@ msgstr ""
#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
msgstr "تەنها نیشاندانی لیستی بنکەی دراو"
#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
@ -5010,7 +5012,7 @@ msgstr ""
#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
msgstr "ناوی بنکەی دراو"
#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
@ -5076,7 +5078,7 @@ msgstr ""
#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
msgstr "بەکارهێنانی SSL"
#: libraries/config/messages.inc.php:431
msgid ""
@ -5293,8 +5295,9 @@ msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr ""
msgstr "نیشاندانی پرسگەی SQL"
#: libraries/config/messages.inc.php:479
msgid ""
@ -5311,7 +5314,7 @@ msgstr ""
#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
msgstr "نیشاندانی سەرژمێری"
#: libraries/config/messages.inc.php:483
msgid ""
@ -5360,7 +5363,7 @@ msgstr ""
#: server_privileges.php:983 server_privileges.php:994
#: server_privileges.php:1853 server_synchronize.php:1444
msgid "Password"
msgstr ""
msgstr "وشەی نهێنی"
#: libraries/config/messages.inc.php:497
msgid ""
@ -5381,7 +5384,7 @@ msgstr ""
#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
msgstr "ناوی بەکارهێنەر"
#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
@ -5421,7 +5424,7 @@ msgstr ""
#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
msgstr "سەردێری بنەڕەت"
#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
@ -5457,7 +5460,7 @@ msgstr ""
#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
msgstr "بەکارهێنانی گەڕان لە بنکەی دراو"
#: libraries/config/messages.inc.php:521
msgid ""
@ -5471,7 +5474,7 @@ msgstr ""
#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان"
#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
@ -5493,7 +5496,7 @@ msgstr ""
#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
msgstr "ZIP"
#: libraries/config/setup.forms.php:41
msgid "Config authentication"
@ -5526,12 +5529,12 @@ msgstr ""
#: libraries/config/setup.forms.php:266
#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
msgstr "خێرا"
#: libraries/config/setup.forms.php:270
#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
msgstr "ڕاسپێراو"
#: libraries/config/setup.forms.php:291
#: libraries/config/user_preferences.forms.php:192
@ -5548,7 +5551,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24

334
po/fi.po

File diff suppressed because it is too large Load Diff

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"PO-Revision-Date: 2012-05-18 11:20+0200\n"
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@ -4617,13 +4617,12 @@ msgstr "サーバ選択を表示する"
#: libraries/config/messages.inc.php:280
msgid "Minimum number of tables to display the table filter box"
msgstr "テーブルフィルタボックスを表示る最小のテーブル数"
msgstr "テーブルフィルタボックスを表示させる最小のテーブル数"
#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "テーブルフィルタボックスを表示する最小のテーブル数"
msgstr "データベースフィルタボックスを表示させる最小のテーブル数"
#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
@ -8927,10 +8926,9 @@ msgid "No databases"
msgstr "データベースが存在しません"
#: navigation.php:209
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "名前でテーブルをフィルタする"
msgstr "名前でデータベースをフィルタする"
#: navigation.php:272
msgid "Filter tables by name"

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"PO-Revision-Date: 2012-05-18 19:41+0200\n"
"Last-Translator: ronniery borges <thenewodre@gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@ -5894,6 +5894,8 @@ msgstr "Falha ao conectar com o servidor MySQL"
#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"O nome de usuário vazio quando a configuração utilizada e do método de "
"autenticação"
#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-18 09:54+0200\n"
"PO-Revision-Date: 2012-05-18 09:57+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: russian <ru@li.org>\n"
"Language: ru\n"
@ -3077,18 +3077,16 @@ msgid "Date and time"
msgstr "Дата и время"
#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Линия"
msgstr "Символьные"
#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространственный"
msgstr "Пространственные"
#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
@ -4677,10 +4675,9 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Минимальное количество таблиц для отображения поля фильтра"
#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Минимальное количество таблиц для отображения поля фильтра"
msgstr "Минимальное количество баз данных для отображения поля фильтра"
#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
@ -7371,7 +7368,7 @@ msgstr "Файл ESRI"
#: libraries/import/shp.php:199
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
msgstr ""
msgstr "Геометрический тип '%s' не поддерживается MySQL."
#: libraries/import/shp.php:360
#, php-format
@ -9052,10 +9049,9 @@ msgid "No databases"
msgstr "Базы данных отсутствуют"
#: navigation.php:209
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Фильтровать таблицы по имени"
msgstr "Фильтровать базы данных по имени"
#: navigation.php:272
msgid "Filter tables by name"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-17 20:50+0200\n"
"PO-Revision-Date: 2012-05-20 21:47+0200\n"
"Last-Translator: ProUser <stefan@inkopsforum.se>\n"
"Language-Team: swedish <sv@li.org>\n"
"Language: sv\n"
@ -2907,24 +2907,32 @@ msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
"En variabel-längd (%s) sträng, den effektiva maximala längden är "
"förutsättningen för den maximala radstorleken"
#: libraries/Types.class.php:327
msgid ""
"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
"En TEXT kolumn med en maximal längd av 255 (2^8-1) tecken, lagrat med en en-"
"bytes prefix vilken anger längden av värdet i bytes"
#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
msgstr ""
"En TEXT kolumn med en maximal längd av 65.535 (2^16-1) tecken, lagrat med en "
"två-bytes prefix viken anger längden av värdet i bytes"
#: libraries/Types.class.php:331
msgid ""
"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
"stored with a three-byte prefix indicating the length of the value in bytes"
msgstr ""
"En TEXT kolumn med en maximal längd av 16.777.215 (2^24-1) tecken, lagrat "
"med en tre-bytes prefix vilken anger längden av värdet i bytes"
#: libraries/Types.class.php:333
msgid ""
@ -2932,64 +2940,81 @@ msgid ""
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
"En TEXT kolumn med en maximal längd av 4,294,967,295 eller 4GB (2^32-1) "
"tecken, lagrat med en fyra-bytes prefix vilken anger längden av värdet i "
"bytes"
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
"Liknande en CHAR typ, men lagrar binära byte strängar snarare än icke-binära "
"teckensträngar"
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
"Liknande en VARCHAR typ, men lagrar binära strängar byte snarare än icke-"
"binära teckensträngar"
#: libraries/Types.class.php:339
msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
"En BLOB kolumn med en maximal längd av 255 (2^8-1) bytes, lagrat med en en-"
"sbyte prefix vilken anger längden av värdet"
#: libraries/Types.class.php:341
msgid ""
"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
"with a three-byte prefix indicating the length of the value"
msgstr ""
"En BLOB kolumn med en maximal längd av 16.777.215 (2^24-1) bytes, lagrat med "
"en tre-bytes prefix vilken anger längden av värdet"
#: libraries/Types.class.php:343
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a two-byte prefix indicating the length of the value"
msgstr ""
"En BLOB kolumn med en maximal längd av 65.535 (2^16-1) bytes, lagrad med ett "
"två bytes prefix vilken anger längden på värdet"
#: libraries/Types.class.php:345
msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
"En BLOB kolumn med en maximal längd av 4,294,967,295 och 4GB (2^32-1) byte, "
"lagras med en fyra-bytes prefix som anger längden på värdet"
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
"En uppräkning, vald från listan med upp till 65.535 värden eller det "
"speciella'' felvärdet"
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
msgstr "En enstaka värde valt från en uppsättning av upp till 64 stycken"
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
msgstr "En typ som kan lagra en geometri av alla typer"
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
msgstr "En punkt det i 2-dimensionella rummet"
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
msgstr "En kurva med linjär interpolering mellan punkter"
#: libraries/Types.class.php:357
msgid "A polygon"
@ -2997,24 +3022,24 @@ msgstr "En polygon"
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
msgstr "En samling punkter"
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
msgstr "En samling kurvor med linjär interpolering mellan punkterna"
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
msgstr "En samling polygoner"
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
msgstr "En samling geometriobjekt av valfri typ"
#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
msgstr "Numeriska"
#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
@ -3033,51 +3058,59 @@ msgstr "Spatial"
#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
msgstr "Ett 4-bytes heltal, intervall -2147483648 till 2147483647"
#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
"Ett 8-bytes heltal, intervallet -9.223.372.036.854.775.808 till "
"9.223.372.036.854.775.807"
#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
msgstr "Ett systems förvalda dubbelprecision flyttal"
#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
msgstr "Sant eller falskt"
#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
msgstr "Ett alias för BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
msgstr "Lagrar en universiellt unik identifierare (UUID)"
#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
"En tidsstämpel området är 0001-01-01 00:00:00 'UTC till '9999-12-31 "
"23:59:59' UTC, TIMESTAMP(6) kan lagra mikrosekunder"
#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
"En variabel längd (0-65,535) sträng, använder binär kollationering för alla "
"jämförelser"
#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
"En BLOB kolumn med en maximal längd av 65.535 (2^16-1) bytes, lagrat med en "
"fyra-bytes prefix som anger längden av värdet"
#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
msgstr "En uppräkning, vald från listan av definierade värden"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
@ -7248,7 +7281,7 @@ msgstr "ESRI Shape-fil"
#: libraries/import/shp.php:199
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
msgstr ""
msgstr "Geometri typ '%s' stöds inte av MySQL."
#: libraries/import/shp.php:360
#, php-format
@ -8528,7 +8561,7 @@ msgstr "Fulltext"
#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
msgstr "först"
#: libraries/tbl_properties.inc.php:599
#, php-format
@ -12028,7 +12061,7 @@ msgstr "Flytta kolumner"
#: tbl_structure.php:622
msgid "Move the columns by dragging them up and down."
msgstr ""
msgstr "Flytta kolumner genom att dra dem uppåt och nedåt."
#: tbl_structure.php:648
msgid "Edit view"