.* TO 'pma'@'localhost';
* Obviously, the user must enable cookies in the browser.
* With this mode, the use can truly logout of phpMyAdmin and login
back with the same username.
+ * If you want to login to arbitrary server see
+ $cfg['AllowArbitraryServer'] directive.
'config' authentication mode:
* This mode is the less secure one because it requires you to fill
@@ -354,9 +356,10 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
old way: username and password are stored in config.inc.php3.
+ 'cookie' authentication mode ($auth_type = 'cookie') as
introduced in 2.2.3 allows you to log in as any valid MySQL
- user with the help of... cookies. Log name and password are
+ user with the help of cookies. Log name and password are
stored in cookies during the session and password is deleted
- when it ends.
+ when it ends. This can also allow you to login in arbitrary
+ server if $cfg['AllowArbitraryServer'] enabled.
+ 'http' authentication (was called 'advanced' in older
versions) ($auth_type = 'http') as introduced in 1.3.0 allows
you to log in as any valid MySQL user via HTTP-Auth.
@@ -734,6 +737,12 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
of a multi-query statement embedded into the SQL output as
inline comments. Defaults to TRUE.
+ $cfg['AllowArbitraryServer'] boolean
+ If enabled allows you to login to arbitrary server using cookie
+ auth.
+ NOTE: Please use this carefully, as this may allow to access
+ MySQL servers behind firewall where your http server is placed.
+
$cfg['LeftFrameLight'] boolean
Defines whether to use select-based menu and display only the
current tables in the left frame (smaller page). Only in
@@ -848,6 +857,14 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
Defines whether to allow the use of zip/GZip/BZip2 compression
when creating a dump file or not.
+ $cfg['CompressOnFly'] boolean
+ Defines whether to allow ont the fly compression for GZip/BZip2
+ compressed exports. This doesn't affect smaller dumps and
+ allows to create larger dumps, that won't fit otherwise in
+ memory due to php memory limit. Produced files contain more
+ GZip/BZip2 headers, but all normal programs handles this
+ correctly.
+
$cfg['LightTabs'] string
If set to True, do use less graphically intense tabs on the top
of the mainframe.
@@ -1061,20 +1078,28 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
as a tool-tip for that field.
$cfg['UploadDir'] string
- The name of the directory, ending with a slash, where SQL files
- have been uploaded by other means than phpMyAdmin (for example,
- ftp). Those files are available under a drop-down box when you
- click the database name, then the SQL tab.
- Please note that the file names must have the suffix ".sql".
+ The name of the directory, where SQL files have been uploaded
+ by other means than phpMyAdmin (for example, ftp). Those files
+ are available under a drop-down box when you click the database
+ name, then the SQL tab.
+ Please note that the file names must have the suffix ".sql" (or
+ ".sql.bz2" or ".sql.gz" if support for compressed formats is
+ enabled).
This feature is useful when your file is too big to be uploaded
via HTTP, or when file uploads are disabled in PHP.
Please note that if PHP is running in safe mode, this directory
must be owned by the same user as the owner of the phpMyAdmin
scripts.
+ $cfg['docSQLDir'] string
+ The name of the directory, where docSQL files can be uploaded
+ for import into phpMyAdmin.
+ Please note that if PHP is running in safe mode, this directory
+ must be owned by the same user as the owner of the phpMyAdmin
+ scripts.
+
$cfg['SaveDir'] string
- The name of the directory, ending with a slash, where dumps can
- be saved.
+ The name of the directory, where dumps can be saved.
Please note that the directory has to be writable for user
running webserver.
Please note that if PHP is running in safe mode, this directory
@@ -1178,7 +1203,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
$cfg['SQP']['fmtType'] string [html|none]
The main use of the new SQL Parser is to pretty-print SQL
queries. By default we use HTML to format the query, but you
- can disable this by setting this variable to 'none'
+ can disable this by setting this variable to 'none'.
$cfg['SQP']['fmtInd'] float
$cfg['SQP']['fmtIndUnit'] string [em|px|pt|ex]
@@ -1602,15 +1627,24 @@ FAQ - Frequently Asked Questions
and memory_limit need to be larger than upload_max_filesize.
If you get a timeout problem, look at the $cfg['UploadDir'] feature.
- [1.17] Does phpMyAdmin support MySQL 4.1 and 5.0?
+ [1.17] Which MySQL versions does phpMyAdmin support?
- phpMyAdmin provides limited support for MySQL 4.1. That means that you
- can neither assign character sets to a table or field on create nor
- change the (automatically) assigned character set.
- When compiling php, we strongly recommend that you manually link it to
- a MySQL 4.1 client library since the one that is currently bundled
- with php is rather old and might cause problems.
- MySQL 5 is not yet supported.
+ All MySQL versions from 3.21 till 4.0 are fully supported. Please note
+ that the older your MySQL version is, the more limitations you will
+ have to face.
+ phpMyAdmin provides experimental support for MySQL 4.1. That means
+ that although you can assign character sets to a table or field,
+ phpMyAdmin will not recode the data when inserting or extracting it.
+ Instead, it will still use the character set you specified for the
+ MySQL connection.
+ When compiling php, we strongly recommend that you manually link the
+ MySQL extension to a MySQL client library of at least the same version
+ since the one that is bundled with php 4.x is rather old and might
+ cause problems.
+ Also, we do not yet support the imporoved MySQL extension (mysqli)
+ that comes with php 5. For the moment, the old MySQL extension should
+ also work fine here, if compiled correctly.
+ MySQL 5.0 and 5.1 are not yet supported.
[1.18] I'm running MySQL <= 4.0.1 having lower_case_table_names set to 1.
If I create a new table with a capital letter in its name it is changed to
@@ -1631,10 +1665,10 @@ FAQ - Frequently Asked Questions
Configuration".
To connect to a MySQL server, PHP needs a set of MySQL functions
- called "MySQL extension". This extension may be part of the PHP server
- (compiled-in), otherwise it needs to be loaded dynamically. Its name
- is probably mysql.so or mysql.dll. phpMyAdmin tried to load the
- extension but failed.
+ called "MySQL extension". This extension may be part of the PHP
+ distribution (compiled-in), otherwise it needs to be loaded
+ dynamically. Its name is probably mysql.so or php_mysql.dll.
+ phpMyAdmin tried to load the extension but failed.
Usually, the problem is solved by installing a software package called
"PHP-MySQL" or something similar.
@@ -1685,7 +1719,7 @@ FAQ - Frequently Asked Questions
should work.
[1.27] I get empty page when I want to view huge page (eg.
- db_details_structure.php3 with plenty of databases).
+ db_details_structure.php3 with plenty of tables).
This is a PHP bug that occur when GZIP output buffering enabled. If
you turn off it (by $cfg['OBGzip'] = FALSE in config.inc.php3), it
@@ -1812,17 +1846,16 @@ FAQ - Frequently Asked Questions
[3.2] When dumping a large table in compressed mode, I get a memory limit
error or a time limit error.
- As of version 2.2.4, we build the compressed dump in memory, so large
- tables dumps may hang. The only alternative we can think about (using
- system calls to mysqldump then gzip or bzip2) would not be applicable
- in environments where PHP is in safe mode: access to system programs
- is is limited by the system administrator, and time limit is enforced.
+ Compressed dumps are built in memory and because of this are limited
+ to php's memory limit. For GZip/BZip2 exports this can be overcome
+ since 2.5.4 using $cfg['CompressOnFly'] (enabled by default). Zip
+ exports can not be handled this way, so if you need Zip files for
+ larger dump, you have to use another way.
[3.3] With InnoDB tables, I lose foreign key relationships when I rename or
alter a table.
- This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
- in mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.
+ This seems to be a InnoDB bug (fixed in MySQL 3.23.50?).
[3.4] I am unable to import dumps I created with the mysqldump tool bundled
with the MySQL server distribution.
@@ -1843,7 +1876,7 @@ FAQ - Frequently Asked Questions
or
#---------------------------------------------------------
- [3.3] When using nested folders ($cfg['LeftFrameTableSeparator']) there are
+ [3.5] When using nested folders ($cfg['LeftFrameTableSeparator']) there are
some multiple hierarchies displayed in a wrong manner?!
Please note that you should not use the seperating string multiple
@@ -1851,6 +1884,13 @@ FAQ - Frequently Asked Questions
your table name. If you have to, think about using another
TableSeparator or disabling that feature
+ [3.6] What is currently not supported in phpMyAdmin about InnoDB?
+
+ In Relation view, being able to choose a table in another database, or
+ having more than one index field in the foreign key.
+ In Query-by-example (Query), automatic generation of the query LEFT
+ JOIN from the foreign table.
+
[4. ISPs, multi-user installations ]
[4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need
@@ -2298,6 +2338,8 @@ FAQ - Frequently Asked Questions
Your initial query which is going to be stored as a bookmark has to
yield at least one result row so you can store the bookmark. You may
have that to work around using well positioned "/**/" comments.
+ Variable expansion with PHP-Versions prior to 4.0.3 may not work as
+ expected due to a necessary extra-space after any [VARIABLE] usage
[6.19] How can I create simple LaTeX document to include exported table?
@@ -2316,10 +2358,12 @@ FAQ - Frequently Asked Questions
[6.20] In MySQL 4, I see a lot of databases which are not mine, and cannot
access them.
- Upgrading to MySQL 4 usually gives users a global privilege: CREATE
- TEMPORARY TABLES. This privilege also enables users to see all the
- database names. See this bug report.
- So if your users do not need this privilege, you can remove it and
+ Upgrading to MySQL 4 usually gives users those global privileges:
+ CREATE TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges
+ also enables users to see all the database names, until you upgrade
+ the grant tables as described in the MySQL manual, section 2.5.6. See
+ this bug report.
+ So if your users do not need those privileges, you can remove them and
their databases list will shorten.
[6.21] In edit/insert mode, how can I see a list of possible values for a
diff --git a/config.inc.php3 b/config.inc.php3
index e83e28255..4bddafd29 100755
--- a/config.inc.php3
+++ b/config.inc.php3
@@ -53,9 +53,9 @@ $cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;
$cfg['PmaNoRelation_DisableWarning'] = FALSE;
/**
- * The 'cookie' auth_type uses blowfish algorithm to encrypt the password.
- * If at least one server configuration uses 'cookie' auth_type,
- * enter here a passphrase that will be used by blowfish.
+ * The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
+ * at least one server configuration uses 'cookie' auth_type, enter here a
+ * passphrase that will be used by blowfish.
*/
$cfg['blowfish_secret'] = '';
@@ -204,6 +204,7 @@ $cfg['IgnoreMultiSubmitErrors'] = FALSE; // if set to true, PMA continues compu
$cfg['VerboseMultiSubmit'] = TRUE; // if set to true, PMA will show the affected rows of EACH statement on
// multiple-statement queries. See the read_dump.php3 file for hardcoded
// defaults on how many queries a statement may contain!
+$cfg['AllowArbitraryServer'] = FALSE; // allow login to any user entered server in cookie based auth
// Left frame setup
$cfg['LeftFrameLight'] = TRUE; // use a select-based menu and display only the
@@ -257,6 +258,11 @@ $cfg['CharEditing'] = 'input';
$cfg['ZipDump'] = TRUE; // Allow the use of zip/gzip/bzip
$cfg['GZipDump'] = TRUE; // compression for
$cfg['BZipDump'] = TRUE; // dump files
+$cfg['CompressOnFly'] = TRUE; // Will compress gzip/bzip2 exports on
+ // fly without need for much memory.
+ // If you encounter problems with
+ // created gzip/bzip2 files disable
+ // this feature.
// Tabs display settings
$cfg['LightTabs'] = FALSE; // use graphically less intense menu tabs
@@ -505,14 +511,17 @@ $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLVa
/**
- * web-server upload directory
+ * Webserver upload/save/import directories
*/
-$cfg['UploadDir'] = ''; // for example, './upload/'; you must end it with
- // a slash, and you leave it empty for no upload
- // directory
-$cfg['SaveDir'] = ''; // for example, './save/'; you must end it with
- // a slash, and you leave it empty for no save
- // directory
+$cfg['UploadDir'] = ''; // Directory for uploaded files that can be executed by
+ // phpMyAdmin. For example './upload'. Leave empty for
+ // no upload directory support
+$cfg['SaveDir'] = ''; // Directory where phpMyAdmin can save exported data on
+ // server. For example './save'. Leave empty for no save
+ // directory support.
+$cfg['docSQLDir'] = ''; // Directory for docSQL imports, phpMyAdmin can import
+ // docSQL files from that directory. For example
+ // './docSQL'. Leave empty for no docSQL import support.
/**
diff --git a/db_details.php3 b/db_details.php3
index 82f1da659..c05b006b8 100755
--- a/db_details.php3
+++ b/db_details.php3
@@ -103,11 +103,14 @@ echo "\n";
// web-server upload directory
$is_upload_dir = false;
-if ($cfg['UploadDir'] != '') {
+if (!empty($cfg['UploadDir'])) {
+ if (substr($cfg['UploadDir'], -1) != '/') {
+ $cfg['UploadDir'] .= '/';
+ }
if ($handle = @opendir($cfg['UploadDir'])) {
$is_first = 0;
while ($file = @readdir($handle)) {
- if (is_file($cfg['UploadDir'] . $file) && substr($file, -4) == '.sql') {
+ if (is_file($cfg['UploadDir'] . $file) && PMA_checkFileExtensions($file, '.sql')) {
if ($is_first == 0) {
$is_upload_dir = true;
echo "\n";
diff --git a/db_details_importdocsql.php3 b/db_details_importdocsql.php3
index 677551f3e..79484d151 100644
--- a/db_details_importdocsql.php3
+++ b/db_details_importdocsql.php3
@@ -23,288 +23,299 @@ require('./libraries/common.lib.php3');
// Check parameters
PMA_checkParameters(array('db'));
-/**
- * Imports docSQL files
- *
- * @param string the basepath
- * @param string the filename
- * @param string the complete filename
- * @param string the content of a file
+// We do any work, only if docSQL import was enabled in config
+if (isset($cfg['docSQLDir']) && !empty($cfg['docSQLDir'])) {
- *
- * @return boolean always true
- *
- * @global array GLOBAL variables
- */
-function docsql_check($docpath = '', $file = '', $filename = '', $content = 'none') {
-global $GLOBALS;
+ if (substr($cfg['docSQLDir'], -1) != '/') {
+ $cfg['docSQLDir'] .= '/';
+ }
- if (eregi('^(.*)_field_comment\.(txt|zip|bz2|bzip).*$', $filename)) {
- $tab = eregi_replace('^(.*)_field_comment\.(txt|zip|bz2|bzip).*', '\1', $filename);
- //echo 'Working on Table ' . $_tab . ' ';
- if ($content == 'none') {
- $lines = array();
- $fd = fopen($docpath . $file, 'r');
- if ($fd) {
- while (!feof($fd)) {
- $lines[] = fgets($fd, 4096);
+ /**
+ * Imports docSQL files
+ *
+ * @param string the basepath
+ * @param string the filename
+ * @param string the complete filename
+ * @param string the content of a file
+
+ *
+ * @return boolean always true
+ *
+ * @global array GLOBAL variables
+ */
+ function docsql_check($docpath = '', $file = '', $filename = '', $content = 'none') {
+ global $GLOBALS;
+
+ if (eregi('^(.*)_field_comment\.(txt|zip|bz2|bzip).*$', $filename)) {
+ $tab = eregi_replace('^(.*)_field_comment\.(txt|zip|bz2|bzip).*', '\1', $filename);
+ //echo 'Working on Table ' . $_tab . ' ';
+ if ($content == 'none') {
+ $lines = array();
+ $fd = fopen($docpath . $file, 'r');
+ if ($fd) {
+ while (!feof($fd)) {
+ $lines[] = fgets($fd, 4096);
+ }
}
+ } else {
+ $content = str_replace("\r\n", "\n", $content);
+ $content = str_replace("\r", "\n", $content);
+ $lines = explode("\n", $content);
}
+
+ if (isset($lines) && is_array($lines) && count($lines) > 0) {
+ @reset($lines);
+ while(list($lkey, $line) = each($lines)) {
+ //echo '' . $line . '
';
+ $inf = explode('|',$line);
+ if (!empty($inf[1]) && strlen(trim($inf[1])) > 0) {
+ $qry = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['column_info'])
+ . ' (db_name, table_name, column_name, ' . PMA_backquote('comment') . ') '
+ . ' VALUES('
+ . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\','
+ . '\'' . PMA_sqlAddslashes(trim($tab)) . '\','
+ . '\'' . PMA_sqlAddslashes(trim($inf[0])) . '\','
+ . '\'' . PMA_sqlAddslashes(trim($inf[1])) . '\')';
+ if (PMA_query_as_cu($qry)) {
+ echo '' . $GLOBALS['strAddedColumnComment'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . '
';
+ } else {
+ echo '' . $GLOBALS['strWritingCommentNotPossible'] . '
';
+ }
+ echo "\n";
+ } // end inf[1] exists
+ if (!empty($inf[2]) && strlen(trim($inf[2])) > 0) {
+ $for = explode('->', $inf[2]);
+ $qry = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['relation'])
+ . '(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)'
+ . ' VALUES('
+ . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', '
+ . '\'' . PMA_sqlAddslashes(trim($tab)) . '\', '
+ . '\'' . PMA_sqlAddslashes(trim($inf[0])) . '\', '
+ . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', '
+ . '\'' . PMA_sqlAddslashes(trim($for[0])) . '\','
+ . '\'' . PMA_sqlAddslashes(trim($for[1])) . '\')';
+ if (PMA_query_as_cu($qry)) {
+ echo '' . $GLOBALS['strAddedColumnRelation'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . ' to ' . htmlspecialchars($inf[2]) . '
';
+ } else {
+ echo '' . $GLOBALS['strWritingRelationNotPossible'] . '
';
+ }
+ echo "\n";
+ } // end inf[2] exists
+ }
+ echo '' . $GLOBALS['strImportFinished'] . '
' . "\n";
+ } else {
+ echo '' . $GLOBALS['strFileCouldNotBeRead'] . '
' . "\n";
+ }
+
+ return 1;
} else {
- $content = str_replace("\r\n", "\n", $content);
- $content = str_replace("\r", "\n", $content);
- $lines = explode("\n", $content);
+ if ($content != 'none') {
+ echo '' . sprintf($GLOBALS['strIgnoringFile'], ' ' . htmlspecialchars($file)) . '
' . "\n";
+ } else {
+ // garvin: disabled. Shouldn't impose ANY non-submitted files ever.
+ echo '' . sprintf($GLOBALS['strIgnoringFile'], ' ' . '...') . '
' . "\n";
+ }
+ return 0;
+ } // end working on table
+ }
+
+ /**
+ * Try to get the "$DOCUMENT_ROOT" variable whatever is the register_globals
+ * value
+ */
+ if (empty($DOCUMENT_ROOT)) {
+ if (!empty($_SERVER) && isset($_SERVER['DOCUMENT_ROOT'])) {
+ $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
}
+ else if (!empty($HTTP_SERVER_VARS) && isset($HTTP_SERVER_VARS['DOCUMENT_ROOT'])) {
+ $DOCUMENT_ROOT = $HTTP_SERVER_VARS['DOCUMENT_ROOT'];
+ }
+ else if (!empty($_ENV) && isset($_ENV['DOCUMENT_ROOT'])) {
+ $DOCUMENT_ROOT = $_ENV['DOCUMENT_ROOT'];
+ }
+ else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['DOCUMENT_ROOT'])) {
+ $DOCUMENT_ROOT = $HTTP_ENV_VARS['DOCUMENT_ROOT'];
+ }
+ else if (@getenv('DOCUMENT_ROOT')) {
+ $DOCUMENT_ROOT = getenv('DOCUMENT_ROOT');
+ }
+ else {
+ $DOCUMENT_ROOT = '.';
+ }
+ } // end if
+
+ /**
+ * Executes import if required
+ */
+ if (isset($do) && $do == 'import') {
+ $orig_docpath = $docpath;
- if (isset($lines) && is_array($lines) && count($lines) > 0) {
- @reset($lines);
- while(list($lkey, $line) = each($lines)) {
- //echo '' . $line . '
';
- $inf = explode('|',$line);
- if (!empty($inf[1]) && strlen(trim($inf[1])) > 0) {
- $qry = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['column_info'])
- . ' (db_name, table_name, column_name, ' . PMA_backquote('comment') . ') '
- . ' VALUES('
- . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\','
- . '\'' . PMA_sqlAddslashes(trim($tab)) . '\','
- . '\'' . PMA_sqlAddslashes(trim($inf[0])) . '\','
- . '\'' . PMA_sqlAddslashes(trim($inf[1])) . '\')';
- if (PMA_query_as_cu($qry)) {
- echo '' . $GLOBALS['strAddedColumnComment'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . '
';
- } else {
- echo '' . $GLOBALS['strWritingCommentNotPossible'] . '
';
- }
- echo "\n";
- } // end inf[1] exists
- if (!empty($inf[2]) && strlen(trim($inf[2])) > 0) {
- $for = explode('->', $inf[2]);
- $qry = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['relation'])
- . '(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)'
- . ' VALUES('
- . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', '
- . '\'' . PMA_sqlAddslashes(trim($tab)) . '\', '
- . '\'' . PMA_sqlAddslashes(trim($inf[0])) . '\', '
- . '\'' . PMA_sqlAddslashes($GLOBALS['db']) . '\', '
- . '\'' . PMA_sqlAddslashes(trim($for[0])) . '\','
- . '\'' . PMA_sqlAddslashes(trim($for[1])) . '\')';
- if (PMA_query_as_cu($qry)) {
- echo '' . $GLOBALS['strAddedColumnRelation'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . ' to ' . htmlspecialchars($inf[2]) . '
';
- } else {
- echo '' . $GLOBALS['strWritingRelationNotPossible'] . '
';
- }
- echo "\n";
- } // end inf[2] exists
- }
- echo '' . $GLOBALS['strImportFinished'] . '
' . "\n";
- } else {
- echo '' . $GLOBALS['strFileCouldNotBeRead'] . '
' . "\n";
+ if (empty($sql_file)) {
+ $sql_file = 'none';
}
+
+ // Get relation settings
+ include('./libraries/relation.lib.php3');
+ $cfgRelation = PMA_getRelationsParam();
+
+ // Gets the query from a file if required
+ if ($sql_file != 'none') {
+ if (file_exists($sql_file)
+ && is_uploaded_file($sql_file)) {
+
+ $open_basedir = '';
+ if (PMA_PHP_INT_VERSION >= 40000) {
+ $open_basedir = @ini_get('open_basedir');
+ }
+ if (empty($open_basedir)) {
+ $open_basedir = @get_cfg_var('open_basedir');
+ }
- return 1;
- } else {
- if ($content != 'none') {
- echo '' . sprintf($GLOBALS['strIgnoringFile'], ' ' . htmlspecialchars($file)) . '
' . "\n";
- } else {
- // garvin: disabled. Shouldn't impose ANY non-submitted files ever.
- echo '' . sprintf($GLOBALS['strIgnoringFile'], ' ' . '...') . '
' . "\n";
- }
- return 0;
- } // end working on table
-}
-
-/**
- * Try to get the "$DOCUMENT_ROOT" variable whatever is the register_globals
- * value
- */
-if (empty($DOCUMENT_ROOT)) {
- if (!empty($_SERVER) && isset($_SERVER['DOCUMENT_ROOT'])) {
- $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
- }
- else if (!empty($HTTP_SERVER_VARS) && isset($HTTP_SERVER_VARS['DOCUMENT_ROOT'])) {
- $DOCUMENT_ROOT = $HTTP_SERVER_VARS['DOCUMENT_ROOT'];
- }
- else if (!empty($_ENV) && isset($_ENV['DOCUMENT_ROOT'])) {
- $DOCUMENT_ROOT = $_ENV['DOCUMENT_ROOT'];
- }
- else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['DOCUMENT_ROOT'])) {
- $DOCUMENT_ROOT = $HTTP_ENV_VARS['DOCUMENT_ROOT'];
- }
- else if (@getenv('DOCUMENT_ROOT')) {
- $DOCUMENT_ROOT = getenv('DOCUMENT_ROOT');
- }
- else {
- $DOCUMENT_ROOT = '.';
- }
-} // end if
-
-/**
- * Executes import if required
- */
-if (isset($do) && $do == 'import') {
- $orig_docpath = $docpath;
-
- if (empty($sql_file)) {
- $sql_file = 'none';
- }
-
- // Get relation settings
- include('./libraries/relation.lib.php3');
- $cfgRelation = PMA_getRelationsParam();
-
- // Gets the query from a file if required
- if ($sql_file != 'none') {
- if (file_exists($sql_file)
- && is_uploaded_file($sql_file)) {
-
- $open_basedir = '';
- if (PMA_PHP_INT_VERSION >= 40000) {
- $open_basedir = @ini_get('open_basedir');
- }
- if (empty($open_basedir)) {
- $open_basedir = @get_cfg_var('open_basedir');
- }
-
- // If we are on a server with open_basedir, we must move the file
- // before opening it. The doc explains how to create the "./tmp"
- // directory
-
- if (!empty($open_basedir)) {
-
- $tmp_subdir = (PMA_IS_WINDOWS ? '.\\tmp\\' : './tmp/');
-
- // function is_writeable() is valid on PHP3 and 4
- if (!is_writeable($tmp_subdir)) {
- $docsql_text = PMA_readFile($sql_file, $sql_file_compression);
- if ($docsql_text == FALSE) {
- echo $strFileCouldNotBeRead;
- exit();
+ // If we are on a server with open_basedir, we must move the file
+ // before opening it. The doc explains how to create the "./tmp"
+ // directory
+
+ if (!empty($open_basedir)) {
+
+ $tmp_subdir = (PMA_IS_WINDOWS ? '.\\tmp\\' : './tmp/');
+
+ // function is_writeable() is valid on PHP3 and 4
+ if (!is_writeable($tmp_subdir)) {
+ $docsql_text = PMA_readFile($sql_file, $sql_file_compression);
+ if ($docsql_text == FALSE) {
+ echo $strFileCouldNotBeRead;
+ exit();
+ }
+ }
+ else {
+ $sql_file_new = $tmp_subdir . basename($sql_file);
+ if (PMA_PHP_INT_VERSION < 40003) {
+ copy($sql_file, $sql_file_new);
+ } else {
+ move_uploaded_file($sql_file, $sql_file_new);
+ }
+ $docsql_text = PMA_readFile($sql_file_new, $sql_file_compression);
+ unlink($sql_file_new);
}
}
else {
- $sql_file_new = $tmp_subdir . basename($sql_file);
- if (PMA_PHP_INT_VERSION < 40003) {
- copy($sql_file, $sql_file_new);
- } else {
- move_uploaded_file($sql_file, $sql_file_new);
- }
- $docsql_text = PMA_readFile($sql_file_new, $sql_file_compression);
- unlink($sql_file_new);
+ // read from the normal upload dir
+ $docsql_text = PMA_readFile($sql_file, $sql_file_compression);
}
- }
- else {
- // read from the normal upload dir
- $docsql_text = PMA_readFile($sql_file, $sql_file_compression);
- }
-
- // Convert the file's charset if necessary
- if ($cfg['AllowAnywhereRecoding'] && $allow_recoding
- && isset($charset_of_file) && $charset_of_file != $charset) {
- $docsql_text = PMA_convert_string($charset_of_file, $charset, $docsql_text);
- }
-
- if (!isset($docsql_text) || $docsql_text == FALSE || $docsql_text == '') {
- echo '' . $GLOBALS['strFileCouldNotBeRead'] . '
' . "\n";
- } else {
- docsql_check('', $sql_file_name, $sql_file_name, $docsql_text);
- }
- } // end uploaded file stuff
- } else {
- // echo 'Starting Import ';
- $docpath = $DOCUMENT_ROOT . dirname($PHP_SELF) . '/docSQL/' . eregi_replace('\.\.*', '.', $docpath);
- if (substr($docpath, strlen($docpath) - 2, 1) != '/') {
- $docpath = $docpath . '/';
- }
-
- $matched_files = 0;
-
- if (is_dir($docpath)) {
- // Do the work
- $handle = opendir($docpath);
- while ($file = @readdir($handle)) {
- $filename = basename($file);
- // echo 'Working on file ' . $filename . '
';
- $matched_files += docsql_check($docpath, $file, $filename);
- } // end while
+ // Convert the file's charset if necessary
+ if ($cfg['AllowAnywhereRecoding'] && $allow_recoding
+ && isset($charset_of_file) && $charset_of_file != $charset) {
+ $docsql_text = PMA_convert_string($charset_of_file, $charset, $docsql_text);
+ }
+
+ if (!isset($docsql_text) || $docsql_text == FALSE || $docsql_text == '') {
+ echo '' . $GLOBALS['strFileCouldNotBeRead'] . '
' . "\n";
+ } else {
+ docsql_check('', $sql_file_name, $sql_file_name, $docsql_text);
+ }
+ } // end uploaded file stuff
} else {
- echo '' .$docpath . ': ' . $strThisNotDirectory . "
\n";
+
+ // echo 'Starting Import ';
+ $docpath = $cfg['docSQLDir'] . eregi_replace('\.\.*', '.', $docpath);
+ if (substr($docpath, -1) != '/') {
+ $docpath .= '/';
+ }
+
+ $matched_files = 0;
+
+ if (is_dir($docpath)) {
+ // Do the work
+ $handle = opendir($docpath);
+ while ($file = @readdir($handle)) {
+ $filename = basename($file);
+ // echo 'Working on file ' . $filename . '
';
+ $matched_files += docsql_check($docpath, $file, $filename);
+ } // end while
+ } else {
+ echo '' .$docpath . ': ' . $strThisNotDirectory . "
\n";
+ }
}
}
-}
-/**
- * Displays the form
- */
-?>
-
-
+
+
+
diff --git a/db_details_qbe.php3 b/db_details_qbe.php3
index ad6130f05..6293528a8 100755
--- a/db_details_qbe.php3
+++ b/db_details_qbe.php3
@@ -129,8 +129,8 @@ if (!empty($TableList)) {
// The tables list gets from MySQL
while ($i < $tbl_result_cnt) {
$tbl = PMA_mysql_tablename($tbl_result, $i);
- $fld_results = @PMA_mysql_list_fields($db, $tbl) or PMA_mysqlDie(PMA_mysql_error(), 'PMA_mysql_list_fields(' . $db . ', ' . $tbl . ')', FALSE, $err_url);
- $fld_results_cnt = ($fld_results) ? mysql_num_fields($fld_results) : 0;
+ $fld_results = @PMA_mysql_list_fields_alternate($db, $tbl) or PMA_mysqlDie(PMA_mysql_error(), 'PMA_mysql_list_fields_alternate(' . $db . ', ' . $tbl . ')', FALSE, $err_url);
+ $fld_results_cnt = ($fld_results) ? count($fld_results) : 0;
$j = 0;
if (empty($tbl_names[$tbl]) && !empty($TableList)) {
@@ -143,7 +143,7 @@ while ($i < $tbl_result_cnt) {
if ($tbl_names[$tbl] == ' selected="selected"') {
$fld[$k++] = PMA_backquote($tbl) . '.*';
while ($j < $fld_results_cnt) {
- $fld[$k] = PMA_mysql_field_name($fld_results, $j);
+ $fld[$k] = PMA_convert_display_charset($fld_results[$j]['Field']);
$fld[$k] = PMA_backquote($tbl) . '.' . PMA_backquote($fld[$k]);
// increase the width if necessary
@@ -155,9 +155,6 @@ while ($i < $tbl_result_cnt) {
$j++;
} // end while
} // end if
- if ($fld_results) {
- mysql_free_result($fld_results);
- }
$i++;
} // end if
diff --git a/db_details_structure.php3 b/db_details_structure.php3
index c4c8f2bd2..08d2cb945 100644
--- a/db_details_structure.php3
+++ b/db_details_structure.php3
@@ -111,9 +111,9 @@ if ($cfg['PropertiesIconic'] == true) {
}
$titles['Browse'] = $iconic_spacer . ' ';
- $titles['Select'] = $iconic_spacer . ' ';
+ $titles['Search'] = $iconic_spacer . ' ';
$titles['NoBrowse'] = $iconic_spacer . ' ';
- $titles['NoSelect'] = $iconic_spacer . ' ';
+ $titles['NoSearch'] = $iconic_spacer . ' ';
$titles['Insert'] = $iconic_spacer . ' ';
$titles['Properties'] = $iconic_spacer . ' ';
$titles['Drop'] = $iconic_spacer . ' ';
@@ -122,9 +122,9 @@ if ($cfg['PropertiesIconic'] == true) {
if ($propicon == 'both') {
$titles['Browse'] .= ' ' . $strBrowse . '';
- $titles['Select'] .= ' ' . $strSelect . '';
+ $titles['Search'] .= ' ' . $strSearch . '';
$titles['NoBrowse'] .= ' ' . $strBrowse . '';
- $titles['NoSelect'] .= ' ' . $strSelect . '';
+ $titles['NoSearch'] .= ' ' . $strSearch . '';
$titles['Insert'] .= ' ' . $strInsert . '';
$titles['Properties'] .= ' ' . $strProperties . '';
$titles['Drop'] .= ' ' . $strDrop . '';
@@ -133,9 +133,9 @@ if ($cfg['PropertiesIconic'] == true) {
}
} else {
$titles['Browse'] = $strBrowse;
- $titles['Select'] = $strSelect;
+ $titles['Search'] = $strSearch;
$titles['NoBrowse'] = $strBrowse;
- $titles['NoSelect'] = $strSelect;
+ $titles['NoSearch'] = $strSearch;
$titles['Insert'] = $strInsert;
$titles['Properties'] = $strProperties;
$titles['Drop'] = $strDrop;
@@ -264,9 +264,9 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
'
- . $titles['Select'] . '';
+ . $titles['Search'] . '';
} else {
- echo $titles['NoSelect'];
+ echo $titles['NoSearch'];
}
?>
@@ -574,7 +574,7 @@ else {
-
+
@@ -778,7 +778,9 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
} // end if
if ($num_tables > 0
- && $cfgRelation['relwork'] && $cfgRelation['commwork']) {
+ && $cfgRelation['relwork'] && $cfgRelation['commwork']
+ && isset($cfg['docSQLDir']) && !empty($cfg['docSQLDir'])
+ ) {
?>
diff --git a/docSQL/README b/docSQL/README
deleted file mode 100755
index 054d7e88a..000000000
--- a/docSQL/README
+++ /dev/null
@@ -1,9 +0,0 @@
-$Id$
-
-phpMyAdmin - docSQL
-===================
-
- This directory is empty by default. You can put your docSQL files
- here, if you want them to be imported via phpMyAdmin.
-
- If you do not know, what docSQL is, just leave this directory empty.
diff --git a/export.php3 b/export.php3
index dadd2f9eb..5924aa5d3 100755
--- a/export.php3
+++ b/export.php3
@@ -39,6 +39,7 @@ if ($export_type == 'server') {
// Start with empty buffer
$dump_buffer = '';
+$dump_buffer_len = 0;
// We send fake headers to avoid browser timeout when buffering
$time_start = time();
@@ -54,7 +55,7 @@ $time_start = time();
*/
function PMA_exportOutputHandler($line)
{
- global $time_start;
+ global $time_start, $dump_buffer, $dump_buffer_len;
// Kanji encoding convert feature
if (function_exists('PMA_kanji_str_conv')) {
@@ -62,13 +63,44 @@ function PMA_exportOutputHandler($line)
}
// If we have to buffer data, we will perform everything at once at the end
if ($GLOBALS['buffer_needed']) {
- $GLOBALS['dump_buffer'] .= $line;
- $time_now = time();
- if ($time_start >= $time_now + 30) {
- $time_start = $time_now;
- header('X-pmaPing: Pong');
- } // end if
+ $dump_buffer .= $line;
+ if ($GLOBALS['onfly_compression']) {
+
+ $dump_buffer_len += strlen($dump_buffer);
+
+ if ($dump_buffer_len > $GLOBALS['memory_limit']) {
+ // as bzipped
+ if ($GLOBALS['output_charset_conversion']) {
+ $dump_buffer = PMA_convert_string($GLOBALS['charset'], $GLOBALS['charset_of_file'], $dump_buffer);
+ }
+ if ($GLOBALS['compression'] == 'bzip' && @function_exists('bzcompress')) {
+ $dump_buffer = bzcompress($dump_buffer);
+ }
+ // as a gzipped file
+ else if ($GLOBALS['compression'] == 'gzip' && @function_exists('gzencode')) {
+ // without the optional parameter level because it bug
+ $dump_buffer = gzencode($dump_buffer);
+ }
+ if ($GLOBALS['save_on_server']) {
+ $write_result = @fwrite($GLOBALS['file_handle'], $dump_buffer);
+ if (!$write_result || ($write_result != strlen($line))) {
+ $GLOBALS['message'] = sprintf($GLOBALS['strNoSpace'], htmlspecialchars($save_filename));
+ return FALSE;
+ }
+ } else {
+ echo $dump_buffer;
+ }
+ $dump_buffer = '';
+ $dump_buffer_len = 0;
+ }
+ } else {
+ $time_now = time();
+ if ($time_start >= $time_now + 30) {
+ $time_start = $time_now;
+ header('X-pmaPing: Pong');
+ } // end if
+ }
} else {
if ($GLOBALS['asfile']) {
if ($GLOBALS['save_on_server']) {
@@ -124,6 +156,27 @@ $output_charset_conversion = $asfile &&
// Set whether we will need buffering
$buffer_needed = isset($compression) && ($compression == 'zip' | $compression == 'gzip' | $compression == 'bzip');
+// Use on fly compression?
+$onfly_compression = $GLOBALS['cfg']['CompressOnFly'] && PMA_PHP_INT_VERSION >= 40004 && isset($compression) && ($compression == 'gzip' | $compression == 'bzip');
+if ($onfly_compression) {
+ $memory_limit = trim(@ini_get('memory_limit'));
+ // 2 MB as default
+ if (empty($memory_limit)) $memory_limit = 2 * 1024 * 1024;
+
+ if (strtolower(substr($memory_limit, -1)) == 'm') $memory_limit = (int)substr($memory_limit, 0, -1) * 1024 * 1024;
+ elseif (strtolower(substr($memory_limit, -1)) == 'k') $memory_limit = (int)substr($memory_limit, 0, -1) * 1024;
+ elseif (strtolower(substr($memory_limit, -1)) == 'g') $memory_limit = (int)substr($memory_limit, 0, -1) * 1024 * 1024 * 1024;
+ else $memory_limit = (int)$memory_limit;
+
+ // Some of memory is needed for other thins and as treshold.
+ // Nijel: During export I had allocated (see memory_get_usage function)
+ // approx 1.2MB so this comes from that.
+ if ($memory_limit > 1500000) $memory_limit -= 1500000;
+
+ // Some memory is needed for compression, assume 1/3
+ $memory_limit *= 2/3;
+}
+
// Generate filename and mime type if needed
if ($asfile) {
$pma_uri_parts = parse_url($cfg['PmaAbsoluteUri']);
@@ -192,6 +245,9 @@ if ($asfile) {
// Open file on server if needed
if ($save_on_server) {
+ if (substr($cfg['SaveDir'], -1) != '/') {
+ $cfg['SaveDir'] .= '/';
+ }
$save_filename = $cfg['SaveDir'] . ereg_replace('[/\\]','_',$filename);
unset($message);
if (file_exists($save_filename) && empty($onserverover)) {
diff --git a/footer.inc.php3 b/footer.inc.php3
index 8e7f11085..61dfa7640 100755
--- a/footer.inc.php3
+++ b/footer.inc.php3
@@ -40,6 +40,11 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
if (!parent.frames.queryframe.querywindow.document.sqlform.LockFromUpdate || !parent.frames.queryframe.querywindow.document.sqlform.LockFromUpdate.checked) {
parent.frames.queryframe.querywindow.document.querywindow.db.value = "";
diff --git a/lang/afrikaans-iso-8859-1.inc.php3 b/lang/afrikaans-iso-8859-1.inc.php3
index b8b7b4294..7547e76e8 100644
--- a/lang/afrikaans-iso-8859-1.inc.php3
+++ b/lang/afrikaans-iso-8859-1.inc.php3
@@ -719,4 +719,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/afrikaans-utf-8.inc.php3 b/lang/afrikaans-utf-8.inc.php3
index cb61d613b..2e9fb2f06 100644
--- a/lang/afrikaans-utf-8.inc.php3
+++ b/lang/afrikaans-utf-8.inc.php3
@@ -720,4 +720,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/albanian-iso-8859-1.inc.php3 b/lang/albanian-iso-8859-1.inc.php3
index 7ba54afe7..97c0ece84 100644
--- a/lang/albanian-iso-8859-1.inc.php3
+++ b/lang/albanian-iso-8859-1.inc.php3
@@ -3,10 +3,11 @@
/**
* Translated by: Laurent Dhima
- * Rishikuar nga: Arben Çokaj
- */
+*/
$charset = 'iso-8859-1';
+$allow_recoding = TRUE;
+$allow_recoding = TRUE;
$text_dir = 'ltr';
$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
$right_font_family = 'arial, helvetica, geneva, sans-serif';
@@ -26,13 +27,17 @@ $strAPrimaryKey = 'Nj
$strAbortedClients = 'Dështoi';
$strAbsolutePathToDocSqlDir = 'Ju lutem, shkruani pozicionin absolut në webserver për tek directory e docSQL';
$strAccessDenied = 'Hyrja nuk u pranua';
-$strAction = 'Aksioni';
+$strAccessDeniedExplanation = 'phpMyAdmin u përpoq të lidhet me server-in MySQL, dhe server-i refuzoi lidhjen. Kontrollo emrin e host, username dhe password tek file config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka dhënë administratori i server-it MySQL.';
+$strAction = 'Veprimi';
+$strAddAutoIncrement = 'Shto vlerë AUTO_INCREMENT';
$strAddDeleteColumn = 'Shto/Fshi fushën';
$strAddDeleteRow = 'Shto/Fshi kriterin';
+$strAddDropDatabase = 'Shto DROP DATABASE';
+$strAddIntoComments = 'Shto tek komentet';
$strAddNewField = 'Shto një fushë të re';
$strAddPriv = 'Shto një privilegj të ri';
$strAddPrivMessage = 'Ke shtuar një privilegj të ri.';
-$strAddPrivilegesOnDb = 'Shto privilegje tek databazë në vazhdim';
+$strAddPrivilegesOnDb = 'Shto privilegje tek databaza në vazhdim';
$strAddPrivilegesOnTbl = 'Shto privilegje tek tabela në vazhdim';
$strAddSearchConditions = 'Shto kushte kërkimi (trupi i specifikimit "where"):';
$strAddToIndex = 'Shto tek treguesi i %s kolonës(ave)';
@@ -57,37 +62,47 @@ $strAnyDatabase = '
$strAnyHost = 'Çfarëdo host';
$strAnyTable = 'Çfarëdo tabelë';
$strAnyUser = 'Çfarëdo përdorues';
+$strArabic = 'Arabisht';
+$strArmenian = 'Armene';
$strAscending = 'Ngjitje';
$strAtBeginningOfTable = 'Në fillim të tabelës';
$strAtEndOfTable = 'Në fund të tabelës';
$strAttr = 'Pronësi';
-$strAutodetect = 'Autozbulim';
+$strAutodetect = 'Zbulim automatik';
$strAutomaticLayout = 'Faqosje automatike';
$strBack = 'Mbrapa';
+$strBaltic = 'Baltike';
$strBeginCut = 'FILLIMI I CUT';
$strBeginRaw = 'FILLIMI I RAW';
$strBinary = 'Binar';
-$strBinaryDoNotEdit = 'Të dhëna të tipit binar - mos modifiko';
-$strBookmarkDeleted = 'Bookmark u fshi.';
+$strBinaryDoNotEdit = 'Të dhëna të tipit binar - mos ndrysho';
+$strBookmarkAllUsers = 'Lejo që çdo përdorues të ketë hyrje në këtë libërshënues';
+$strBookmarkDeleted = 'Libërshënuesi u fshi.';
$strBookmarkLabel = 'Etiketë';
+$strBookmarkOptions = 'Opcionet e libërshënuesit';
$strBookmarkQuery = 'Query SQL shtuar të preferuarve';
$strBookmarkThis = 'Shtoja të preferuarve këtë query SQL';
-$strBookmarkView = 'Vizualizo vetëm';
+$strBookmarkView = 'Shfaq vetëm';
$strBrowse = 'Shfaq';
-$strBzError = 'phpMyAdmin nuk është në gjendje të kompresojë dump-in për arsye të ekstensionit Bz2 të gabuar në këtë version të php. Ju rekomandojmë patjetër setimin e $cfg[\'BZipDump\']
tek file juaj i konfigurimit të phpMyAdmin në FALSE
. Nëqoftëse dëshironi të përdorni patjetër specifikat e kompresimit Bz2, duhet të rifreskoni php në versionin e fundit. Hidhini një sy php bug report %s për informacione të hollësishme.';
+$strBrowseForeignValues = 'Shfleto opcionet e huaja';
+$strBulgarian = 'Bullgarisht';
+$strBzError = 'phpMyAdmin nuk është në gjendje të kompresojë dump-in për arsye të prapashtesës Bz2 të gabuar në këtë version të php. Ju rekomandojmë patjetër vendosjen e $cfg[\'BZipDump\']
tek file juaj i konfigurimit të phpMyAdmin në FALSE
. Nëqoftëse dëshironi të përdorni patjetër specifikat e kompresimit Bz2, duhet të rifreskoni php në versionin e fundit. Hidhini një sy php bug report %s për informacione të hollësishme.';
$strBzip = '"kompresuar me bzip2"';
$strCSVOptions = 'Opcione CSV';
$strCannotLogin = 'E pamundur kryerja e login tek server-i MySQL';
-$strCantLoad = 'I pamundur ngarkimi i ekstesionit %s, kontrollo konfigurimin e PHP';
-$strCantLoadMySQL = 'nuk arrij të ngarkoj ekstensionin MySQL, kontrollo konfigurimin e PHP.';
-$strCantLoadRecodeIconv = 'I pamundur ngarkimi i ekstensionit iconv apo recode të nevoitshëm për konvertimin e karaktereve, konfiguroni php për të lejuar përdorimin e këtyre ekstensioneve ose disaktivoni konvertimin e set të karaktereve në phpMyAdmin.';
+$strCantLoad = 'I pamundur ngarkimi i prapashtesës %s, kontrollo konfigurimin e PHP';
+$strCantLoadMySQL = 'nuk arrij të ngarkoj prapashtesën MySQL, kontrollo konfigurimin e PHP.';
+$strCantLoadRecodeIconv = 'I pamundur ngarkimi i prapashtesës iconv apo recode të nevoitshëm për konvertimin e karaktereve, konfiguroni php për të lejuar përdorimin e këtyre prapashtesave ose disaktivoni konvertimin e set të karaktereve në phpMyAdmin.';
$strCantRenameIdxToPrimary = 'I pamundur riemërtimi i treguesit në PRIMAR!';
$strCantUseRecodeIconv = 'I pamundur përdorimi i funksioneve iconv apo libiconv apo recode_string për shkak se ekstensioni duhet të ngarkohet. Kontrolloni konfigurimin e php.';
$strCardinality = '';
-$strCarriage = 'Kthimi në fillim: \\r';
-$strChange = 'Modifiko';
+$strCarriage = 'Kryerradha: \\r';
+$strCaseInsensitive = 'case-insensitive';
+$strCaseSensitive = 'case-sensitive';
+$strCentralEuropean = 'Europa qendrore';
+$strChange = 'Ndrysho';
$strChangeCopyMode = 'Krijo një përdorues të ri me të njëjta të drejta dhe ...';
$strChangeCopyModeCopy = '... mbaj të vjetrin.';
$strChangeCopyModeDeleteAndReload = ' ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat.';
@@ -96,14 +111,18 @@ $strChangeCopyModeRevoke = ' ... hiq t
$strChangeCopyUser = 'Ndrysho Informacionet e Login / Kopjo përdoruesin';
$strChangeDisplay = 'Zgjidh fushën që dëshiron të shohësh';
$strChangePassword = 'Ndrysho password';
-$strCharsetOfFile = 'Set karakteresh të file:';
-$strCheckAll = 'Seleksionoi të gjithë';
+$strCharset = 'Familje gërmash';
+$strCharsetOfFile = 'Familja gërmave të file:';
+$strCharsets = 'Familje gërmash';
+$strCharsetsAndCollations = 'Familje gërmash dhe Collations';
+$strCheckAll = 'Zgjidhi të gjithë';
$strCheckDbPriv = 'Kontrollo të drejtat e databazës';
$strCheckPrivs = 'Kontrollo të drejtat';
$strCheckPrivsLong = 'Kontrollo të drejtat për databazën "%s".';
$strCheckTable = 'Kontrollo tabelën';
$strChoosePage = 'Ju lutem zgjidhni faqen që dëshironi të modifikoni';
$strColComFeat = 'Vizualizimi i komenteve të kollonave';
+$strCollation = 'Collation';
$strColumn = 'Kollona';
$strColumnNames = 'Emrat e kollonave';
$strColumnPrivileges = 'Privilegjet relative të kollonave';
@@ -118,6 +137,7 @@ $strConnections = 'Lidhje';
$strCookiesRequired = 'Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara.';
$strCopyTable = 'Kopjo tabelën tek (databazë. tabela):';
$strCopyTableOK = 'Tabela %s u kopjua tek %s.';
+$strCopyTableSameNames = 'I pamundur kopjimi i tabelës tek vetvetja!';
$strCouldNotKill = 'phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë përfunduar më parë.';
$strCreate = 'Krijo';
$strCreateIndex = 'Krijo një tregues tek %s columns';
@@ -127,6 +147,9 @@ $strCreateNewTable = 'Krijo nj
$strCreatePage = 'Krijo një faqe të re';
$strCreatePdfFeat = 'Krijimi i PDF-ve';
$strCriteria = 'Kriteri';
+$strCroatian = 'Kroate';
+$strCyrillic = 'Cyrillic';
+$strCzech = 'Çekisht';
$strDBComment = 'Komenti për Databazën: ';
$strDBGContext = 'Konteksti';
@@ -138,23 +161,26 @@ $strDBGMinTimeMs = 'Koha minimum, ms';
$strDBGModule = 'Modul';
$strDBGTimePerHitMs = 'Koha/Hit, ms';
$strDBGTotalTimeMs = 'Koha gjithsej, ms';
+$strDanish = 'Danisht';
$strData = 'Të dhëna';
$strDataDict = 'Data Dictionary';
$strDataOnly = 'Vetëm të dhëna';
$strDatabase = 'Databazë ';
+$strDatabaseExportOptions = 'Opcione të eksportimit të databazës';
$strDatabaseHasBeenDropped = 'Databaza %s u eleminua.';
+$strDatabaseNoTable = 'Kjo databazë nuk përmban tabela!';
$strDatabaseWildcard = 'Database (wildcards e lejuara):';
$strDatabases = 'databazë';
-$strDatabasesDropped = '%s databases u eleminuan korrektësisht.';
-$strDatabasesStats = 'Statistikat e databases';
-$strDatabasesStatsDisable = 'Deaktivo Statistikat';
+$strDatabasesDropped = '%s databaza u eleminuan korrektësisht.';
+$strDatabasesStats = 'Statistikat e databazave';
+$strDatabasesStatsDisable = 'Disaktivo Statistikat';
$strDatabasesStatsEnable = 'Aktivo Statistikat';
$strDatabasesStatsHeavyTraffic = 'Shënim: Aktivimi këtu i statistikave të Databazës mund të shkaktojë rritjen e trafikut midis server-it web dhe MySQL.';
$strDbPrivileges = 'Privilegje specifike të databazës';
$strDbSpecific = 'specifik i databazës';
-$strDefault = 'Paracaktuar';
-$strDefaultValueHelp = 'Për vlerat default, ju lutem shtoni një vlerë të vetme, pa backslash escaping apo thonjëza, duke përdorur këtë format: a';
-$strDelOld = 'Faqja aktuale përmban Riferime ndaj Tabelash që nuk ekzistojnë më. Dëshironi t\'i eleminoni këto Riferimente?';
+$strDefault = 'Prezgjedhur';
+$strDefaultValueHelp = 'Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash escaping apo thonjëza, duke përdorur këtë format: a';
+$strDelOld = 'Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi t\'i eleminoni këto riferimente?';
$strDelete = 'Fshi';
$strDeleteAndFlush = 'Fshi përdoruesit dhe pastaj rilexo privilegjet.';
$strDeleteAndFlushDescr = 'Kjo është rruga më e pastër, por ngarkimi i privilegjeve mund të zgjasë disa çaste më shumë.';
@@ -164,36 +190,43 @@ $strDeleted = 'rreshti u fshi';
$strDeletedRows = 'rreshtat e fshirë:';
$strDeleting = 'Në fshirje e sipër të %s';
$strDescending = 'Zbritës';
-$strDisabled = 'Disaktivuar';
-$strDisplay = 'Vizualizo';
-$strDisplayFeat = 'Vizualizo karakteristikat';
-$strDisplayOrder = 'Mënyra e vizualizimit:';
+$strDescription = 'Përshkrimi';
+$strDictionary = 'fjalor';
+$strDisabled = 'Jo aktiv';
+$strDisplay = 'Shfaq';
+$strDisplayFeat = 'Shfaq karakteristikat';
+$strDisplayOrder = 'Mënyra e shfaqjes:';
$strDisplayPDF = 'Shfaq skemën e PDF';
$strDoAQuery = 'Zbato "query nga shembull" (karakteri jolly: "%")';
$strDoYouReally = 'Konfermo: ';
$strDocu = 'Dokumentet';
$strDrop = 'Elemino';
$strDropDB = 'Elemino databazën %s';
-$strDropSelectedDatabases = 'Elemino Databazat e Zgjedhura';
+$strDropSelectedDatabases = 'Elemino Databazat e zgjedhura';
$strDropTable = 'Elemino tabelën';
$strDropUsersDb = 'Elemino databazat që kanë emër të njëjtë me përdoruesit.';
$strDumpComments = 'Përfshi komentet e kollonave si komente-SQL në linjë';
+$strDumpSaved = 'Dump u ruajt tek file %s.';
$strDumpXRows = 'Dump i %s rreshta duke filluar nga rreshti %s.';
$strDumpingData = 'Dump i të dhënave për tabelën';
$strDynamic = 'dinamik';
-$strEdit = 'Modifiko';
-$strEditPDFPages = 'Modifiko Faqe PDF';
-$strEditPrivileges = 'Modifiko Privilegjet';
+$strEdit = 'Ndrysho';
+$strEditPDFPages = 'Ndrysho faqen PDF';
+$strEditPrivileges = 'Ndrysho të drejtat';
$strEffective = 'Efektiv';
$strEmpty = 'Zbraz';
$strEmptyResultSet = 'MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta).';
-$strEnabled = 'Aktivuar';
+$strEnabled = 'Aktiv';
$strEnd = 'Fund';
$strEndCut = 'FUNDI I CUT';
$strEndRaw = 'FUNDI I RAW';
-$strEnglishPrivileges = 'Shënim: emrat e privilegjeve të MySQL janë në Anglisht';
+$strEnglish = 'Anglisht';
+$strEnglishPrivileges = 'Shënim: emrat e të drejtave të MySQL janë në Anglisht';
$strError = 'Gabim';
+$strEstonian = 'Estoneze';
+$strExcelOptions = 'Opcione të Excel';
+$strExecuteBookmarked = 'Zbaton query nga libërshënuesi';
$strExplain = 'Shpjego SQL';
$strExport = 'Eksporto';
$strExportToXML = 'Eksporto në formatin XML';
@@ -207,44 +240,49 @@ $strFields = 'Fusha';
$strFieldsEmpty = ' Numratori i fushave është bosh! ';
$strFieldsEnclosedBy = 'Fushë e përbërë nga';
$strFieldsEscapedBy = 'Fushë e kufizuar nga';
-$strFieldsTerminatedBy = 'Fushë e mbaruar nga';
+$strFieldsTerminatedBy = 'Fushë që mbaron me';
+$strFileAlreadyExists = 'File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh opcionin "Mbishkruaj".';
$strFileCouldNotBeRead = 'File nuk mund të lexohet';
$strFileNameTemplate = 'Emri i file template';
-$strFileNameTemplateHelp = 'Përdor __DB__ për emrin e databazës, __TABLE__ si emër për tabelën dhe %sany strftime%s opcione për specifikat e kohës, ekstensioni do të shtohet automatikisht. Çdo tekst tjetër do të konservohet.';
+$strFileNameTemplateHelp = 'Përdor __DB__ për emrin e databazës, __TABLE__ si emër për tabelën dhe %sany strftime%s opcione për specifikat e kohës, prapashtesa do të shtohet automatikisht. Çdo tekst tjetër do të konservohet.';
$strFileNameTemplateRemember = 'kujto template';
$strFixed = 'fiks';
$strFlushPrivilegesNote = 'Shënim: phpMyAdmin lexon privilegjet e përdoruesve direkt nga tabela e privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë nga privilegjet e përdorur nga serveri nëse janë kryer ndryshime manuale. Në këtë rast, duhet të %srifreskoni privilegjet%s para se të vazhdoni.';
$strFlushTable = 'Rifillo ("FLUSH") tabelën';
-$strFormEmpty = 'Mungon një vlerë në form!';
+$strFormEmpty = 'Mungon një vlerë në formular!';
$strFormat = 'Formati';
$strFullText = 'Teksti i plotë';
-$strFunction = 'Funksion';
+$strFunction = 'Funksioni';
$strGenBy = 'Gjeneruar nga';
$strGenTime = 'Gjeneruar më';
$strGeneralRelationFeat = 'Karakteristikat e përgjithshme të relacionit';
+$strGerman = 'Gjermanisht';
$strGlobal = 'globale';
$strGlobalPrivileges = 'Privilegje globale';
$strGlobalValue = 'Vlerë Globale';
$strGo = 'Zbato';
$strGrantOption = 'Grant';
$strGrants = 'Lejo';
+$strGreek = 'Greqisht';
$strGzip = '"kompresuar me gzip"';
-$strHasBeenAltered = 'u modifikua.';
+$strHasBeenAltered = 'u ndryshua.';
$strHasBeenCreated = 'u krijua.';
-$strHaveToShow = 'Zgjidh të paktën një kolonë për ta vizualizuar';
-$strHome = 'Home';
-$strHomepageOfficial = 'Home page zyrtare e phpMyAdmin';
-$strHomepageSourceforge = 'Home page e phpMyAdmin tek sourceforge.net';
+$strHaveToShow = 'Zgjidh të paktën një kolonë për të parë';
+$strHebrew = 'Hebraike';
+$strHome = 'Faqja web';
+$strHomepageOfficial = 'Faqja zyrtare e phpMyAdmin';
+$strHomepageSourceforge = 'Faqja e phpMyAdmin tek sourceforge.net';
$strHost = 'Host';
$strHostEmpty = 'Emri i host është bosh!';
+$strHungarian = 'Hungarisht';
$strId = 'ID';
$strIdxFulltext = 'Teksti komplet';
$strIfYouWish = 'Për të ngarkuar të dhënat vetëm për disa kollona të tabelës, specifiko listën e fushave (të ndara me presje).';
-$strIgnore = 'Injoro';
-$strIgnoringFile = 'File %s u injorua';
+$strIgnore = 'Shpërfill';
+$strIgnoringFile = 'File %s u shpërfill';
$strImportDocSQL = 'Importo files docSQL';
$strImportFiles = 'Importo files';
$strImportFinished = 'Importimi përfundoi';
@@ -252,7 +290,7 @@ $strInUse = 'n
$strIndex = 'Treguesi';
$strIndexHasBeenDropped = 'Treguesi %s u eleminua';
$strIndexName = 'Emri i treguesit :';
-$strIndexType = 'Tipi i treguesit :';
+$strIndexType = 'Lloji i treguesit :';
$strIndexes = 'Tregues';
$strInnodbStat = 'Gjëndja InnoDB';
$strInsecureMySQL = 'File i konfigurimit në përdorim përmban zgjedhje (root pa asnjë password) që korrispondojnë me të drejtat e account MySQL të paracaktuar. Një server MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju duhet patjetër të korrigjoni këtë vrimë në siguri.';
@@ -260,31 +298,47 @@ $strInsert = 'Shto';
$strInsertAsNewRow = 'Shto një rresht të ri';
$strInsertNewRow = 'Shto një rresht të ri';
$strInsertTextfiles = 'Shto një file teksti në tabelë';
-$strInsertedRows = 'Rreshta të shtuar:';
+$strInsertedRowId = 'U shtua id e rreshtit:';
+$strInsertedRows = 'Rreshtat e shtuar:';
$strInstructions = 'Instruksione';
+$strInternalNotNecessary = '* Nuk ka nevojë për një relacion të brendshëm kur ky relacion ekziston në InnoDB.';
+$strInternalRelations = 'Relacione të brendshme';
$strInvalidName = '"%s" është një fjalë e rezervuar; nuk mund ta përdorësh si emër për databazë/tabelë/fushë.';
+$strJapanese = 'Japonisht';
$strJumpToDB = 'Kalo tek databaza "%s".';
$strJustDelete = 'Vetëm fshi përdoruesit nga tabelat e privilegjeve.';
-$strJustDeleteDescr = 'Përdoruesit e "fshirë" do të kenë akoma mundësi të futen në server si zakonisht derisa privilegjet të ngarkohen përsëri.';
+$strJustDeleteDescr = 'Përdoruesit e "fshirë" do të kenë akoma mundësi të futen në server si zakonisht derisa privilegjet të ringarkohen përsëri.';
$strKeepPass = 'Mos ndrysho password';
$strKeyname = 'Emri i kyçit';
$strKill = 'Hiq';
+$strKorean = 'Koreane';
$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'Opcione LaTeX';
$strLandscape = 'Horizontale';
+$strLatexContent = 'Përmbajtja e tabelës __TABLE__';
+$strLatexContinued = '(vazhdon)';
+$strLatexContinuedCaption = 'Nëntitulli i tabelës vazhduese';
+$strLatexIncludeCaption = 'Përfshi nëntitullin e tabelës';
+$strLatexLabel = 'Çelsi i etiketës';
+$strLatexStructure = 'Struktura e tabelës __TABLE__';
$strLength = 'Gjatësia';
$strLengthSet = 'Gjatësia/Set*';
$strLimitNumRows = 'record për faqe';
$strLineFeed = 'Fundi i rreshtit: \\n';
$strLines = 'Record';
$strLinesTerminatedBy = 'Rreshta që mbarojnë me';
-$strLinkNotFound = 'Link nuk u gjet';
+$strLinkNotFound = 'Lidhja nuk u gjet';
$strLinksTo = 'Lidhje me';
+$strLithuanian = 'Lituane';
+$strLoadExplanation = 'Metoda më e mirë është zgjedhur si default, por ju jepet mundësia t\'a ndryshoni nëqoftëse dështon.';
+$strLoadMethod = 'Metoda e NGARKIMIT';
$strLocalhost = 'Lokal';
$strLocationTextfile = 'Pozicioni i file';
$strLogPassword = 'Password:';
+$strLogServer = 'Server-i';
$strLogUsername = 'Emri i përdoruesit:';
$strLogin = 'Lidh';
$strLoginInformation = 'Informacione mbi Login';
@@ -296,44 +350,49 @@ $strMIME_available_transform = 'Transformacionet n
$strMIME_description = 'Përshkrimi';
$strMIME_file = 'Emri i File';
$strMIME_nodescription = 'Asnjë përshkrim në dispozicion për këtë transformim. Ju lutem pyet autorin, çfarë %s bën.';
-$strMIME_transformation = 'Transformacioni i Browser';
-$strMIME_transformation_note = 'Për listën e opcioneve të transformacioneve në dispozicion dhe transformacionet relativë të llojeve-MIME, kliko tek %stransformacione përshkrime%s';
-$strMIME_transformation_options = 'Opcione të Transformimeve';
+$strMIME_transformation = 'Transformimi i Browser';
+$strMIME_transformation_note = 'Për listën e opcioneve të transformimeve në dispozicion dhe transformimet relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s';
+$strMIME_transformation_options = 'Opcione të transformimeve';
$strMIME_transformation_options_note = 'Ju lutem shkruani vlerat për opcionet e transformimit duke përdorur këtë format: \'a\',\'b\',\'c\'... Nëse keni nevojë të shtoni një backslash ("\") apo një apostrofë ("\'") midis këtyre vlerave, duhet ti backslash-oni (për shembull \'\\\\xyz\' ose \'a\\\'b\').';
$strMIME_without = 'Llojet-MIME të print-uar në italics kanë një funksion transformacioni të veçantë';
$strMissingBracket = 'Mungojnë thonjëza';
$strModifications = 'Ndryshimet u shpëtuan';
-$strModify = 'Modifiko';
-$strModifyIndexTopic = 'Modifiko një tregues';
+$strModify = 'Ndrysho';
+$strModifyIndexTopic = 'Ndrysho një tregues';
$strMoreStatusVars = 'Më shumë të ndryshueshme të gjendjes';
$strMoveTable = 'Sposto tabelën në (databazë. tabela):';
-$strMoveTableOK = 'Tabela %s u spostua tek %s.';
+$strMoveTableOK = 'Tabela %s u lëviz tek %s.';
+$strMoveTableSameNames = 'E pamundur lëvizja e tabelës tek vetvetja!';
+$strMultilingual = 'shumëgjuhësh';
+$strMustSelectFile = 'Duhet të zgjidhni file që dëshironi të shtoni.';
$strMySQLCharset = 'Set karakteresh MySQL';
$strMySQLReloaded = 'MySQL u rifillua.';
$strMySQLSaid = 'Mesazh nga MySQL: ';
$strMySQLServerProcess = 'MySQL %pma_s1% në ekzekutim tek %pma_s2% si %pma_s3%';
-$strMySQLShowProcess = 'Vizualizo proceset në ekzekutim';
-$strMySQLShowStatus = 'Vizualizo informacionet e runtime të MySQL';
-$strMySQLShowVars = 'Vizualizo të ndryshueshmet e sistemit të MySQL';
+$strMySQLShowProcess = 'Shfaq proceset në ekzekutim';
+$strMySQLShowStatus = 'Shfaq informacionet e runtime të MySQL';
+$strMySQLShowVars = 'Shfaq të ndryshueshmet e sistemit të MySQL';
$strName = 'Emri';
$strNext = 'Në vazhdim';
$strNo = ' Jo ';
$strNoDatabases = 'Asnjë databazë';
$strNoDatabasesSelected = 'Asnjë databazë është zgjedhur.';
-$strNoDescription = 'asnjë Përshkrim';
-$strNoDropDatabases = 'Komandat "DROP DATABASE" janë disaktivuar.';
-$strNoExplain = 'Mos Shpjego SQL';
+$strNoDescription = 'asnjë përshkrim';
+$strNoDropDatabases = 'Komandat "DROP DATABASE" nuk janë aktive.';
+$strNoExplain = 'Mos shpjego SQL';
$strNoFrames = 'phpMyAdmin funksionon më mirë me browser që suportojnë frames';
$strNoIndex = 'Asnjë tregues i përcaktuar!';
$strNoIndexPartsDefined = 'Asnjë pjesë e treguesit është përcaktuar!';
$strNoModification = 'Asnjë ndryshim';
$strNoOptions = 'Ky format nuk ka opcione';
$strNoPassword = 'Asnjë password';
+$strNoPermission = 'Server-i web nuk ka të drejtat e duhura për të ruajtur file %s.';
$strNoPhp = 'pa kod PHP';
$strNoPrivileges = 'Asnjë privilegj';
$strNoQuery = 'Asnjë query SQL!';
$strNoRights = 'Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!';
+$strNoSpace = 'Hapësirë e pamjaftueshme për të ruajtur file %s.';
$strNoTablesFound = 'Nuk gjenden tabela në databazë.';
$strNoUsersFound = 'Nuk u gjet asnjë përdorues.';
$strNoUsersSelected = 'Nuk është seleksionuar asnjë përdorues.';
@@ -357,10 +416,12 @@ $strOptionally = 'ME D
$strOptions = 'Mundësi';
$strOr = 'Ose';
$strOverhead = 'Mbi limit';
+$strOverwriteExisting = 'Mbishkruaj file(s) ekzistues';
-$strPHP40203 = 'Është në përdorim PHP 4.2.3, që përmban një bug serioz me stringat multi-byte strings (mbstring). Shiko raportin 19404 të bug PHP. Ky version i PHP nuk rekomandohet për tu përdorur me phpMyAdmin.';
+$strPHP40203 = 'Është në përdorim PHP 4.2.3, që përmban një difekt serioz me stringat multi-byte strings (mbstring). Shiko raportin 19404 të bug PHP. Ky version i PHP nuk rekomandohet për tu përdorur me phpMyAdmin.';
$strPHPVersion = 'Versioni i PHP';
$strPageNumber = 'Numri i faqes:';
+$strPaperSize = 'Përmasat e letrës';
$strPartialText = 'Tekst i pjesëshëm';
$strPassword = 'Password';
$strPasswordChanged = 'Password për përdoruesin %s u ndryshua me sukses.';
@@ -373,6 +434,7 @@ $strPdfNoTables = 'Asnj
$strPerHour = 'në orë';
$strPerMinute = 'në minutë';
$strPerSecond = 'në sekondë';
+$strPhoneBook = 'numratori';
$strPhp = 'Krijo kodin PHP';
$strPmaDocumentation = 'Dokumente të phpMyAdmin';
$strPmaUriError = 'Direktiva $cfg[\'PmaAbsoluteUri\'] DUHET të përcaktohet tek file i konfigurimit!';
@@ -385,7 +447,8 @@ $strPrimaryKeyHasBeenDropped = 'Ky
$strPrimaryKeyName = 'Emri i kyçit primar duhet të jetë... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" duhet të jetë emri i, dhe vetëm i , një kyçi primar!)';
$strPrint = 'Printo';
-$strPrintView = 'Vizualizo për printim';
+$strPrintView = 'Shfaq për printim';
+$strPrintViewFull = 'Shfaq për printim (me full text)';
$strPrivDescAllPrivileges = 'Përfshin të gjitha të drejtat me përjashtim të GRANT.';
$strPrivDescAlter = 'Lejon ndryshimin e strukturës së tabelave ekzistuese.';
$strPrivDescCreateDb = 'Lejon krijimin e tabelave të reja dhe databazave të reja.';
@@ -432,14 +495,16 @@ $strQuerySQLHistory = 'Kronollogjia e SQL';
$strQueryStatistics = 'Statistikat e Query : Që nga nisja e tij, server-it i janë dërguar %s queries.';
$strQueryTime = 'Query ka zgjatur %01.4f sec';
$strQueryType = 'Lloji i query';
+$strQueryWindowLock = 'Mos e mbishkruaj këtë query nga jashtë dritares';
$strReType = 'Rifut';
$strReceived = 'Marrë';
$strRecords = 'Record';
$strReferentialIntegrity = 'Kontrollo integritetin e informacioneve:';
$strRelationNotWorking = 'Karakteristikat shtesë janë disaktivuar për sa i takon funksionimit me tabelat e link-uara. Për të zbuluar përse, klikoni %skëtu%s.';
-$strRelationView = 'Shiko relacionin';
+$strRelationView = 'Shiko relacionet';
$strRelationalSchema = 'Skema relazionale';
+$strRelations = 'Relacione';
$strReloadFailed = 'Rinisja e MySQL dështoi.';
$strReloadMySQL = 'Rinis MySQL';
$strReloadingThePrivileges = 'Duke rilexuar privilegjet';
@@ -449,6 +514,7 @@ $strRenameTable = 'Riem
$strRenameTableOK = 'Tabela %s u riemërtua %s';
$strRepairTable = 'Riparo tabelën';
$strReplace = 'Zëvëndëso';
+$strReplaceNULLBy = 'Zevëndëso NULL me';
$strReplaceTable = 'Zëvëndëso të dhënat e tabelës me file';
$strReset = 'Rinis';
$strResourceLimits = 'Limitet e rezervave';
@@ -471,6 +537,7 @@ $strRowsStatistic = 'Statistikat e rreshtave';
$strRunQuery = 'Dërgo Query';
$strRunSQLQuery = 'Zbato query SQL tek databazë %s';
$strRunning = 'në ekzekutim tek %s';
+$strRussian = 'Rusisht';
$strSQL = 'SQL';
$strSQLOptions = 'Opcione SQL';
@@ -483,6 +550,7 @@ $strSQPBugUnclosedQuote = 'Thonj
$strSQPBugUnknownPunctuation = 'Stringë Punctuation e panjohur';
$strSave = 'Shpëto';
$strScaleFactorSmall = 'Faktori i shkallës është shumë i vogël për të plotësuar skemën në faqe';
+$strSaveOnServer = 'Ruaje në server tek directory %s';
$strSearch = 'Kërko';
$strSearchFormTitle = 'Kërko në databazë';
$strSearchInTables = 'Tek tabela(at):';
@@ -493,13 +561,14 @@ $strSearchOption3 = 'fraza precize';
$strSearchOption4 = 'si ekspresion i rregullt';
$strSearchResultsFor = 'Kërko rezultatet për "%s " %s:';
$strSearchType = 'Gjej:';
-$strSelect = 'Seleksiono';
-$strSelectADb = 'Të lutem, seleksiono një databazë';
-$strSelectAll = 'Seleksiono Gjithçka';
-$strSelectFields = 'Seleksiono fushat (të paktën një):';
+$strSecretRequired = 'Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret).';
+$strSelect = 'Zgjidh';
+$strSelectADb = 'Të lutem, zgjidh një databazë';
+$strSelectAll = 'Zgjidh gjithçka';
+$strSelectFields = 'Zgjidh fushat (të paktën një):';
$strSelectNumRows = 'tek query';
-$strSelectTables = 'Seleksiono Tabelat';
-$strSend = 'Shpëtoje me emër...';
+$strSelectTables = 'Zgjidh Tabelat';
+$strSend = 'Ruaje me emër...';
$strSent = 'Dërguar';
$strServer = 'Server %s';
$strServerChoice = 'Zgjedhja e server';
@@ -524,9 +593,11 @@ $strShowTableDimension = 'Trego dimensionin e tabelave';
$strShowTables = 'Shfaq tabelat';
$strShowThisQuery = 'Tregoje përsëri këtë query';
$strShowingRecords = 'Vizualizimi i record ';
+$strSimplifiedChinese = 'Kineze e thjeshtëzuar';
$strSingly = '(një nga një)';
$strSize = 'Dimensioni';
$strSort = 'rreshtimi';
+$strSortByKey = 'Rendit sipas çelsit';
$strSpaceUsage = 'Hapësira e përdorur';
$strSplitWordsWithSpace = 'Fjalët janë të ndara nga një hapsirë (" ").';
$strStatCheckTime = 'Kontrolli i fundit';
@@ -544,6 +615,7 @@ $strStructure = 'Struktura';
$strSubmit = 'Dërgoje';
$strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej';
+$strSwedish = 'Suedisht';
$strSwitchToTable = 'Kalo tek tabela e kopjuar';
$strTable = 'Tabela';
@@ -554,161 +626,95 @@ $strTableHasBeenEmptied = 'Tabela %s u zbraz';
$strTableHasBeenFlushed = 'Tabela %s u rifreskua';
$strTableMaintenance = 'Administrimi i tabelës';
$strTableOfContents = 'Tabela e përmbajtjes';
+$strTableOptions = 'Opcione për tabelën';
$strTableStructure = 'Struktura e tabelës';
-$strTableType = 'Tipi i tabelës';
+$strTableType = 'Lloji i tabelës';
$strTables = '%s tabela(at)';
$strTblPrivileges = 'Të drejta relative me tabelat';
-$strTextAreaLength = ' Për shkak të gjatësisë saj, kjo fushë nuk mund të modifikohet ';
+$strTextAreaLength = ' Për shkak të gjatësisë saj, kjo fushë nuk mund të ndryshohet ';
+$strThai = 'Thai';
$strTheContent = 'Përmbajtja e file u shtua.';
$strTheContents = 'Përmbajtja e file zëvëndëson rreshtat e tabelës me të njëjtin kyç primar apo kyç të vetëm.';
$strTheTerminator = 'Karakteri përfundues i fushave.';
$strThisHost = 'Këtë Host';
$strThisNotDirectory = 'Kjo nuk është një directory';
$strThreadSuccessfullyKilled = 'Thread %s u përfundua me sukses.';
-$strTime = 'Kohë';
+$strTime = 'Koha';
+$strToggleScratchboard = '(dis)aktivo scratchboard';
$strTotal = 'Gjithsej';
$strTotalUC = 'Gjithsej';
+$strTraditionalChinese = 'Kineze tradicionale';
$strTraffic = 'Trafiku';
-$strTransformation_image_jpeg__inline = 'Vizualizon një thumbnail të klikueshëm; mundësitë: gjërësia, lartësia në pixels (ruan proporcionin origjinal)';
-$strTransformation_image_jpeg__link = 'Shfaq një link për tek kjo figurë (download blob direkt, p.sh.).';
+$strTransformation_image_jpeg__inline = 'Shfaq një thumbnail të klikueshëm; mundësitë: gjërësia, lartësia në pixels (ruan proporcionin origjinal)';
+$strTransformation_image_jpeg__link = 'Shfaq një lidhje për tek kjo figurë (download blob direkt, p.sh.).';
$strTransformation_image_png__inline = 'Shiko figurën/jpeg: në line';
$strTransformation_text_plain__dateformat = 'Merr një fushë TIME, TIMESTAMP apo DATETIME dhe e formaton duke përdorur formatin e datës lokale. Mundësia e parë është offset (në orë) që do ti shtohet timestamp (Default: 0). Mundësia e dytë është një format date në përputhje me parametrat në dispozicion për funksionin strftime() të PHP.';
$strTransformation_text_plain__external = 'VETËM PËR LINUX: Lëshon një program të jashtëm dhe plotëson të dhënat e fushave me anë të standard input. Jep si rezultat standard output e programit. Vendosja default është Tidy, për të printuar si duhet kodin HTML. Për arsye sigurie, do t\'ju duhet të ndryshoni file libraries/transformations/text_plain__external.inc.php dhe të shkruani instrumentet që lejoni të përdoren. Mundësia e parë pra është numri i programit që dëshironi të përdorni dhe e dyta janë parametrat për programin. Parametri i tretë, n.q.s. i vendosur në 1 do të konvertojë output duke përdorur htmlspecialchars() (Prezgjedhur: 1). Një parametër i katërt, po të jetë vendosur në 1 do t\'i shtojë një NOWRAP përmbajtjes së qelisë kështu që output komplet do të shfaqet pa u riformatuar (Default: 1)';
$strTransformation_text_plain__formatted = 'Konservon formatimin origjinal të fushës. Nuk aplikohet asnjë Escaping.';
$strTransformation_text_plain__imagelink = 'Shfaq një figurë dhe një link, fusha përmban emrin e file; opcioni i parë është një prefiks si "http://domain.com/", opcioni i dytë është gjërësia në pixels, i treti është lartësia.';
$strTransformation_text_plain__link = 'Shfaq një link, fusha përmban emrin e file; opcioni i parë është një prefiks si "http://domain.com/", opcioni i dytë është një titull për lidhjen.';
-$strTransformation_text_plain__substr = 'Shfaq vetëm një pjesë të string-ës. Opcioni i parë është offset-i që shërben për të përcaktuar ku fillon output i tekstit tuaj (Default 0). Opcioni i dytë është një offset që tregon se sa tekst kthehet. Po të jetë bosh, kthen të gjithë tekstin e mbetur. Opcioni i trtë përcakton çfarë karakteresh do të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) .';
+$strTransformation_text_plain__substr = 'Shfaq vetëm një pjesë të string-ës. Opcioni i parë është offset-i që shërben për të përcaktuar ku fillon output i tekstit tuaj (Default 0). Opcioni i dytë është një offset që tregon se sa tekst kthehet. Po të jetë bosh, kthen të gjithë tekstin e mbetur. Opcioni i tretë përcakton çfarë karakteresh do të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) .';
$strTransformation_text_plain__unformatted = 'Shfaq kodin HTML si entitet HTML. Formatimi HTML nuk shfaqet.';
$strTruncateQueries = 'Shkurton (ndërpret) Queries e Shfaqura';
+$strTurkish = 'Turqisht';
$strType = 'Lloji';
+$strUkrainian = 'Ukrainase';
$strUncheckAll = 'Deseleksionoi të gjithë';
+$strUnicode = 'Unicode';
$strUnique = 'I vetëm';
+$strUnknown = 'e panjohur';
$strUnselectAll = 'Deseleksiono gjithçka';
$strUpdComTab = 'Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments';
$strUpdatePrivMessage = 'Ke rifreskuar lejet për %s.';
$strUpdateProfile = 'Rifresko profilin:';
$strUpdateProfileMessage = 'Profili u rifreskua.';
$strUpdateQuery = 'Rifresko Query';
+$strUpgradeMySQL = 'Duhet të instaloni MySQL %s ose superior.';
$strUsage = 'Përdorimi';
$strUseBackquotes = 'Përdor backquotes me emrat e tabelave dhe fushave';
$strUseHostTable = 'Përdor Tabelën e Host-it';
$strUseTables = 'Përdor tabelat';
$strUseTextField = 'Përdor fushë teksti';
+$strUseThisValue = 'Përdor këtë vlerë';
$strUser = 'Përdorues';
$strUserAlreadyExists = 'Përdoruesi %s ekziston!';
$strUserEmpty = 'Emri i përdoruesit është bosh!';
$strUserName = 'Emri i përdoruesit';
-$strUserNotFound = 'Përdoruesi i seleksionuar nuk u gjet tek tabela e privilegjeve.';
+$strUserNotFound = 'Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave.';
$strUserOverview = 'Pamja e përgjithshme e përdoruesit';
$strUsers = 'Përdorues';
$strUsersDeleted = 'Përdoruesit e zgjedhur u hoqën me sukses.';
$strUsersHavingAccessToDb = 'Përdoruesit që kanë hyrje tek "%s"';
$strValidateSQL = 'Vleftëso SQL';
-$strValidatorError = 'Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e ekstensioneve të duhura php ashtu si përshkruhet tek %sdokumentimi%s.';
+$strValidatorError = 'Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s.';
$strValue = 'Vlerë';
$strVar = 'E ndryshueshme';
-$strViewDump = 'Vizualizo dump (skema) e tabelës';
-$strViewDumpDB = 'Vizualizo dump (skema) e databazë';
+$strViewDump = 'Shfaq dump (skema) e tabelës';
+$strViewDumpDB = 'Shfaq dump (skema) e databazës';
+$strViewDumpDatabases = 'Shfaq dump (skema) e databazave';
$strWebServerUploadDirectory = 'directory e upload të server-it web';
$strWebServerUploadDirectoryError = 'Directory që keni zgjedhur për upload nuk arrin të gjehet';
$strWelcome = 'Mirësevini tek %s';
+$strWestEuropean = 'Europa Perëndimore';
$strWildcard = 'wildcard';
+$strWindowNotFound = 'Dritarja e destinimit të browser nuk mund të rifreskohet. Ka mundësi të keni mbyllur dritaren nënë apo që browser-i juaj është duke bllokuar rifreskimet ndërmjet browser-ve për shkak të ndonjë mase sigurie';
$strWithChecked = 'N.q.s. të seleksionuar:';
$strWritingCommentNotPossible = 'I pamundur shkrimi i komentit';
-$strWritingRelationNotPossible = 'I pamundur shkrimi i Relacionit';
-$strWrongUser = 'Emri i përdoruesit apo password i gabuar. Ndalohet hyrja.';
+$strWritingRelationNotPossible = 'I pamundur shkrimi i relacionit';
+$strWrongUser = 'Emër përdoruesi apo password i gabuar. Ndalohet hyrja.';
$strXML = 'XML';
$strYes = ' Po ';
-$strZeroRemovesTheLimit = 'Shënim: Vendosja e këtyre opcioneve në 0 (zero) sinjifikon asnjë limit.';
+$strZeroRemovesTheLimit = 'Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit.';
$strZip = '"kompresuar me zip"';
// To translate
-$strCharset = 'Charset'; //to translate
-$strLaTeXOptions = 'LaTeX options'; //to translate
-$strRelations = 'Relations'; //to translate
-$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
-$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
-$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
-$strSaveOnServer = 'Save on server in %s directory'; //to translate
-$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
-$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
-$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
-$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
-$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
-$strInsertedRowId = 'Inserted row id:'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
-$strExcelOptions = 'Excel options'; //to translate
-$strReplaceNULLBy = 'Replace NULL by'; //to translate
-$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
-$strPaperSize = 'Paper size'; //to translate
-$strDatabaseNoTable = 'This database contains no table!';//to translate
-$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
-$strAddIntoComments = 'Add into comments';//to translate
-$strDatabaseExportOptions = 'Database export options';//to translate
-$strAddDropDatabase = 'Add DROP DATABASE';//to translate
-$strToggleScratchboard = 'toggle scratchboard'; //to translate
-$strTableOptions = 'Table options'; //to translate
-$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
-$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strCharsets = 'Charsets'; //to translate
-$strDescription = 'Description'; //to translate
-$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
-$strCollation = 'Collation'; //to translate
-$strMultilingual = 'multilingual'; //to translate
-$strGerman = 'German'; //to translate
-$strPhoneBook = 'phone book'; //to translate
-$strDictionary = 'dictionary'; //to translate
-$strSwedish = 'Swedish'; //to translate
-$strDanish = 'Danish'; //to translate
-$strCzech = 'Czech'; //to translate
-$strTurkish = 'Turkish'; //to translate
-$strEnglish = 'English'; //to translate
-$strHungarian = 'Hungarian'; //to translate
-$strCroatian = 'Croatian'; //to translate
-$strBulgarian = 'Bulgarian'; //to translate
-$strLithuanian = 'Lithuanian'; //to translate
-$strEstonian = 'Estonian'; //to translate
-$strCaseInsensitive = 'case-insensitive'; //to translate
-$strCaseSensitive = 'case-sensitive'; //to translate
-$strUkrainian = 'Ukrainian'; //to translate
-$strHebrew = 'Hebrew'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strRussian = 'Russian'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strUnicode = 'Unicode'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strKorean = 'Korean'; //to translate
-$strGreek = 'Greek'; //to translate
-$strJapanese = 'Japanese'; //to translate
-$strThai = 'Thai'; //to translate
-$strUseThisValue = 'Use this value'; //to translate
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/albanian-utf-8.inc.php3 b/lang/albanian-utf-8.inc.php3
index b9d92fdd9..d080054b8 100644
--- a/lang/albanian-utf-8.inc.php3
+++ b/lang/albanian-utf-8.inc.php3
@@ -3,11 +3,11 @@
/**
* Translated by: Laurent Dhima
- * Rishikuar nga: Arben Çokaj
- */
+*/
$charset = 'utf-8';
$allow_recoding = TRUE;
+$allow_recoding = TRUE;
$text_dir = 'ltr';
$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
$right_font_family = 'arial, helvetica, geneva, sans-serif';
@@ -27,13 +27,17 @@ $strAPrimaryKey = 'Një kyç primar u shtua tek %s';
$strAbortedClients = 'Dështoi';
$strAbsolutePathToDocSqlDir = 'Ju lutem, shkruani pozicionin absolut në webserver për tek directory e docSQL';
$strAccessDenied = 'Hyrja nuk u pranua';
-$strAction = 'Aksioni';
+$strAccessDeniedExplanation = 'phpMyAdmin u përpoq të lidhet me server-in MySQL, dhe server-i refuzoi lidhjen. Kontrollo emrin e host, username dhe password tek file config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka dhënë administratori i server-it MySQL.';
+$strAction = 'Veprimi';
+$strAddAutoIncrement = 'Shto vlerë AUTO_INCREMENT';
$strAddDeleteColumn = 'Shto/Fshi fushën';
$strAddDeleteRow = 'Shto/Fshi kriterin';
+$strAddDropDatabase = 'Shto DROP DATABASE';
+$strAddIntoComments = 'Shto tek komentet';
$strAddNewField = 'Shto një fushë të re';
$strAddPriv = 'Shto një privilegj të ri';
$strAddPrivMessage = 'Ke shtuar një privilegj të ri.';
-$strAddPrivilegesOnDb = 'Shto privilegje tek databazë në vazhdim';
+$strAddPrivilegesOnDb = 'Shto privilegje tek databaza në vazhdim';
$strAddPrivilegesOnTbl = 'Shto privilegje tek tabela në vazhdim';
$strAddSearchConditions = 'Shto kushte kërkimi (trupi i specifikimit "where"):';
$strAddToIndex = 'Shto tek treguesi i %s kolonës(ave)';
@@ -58,37 +62,47 @@ $strAnyDatabase = 'Çfarëdo databazë';
$strAnyHost = 'Çfarëdo host';
$strAnyTable = 'Çfarëdo tabelë';
$strAnyUser = 'Çfarëdo përdorues';
+$strArabic = 'Arabisht';
+$strArmenian = 'Armene';
$strAscending = 'Ngjitje';
$strAtBeginningOfTable = 'Në fillim të tabelës';
$strAtEndOfTable = 'Në fund të tabelës';
$strAttr = 'Pronësi';
-$strAutodetect = 'Autozbulim';
+$strAutodetect = 'Zbulim automatik';
$strAutomaticLayout = 'Faqosje automatike';
$strBack = 'Mbrapa';
+$strBaltic = 'Baltike';
$strBeginCut = 'FILLIMI I CUT';
$strBeginRaw = 'FILLIMI I RAW';
$strBinary = 'Binar';
-$strBinaryDoNotEdit = 'Të dhëna të tipit binar - mos modifiko';
-$strBookmarkDeleted = 'Bookmark u fshi.';
+$strBinaryDoNotEdit = 'Të dhëna të tipit binar - mos ndrysho';
+$strBookmarkAllUsers = 'Lejo që çdo përdorues të ketë hyrje në këtë libërshënues';
+$strBookmarkDeleted = 'Libërshënuesi u fshi.';
$strBookmarkLabel = 'Etiketë';
+$strBookmarkOptions = 'Opcionet e libërshënuesit';
$strBookmarkQuery = 'Query SQL shtuar të preferuarve';
$strBookmarkThis = 'Shtoja të preferuarve këtë query SQL';
-$strBookmarkView = 'Vizualizo vetëm';
+$strBookmarkView = 'Shfaq vetëm';
$strBrowse = 'Shfaq';
-$strBzError = 'phpMyAdmin nuk është në gjendje të kompresojë dump-in për arsye të ekstensionit Bz2 të gabuar në këtë version të php. Ju rekomandojmë patjetër setimin e $cfg[\'BZipDump\']
tek file juaj i konfigurimit të phpMyAdmin në FALSE
. Nëqoftëse dëshironi të përdorni patjetër specifikat e kompresimit Bz2, duhet të rifreskoni php në versionin e fundit. Hidhini një sy php bug report %s për informacione të hollësishme.';
+$strBrowseForeignValues = 'Shfleto opcionet e huaja';
+$strBulgarian = 'Bullgarisht';
+$strBzError = 'phpMyAdmin nuk është në gjendje të kompresojë dump-in për arsye të prapashtesës Bz2 të gabuar në këtë version të php. Ju rekomandojmë patjetër vendosjen e $cfg[\'BZipDump\']
tek file juaj i konfigurimit të phpMyAdmin në FALSE
. Nëqoftëse dëshironi të përdorni patjetër specifikat e kompresimit Bz2, duhet të rifreskoni php në versionin e fundit. Hidhini një sy php bug report %s për informacione të hollësishme.';
$strBzip = '"kompresuar me bzip2"';
$strCSVOptions = 'Opcione CSV';
$strCannotLogin = 'E pamundur kryerja e login tek server-i MySQL';
-$strCantLoad = 'I pamundur ngarkimi i ekstesionit %s, kontrollo konfigurimin e PHP';
-$strCantLoadMySQL = 'nuk arrij të ngarkoj ekstensionin MySQL, kontrollo konfigurimin e PHP.';
-$strCantLoadRecodeIconv = 'I pamundur ngarkimi i ekstensionit iconv apo recode të nevoitshëm për konvertimin e karaktereve, konfiguroni php për të lejuar përdorimin e këtyre ekstensioneve ose disaktivoni konvertimin e set të karaktereve në phpMyAdmin.';
+$strCantLoad = 'I pamundur ngarkimi i prapashtesës %s, kontrollo konfigurimin e PHP';
+$strCantLoadMySQL = 'nuk arrij të ngarkoj prapashtesën MySQL, kontrollo konfigurimin e PHP.';
+$strCantLoadRecodeIconv = 'I pamundur ngarkimi i prapashtesës iconv apo recode të nevoitshëm për konvertimin e karaktereve, konfiguroni php për të lejuar përdorimin e këtyre prapashtesave ose disaktivoni konvertimin e set të karaktereve në phpMyAdmin.';
$strCantRenameIdxToPrimary = 'I pamundur riemërtimi i treguesit në PRIMAR!';
$strCantUseRecodeIconv = 'I pamundur përdorimi i funksioneve iconv apo libiconv apo recode_string për shkak se ekstensioni duhet të ngarkohet. Kontrolloni konfigurimin e php.';
$strCardinality = '';
-$strCarriage = 'Kthimi në fillim: \\r';
-$strChange = 'Modifiko';
+$strCarriage = 'Kryerradha: \\r';
+$strCaseInsensitive = 'case-insensitive';
+$strCaseSensitive = 'case-sensitive';
+$strCentralEuropean = 'Europa qendrore';
+$strChange = 'Ndrysho';
$strChangeCopyMode = 'Krijo një përdorues të ri me të njëjta të drejta dhe ...';
$strChangeCopyModeCopy = '... mbaj të vjetrin.';
$strChangeCopyModeDeleteAndReload = ' ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat.';
@@ -97,14 +111,18 @@ $strChangeCopyModeRevoke = ' ... hiq të gjitha të drejtat nga i vjetri e pasta
$strChangeCopyUser = 'Ndrysho Informacionet e Login / Kopjo përdoruesin';
$strChangeDisplay = 'Zgjidh fushën që dëshiron të shohësh';
$strChangePassword = 'Ndrysho password';
-$strCharsetOfFile = 'Set karakteresh të file:';
-$strCheckAll = 'Seleksionoi të gjithë';
+$strCharset = 'Familje gërmash';
+$strCharsetOfFile = 'Familja gërmave të file:';
+$strCharsets = 'Familje gërmash';
+$strCharsetsAndCollations = 'Familje gërmash dhe Collations';
+$strCheckAll = 'Zgjidhi të gjithë';
$strCheckDbPriv = 'Kontrollo të drejtat e databazës';
$strCheckPrivs = 'Kontrollo të drejtat';
$strCheckPrivsLong = 'Kontrollo të drejtat për databazën "%s".';
$strCheckTable = 'Kontrollo tabelën';
$strChoosePage = 'Ju lutem zgjidhni faqen që dëshironi të modifikoni';
$strColComFeat = 'Vizualizimi i komenteve të kollonave';
+$strCollation = 'Collation';
$strColumn = 'Kollona';
$strColumnNames = 'Emrat e kollonave';
$strColumnPrivileges = 'Privilegjet relative të kollonave';
@@ -119,6 +137,7 @@ $strConnections = 'Lidhje';
$strCookiesRequired = 'Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara.';
$strCopyTable = 'Kopjo tabelën tek (databazë. tabela):';
$strCopyTableOK = 'Tabela %s u kopjua tek %s.';
+$strCopyTableSameNames = 'I pamundur kopjimi i tabelës tek vetvetja!';
$strCouldNotKill = 'phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë përfunduar më parë.';
$strCreate = 'Krijo';
$strCreateIndex = 'Krijo një tregues tek %s columns';
@@ -128,6 +147,9 @@ $strCreateNewTable = 'Krijo një tabelë të re tek databazë %s';
$strCreatePage = 'Krijo një faqe të re';
$strCreatePdfFeat = 'Krijimi i PDF-ve';
$strCriteria = 'Kriteri';
+$strCroatian = 'Kroate';
+$strCyrillic = 'Cyrillic';
+$strCzech = 'Çekisht';
$strDBComment = 'Komenti për Databazën: ';
$strDBGContext = 'Konteksti';
@@ -139,23 +161,26 @@ $strDBGMinTimeMs = 'Koha minimum, ms';
$strDBGModule = 'Modul';
$strDBGTimePerHitMs = 'Koha/Hit, ms';
$strDBGTotalTimeMs = 'Koha gjithsej, ms';
+$strDanish = 'Danisht';
$strData = 'Të dhëna';
$strDataDict = 'Data Dictionary';
$strDataOnly = 'Vetëm të dhëna';
$strDatabase = 'Databazë ';
+$strDatabaseExportOptions = 'Opcione të eksportimit të databazës';
$strDatabaseHasBeenDropped = 'Databaza %s u eleminua.';
+$strDatabaseNoTable = 'Kjo databazë nuk përmban tabela!';
$strDatabaseWildcard = 'Database (wildcards e lejuara):';
$strDatabases = 'databazë';
-$strDatabasesDropped = '%s databases u eleminuan korrektësisht.';
-$strDatabasesStats = 'Statistikat e databases';
-$strDatabasesStatsDisable = 'Deaktivo Statistikat';
+$strDatabasesDropped = '%s databaza u eleminuan korrektësisht.';
+$strDatabasesStats = 'Statistikat e databazave';
+$strDatabasesStatsDisable = 'Disaktivo Statistikat';
$strDatabasesStatsEnable = 'Aktivo Statistikat';
$strDatabasesStatsHeavyTraffic = 'Shënim: Aktivimi këtu i statistikave të Databazës mund të shkaktojë rritjen e trafikut midis server-it web dhe MySQL.';
$strDbPrivileges = 'Privilegje specifike të databazës';
$strDbSpecific = 'specifik i databazës';
-$strDefault = 'Paracaktuar';
-$strDefaultValueHelp = 'Për vlerat default, ju lutem shtoni një vlerë të vetme, pa backslash escaping apo thonjëza, duke përdorur këtë format: a';
-$strDelOld = 'Faqja aktuale përmban Riferime ndaj Tabelash që nuk ekzistojnë më. Dëshironi t\'i eleminoni këto Riferimente?';
+$strDefault = 'Prezgjedhur';
+$strDefaultValueHelp = 'Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash escaping apo thonjëza, duke përdorur këtë format: a';
+$strDelOld = 'Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi t\'i eleminoni këto riferimente?';
$strDelete = 'Fshi';
$strDeleteAndFlush = 'Fshi përdoruesit dhe pastaj rilexo privilegjet.';
$strDeleteAndFlushDescr = 'Kjo është rruga më e pastër, por ngarkimi i privilegjeve mund të zgjasë disa çaste më shumë.';
@@ -165,36 +190,43 @@ $strDeleted = 'rreshti u fshi';
$strDeletedRows = 'rreshtat e fshirë:';
$strDeleting = 'Në fshirje e sipër të %s';
$strDescending = 'Zbritës';
-$strDisabled = 'Disaktivuar';
-$strDisplay = 'Vizualizo';
-$strDisplayFeat = 'Vizualizo karakteristikat';
-$strDisplayOrder = 'Mënyra e vizualizimit:';
+$strDescription = 'Përshkrimi';
+$strDictionary = 'fjalor';
+$strDisabled = 'Jo aktiv';
+$strDisplay = 'Shfaq';
+$strDisplayFeat = 'Shfaq karakteristikat';
+$strDisplayOrder = 'Mënyra e shfaqjes:';
$strDisplayPDF = 'Shfaq skemën e PDF';
$strDoAQuery = 'Zbato "query nga shembull" (karakteri jolly: "%")';
$strDoYouReally = 'Konfermo: ';
$strDocu = 'Dokumentet';
$strDrop = 'Elemino';
$strDropDB = 'Elemino databazën %s';
-$strDropSelectedDatabases = 'Elemino Databazat e Zgjedhura';
+$strDropSelectedDatabases = 'Elemino Databazat e zgjedhura';
$strDropTable = 'Elemino tabelën';
$strDropUsersDb = 'Elemino databazat që kanë emër të njëjtë me përdoruesit.';
$strDumpComments = 'Përfshi komentet e kollonave si komente-SQL në linjë';
+$strDumpSaved = 'Dump u ruajt tek file %s.';
$strDumpXRows = 'Dump i %s rreshta duke filluar nga rreshti %s.';
$strDumpingData = 'Dump i të dhënave për tabelën';
$strDynamic = 'dinamik';
-$strEdit = 'Modifiko';
-$strEditPDFPages = 'Modifiko Faqe PDF';
-$strEditPrivileges = 'Modifiko Privilegjet';
+$strEdit = 'Ndrysho';
+$strEditPDFPages = 'Ndrysho faqen PDF';
+$strEditPrivileges = 'Ndrysho të drejtat';
$strEffective = 'Efektiv';
$strEmpty = 'Zbraz';
$strEmptyResultSet = 'MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta).';
-$strEnabled = 'Aktivuar';
+$strEnabled = 'Aktiv';
$strEnd = 'Fund';
$strEndCut = 'FUNDI I CUT';
$strEndRaw = 'FUNDI I RAW';
-$strEnglishPrivileges = 'Shënim: emrat e privilegjeve të MySQL janë në Anglisht';
+$strEnglish = 'Anglisht';
+$strEnglishPrivileges = 'Shënim: emrat e të drejtave të MySQL janë në Anglisht';
$strError = 'Gabim';
+$strEstonian = 'Estoneze';
+$strExcelOptions = 'Opcione të Excel';
+$strExecuteBookmarked = 'Zbaton query nga libërshënuesi';
$strExplain = 'Shpjego SQL';
$strExport = 'Eksporto';
$strExportToXML = 'Eksporto në formatin XML';
@@ -208,44 +240,49 @@ $strFields = 'Fusha';
$strFieldsEmpty = ' Numratori i fushave është bosh! ';
$strFieldsEnclosedBy = 'Fushë e përbërë nga';
$strFieldsEscapedBy = 'Fushë e kufizuar nga';
-$strFieldsTerminatedBy = 'Fushë e mbaruar nga';
+$strFieldsTerminatedBy = 'Fushë që mbaron me';
+$strFileAlreadyExists = 'File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh opcionin "Mbishkruaj".';
$strFileCouldNotBeRead = 'File nuk mund të lexohet';
$strFileNameTemplate = 'Emri i file template';
-$strFileNameTemplateHelp = 'Përdor __DB__ për emrin e databazës, __TABLE__ si emër për tabelën dhe %sany strftime%s opcione për specifikat e kohës, ekstensioni do të shtohet automatikisht. Çdo tekst tjetër do të konservohet.';
+$strFileNameTemplateHelp = 'Përdor __DB__ për emrin e databazës, __TABLE__ si emër për tabelën dhe %sany strftime%s opcione për specifikat e kohës, prapashtesa do të shtohet automatikisht. Çdo tekst tjetër do të konservohet.';
$strFileNameTemplateRemember = 'kujto template';
$strFixed = 'fiks';
$strFlushPrivilegesNote = 'Shënim: phpMyAdmin lexon privilegjet e përdoruesve direkt nga tabela e privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë nga privilegjet e përdorur nga serveri nëse janë kryer ndryshime manuale. Në këtë rast, duhet të %srifreskoni privilegjet%s para se të vazhdoni.';
$strFlushTable = 'Rifillo ("FLUSH") tabelën';
-$strFormEmpty = 'Mungon një vlerë në form!';
+$strFormEmpty = 'Mungon një vlerë në formular!';
$strFormat = 'Formati';
$strFullText = 'Teksti i plotë';
-$strFunction = 'Funksion';
+$strFunction = 'Funksioni';
$strGenBy = 'Gjeneruar nga';
$strGenTime = 'Gjeneruar më';
$strGeneralRelationFeat = 'Karakteristikat e përgjithshme të relacionit';
+$strGerman = 'Gjermanisht';
$strGlobal = 'globale';
$strGlobalPrivileges = 'Privilegje globale';
$strGlobalValue = 'Vlerë Globale';
$strGo = 'Zbato';
$strGrantOption = 'Grant';
$strGrants = 'Lejo';
+$strGreek = 'Greqisht';
$strGzip = '"kompresuar me gzip"';
-$strHasBeenAltered = 'u modifikua.';
+$strHasBeenAltered = 'u ndryshua.';
$strHasBeenCreated = 'u krijua.';
-$strHaveToShow = 'Zgjidh të paktën një kolonë për ta vizualizuar';
-$strHome = 'Home';
-$strHomepageOfficial = 'Home page zyrtare e phpMyAdmin';
-$strHomepageSourceforge = 'Home page e phpMyAdmin tek sourceforge.net';
+$strHaveToShow = 'Zgjidh të paktën një kolonë për të parë';
+$strHebrew = 'Hebraike';
+$strHome = 'Faqja web';
+$strHomepageOfficial = 'Faqja zyrtare e phpMyAdmin';
+$strHomepageSourceforge = 'Faqja e phpMyAdmin tek sourceforge.net';
$strHost = 'Host';
$strHostEmpty = 'Emri i host është bosh!';
+$strHungarian = 'Hungarisht';
$strId = 'ID';
$strIdxFulltext = 'Teksti komplet';
$strIfYouWish = 'Për të ngarkuar të dhënat vetëm për disa kollona të tabelës, specifiko listën e fushave (të ndara me presje).';
-$strIgnore = 'Injoro';
-$strIgnoringFile = 'File %s u injorua';
+$strIgnore = 'Shpërfill';
+$strIgnoringFile = 'File %s u shpërfill';
$strImportDocSQL = 'Importo files docSQL';
$strImportFiles = 'Importo files';
$strImportFinished = 'Importimi përfundoi';
@@ -253,7 +290,7 @@ $strInUse = 'në përdorim';
$strIndex = 'Treguesi';
$strIndexHasBeenDropped = 'Treguesi %s u eleminua';
$strIndexName = 'Emri i treguesit :';
-$strIndexType = 'Tipi i treguesit :';
+$strIndexType = 'Lloji i treguesit :';
$strIndexes = 'Tregues';
$strInnodbStat = 'Gjëndja InnoDB';
$strInsecureMySQL = 'File i konfigurimit në përdorim përmban zgjedhje (root pa asnjë password) që korrispondojnë me të drejtat e account MySQL të paracaktuar. Një server MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju duhet patjetër të korrigjoni këtë vrimë në siguri.';
@@ -261,31 +298,47 @@ $strInsert = 'Shto';
$strInsertAsNewRow = 'Shto një rresht të ri';
$strInsertNewRow = 'Shto një rresht të ri';
$strInsertTextfiles = 'Shto një file teksti në tabelë';
-$strInsertedRows = 'Rreshta të shtuar:';
+$strInsertedRowId = 'U shtua id e rreshtit:';
+$strInsertedRows = 'Rreshtat e shtuar:';
$strInstructions = 'Instruksione';
+$strInternalNotNecessary = '* Nuk ka nevojë për një relacion të brendshëm kur ky relacion ekziston në InnoDB.';
+$strInternalRelations = 'Relacione të brendshme';
$strInvalidName = '"%s" është një fjalë e rezervuar; nuk mund ta përdorësh si emër për databazë/tabelë/fushë.';
+$strJapanese = 'Japonisht';
$strJumpToDB = 'Kalo tek databaza "%s".';
$strJustDelete = 'Vetëm fshi përdoruesit nga tabelat e privilegjeve.';
-$strJustDeleteDescr = 'Përdoruesit e "fshirë" do të kenë akoma mundësi të futen në server si zakonisht derisa privilegjet të ngarkohen përsëri.';
+$strJustDeleteDescr = 'Përdoruesit e "fshirë" do të kenë akoma mundësi të futen në server si zakonisht derisa privilegjet të ringarkohen përsëri.';
$strKeepPass = 'Mos ndrysho password';
$strKeyname = 'Emri i kyçit';
$strKill = 'Hiq';
+$strKorean = 'Koreane';
$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'Opcione LaTeX';
$strLandscape = 'Horizontale';
+$strLatexContent = 'Përmbajtja e tabelës __TABLE__';
+$strLatexContinued = '(vazhdon)';
+$strLatexContinuedCaption = 'Nëntitulli i tabelës vazhduese';
+$strLatexIncludeCaption = 'Përfshi nëntitullin e tabelës';
+$strLatexLabel = 'Çelsi i etiketës';
+$strLatexStructure = 'Struktura e tabelës __TABLE__';
$strLength = 'Gjatësia';
$strLengthSet = 'Gjatësia/Set*';
$strLimitNumRows = 'record për faqe';
$strLineFeed = 'Fundi i rreshtit: \\n';
$strLines = 'Record';
$strLinesTerminatedBy = 'Rreshta që mbarojnë me';
-$strLinkNotFound = 'Link nuk u gjet';
+$strLinkNotFound = 'Lidhja nuk u gjet';
$strLinksTo = 'Lidhje me';
+$strLithuanian = 'Lituane';
+$strLoadExplanation = 'Metoda më e mirë është zgjedhur si default, por ju jepet mundësia t\'a ndryshoni nëqoftëse dështon.';
+$strLoadMethod = 'Metoda e NGARKIMIT';
$strLocalhost = 'Lokal';
$strLocationTextfile = 'Pozicioni i file';
$strLogPassword = 'Password:';
+$strLogServer = 'Server-i';
$strLogUsername = 'Emri i përdoruesit:';
$strLogin = 'Lidh';
$strLoginInformation = 'Informacione mbi Login';
@@ -297,44 +350,49 @@ $strMIME_available_transform = 'Transformacionet në dispozicion';
$strMIME_description = 'Përshkrimi';
$strMIME_file = 'Emri i File';
$strMIME_nodescription = 'Asnjë përshkrim në dispozicion për këtë transformim. Ju lutem pyet autorin, çfarë %s bën.';
-$strMIME_transformation = 'Transformacioni i Browser';
-$strMIME_transformation_note = 'Për listën e opcioneve të transformacioneve në dispozicion dhe transformacionet relativë të llojeve-MIME, kliko tek %stransformacione përshkrime%s';
-$strMIME_transformation_options = 'Opcione të Transformimeve';
+$strMIME_transformation = 'Transformimi i Browser';
+$strMIME_transformation_note = 'Për listën e opcioneve të transformimeve në dispozicion dhe transformimet relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s';
+$strMIME_transformation_options = 'Opcione të transformimeve';
$strMIME_transformation_options_note = 'Ju lutem shkruani vlerat për opcionet e transformimit duke përdorur këtë format: \'a\',\'b\',\'c\'... Nëse keni nevojë të shtoni një backslash ("\") apo një apostrofë ("\'") midis këtyre vlerave, duhet ti backslash-oni (për shembull \'\\\\xyz\' ose \'a\\\'b\').';
$strMIME_without = 'Llojet-MIME të print-uar në italics kanë një funksion transformacioni të veçantë';
$strMissingBracket = 'Mungojnë thonjëza';
$strModifications = 'Ndryshimet u shpëtuan';
-$strModify = 'Modifiko';
-$strModifyIndexTopic = 'Modifiko një tregues';
+$strModify = 'Ndrysho';
+$strModifyIndexTopic = 'Ndrysho një tregues';
$strMoreStatusVars = 'Më shumë të ndryshueshme të gjendjes';
$strMoveTable = 'Sposto tabelën në (databazë. tabela):';
-$strMoveTableOK = 'Tabela %s u spostua tek %s.';
+$strMoveTableOK = 'Tabela %s u lëviz tek %s.';
+$strMoveTableSameNames = 'E pamundur lëvizja e tabelës tek vetvetja!';
+$strMultilingual = 'shumëgjuhësh';
+$strMustSelectFile = 'Duhet të zgjidhni file që dëshironi të shtoni.';
$strMySQLCharset = 'Set karakteresh MySQL';
$strMySQLReloaded = 'MySQL u rifillua.';
$strMySQLSaid = 'Mesazh nga MySQL: ';
$strMySQLServerProcess = 'MySQL %pma_s1% në ekzekutim tek %pma_s2% si %pma_s3%';
-$strMySQLShowProcess = 'Vizualizo proceset në ekzekutim';
-$strMySQLShowStatus = 'Vizualizo informacionet e runtime të MySQL';
-$strMySQLShowVars = 'Vizualizo të ndryshueshmet e sistemit të MySQL';
+$strMySQLShowProcess = 'Shfaq proceset në ekzekutim';
+$strMySQLShowStatus = 'Shfaq informacionet e runtime të MySQL';
+$strMySQLShowVars = 'Shfaq të ndryshueshmet e sistemit të MySQL';
$strName = 'Emri';
$strNext = 'Në vazhdim';
$strNo = ' Jo ';
$strNoDatabases = 'Asnjë databazë';
$strNoDatabasesSelected = 'Asnjë databazë është zgjedhur.';
-$strNoDescription = 'asnjë Përshkrim';
-$strNoDropDatabases = 'Komandat "DROP DATABASE" janë disaktivuar.';
-$strNoExplain = 'Mos Shpjego SQL';
+$strNoDescription = 'asnjë përshkrim';
+$strNoDropDatabases = 'Komandat "DROP DATABASE" nuk janë aktive.';
+$strNoExplain = 'Mos shpjego SQL';
$strNoFrames = 'phpMyAdmin funksionon më mirë me browser që suportojnë frames';
$strNoIndex = 'Asnjë tregues i përcaktuar!';
$strNoIndexPartsDefined = 'Asnjë pjesë e treguesit është përcaktuar!';
$strNoModification = 'Asnjë ndryshim';
$strNoOptions = 'Ky format nuk ka opcione';
$strNoPassword = 'Asnjë password';
+$strNoPermission = 'Server-i web nuk ka të drejtat e duhura për të ruajtur file %s.';
$strNoPhp = 'pa kod PHP';
$strNoPrivileges = 'Asnjë privilegj';
$strNoQuery = 'Asnjë query SQL!';
$strNoRights = 'Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!';
+$strNoSpace = 'Hapësirë e pamjaftueshme për të ruajtur file %s.';
$strNoTablesFound = 'Nuk gjenden tabela në databazë.';
$strNoUsersFound = 'Nuk u gjet asnjë përdorues.';
$strNoUsersSelected = 'Nuk është seleksionuar asnjë përdorues.';
@@ -358,10 +416,12 @@ $strOptionally = 'ME DËSHIRË';
$strOptions = 'Mundësi';
$strOr = 'Ose';
$strOverhead = 'Mbi limit';
+$strOverwriteExisting = 'Mbishkruaj file(s) ekzistues';
-$strPHP40203 = 'Është në përdorim PHP 4.2.3, që përmban një bug serioz me stringat multi-byte strings (mbstring). Shiko raportin 19404 të bug PHP. Ky version i PHP nuk rekomandohet për tu përdorur me phpMyAdmin.';
+$strPHP40203 = 'Është në përdorim PHP 4.2.3, që përmban një difekt serioz me stringat multi-byte strings (mbstring). Shiko raportin 19404 të bug PHP. Ky version i PHP nuk rekomandohet për tu përdorur me phpMyAdmin.';
$strPHPVersion = 'Versioni i PHP';
$strPageNumber = 'Numri i faqes:';
+$strPaperSize = 'Përmasat e letrës';
$strPartialText = 'Tekst i pjesëshëm';
$strPassword = 'Password';
$strPasswordChanged = 'Password për përdoruesin %s u ndryshua me sukses.';
@@ -374,6 +434,7 @@ $strPdfNoTables = 'Asnjë tabelë';
$strPerHour = 'në orë';
$strPerMinute = 'në minutë';
$strPerSecond = 'në sekondë';
+$strPhoneBook = 'numratori';
$strPhp = 'Krijo kodin PHP';
$strPmaDocumentation = 'Dokumente të phpMyAdmin';
$strPmaUriError = 'Direktiva $cfg[\'PmaAbsoluteUri\'] DUHET të përcaktohet tek file i konfigurimit!';
@@ -386,7 +447,8 @@ $strPrimaryKeyHasBeenDropped = 'Kyçi primar u eleminua';
$strPrimaryKeyName = 'Emri i kyçit primar duhet të jetë... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" duhet të jetë emri i, dhe vetëm i , një kyçi primar!)';
$strPrint = 'Printo';
-$strPrintView = 'Vizualizo për printim';
+$strPrintView = 'Shfaq për printim';
+$strPrintViewFull = 'Shfaq për printim (me full text)';
$strPrivDescAllPrivileges = 'Përfshin të gjitha të drejtat me përjashtim të GRANT.';
$strPrivDescAlter = 'Lejon ndryshimin e strukturës së tabelave ekzistuese.';
$strPrivDescCreateDb = 'Lejon krijimin e tabelave të reja dhe databazave të reja.';
@@ -433,14 +495,16 @@ $strQuerySQLHistory = 'Kronollogjia e SQL';
$strQueryStatistics = 'Statistikat e Query : Që nga nisja e tij, server-it i janë dërguar %s queries.';
$strQueryTime = 'Query ka zgjatur %01.4f sec';
$strQueryType = 'Lloji i query';
+$strQueryWindowLock = 'Mos e mbishkruaj këtë query nga jashtë dritares';
$strReType = 'Rifut';
$strReceived = 'Marrë';
$strRecords = 'Record';
$strReferentialIntegrity = 'Kontrollo integritetin e informacioneve:';
$strRelationNotWorking = 'Karakteristikat shtesë janë disaktivuar për sa i takon funksionimit me tabelat e link-uara. Për të zbuluar përse, klikoni %skëtu%s.';
-$strRelationView = 'Shiko relacionin';
+$strRelationView = 'Shiko relacionet';
$strRelationalSchema = 'Skema relazionale';
+$strRelations = 'Relacione';
$strReloadFailed = 'Rinisja e MySQL dështoi.';
$strReloadMySQL = 'Rinis MySQL';
$strReloadingThePrivileges = 'Duke rilexuar privilegjet';
@@ -450,6 +514,7 @@ $strRenameTable = 'Riemërto tabelën në';
$strRenameTableOK = 'Tabela %s u riemërtua %s';
$strRepairTable = 'Riparo tabelën';
$strReplace = 'Zëvëndëso';
+$strReplaceNULLBy = 'Zevëndëso NULL me';
$strReplaceTable = 'Zëvëndëso të dhënat e tabelës me file';
$strReset = 'Rinis';
$strResourceLimits = 'Limitet e rezervave';
@@ -472,6 +537,7 @@ $strRowsStatistic = 'Statistikat e rreshtave';
$strRunQuery = 'Dërgo Query';
$strRunSQLQuery = 'Zbato query SQL tek databazë %s';
$strRunning = 'në ekzekutim tek %s';
+$strRussian = 'Rusisht';
$strSQL = 'SQL';
$strSQLOptions = 'Opcione SQL';
@@ -484,6 +550,7 @@ $strSQPBugUnclosedQuote = 'Thonjëza të pambyllura';
$strSQPBugUnknownPunctuation = 'Stringë Punctuation e panjohur';
$strSave = 'Shpëto';
$strScaleFactorSmall = 'Faktori i shkallës është shumë i vogël për të plotësuar skemën në faqe';
+$strSaveOnServer = 'Ruaje në server tek directory %s';
$strSearch = 'Kërko';
$strSearchFormTitle = 'Kërko në databazë';
$strSearchInTables = 'Tek tabela(at):';
@@ -494,13 +561,14 @@ $strSearchOption3 = 'fraza precize';
$strSearchOption4 = 'si ekspresion i rregullt';
$strSearchResultsFor = 'Kërko rezultatet për "%s " %s:';
$strSearchType = 'Gjej:';
-$strSelect = 'Seleksiono';
-$strSelectADb = 'Të lutem, seleksiono një databazë';
-$strSelectAll = 'Seleksiono Gjithçka';
-$strSelectFields = 'Seleksiono fushat (të paktën një):';
+$strSecretRequired = 'Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret).';
+$strSelect = 'Zgjidh';
+$strSelectADb = 'Të lutem, zgjidh një databazë';
+$strSelectAll = 'Zgjidh gjithçka';
+$strSelectFields = 'Zgjidh fushat (të paktën një):';
$strSelectNumRows = 'tek query';
-$strSelectTables = 'Seleksiono Tabelat';
-$strSend = 'Shpëtoje me emër...';
+$strSelectTables = 'Zgjidh Tabelat';
+$strSend = 'Ruaje me emër...';
$strSent = 'Dërguar';
$strServer = 'Server %s';
$strServerChoice = 'Zgjedhja e server';
@@ -525,9 +593,11 @@ $strShowTableDimension = 'Trego dimensionin e tabelave';
$strShowTables = 'Shfaq tabelat';
$strShowThisQuery = 'Tregoje përsëri këtë query';
$strShowingRecords = 'Vizualizimi i record ';
+$strSimplifiedChinese = 'Kineze e thjeshtëzuar';
$strSingly = '(një nga një)';
$strSize = 'Dimensioni';
$strSort = 'rreshtimi';
+$strSortByKey = 'Rendit sipas çelsit';
$strSpaceUsage = 'Hapësira e përdorur';
$strSplitWordsWithSpace = 'Fjalët janë të ndara nga një hapsirë (" ").';
$strStatCheckTime = 'Kontrolli i fundit';
@@ -545,6 +615,7 @@ $strStructure = 'Struktura';
$strSubmit = 'Dërgoje';
$strSuccess = 'Query u zbatua me sukses';
$strSum = 'Gjithsej';
+$strSwedish = 'Suedisht';
$strSwitchToTable = 'Kalo tek tabela e kopjuar';
$strTable = 'Tabela';
@@ -555,161 +626,95 @@ $strTableHasBeenEmptied = 'Tabela %s u zbraz';
$strTableHasBeenFlushed = 'Tabela %s u rifreskua';
$strTableMaintenance = 'Administrimi i tabelës';
$strTableOfContents = 'Tabela e përmbajtjes';
+$strTableOptions = 'Opcione për tabelën';
$strTableStructure = 'Struktura e tabelës';
-$strTableType = 'Tipi i tabelës';
+$strTableType = 'Lloji i tabelës';
$strTables = '%s tabela(at)';
$strTblPrivileges = 'Të drejta relative me tabelat';
-$strTextAreaLength = ' Për shkak të gjatësisë saj, kjo fushë nuk mund të modifikohet ';
+$strTextAreaLength = ' Për shkak të gjatësisë saj, kjo fushë nuk mund të ndryshohet ';
+$strThai = 'Thai';
$strTheContent = 'Përmbajtja e file u shtua.';
$strTheContents = 'Përmbajtja e file zëvëndëson rreshtat e tabelës me të njëjtin kyç primar apo kyç të vetëm.';
$strTheTerminator = 'Karakteri përfundues i fushave.';
$strThisHost = 'Këtë Host';
$strThisNotDirectory = 'Kjo nuk është një directory';
$strThreadSuccessfullyKilled = 'Thread %s u përfundua me sukses.';
-$strTime = 'Kohë';
+$strTime = 'Koha';
+$strToggleScratchboard = '(dis)aktivo scratchboard';
$strTotal = 'Gjithsej';
$strTotalUC = 'Gjithsej';
+$strTraditionalChinese = 'Kineze tradicionale';
$strTraffic = 'Trafiku';
-$strTransformation_image_jpeg__inline = 'Vizualizon një thumbnail të klikueshëm; mundësitë: gjërësia, lartësia në pixels (ruan proporcionin origjinal)';
-$strTransformation_image_jpeg__link = 'Shfaq një link për tek kjo figurë (download blob direkt, p.sh.).';
+$strTransformation_image_jpeg__inline = 'Shfaq një thumbnail të klikueshëm; mundësitë: gjërësia, lartësia në pixels (ruan proporcionin origjinal)';
+$strTransformation_image_jpeg__link = 'Shfaq një lidhje për tek kjo figurë (download blob direkt, p.sh.).';
$strTransformation_image_png__inline = 'Shiko figurën/jpeg: në line';
$strTransformation_text_plain__dateformat = 'Merr një fushë TIME, TIMESTAMP apo DATETIME dhe e formaton duke përdorur formatin e datës lokale. Mundësia e parë është offset (në orë) që do ti shtohet timestamp (Default: 0). Mundësia e dytë është një format date në përputhje me parametrat në dispozicion për funksionin strftime() të PHP.';
$strTransformation_text_plain__external = 'VETËM PËR LINUX: Lëshon një program të jashtëm dhe plotëson të dhënat e fushave me anë të standard input. Jep si rezultat standard output e programit. Vendosja default është Tidy, për të printuar si duhet kodin HTML. Për arsye sigurie, do t\'ju duhet të ndryshoni file libraries/transformations/text_plain__external.inc.php dhe të shkruani instrumentet që lejoni të përdoren. Mundësia e parë pra është numri i programit që dëshironi të përdorni dhe e dyta janë parametrat për programin. Parametri i tretë, n.q.s. i vendosur në 1 do të konvertojë output duke përdorur htmlspecialchars() (Prezgjedhur: 1). Një parametër i katërt, po të jetë vendosur në 1 do t\'i shtojë një NOWRAP përmbajtjes së qelisë kështu që output komplet do të shfaqet pa u riformatuar (Default: 1)';
$strTransformation_text_plain__formatted = 'Konservon formatimin origjinal të fushës. Nuk aplikohet asnjë Escaping.';
$strTransformation_text_plain__imagelink = 'Shfaq një figurë dhe një link, fusha përmban emrin e file; opcioni i parë është një prefiks si "http://domain.com/", opcioni i dytë është gjërësia në pixels, i treti është lartësia.';
$strTransformation_text_plain__link = 'Shfaq një link, fusha përmban emrin e file; opcioni i parë është një prefiks si "http://domain.com/", opcioni i dytë është një titull për lidhjen.';
-$strTransformation_text_plain__substr = 'Shfaq vetëm një pjesë të string-ës. Opcioni i parë është offset-i që shërben për të përcaktuar ku fillon output i tekstit tuaj (Default 0). Opcioni i dytë është një offset që tregon se sa tekst kthehet. Po të jetë bosh, kthen të gjithë tekstin e mbetur. Opcioni i trtë përcakton çfarë karakteresh do të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) .';
+$strTransformation_text_plain__substr = 'Shfaq vetëm një pjesë të string-ës. Opcioni i parë është offset-i që shërben për të përcaktuar ku fillon output i tekstit tuaj (Default 0). Opcioni i dytë është një offset që tregon se sa tekst kthehet. Po të jetë bosh, kthen të gjithë tekstin e mbetur. Opcioni i tretë përcakton çfarë karakteresh do të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) .';
$strTransformation_text_plain__unformatted = 'Shfaq kodin HTML si entitet HTML. Formatimi HTML nuk shfaqet.';
$strTruncateQueries = 'Shkurton (ndërpret) Queries e Shfaqura';
+$strTurkish = 'Turqisht';
$strType = 'Lloji';
+$strUkrainian = 'Ukrainase';
$strUncheckAll = 'Deseleksionoi të gjithë';
+$strUnicode = 'Unicode';
$strUnique = 'I vetëm';
+$strUnknown = 'e panjohur';
$strUnselectAll = 'Deseleksiono gjithçka';
$strUpdComTab = 'Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments';
$strUpdatePrivMessage = 'Ke rifreskuar lejet për %s.';
$strUpdateProfile = 'Rifresko profilin:';
$strUpdateProfileMessage = 'Profili u rifreskua.';
$strUpdateQuery = 'Rifresko Query';
+$strUpgradeMySQL = 'Duhet të instaloni MySQL %s ose superior.';
$strUsage = 'Përdorimi';
$strUseBackquotes = 'Përdor backquotes me emrat e tabelave dhe fushave';
$strUseHostTable = 'Përdor Tabelën e Host-it';
$strUseTables = 'Përdor tabelat';
$strUseTextField = 'Përdor fushë teksti';
+$strUseThisValue = 'Përdor këtë vlerë';
$strUser = 'Përdorues';
$strUserAlreadyExists = 'Përdoruesi %s ekziston!';
$strUserEmpty = 'Emri i përdoruesit është bosh!';
$strUserName = 'Emri i përdoruesit';
-$strUserNotFound = 'Përdoruesi i seleksionuar nuk u gjet tek tabela e privilegjeve.';
+$strUserNotFound = 'Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave.';
$strUserOverview = 'Pamja e përgjithshme e përdoruesit';
$strUsers = 'Përdorues';
$strUsersDeleted = 'Përdoruesit e zgjedhur u hoqën me sukses.';
$strUsersHavingAccessToDb = 'Përdoruesit që kanë hyrje tek "%s"';
$strValidateSQL = 'Vleftëso SQL';
-$strValidatorError = 'Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e ekstensioneve të duhura php ashtu si përshkruhet tek %sdokumentimi%s.';
+$strValidatorError = 'Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s.';
$strValue = 'Vlerë';
$strVar = 'E ndryshueshme';
-$strViewDump = 'Vizualizo dump (skema) e tabelës';
-$strViewDumpDB = 'Vizualizo dump (skema) e databazë';
+$strViewDump = 'Shfaq dump (skema) e tabelës';
+$strViewDumpDB = 'Shfaq dump (skema) e databazës';
+$strViewDumpDatabases = 'Shfaq dump (skema) e databazave';
$strWebServerUploadDirectory = 'directory e upload të server-it web';
$strWebServerUploadDirectoryError = 'Directory që keni zgjedhur për upload nuk arrin të gjehet';
$strWelcome = 'Mirësevini tek %s';
+$strWestEuropean = 'Europa Perëndimore';
$strWildcard = 'wildcard';
+$strWindowNotFound = 'Dritarja e destinimit të browser nuk mund të rifreskohet. Ka mundësi të keni mbyllur dritaren nënë apo që browser-i juaj është duke bllokuar rifreskimet ndërmjet browser-ve për shkak të ndonjë mase sigurie';
$strWithChecked = 'N.q.s. të seleksionuar:';
$strWritingCommentNotPossible = 'I pamundur shkrimi i komentit';
-$strWritingRelationNotPossible = 'I pamundur shkrimi i Relacionit';
-$strWrongUser = 'Emri i përdoruesit apo password i gabuar. Ndalohet hyrja.';
+$strWritingRelationNotPossible = 'I pamundur shkrimi i relacionit';
+$strWrongUser = 'Emër përdoruesi apo password i gabuar. Ndalohet hyrja.';
$strXML = 'XML';
$strYes = ' Po ';
-$strZeroRemovesTheLimit = 'Shënim: Vendosja e këtyre opcioneve në 0 (zero) sinjifikon asnjë limit.';
+$strZeroRemovesTheLimit = 'Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit.';
$strZip = '"kompresuar me zip"';
// To translate
-$strCharset = 'Charset'; //to translate
-$strLaTeXOptions = 'LaTeX options'; //to translate
-$strRelations = 'Relations'; //to translate
-$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
-$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
-$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
-$strSaveOnServer = 'Save on server in %s directory'; //to translate
-$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
-$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
-$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
-$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
-$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
-$strInsertedRowId = 'Inserted row id:'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
-$strExcelOptions = 'Excel options'; //to translate
-$strReplaceNULLBy = 'Replace NULL by'; //to translate
-$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
-$strPaperSize = 'Paper size'; //to translate
-$strDatabaseNoTable = 'This database contains no table!';//to translate
-$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
-$strAddIntoComments = 'Add into comments';//to translate
-$strDatabaseExportOptions = 'Database export options';//to translate
-$strAddDropDatabase = 'Add DROP DATABASE';//to translate
-$strToggleScratchboard = 'toggle scratchboard'; //to translate
-$strTableOptions = 'Table options'; //to translate
-$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
-$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strCharsets = 'Charsets'; //to translate
-$strDescription = 'Description'; //to translate
-$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
-$strCollation = 'Collation'; //to translate
-$strMultilingual = 'multilingual'; //to translate
-$strGerman = 'German'; //to translate
-$strPhoneBook = 'phone book'; //to translate
-$strDictionary = 'dictionary'; //to translate
-$strSwedish = 'Swedish'; //to translate
-$strDanish = 'Danish'; //to translate
-$strCzech = 'Czech'; //to translate
-$strTurkish = 'Turkish'; //to translate
-$strEnglish = 'English'; //to translate
-$strHungarian = 'Hungarian'; //to translate
-$strCroatian = 'Croatian'; //to translate
-$strBulgarian = 'Bulgarian'; //to translate
-$strLithuanian = 'Lithuanian'; //to translate
-$strEstonian = 'Estonian'; //to translate
-$strCaseInsensitive = 'case-insensitive'; //to translate
-$strCaseSensitive = 'case-sensitive'; //to translate
-$strUkrainian = 'Ukrainian'; //to translate
-$strHebrew = 'Hebrew'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strRussian = 'Russian'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strUnicode = 'Unicode'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strKorean = 'Korean'; //to translate
-$strGreek = 'Greek'; //to translate
-$strJapanese = 'Japanese'; //to translate
-$strThai = 'Thai'; //to translate
-$strUseThisValue = 'Use this value'; //to translate
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/arabic-utf-8.inc.php3 b/lang/arabic-utf-8.inc.php3
index 31a2c6904..bb091c376 100644
--- a/lang/arabic-utf-8.inc.php3
+++ b/lang/arabic-utf-8.inc.php3
@@ -735,4 +735,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/arabic-windows-1256.inc.php3 b/lang/arabic-windows-1256.inc.php3
index 848e7a119..f0d5ae0c9 100644
--- a/lang/arabic-windows-1256.inc.php3
+++ b/lang/arabic-windows-1256.inc.php3
@@ -734,4 +734,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/azerbaijani-iso-8859-9.inc.php3 b/lang/azerbaijani-iso-8859-9.inc.php3
index 28d310b27..8fb889571 100644
--- a/lang/azerbaijani-iso-8859-9.inc.php3
+++ b/lang/azerbaijani-iso-8859-9.inc.php3
@@ -708,4 +708,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/azerbaijani-utf-8.inc.php3 b/lang/azerbaijani-utf-8.inc.php3
index 166df8c9f..36682b8dd 100644
--- a/lang/azerbaijani-utf-8.inc.php3
+++ b/lang/azerbaijani-utf-8.inc.php3
@@ -709,4 +709,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/bosnian-utf-8.inc.php3 b/lang/bosnian-utf-8.inc.php3
new file mode 100644
index 000000000..7cedf6ac5
--- /dev/null
+++ b/lang/bosnian-utf-8.inc.php3
@@ -0,0 +1,703 @@
+
+ * http://www.kobiljak.com
+ */
+
+$charset = 'utf-8';
+$allow_recoding = TRUE;
+$text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left)
+$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
+$right_font_family = 'arial, helvetica, geneva, sans-serif';
+$number_thousands_separator = ',';
+$number_decimal_separator = '.';
+// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
+$byteUnits = array('bajta', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB');
+
+$day_of_week = array('Ned', 'Pon', 'Uto', 'Sri', 'ÄŒet', 'Pet', 'Sub');
+$month = array('jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec');
+// See http://www.php.net/manual/en/function.strftime.php to define the
+// variable below
+$datefmt = '%d. %B %Y. u %H:%M';
+$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
+
+$strAPrimaryKey = 'Osnovni kljuÄ je upravo dodan %s';
+$strAbortedClients = 'Prekinuto';
+$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direkcije docSQL na veb serveru';
+$strAccessDenied = 'Ulaz nije dozvoljen';
+$strAccessDeniedExplanation = 'phpMyAdmin je pokuÅ¡ao da se poveže na MySQL server, ali je server odbio povezivanje. Provjerite naziv hosta, korisniÄko ime i lozinku u config.inc.php i uvjerite se da odgovaraju podacima koje ste dobili od administratora MySQL servera.';
+$strAction = 'Akcija';
+$strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrijednost';
+$strAddDeleteColumn = 'Dodaj/obriši kolonu';
+$strAddDeleteRow = 'Dodaj/obriši polje za kriterij';
+$strAddDropDatabase = 'Dodaj DROP DATABASE';
+$strAddIntoComments = 'Dodaj u komentare';
+$strAddNewField = 'Dodaj novo polje';
+$strAddPriv = 'Dodaj novu privilegiju';
+$strAddPrivMessage = 'Dodali ste novu privilegiju.';
+$strAddPrivilegesOnDb = 'Dodaj privilegije na slijedećoj bazi';
+$strAddPrivilegesOnTbl = 'Dodaj privilegije na slijedećoj tabeli';
+$strAddSearchConditions = 'Dodaj uslove pretraživanja (dio "WHERE" upita):';
+$strAddToIndex = 'Dodaj u kljuÄ %s kolona(e)';
+$strAddUser = 'Dodaj novog korisnika';
+$strAddUserMessage = 'Dodali ste novog korisnika.';
+$strAddedColumnComment = 'Dodan je komentar koloni';
+$strAddedColumnRelation = 'Dodana je relacija koloni';
+$strAdministration = 'Administracija';
+$strAffectedRows = 'Obuhvaćeno redova:';
+$strAfter = 'Poslije %s';
+$strAfterInsertBack = 'Nazad na prethodnu stranu';
+$strAfterInsertNewInsert = 'Dodaj još jedan novi red';
+$strAll = 'Sve';
+$strAllTableSameWidth = 'prikaz svih tabela iste širine?';
+$strAlterOrderBy = 'Promijeni redoslijed u tabeli';
+$strAnIndex = 'KljuÄ je upravo dodan %s';
+$strAnalyzeTable = 'Analiziraj tabelu';
+$strAnd = 'i';
+$strAny = 'Bilo koji';
+$strAnyColumn = 'Bilo koja kolona';
+$strAnyDatabase = 'Bilo koja baza podataka';
+$strAnyHost = 'Bilo koji host';
+$strAnyTable = 'Bilo koja tabela';
+$strAnyUser = 'Bilo koji korisnik';
+$strArabic = 'Arapski';
+$strArmenian = 'Jermenski';
+$strAscending = 'Rastući';
+$strAtBeginningOfTable = 'Na poÄetku tabele';
+$strAtEndOfTable = 'Na kraju tabele';
+$strAttr = 'Atributi';
+$strAutodetect = 'automatski';
+$strAutomaticLayout = 'Automatski raspored';
+
+$strBack = 'Nazad';
+$strBaltic = 'BaltiÄki';
+$strBeginCut = 'POÄŒETAK REZ';
+$strBeginRaw = 'POÄŒETAK SIROVO';
+$strBinary = 'Binarni';
+$strBinaryDoNotEdit = 'Binarni - ne mijenjaj';
+$strBookmarkDeleted = 'ObilježivaÄ je upravo obrisan.';
+$strBookmarkLabel = 'Naziv';
+$strBookmarkQuery = 'Obilježen SQL-upit';
+$strBookmarkThis = 'Obilježi SQL-upit';
+$strBookmarkView = 'Vidi samo';
+$strBrowse = 'Pregled';
+$strBrowseForeignValues = 'Pregledaj strane vrijednosti';
+$strBulgarian = 'Bugarski';
+$strBzError = 'phpMyAdmin nije mogao da kompresuje sadržaj baze zbog neispravne BZ2 ekstenzije u ovoj verziji PHP-a. PreporuÄuje se da podesite $cfg[\'BZipDump\']
direktivu u vašem phpMyAdmin konfiguracionom fajlu na FALSE
. Ako želite da koristite mogućnosti BZ2 kompresije, trebalo bi da pređete na noviju verziju PHP-a. Vidite PHP izveštaj o greškama %s za detalje.';
+$strBzip = '"bzip-ovano"';
+
+$strCSVOptions = 'CSV opcije';
+$strCannotLogin = 'Ne mogu da se prijavim na MySQL server';
+$strCantLoad = 'ne mogu da uÄitam ekstenziju %s, molim provjerite PHP konfiguraciju';
+$strCantLoadMySQL = 'ne mogu da uÄitam MySQL ekstenziju, molim pogledajte PHP konfiguraciju.';
+$strCantLoadRecodeIconv = 'Ne mogu da uÄitam iconv ili recode ekstenzije potrebne za konverziju skupova znakova, podesite PHP da dozvoli korišćenje ovih ekstenzija ili onemogućite konverziju skupova znakova u phpMyAdmin-u.';
+$strCantRenameIdxToPrimary = 'Ne mogu da promenim kljuÄ u PRIMARY (primarni) !';
+$strCantUseRecodeIconv = 'Ne mogu da koristim iconv ili libiconv ili recode_string funkcije iako ekstenzija prijavljuje da je uÄitana. Proverite vaÅ¡u PHP konfiguraciju.';
+$strCardinality = 'Kardinalnost';
+$strCarriage = 'Novi red (carriage return): \\r';
+$strCaseInsensitive = 'Ne razlikuje mala i velika slova';
+$strCaseSensitive = 'Razlikuje mala i velika slova';
+$strCentralEuropean = 'Centralnoevropski';
+$strChange = 'Promijeni';
+$strChangeCopyMode = 'Napravi novog korisnika sa istim privilegijama i ...';
+$strChangeCopyModeCopy = '... saÄuvaj stare.';
+$strChangeCopyModeDeleteAndReload = ' ... obriÅ¡i starog iz tabele korisnika i zatim ponovo uÄitaj privilegije.';
+$strChangeCopyModeJustDelete = ' ... obriši stare iz tabela korisnika.';
+$strChangeCopyModeRevoke = ' ... obustavi sve privilegije starog korisnika i zatim ga obriši.';
+$strChangeCopyUser = 'Promeni informacije o prijavi / Kopiraj korisnika';
+$strChangeDisplay = 'Izaberi polja za prikaz';
+$strChangePassword = 'Promeni lozinku';
+$strCharset = 'Karakter set';
+$strCharsetOfFile = 'Karakter set datoteke:';
+$strCharsets = 'Kodne strane';
+$strCharsetsAndCollations = 'Karakter setovi i sortiranje';
+$strCheckAll = 'OznaÄi sve';
+$strCheckDbPriv = 'Provjeri privilegije baze podataka';
+$strCheckPrivs = 'Provjeri privilegije';
+$strCheckPrivsLong = 'Provjeri privilegije za bazu "%s".';
+$strCheckTable = 'Provjeri tabelu';
+$strChoosePage = 'Izaberite stranu koju menjate';
+$strColComFeat = 'Prikazujem komentare kolone';
+$strCollation = 'Sortiranje';
+$strColumn = 'Kolona';
+$strColumnNames = 'Imena kolona';
+$strColumnPrivileges = 'Privilegije vezane za kolone';
+$strCommand = 'Naredba';
+$strComments = 'Komentari';
+$strCompleteInserts = 'Kompletan INSERT (sa imenima polja)';
+$strCompression = 'Kompresija';
+$strConfigFileError = 'phpMyAdmin nije mogao da proÄita vaÅ¡ konfiguracioni fajl! Ovo se može destiti ako PHP naÄ‘e greÅ¡ku u procesiranju ili ne može da pronaÄ‘e fajl. Pozovite konfiguracioni fajl direktno koristeći donji link u proÄitajte poruke o greÅ¡ci koje dobijate. U većini sluÄajeve negde nedostaje navodnik ili taÄka-zarez. Ako dobijete praznu stranu, sve je u redu.';
+$strConfigureTableCoord = 'Podesite koordinate za tabelu %s';
+$strConfirm = 'Da li stvarno želite da to uradite?';
+$strConnections = 'Konekcije';
+$strCookiesRequired = 'KolaÄići (Cookies) moraju u ovom sluÄaju biti aktivirani.';
+$strCopyTable = 'Kopiraj tabelu u (baza. tabela):';
+$strCopyTableOK = 'Tabela %s je kopirana u %s.';
+$strCopyTableSameNames = 'Ne mogu da kopiram tabelu u samu sebe!';
+$strCouldNotKill = 'phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren.';
+$strCreate = 'Napravi';
+$strCreateIndex = 'Napravi kljuÄ na %s kolona';
+$strCreateIndexTopic = 'Napravi novi kljuÄ';
+$strCreateNewDatabase = 'Napravi novu bazu podataka';
+$strCreateNewTable = 'Napravi novu tabelu u bazi %s';
+$strCreatePage = 'Napravi novu stranu';
+$strCreatePdfFeat = 'Pravljenje PDF-ova';
+$strCriteria = 'Kriterijum';
+$strCroatian = 'Hrvatski';
+$strCyrillic = 'ĆiriliÄni';
+$strCzech = 'Češki';
+
+$strDBComment = 'Komentar baze:';
+$strDBGContext = 'Kontekst';
+$strDBGContextID = 'Kontekst ID';
+$strDBGHits = 'Pogodaka';
+$strDBGLine = 'Linija';
+$strDBGMaxTimeMs = 'Max vrijeme, ms';
+$strDBGMinTimeMs = 'Min vrijeme, ms';
+$strDBGModule = 'Modul';
+$strDBGTimePerHitMs = 'Vrijeme/pogodak, ms';
+$strDBGTotalTimeMs = 'Ukupno vrijeme, ms';
+$strDanish = 'Danski';
+$strData = 'Podaci';
+$strDataDict = 'ReÄnik podataka';
+$strDataOnly = 'Samo podaci';
+$strDatabase = 'Baza podataka';
+$strDatabaseExportOptions = 'Opcije za izvoz baze';
+$strDatabaseHasBeenDropped = 'Baza %s je odbaÄena.';
+$strDatabaseNoTable = 'Baza ne sadrži tabele!';
+$strDatabaseWildcard = 'Baza (džoker znaci dozvoljeni):';
+$strDatabases = 'Baze';
+$strDatabasesDropped = '%s baza je uspjeÅ¡no odbaÄena.';
+$strDatabasesStats = 'Statistika baze';
+$strDatabasesStatsDisable = 'IskljuÄi statistike';
+$strDatabasesStatsEnable = 'UkljuÄi statistike';
+$strDatabasesStatsHeavyTraffic = 'Napomena: ukljuÄivanje statistika može prouzrokovati veliki protok podataka izmeÄ‘u web i MySQL servera.';
+$strDbPrivileges = 'Privilegije vezane za bazu';
+$strDbSpecific = 'SpecifiÄno za bazu';
+$strDefault = 'Podrazumjevano';
+$strDefaultValueHelp = 'Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta ili navodnika u ovom obliku: a';
+$strDelOld = 'Trenutna strana ima reference na tabele koje više ne postoje. Želite li da obrišete te reference?';
+$strDelete = 'Obriši';
+$strDeleteAndFlush = 'ObriÅ¡i korisnike i ponovo uÄitaj privilegije.';
+$strDeleteAndFlushDescr = 'Ovo je najÄistiji naÄin, ali ponovno uÄitavanje privilegina može da potraje.';
+$strDeleteFailed = 'Brisanje nije uspjelo!';
+$strDeleteUserMessage = 'Upravo ste obrisali korisnika: %s.';
+$strDeleted = 'Red je obrisan';
+$strDeletedRows = 'Obrisani redovi:';
+$strDeleting = 'Brišem %s';
+$strDescending = 'Opadajući';
+$strDescription = 'Opis';
+$strDictionary = 'rijeÄnik';
+$strDisabled = 'Onemogućeno';
+$strDisplay = 'Prikaži';
+$strDisplayFeat = 'Prikaži osobine';
+$strDisplayOrder = 'Redosled prikaza:';
+$strDisplayPDF = 'Prikaži PDF shemu';
+$strDoAQuery = 'Napravi "upit po primjeru" (džoker: "%")';
+$strDoYouReally = 'Da li stvarno hoćete da ';
+$strDocu = 'Dokumentacija';
+$strDrop = 'Odbaci';
+$strDropDB = 'Odbaci bazu %s';
+$strDropSelectedDatabases = 'Odbaci izabrane baze';
+$strDropTable = 'Odbaci tabelu';
+$strDropUsersDb = 'Odbaci baze koje se zovu isto kao korisnici.';
+$strDumpComments = 'UkljuÄi komentare kolona kao komentare unutar SQL-a';
+$strDumpSaved = 'Sadržaj baze je saÄuvan u fajl %s.';
+$strDumpXRows = 'Prikaži %s redova poÄevÅ¡i od reda %s.';
+$strDumpingData = 'Prikaz podataka tabele';
+$strDynamic = 'dinamiÄki';
+
+$strEdit = 'Promeni';
+$strEditPDFPages = 'Izmena PDF strana';
+$strEditPrivileges = 'Promijeni privilegije';
+$strEffective = 'Efektivne';
+$strEmpty = 'Isprazni';
+$strEmptyResultSet = 'MySQL je vratio prazan rezultat (nula redova).';
+$strEnabled = 'Omogućeno';
+$strEnd = 'Kraj';
+$strEndCut = 'KRAJ REZ';
+$strEndRaw = 'KRAJ SIROVO';
+$strEnglish = 'Engleski';
+$strEnglishPrivileges = ' Napomena: MySQL imena privilegija moraju da budu na engleskom ';
+$strError = 'Greška';
+$strEstonian = 'Estonski';
+$strExcelOptions = 'Excel opcije';
+$strExecuteBookmarked = 'Izvrši upamćen upit';
+$strExplain = 'Objasni SQL';
+$strExport = 'Izvoz';
+$strExportToXML = 'Izvoz u XML format';
+$strExtendedInserts = 'Prošireni INSERT';
+$strExtra = 'Dodatno';
+
+$strFailedAttempts = 'Neuspelih pokušaja';
+$strField = 'Polje';
+$strFieldHasBeenDropped = 'Polje %s je obrisano';
+$strFields = 'Polja';
+$strFieldsEmpty = ' Broj polja je nula! ';
+$strFieldsEnclosedBy = 'Polja ograniÄena sa';
+$strFieldsEscapedBy = 'Escape karakter ';
+$strFieldsTerminatedBy = 'Polja razdvojena sa';
+$strFileAlreadyExists = 'Datoteka %s već postoji na serveru, promijenite ime datoteke ili ukljuÄite opciju prepisivanja.';
+$strFileCouldNotBeRead = 'Datoteku nije moguće proÄitati';
+$strFileNameTemplate = 'Å ablon imena datoteke';
+$strFileNameTemplateHelp = 'Koristi __DB__ za ime baze, __TABLE__ za ime tabele i %sbilo koju strftime%s opciju za specifikaciju vremena, i ekstenzija će automatski biti dodata. Sav ostali tekst biće saÄuvan.';
+$strFileNameTemplateRemember = 'zapamti šablon';
+$strFixed = 'urađeno';
+$strFlushPrivilegesNote = 'Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje server koristi ako su izvrÅ¡ene ruÄne izmjene. U tom sluÄaju %sponovo uÄitajte privilegije%s pre nego Å¡to nastavite.';
+$strFlushTable = 'Osvježi tabelu ("FLUSH")';
+$strFormEmpty = 'Nedostaje vrijednost u obrascu!';
+$strFormat = 'Format';
+$strFullText = 'Pun tekst';
+$strFunction = 'Funkcija';
+
+$strGenBy = 'Generirao';
+$strGenTime = 'Vrijeme kreiranja';
+$strGeneralRelationFeat = 'Opšte osobine relacija';
+$strGerman = 'NjemaÄki';
+$strGlobal = 'globalno';
+$strGlobalPrivileges = 'Globalne privilegije';
+$strGlobalValue = 'Globalna vrednost';
+$strGo = 'Kreni';
+$strGrantOption = 'Omogući';
+$strGrants = 'Omogući';
+$strGreek = 'GrÄki';
+$strGzip = '"gzip-ovano"';
+
+$strHasBeenAltered = 'je promijenjen(a).';
+$strHasBeenCreated = 'je kreiran(a).';
+$strHaveToShow = 'Morate izabrati bar jednu kolonu za prikaz';
+$strHebrew = 'Jevrejski';
+$strHome = 'PoÄetna strana';
+$strHomepageOfficial = 'phpMyAdmin veb sajt';
+$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download stranica';
+$strHost = 'Host';
+$strHostEmpty = 'Ime hosta je prazno!';
+$strHungarian = 'Mađarski';
+
+$strId = 'ID';
+$strIdxFulltext = 'Tekst kljuÄ';
+$strIfYouWish = 'Ako želite da izlistate samo neke kolone u tabeli, navedite ih razdvojene zarezom';
+$strIgnore = 'Ignoriši';
+$strIgnoringFile = 'Ignorišem fajl %s';
+$strImportDocSQL = 'Uvoz docSQL fajlova';
+$strImportFiles = 'Uvoz fajlova';
+$strImportFinished = 'Uvoz završen';
+$strInUse = 'se koristi';
+$strIndex = 'KljuÄ';
+$strIndexHasBeenDropped = 'KljuÄ %s je obrisan';
+$strIndexName = 'Ime kljuÄa :';
+$strIndexType = 'Tip kljuÄa :';
+$strIndexes = 'KljuÄevi';
+$strInnodbStat = 'InnoDB status';
+$strInsecureMySQL = 'Vaš konfiguracioni fajl sadrži podešavanja (root bez lozinke) koja odgovaraju standardnom MySQL privilegovanom nalogu. Vaš MySQL server radi sa ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite ovaj sigurnosni rizik.';
+$strInsert = 'Novi zapis';
+$strInsertAsNewRow = 'Unesi kao novi red';
+$strInsertNewRow = 'Unesi novi red';
+$strInsertTextfiles = 'Uvezi podatke iz tekstualne datoteke';
+$strInsertedRowId = 'ID umetnutih redova:';
+$strInsertedRows = 'Uneseno redova:';
+$strInstructions = 'Uputstva';
+$strInvalidName = '"%s" je rezervirana rijeÄ, \nne možete je koristiti kao ime polja, tabele ili baze.';
+
+$strJapanese = 'Japanski';
+$strJumpToDB = 'Pređi na bazu "%s".';
+$strJustDelete = 'Samo obriši korisnike iz tabele privilegija.';
+$strJustDeleteDescr = '"Obrisani" korisnici će i dalje imati pristup serveru dok privilegije ne budu ponovo uÄitane.';
+
+$strKeepPass = 'Nemoj da mijenjaš lozinku';
+$strKeyname = 'Ime kljuÄa';
+$strKill = 'Obustavi';
+$strKorean = 'Korejski';
+
+$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'LaTeX opcije';
+$strLandscape = 'Položeno';
+$strLength = 'Dužina';
+$strLengthSet = 'Dužina/Vrijednost*';
+$strLimitNumRows = 'Broj redova po strani';
+$strLineFeed = 'Oznaka za kraj linije: \\n';
+$strLines = 'Linije';
+$strLinesTerminatedBy = 'Linije se završavaju sa';
+$strLinkNotFound = 'Veza nije pronađena';
+$strLinksTo = 'Veze ka';
+$strLithuanian = 'Litvanski';
+$strLoadExplanation = 'Najbolji metod je već izabran, ali ga možete promijeniti ako ne radi.';
+$strLoadMethod = 'LOAD metod';
+$strLocalhost = 'Lokalni';
+$strLocationTextfile = 'Lokacija tekstualne datoteke';
+$strLogPassword = 'Lozinka:';
+$strLogUsername = 'KorisniÄko ime:';
+$strLogin = 'Prijavljivanje';
+$strLoginInformation = 'Podatci o prijavi';
+$strLogout = 'Odjavljivanje';
+
+$strMIME_MIMEtype = 'MIME-tipovi';
+$strMIME_available_mime = 'Dostupni MIME-tipovi';
+$strMIME_available_transform = 'Dostupne transformacije';
+$strMIME_description = 'Opis';
+$strMIME_file = 'Ime datoteke';
+$strMIME_nodescription = 'Nema opisa za ovu transformaciju. Molimo pitajte autora šta %s radi.';
+$strMIME_transformation = 'Tranformacije ÄitaÄa';
+$strMIME_transformation_note = 'Za listu dostupnih opcija transformacije i njihove transformacije MIME-tipova, kliknite na %sopise transformacija%s';
+$strMIME_transformation_options = 'Opcije transformacije';
+$strMIME_transformation_options_note = 'Molimo unesite vrijednosti za opcije transformacije koristeći ovaj oblik: \'a\',\'b\',\'c\'... Ako treba da unesete obrnutu kosu crtu ("\\") ili apostrof ("\'") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na primjer \'\\\\xyz\' ili \'a\\\'b\').';
+$strMIME_without = 'MIME-tipovi prikazani u kursivu nemaju odvojene funkcije transformacije.';
+$strMissingBracket = 'Nedostaje zagrada';
+$strModifications = 'Izmjene su saÄuvane';
+$strModify = 'Promijeni';
+$strModifyIndexTopic = 'Izmijeni kljuÄ';
+$strMoreStatusVars = 'Još statusnih promjenljivih';
+$strMoveTable = 'Pomjeri tabelu u (baza. tabela):';
+$strMoveTableOK = 'Tabela %s je pomjerena u %s.';
+$strMoveTableSameNames = 'Ne mogu da premjestim tabelu u samu sebe!';
+$strMultilingual = 'viÅ¡ejeziÄki';
+$strMustSelectFile = 'Morate izabrati datoteku koju želite da umetnete.';
+$strMySQLCharset = 'MySQL set karaktera';
+$strMySQLReloaded = 'MySQL ponovo pokrenut.';
+$strMySQLSaid = 'MySQL kaže: ';
+$strMySQLServerProcess = 'MySQL %pma_s1% pokrenut na %pma_s2%, prijavljen kao %pma_s3%';
+$strMySQLShowProcess = 'Prikaži listu procesa';
+$strMySQLShowStatus = 'Prikaži MySQL informacije o toku rada';
+$strMySQLShowVars = 'Prikaži MySQL sistemske promenljive';
+
+$strName = 'Ime';
+$strNext = 'Slijedeći';
+$strNo = 'Ne';
+$strNoDatabases = 'Baza ne postoji';
+$strNoDatabasesSelected = 'Nije izabrana ni jedna baza.';
+$strNoDescription = 'nema opisa';
+$strNoDropDatabases = '"DROP DATABASE" komanda je onemogućena.';
+$strNoExplain = 'PreskoÄi objaÅ¡njavanje SQL-a';
+$strNoFrames = 'phpMyAdmin preferira ÄitaÄe koji podržavaju okvire.';
+$strNoIndex = 'KljuÄ nije definisan!';
+$strNoIndexPartsDefined = 'Dijelovi kljuÄa nisu definisani!';
+$strNoModification = 'Nema izmjena';
+$strNoOptions = 'Ne postoje opcije za ovaj format';
+$strNoPassword = 'Nema lozinke';
+$strNoPermission = 'Veb serveru nije dozvoljeno da saÄuva datoteku %s.';
+$strNoPhp = 'bez PHP koda';
+$strNoPrivileges = 'Nema privilegija';
+$strNoQuery = 'Nema SQL upita!';
+$strNoRights = 'Nije Vam dozvoljeno da budete ovdje!';
+$strNoSpace = 'Nedovoljno prostora za snimanje datoteke %s.';
+$strNoTablesFound = 'Tabele nisu pronađene u bazi.';
+$strNoUsersFound = 'Korisnik nije nađen.';
+$strNoUsersSelected = 'Korisnik nije izabran.';
+$strNoValidateSQL = 'PreskoÄi provjeru SQL-a';
+$strNone = 'nema';
+$strNotNumber = 'Ovo nije broj!';
+$strNotOK = 'nije u redu';
+$strNotSet = '%s tabela nije pronađena ili nije postavljena u %s';
+$strNotValidNumber = 'nije odgovarajući broj kolone!';
+$strNull = 'Null';
+$strNumSearchResultsInTable = '%s pogodaka unutar tabele %s ';
+$strNumSearchResultsTotal = 'Ukupno: %s pogodaka';
+$strNumTables = 'Tabele';
+
+$strOK = 'U redu';
+$strOftenQuotation = 'Navodnici koji se koriste. OPCIONO se misli da neka polja mogu, ali ne moraju da budu pod znacima navoda.';
+$strOperations = 'Operacije';
+$strOptimizeTable = 'Optimiziraj tabelu';
+$strOptionalControls = 'Opciono. Znak koji prethodi specijalnim znacima.';
+$strOptionally = 'OPCIONO';
+$strOptions = 'Opcije';
+$strOr = 'ili';
+$strOverhead = 'PrekoraÄenje';
+$strOverwriteExisting = 'Prepiši postojeće fajlove';
+
+$strPHP40203 = 'Koristite PHP 4.2.3, koji ima ozbiljnu gresku sa viÅ¡ebajtnim stringovima (mbstring). Pogledajte izvjeÅ¡taj o greÅ¡ci br. 19404. Ova verzija PHP-a se ne preporuÄuje za korišćenje sa phpMyAdmin.';
+$strPHPVersion = 'verzija PHP-a';
+$strPageNumber = 'Broj strane:';
+$strPaperSize = 'Dimenzije papira';
+$strPartialText = 'Dio teksta';
+$strPassword = 'Lozinka';
+$strPasswordChanged = 'Lozinka za %s je uspješno promjenjena.';
+$strPasswordEmpty = 'Lozinka je prazna!';
+$strPasswordNotSame = 'Lozinke nisu identiÄne!';
+$strPdfDbSchema = 'Shema baze "%s" - Strana %s';
+$strPdfInvalidPageNum = 'Nedefinisan broj PDF strane!';
+$strPdfInvalidTblName = 'Tabela "%s" ne postoji!';
+$strPdfNoTables = 'Nema tabela';
+$strPerHour = 'na sat';
+$strPerMinute = 'u minuti';
+$strPerSecond = 'u sekundi';
+$strPhoneBook = 'telefonski imenik';
+$strPhp = 'Napravi PHP kod';
+$strPmaDocumentation = 'phpMyAdmin dokumentacija';
+$strPmaUriError = '$cfg[\'PmaAbsoluteUri\'] direktiva MORA biti podješena u konfiguracionoj datoteci!';
+$strPortrait = 'Uspravno';
+$strPos1 = 'PoÄetak';
+$strPrevious = 'Prethodna';
+$strPrimary = 'Primarni';
+$strPrimaryKey = 'Primarni kljuÄ';
+$strPrimaryKeyHasBeenDropped = 'Primarni kljuÄ je obrisan';
+$strPrimaryKeyName = 'Ime primarnog kljuÄa mora da bude... PRIMARY!';
+$strPrimaryKeyWarning = '("PRIMARY" mora biti ime samo primarnog kljuÄa!)';
+$strPrint = 'Å tampaj';
+$strPrintView = 'Za štampu';
+$strPrivDescAllPrivileges = 'UkljuÄuje sve privilegije osim GRANT.';
+$strPrivDescAlter = 'Dozvoljava izmjenu struktura postojećih tabela.';
+$strPrivDescCreateDb = 'Dozvoljava kreiranje novih baza i tabela.';
+$strPrivDescCreateTbl = 'Dozvoljava kreiranje novih tabela.';
+$strPrivDescCreateTmpTable = 'Dozvoljava kreiranje privremenih tabela..';
+$strPrivDescDelete = 'Dozvoljava brisanje podataka.';
+$strPrivDescDropDb = 'Dozvoljava odbacivanje baza i tabela.';
+$strPrivDescDropTbl = 'Dozvoljava odbacivanje tabela.';
+$strPrivDescExecute = 'Dozvoljava pokretanje saÄuvanih procedura. Nema efekta u ovoj verziji MySQL-a.';
+$strPrivDescFile = 'Dozvoljava uvoz podataka i njihov izvoz u datoteke.';
+$strPrivDescGrant = 'Dozvoljava dodavanje korisnika i privilegija bez ponovnog uÄitavanja tabela privilegija.';
+$strPrivDescIndex = 'Dozvoljava kreiranje i brisanje kljuÄeva.';
+$strPrivDescInsert = 'Dozvoljava umetanje i zamjenu podataka.';
+$strPrivDescLockTables = 'Dozvoljava zakljuÄavanje tabela tekućim procesima.';
+$strPrivDescMaxConnections = 'OgraniÄava broj novih konekcija koje korisnik može ta otvori na sat.';
+$strPrivDescMaxQuestions = 'OgraniÄava broj upita koje korisnik može da uputi serveru za sat.';
+$strPrivDescMaxUpdates = 'OgraniÄava broj komandi koje menjaju tabele ili baze koje korisnik može da izvrÅ¡i na sat.';
+$strPrivDescProcess3 = 'Dozvoljava prekidanje procesa drugih korisnika.';
+$strPrivDescProcess4 = 'Dozvoljava pregled kompletnih upita u listi procesa.';
+$strPrivDescReferences = 'Nema efekta u ovoj verziji MySQL-a.';
+$strPrivDescReload = 'Dozvoljava ponovno uÄitavanje podeÅ¡avanja servera i pražnjenje keÅ¡a servera.';
+$strPrivDescReplClient = 'Daje pravo korisniku da pita gde su glavni/pomoćni serveri.';
+$strPrivDescReplSlave = 'Potrebno zbog pomoćnih servera za replikaciju.';
+$strPrivDescSelect = 'Dozvoljava Äitanje podataka.';
+$strPrivDescShowDb = 'Daje pristup kompletnoj listi baza.';
+$strPrivDescShutdown = 'Dozvoljava gašenje servera.';
+$strPrivDescSuper = ' Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih promenljivih ili prekidanje procesa ostalih korisnika.';
+$strPrivDescUpdate = 'Dozvoljava izmenu podataka.';
+$strPrivDescUsage = 'Nema privilegija.';
+$strPrivileges = 'Privilegije';
+$strPrivilegesReloaded = 'Privilegije su uspeÅ¡no ponovo uÄitane.';
+$strProcesslist = 'Lista procesa';
+$strProperties = 'Svojstva';
+$strPutColNames = 'Stavi imena polja u prvi red';
+
+$strQBE = 'Upit po primeru';
+$strQBEDel = 'Del';
+$strQBEIns = 'Ins';
+$strQueryFrame = 'Prozor za upite';
+$strQueryFrameDebug = 'Debugging informacije';
+$strQueryFrameDebugBox = 'Aktivne promjenljive za formular sa upitom:\nDB: %s\nTabela: %s\nServer: %s\n\nTrenutne promenljive za formular sa upitom:\nDB: %s\nTabela: %s\nServer: %s\n\nLokacija sa koje je otvoreno: %s\nLokacija okvira: %s.';
+$strQueryOnDb = 'SQL upit na bazi %s :';
+$strQuerySQLHistory = 'SQL istorijat';
+$strQueryStatistics = 'Statistike upita : %s upita je postavljeno serveru od njegovog pokretanja.';
+$strQueryTime = 'Upit je trajao %01.4f sekundi';
+$strQueryType = 'Vrsta upita';
+$strQueryWindowLock = 'Ne prepisuj ovaj upit izvan prozora';
+
+$strReType = 'Ponovite unos';
+$strReceived = 'Primljeno';
+$strRecords = 'Zapisi';
+$strReferentialIntegrity = 'Proveri referencijalni integritet:';
+$strRelationNotWorking = 'Dodatne mogućnosti za rad sa povezanim tabelama su iskljuÄene. Da biste saznali zaÅ¡to, kliknite %sovde%s.';
+$strRelationView = 'Relacioni pogled';
+$strRelationalSchema = 'Relaciona shema';
+$strRelations = 'Relacije';
+$strReloadFailed = 'Ponovno pokretanje MySQL-a nije uspelo.';
+$strReloadMySQL = 'Ponovo pokreni MySQL';
+$strReloadingThePrivileges = 'Ponovo uÄitavam privilegije';
+$strRememberReload = 'Ne zaboravite da ponovo pokrenete server.';
+$strRemoveSelectedUsers = 'Ukloni izabrane korisnike';
+$strRenameTable = 'Promjeni ime tabele u ';
+$strRenameTableOK = 'Tabeli %s promjenjeno ime u %s';
+$strRepairTable = 'Popravi tabelu';
+$strReplace = 'Zamijeni';
+$strReplaceNULLBy = 'Zamijeni NULL sa';
+$strReplaceTable = 'Zamijeni podatke u tabeli sa podatcima iz datoteke';
+$strReset = 'Resetuj';
+$strResourceLimits = 'OgraniÄenja resursa';
+$strRevoke = 'Zabrani';
+$strRevokeAndDelete = 'Obustavi sve aktivne privilegije korisnika i zatim ih obriši.';
+$strRevokeAndDeleteDescr = 'Korisnici će i dalje imati USAGE privilegije dok se privilegije ponovo ne uÄitaju.';
+$strRevokeGrant = 'Zabrani GRANT';
+$strRevokeGrantMessage = 'Zabranili ste GRANT privilegije za %s';
+$strRevokeMessage = 'Zabranili ste privilegije za %s';
+$strRevokePriv = 'Zabrani privilegije';
+$strRowLength = 'Dužina reda';
+$strRowSize = 'VeliÄina reda';
+$strRows = 'Redova';
+$strRowsFrom = ' redova poÄev od reda';
+$strRowsModeFlippedHorizontal = 'horizontalnom (rotirana zaglavlja)';
+$strRowsModeHorizontal = 'horizontalnom';
+$strRowsModeOptions = 'u %s modu i ponovi zaglavlje posle svakog %s reda';
+$strRowsModeVertical = 'vertikalnom';
+$strRowsStatistic = 'Statistike reda';
+$strRunQuery = 'Izvrši SQL upit';
+$strRunSQLQuery = 'Izvrši SQL upit(e) na bazi %s';
+$strRunning = 'na serveru %s';
+$strRussian = 'Ruski';
+
+$strSQL = 'SQL';
+$strSQLOptions = 'SQL opcije';
+$strSQLParserBugMessage = 'Postoji mogućnost da ste pronaÅ¡li gresku u SQL parseru. Molimo ispitajte svoj upit pažljivo, i provjerite da su navodnici ispravni i da ne nedostaju. Ostali mogući razlozi greÅ¡ke mogu biti da ste poslali binarni fajl van oblasti za obiÄan tekst. Možete probati svoj upit u MySQL interfejsu komandne linije. Donja poruka o greÅ¡ci MySQL servera, ako je ima, može vam pomoći u otkrivanju problema. Ako i dalje imate probleme ili ako parser ne uspjeva tamo gde uspeva interfejs komandne linije, svedite svoj SQL upit na jedan jedini upit koji stvara probleme i poÅ¡aljite nam izvjeÅ¡taj o greÅ¡ci sa delom koda u donjoj REZ sekciji:';
+$strSQLParserUserError = 'Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL servera, koja vam može pomoći u otkrivanju problema';
+$strSQLQuery = 'SQL upit';
+$strSQLResult = 'SQL rezultat';
+$strSQPBugInvalidIdentifer = 'Neispravan identifikator';
+$strSQPBugUnclosedQuote = 'Navodnik nije zatvoren';
+$strSQPBugUnknownPunctuation = 'Nepoznat string interpunkcije';
+$strSave = 'SaÄuvaj';
+$strSaveOnServer = 'SaÄuvaj na server u direktorijum %s';
+$strScaleFactorSmall = 'Faktor umanjenja je premali da bi shema stala na jednu stranu';
+$strSearch = 'Pretraživanje';
+$strSearchFormTitle = 'Pretraživanje baze';
+$strSearchInTables = 'Unutar tabela:';
+$strSearchNeedle = 'RijeÄi ili vrednosti koje se traže (džoker: "%"):';
+$strSearchOption1 = 'bar jednu od rijeÄi';
+$strSearchOption2 = 'sve rijeÄi';
+$strSearchOption3 = 'taÄan izraz';
+$strSearchOption4 = 'kao regularni izraz';
+$strSearchResultsFor = 'Rezultati pretrage za "%s " %s:';
+$strSearchType = 'Traži:';
+$strSecretRequired = 'Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret).';
+$strSelect = 'Selekcija';
+$strSelectADb = 'Izaberite bazu';
+$strSelectAll = 'Izaberi sve';
+$strSelectFields = 'Izaberi polja (najmanje jedno)';
+$strSelectNumRows = 'u upitu';
+$strSelectTables = 'Izaberi tabele';
+$strSend = 'SaÄuvaj kao datoteku';
+$strSent = 'Poslato';
+$strServer = 'Server %s';
+$strServerChoice = 'Izbor servera';
+$strServerStatus = 'Informacije o toku rada';
+$strServerStatusUptime = 'Ovaj MySQL server radi već %s. Pokrenut je %s.';
+$strServerTabProcesslist = 'Procesi';
+$strServerTabVariables = 'Promjenljive';
+$strServerTrafficNotes = 'Saobraćaj servera : Tabele pokazuju statistike mrežnog saobraćaja na ovom MySQL serveru od njegovog pokretanja.';
+$strServerVars = 'Serverske promenljive i podešavanja';
+$strServerVersion = 'Verzija servera';
+$strSessionValue = 'Vrijednost sesije';
+$strSetEnumVal = 'Ako je polje "enum" ili "set", unesite vrijednosti u formatu: \'a\',\'b\',\'c\'... Ako vam treba obrnuta kosa crta ("\\") ili apostrof ("\'") koristite ih u "izbjegnutom" (escaped) obliku (na primer \'\\\\xyz\' ili \'a\\\'b\').';
+$strShow = 'Prikaži';
+$strShowAll = 'Prikaži sve';
+$strShowColor = 'Prikaži boju';
+$strShowCols = 'Prikaži kolone';
+$strShowDatadictAs = 'Format rijeÄnika podataka';
+$strShowFullQueries = 'Prikaži kompletne upite';
+$strShowGrid = 'Prikaži mrežu';
+$strShowPHPInfo = 'Prikaži informacije o PHP-u';
+$strShowTableDimension = 'Prikaži dimenzije tabele';
+$strShowTables = 'Prikaži tabele';
+$strShowThisQuery = 'Prikaži ponovo ovaj upit';
+$strShowingRecords = 'Prikaz zapisa';
+$strSimplifiedChinese = 'Pojednostavljeni kineski';
+$strSingly = '(po jednom polju)';
+$strSize = 'VeliÄina';
+$strSort = 'Sortiranje';
+$strSpaceUsage = 'Zauzeće';
+$strSplitWordsWithSpace = 'RijeÄi se odvajaju razmakom (" ").';
+$strStatCheckTime = 'Posljednja provjera';
+$strStatCreateTime = 'Napravljeno';
+$strStatUpdateTime = 'Posljednja izmjena';
+$strStatement = 'Ime';
+$strStatus = 'Status';
+$strStrucCSV = 'CSV format';
+$strStrucData = 'Struktura i podatci';
+$strStrucDrop = 'Dodaj \'DROP TABLE\'';
+$strStrucExcelCSV = 'CSV za MS Excel';
+$strStrucOnly = 'Samo struktura';
+$strStructPropose = 'Predloži strukturu tabele';
+$strStructure = 'Struktura';
+$strSubmit = 'Pošalji';
+$strSuccess = 'Vaš SQL upit je uspešno izvršen';
+$strSum = 'Ukupno';
+$strSwedish = 'Å vedski';
+$strSwitchToTable = 'Pređi na kopiranu tabelu';
+
+$strTable = 'Tabela';
+$strTableComments = 'Komentari tabele';
+$strTableEmpty = 'Ima tabele je prazno!';
+$strTableHasBeenDropped = 'Tabela %s je odbaÄena';
+$strTableHasBeenEmptied = 'Tabela %s je ispražnjena';
+$strTableHasBeenFlushed = 'Tabela %s je osvežena';
+$strTableMaintenance = 'Radnje na tabeli';
+$strTableOfContents = 'Sadržaj';
+$strTableOptions = 'Opcije tabele';
+$strTableStructure = 'Struktura tabele';
+$strTableType = 'Tip tabele';
+$strTables = '%s tabela';
+$strTblPrivileges = 'Privilegije vezane za tabele';
+$strTextAreaLength = 'Zbog njehove veliÄine, polje možda nećete moći da izmenite';
+$strThai = 'Tajlandski ';
+$strTheContent = 'Sadržaj datoteke je dodat u bazu.';
+$strTheContents = 'Podatke sadržane u tabeli zameni sa podacima iz datoteke koji imaju identiÄne primarne i jedinstvene (unique) kljuÄeve.';
+$strTheTerminator = 'Separator polja u datoteci.';
+$strThisHost = 'Ovaj server';
+$strThisNotDirectory = 'Ovo nije direktorijum';
+$strThreadSuccessfullyKilled = 'Proces %s je uspješno prekinut.';
+$strTime = 'Vrijeme';
+$strToggleScratchboard = 'UkljuÄuje/iskljuÄuje scratchboard';
+$strTotal = 'ukupno';
+$strTotalUC = 'Ukupno';
+$strTraditionalChinese = 'Tradicionalni kineski';
+$strTraffic = 'Saobraćaj';
+$strTransformation_image_jpeg__inline = 'Prikazuje umanjenu sliku na koju je moguće kliknuti; opcije: Å¡irina, visina u pikselima (Äuva originalni odnos)';
+$strTransformation_image_jpeg__link = 'Prikazuje link ka ovoj slici (npr. direktno preuzimanje iz BLOB-a).';
+$strTransformation_image_png__inline = 'Prikaži JPEG slike na strani';
+$strTransformation_text_plain__dateformat = 'Uzima TIME, TIMESTAMP ili DATETIME polje i formatira ga koristeći lokalni oblik prikazivanja datuma. Prva opcija je ofset (u satima) koji se dodaje vremenskoj oznaci (podrazumevano: 0). Druga opcija je razliÄit format datuma prema parametrima koji su dostupni za PHP-ov strftime().';
+$strTransformation_text_plain__external = 'SAMO LINUX: Pokreće eksternu aplikaciju i popunjava podatke u poljima preko standardnog ulaza. Vraća standardni izlaz aplikacije. Podrazumevano je Tidy, za lepÅ¡i prikaz HTML koda. Zbog sigurnosnih razloga, morate ruÄno izmeniti datoteku libraries/transformations/text_plain__external.inc.php i dodati alate koje želite da koristite. Prva opcija je broj programa koje želite da koristite, a druga su parametri programa. Ako se treći parametar postavi na 1 izlaz će biti konvertovan koristeći htmlspecialchars() (podrazumevano je 1). Ako je Äetvrti parametar postavljen na 1, NOWRAP će biti dodato ćeliji sa sadržajem tako da će izlaz biti prikazan bez izmena. (podrazumevano 1)';
+$strTransformation_text_plain__formatted = 'Čuva originalno formatiranje polja. Escaping se ne vrši.';
+$strTransformation_text_plain__imagelink = 'Prikazuje sliku i link, polje sadrži naziv datoteke; prva opcija je prefiks kao "http://domain.com/", druga opcija je širina u pikselima, treća je visina.';
+$strTransformation_text_plain__link = 'Prikazuje link, polje sadrži naziv datoteke; prva opcija je prefiks kao "http://domain.com/", druga opcija je naslov za link.';
+$strTransformation_text_plain__substr = 'Pokazuje samo deo stringa. Prva opcija je ofset koji definiÅ¡e gde poÄinje izlaz vaÅ¡eg teksta (podrazumevano 0). Druga opcija je ofset koji pokazuje koliko će teksta biti prikazano. Ako je nema, sav preostali tekst će biti prikazan. Treća opcija odreÄ‘uje koji će znaci biti dodati izlazu kada se prikaže podstring (podrazumevano: ...) .';
+$strTransformation_text_plain__unformatted = 'Prikazuje HTML kod kao HTML entitete. HTML formatiranje se ne prikazuje.';
+$strTruncateQueries = 'Prikaži skraćene upite';
+$strTurkish = 'Turski';
+$strType = 'Tip';
+
+$strUkrainian = 'Ukrajinski';
+$strUncheckAll = 'nijedno';
+$strUnicode = 'Unikod';
+$strUnique = 'Jedinstveni';
+$strUnknown = 'nepoznat';
+$strUnselectAll = 'ništa';
+$strUpdComTab = 'Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments';
+$strUpdatePrivMessage = 'Ažurirali ste privilegije za %s.';
+$strUpdateProfile = 'Promjeni profil:';
+$strUpdateProfileMessage = 'Profil je promjenjen.';
+$strUpdateQuery = 'Ažuriraj upit';
+$strUsage = 'Zauzeće';
+$strUseBackquotes = 'Koristi \' za ograniÄavanje imena polja';
+$strUseHostTable = 'Koristi tabelu hosta';
+$strUseTables = 'Koristi tabele';
+$strUseTextField = 'Koristi tekst polje';
+$strUseThisValue = 'Koristi ovu vrijednost';
+$strUser = 'Korisnik';
+$strUserAlreadyExists = 'Korisnik %s već postoji!';
+$strUserEmpty = 'Ime korisnika nije unijeto!';
+$strUserName = 'Ime korisnika';
+$strUserNotFound = 'Izabrani korisnik nije pronađen u tabeli privilegija.';
+$strUserOverview = 'Pregled korisnika';
+$strUsers = 'Korisnici';
+$strUsersDeleted = 'Izabrani korisnici su uspješno obrisani.';
+$strUsersHavingAccessToDb = 'Korisnici koji imaju pristup "%s"';
+
+$strValidateSQL = 'Provjeri SQL';
+$strValidatorError = 'SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane neophodne PHP ekstenzije opisane u %sdokumentaciji%s.';
+$strValue = 'Vrijednost';
+$strVar = 'Promjenljiva';
+$strViewDump = 'Prikaži sadržaj (shemu) tabele';
+$strViewDumpDB = 'Prikaži sadržaj (shemu) baze';
+$strViewDumpDatabases = 'Prikaži sadržaj (shemu) baze';
+
+$strWebServerUploadDirectory = 'direkcija za slanje web servera ';
+$strWebServerUploadDirectoryError = 'Direkcija koju ste izabrali za slanje nije dostupna';
+$strWelcome = 'Dobrodošli na %s';
+$strWestEuropean = 'Zapadnoevropski';
+$strWildcard = 'Džoker';
+$strWindowNotFound = 'OdrediÅ¡nji prozor pretraživaÄa nije mogao da bude ažuriran. Možda ste zatvorili matiÄni prozor, ili vaÅ¡ preraživaÄ onemogućava ažuriranje meÄ‘u prozorima zbog sigurnosnih podeÅ¡avanja';
+$strWithChecked = 'OznaÄeno:';
+$strWritingCommentNotPossible = 'Pisanje komentara nije moguće';
+$strWritingRelationNotPossible = 'Upisivanje relacije nije moguće';
+$strWrongUser = 'PogreÅ¡no korisniÄko ime/lozinka. Ulaz nije dozvoljen.';
+
+$strXML = 'XML';
+
+$strYes = 'Da';
+
+$strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.';
+$strZip = '"zipovano"';
+
+?>
diff --git a/lang/bosnian-windows-1250.inc.php3 b/lang/bosnian-windows-1250.inc.php3
new file mode 100644
index 000000000..8abdb7696
--- /dev/null
+++ b/lang/bosnian-windows-1250.inc.php3
@@ -0,0 +1,702 @@
+
+ * http://www.kobiljak.com
+ */
+
+$charset = 'windows-1250';
+$text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left)
+$left_font_family = 'verdana, arial, helvetica, geneva, sans-serif';
+$right_font_family = 'arial, helvetica, geneva, sans-serif';
+$number_thousands_separator = ',';
+$number_decimal_separator = '.';
+// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
+$byteUnits = array('bajta', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB');
+
+$day_of_week = array('Ned', 'Pon', 'Uto', 'Sri', 'Èet', 'Pet', 'Sub');
+$month = array('jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec');
+// See http://www.php.net/manual/en/function.strftime.php to define the
+// variable below
+$datefmt = '%d. %B %Y. u %H:%M';
+$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
+
+$strAPrimaryKey = 'Osnovni kljuè je upravo dodan %s';
+$strAbortedClients = 'Prekinuto';
+$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direkcije docSQL na veb serveru';
+$strAccessDenied = 'Ulaz nije dozvoljen';
+$strAccessDeniedExplanation = 'phpMyAdmin je pokušao da se poveže na MySQL server, ali je server odbio povezivanje. Provjerite naziv hosta, korisnièko ime i lozinku u config.inc.php i uvjerite se da odgovaraju podacima koje ste dobili od administratora MySQL servera.';
+$strAction = 'Akcija';
+$strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrijednost';
+$strAddDeleteColumn = 'Dodaj/obriši kolonu';
+$strAddDeleteRow = 'Dodaj/obriši polje za kriterij';
+$strAddDropDatabase = 'Dodaj DROP DATABASE';
+$strAddIntoComments = 'Dodaj u komentare';
+$strAddNewField = 'Dodaj novo polje';
+$strAddPriv = 'Dodaj novu privilegiju';
+$strAddPrivMessage = 'Dodali ste novu privilegiju.';
+$strAddPrivilegesOnDb = 'Dodaj privilegije na slijedeæoj bazi';
+$strAddPrivilegesOnTbl = 'Dodaj privilegije na slijedeæoj tabeli';
+$strAddSearchConditions = 'Dodaj uslove pretraživanja (dio "WHERE" upita):';
+$strAddToIndex = 'Dodaj u kljuè %s kolona(e)';
+$strAddUser = 'Dodaj novog korisnika';
+$strAddUserMessage = 'Dodali ste novog korisnika.';
+$strAddedColumnComment = 'Dodan je komentar koloni';
+$strAddedColumnRelation = 'Dodana je relacija koloni';
+$strAdministration = 'Administracija';
+$strAffectedRows = 'Obuhvaæeno redova:';
+$strAfter = 'Poslije %s';
+$strAfterInsertBack = 'Nazad na prethodnu stranu';
+$strAfterInsertNewInsert = 'Dodaj još jedan novi red';
+$strAll = 'Sve';
+$strAllTableSameWidth = 'prikaz svih tabela iste širine?';
+$strAlterOrderBy = 'Promijeni redoslijed u tabeli';
+$strAnIndex = 'Kljuè je upravo dodan %s';
+$strAnalyzeTable = 'Analiziraj tabelu';
+$strAnd = 'i';
+$strAny = 'Bilo koji';
+$strAnyColumn = 'Bilo koja kolona';
+$strAnyDatabase = 'Bilo koja baza podataka';
+$strAnyHost = 'Bilo koji host';
+$strAnyTable = 'Bilo koja tabela';
+$strAnyUser = 'Bilo koji korisnik';
+$strArabic = 'Arapski';
+$strArmenian = 'Jermenski';
+$strAscending = 'Rastuæi';
+$strAtBeginningOfTable = 'Na poèetku tabele';
+$strAtEndOfTable = 'Na kraju tabele';
+$strAttr = 'Atributi';
+$strAutodetect = 'automatski';
+$strAutomaticLayout = 'Automatski raspored';
+
+$strBack = 'Nazad';
+$strBaltic = 'Baltièki';
+$strBeginCut = 'POÈETAK REZ';
+$strBeginRaw = 'POÈETAK SIROVO';
+$strBinary = 'Binarni';
+$strBinaryDoNotEdit = 'Binarni - ne mijenjaj';
+$strBookmarkDeleted = 'Obilježivaè je upravo obrisan.';
+$strBookmarkLabel = 'Naziv';
+$strBookmarkQuery = 'Obilježen SQL-upit';
+$strBookmarkThis = 'Obilježi SQL-upit';
+$strBookmarkView = 'Vidi samo';
+$strBrowse = 'Pregled';
+$strBrowseForeignValues = 'Pregledaj strane vrijednosti';
+$strBulgarian = 'Bugarski';
+$strBzError = 'phpMyAdmin nije mogao da kompresuje sadržaj baze zbog neispravne BZ2 ekstenzije u ovoj verziji PHP-a. Preporuèuje se da podesite $cfg[\'BZipDump\']
direktivu u vašem phpMyAdmin konfiguracionom fajlu na FALSE
. Ako želite da koristite moguænosti BZ2 kompresije, trebalo bi da preðete na noviju verziju PHP-a. Vidite PHP izveštaj o greškama %s za detalje.';
+$strBzip = '"bzip-ovano"';
+
+$strCSVOptions = 'CSV opcije';
+$strCannotLogin = 'Ne mogu da se prijavim na MySQL server';
+$strCantLoad = 'ne mogu da uèitam ekstenziju %s, molim provjerite PHP konfiguraciju';
+$strCantLoadMySQL = 'ne mogu da uèitam MySQL ekstenziju, molim pogledajte PHP konfiguraciju.';
+$strCantLoadRecodeIconv = 'Ne mogu da uèitam iconv ili recode ekstenzije potrebne za konverziju skupova znakova, podesite PHP da dozvoli korišæenje ovih ekstenzija ili onemoguæite konverziju skupova znakova u phpMyAdmin-u.';
+$strCantRenameIdxToPrimary = 'Ne mogu da promenim kljuè u PRIMARY (primarni) !';
+$strCantUseRecodeIconv = 'Ne mogu da koristim iconv ili libiconv ili recode_string funkcije iako ekstenzija prijavljuje da je uèitana. Proverite vašu PHP konfiguraciju.';
+$strCardinality = 'Kardinalnost';
+$strCarriage = 'Novi red (carriage return): \\r';
+$strCaseInsensitive = 'Ne razlikuje mala i velika slova';
+$strCaseSensitive = 'Razlikuje mala i velika slova';
+$strCentralEuropean = 'Centralnoevropski';
+$strChange = 'Promijeni';
+$strChangeCopyMode = 'Napravi novog korisnika sa istim privilegijama i ...';
+$strChangeCopyModeCopy = '... saèuvaj stare.';
+$strChangeCopyModeDeleteAndReload = ' ... obriši starog iz tabele korisnika i zatim ponovo uèitaj privilegije.';
+$strChangeCopyModeJustDelete = ' ... obriši stare iz tabela korisnika.';
+$strChangeCopyModeRevoke = ' ... obustavi sve privilegije starog korisnika i zatim ga obriši.';
+$strChangeCopyUser = 'Promeni informacije o prijavi / Kopiraj korisnika';
+$strChangeDisplay = 'Izaberi polja za prikaz';
+$strChangePassword = 'Promeni lozinku';
+$strCharset = 'Karakter set';
+$strCharsetOfFile = 'Karakter set datoteke:';
+$strCharsets = 'Kodne strane';
+$strCharsetsAndCollations = 'Karakter setovi i sortiranje';
+$strCheckAll = 'Oznaèi sve';
+$strCheckDbPriv = 'Provjeri privilegije baze podataka';
+$strCheckPrivs = 'Provjeri privilegije';
+$strCheckPrivsLong = 'Provjeri privilegije za bazu "%s".';
+$strCheckTable = 'Provjeri tabelu';
+$strChoosePage = 'Izaberite stranu koju menjate';
+$strColComFeat = 'Prikazujem komentare kolone';
+$strCollation = 'Sortiranje';
+$strColumn = 'Kolona';
+$strColumnNames = 'Imena kolona';
+$strColumnPrivileges = 'Privilegije vezane za kolone';
+$strCommand = 'Naredba';
+$strComments = 'Komentari';
+$strCompleteInserts = 'Kompletan INSERT (sa imenima polja)';
+$strCompression = 'Kompresija';
+$strConfigFileError = 'phpMyAdmin nije mogao da proèita vaš konfiguracioni fajl! Ovo se može destiti ako PHP naðe grešku u procesiranju ili ne može da pronaðe fajl. Pozovite konfiguracioni fajl direktno koristeæi donji link u proèitajte poruke o grešci koje dobijate. U veæini sluèajeve negde nedostaje navodnik ili taèka-zarez. Ako dobijete praznu stranu, sve je u redu.';
+$strConfigureTableCoord = 'Podesite koordinate za tabelu %s';
+$strConfirm = 'Da li stvarno želite da to uradite?';
+$strConnections = 'Konekcije';
+$strCookiesRequired = 'Kolaèiæi (Cookies) moraju u ovom sluèaju biti aktivirani.';
+$strCopyTable = 'Kopiraj tabelu u (baza. tabela):';
+$strCopyTableOK = 'Tabela %s je kopirana u %s.';
+$strCopyTableSameNames = 'Ne mogu da kopiram tabelu u samu sebe!';
+$strCouldNotKill = 'phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je veæ zatvoren.';
+$strCreate = 'Napravi';
+$strCreateIndex = 'Napravi kljuè na %s kolona';
+$strCreateIndexTopic = 'Napravi novi kljuè';
+$strCreateNewDatabase = 'Napravi novu bazu podataka';
+$strCreateNewTable = 'Napravi novu tabelu u bazi %s';
+$strCreatePage = 'Napravi novu stranu';
+$strCreatePdfFeat = 'Pravljenje PDF-ova';
+$strCriteria = 'Kriterijum';
+$strCroatian = 'Hrvatski';
+$strCyrillic = 'Æirilièni';
+$strCzech = 'Èeški';
+
+$strDBComment = 'Komentar baze:';
+$strDBGContext = 'Kontekst';
+$strDBGContextID = 'Kontekst ID';
+$strDBGHits = 'Pogodaka';
+$strDBGLine = 'Linija';
+$strDBGMaxTimeMs = 'Max vrijeme, ms';
+$strDBGMinTimeMs = 'Min vrijeme, ms';
+$strDBGModule = 'Modul';
+$strDBGTimePerHitMs = 'Vrijeme/pogodak, ms';
+$strDBGTotalTimeMs = 'Ukupno vrijeme, ms';
+$strDanish = 'Danski';
+$strData = 'Podaci';
+$strDataDict = 'Reènik podataka';
+$strDataOnly = 'Samo podaci';
+$strDatabase = 'Baza podataka';
+$strDatabaseExportOptions = 'Opcije za izvoz baze';
+$strDatabaseHasBeenDropped = 'Baza %s je odbaèena.';
+$strDatabaseNoTable = 'Baza ne sadrži tabele!';
+$strDatabaseWildcard = 'Baza (džoker znaci dozvoljeni):';
+$strDatabases = 'Baze';
+$strDatabasesDropped = '%s baza je uspješno odbaèena.';
+$strDatabasesStats = 'Statistika baze';
+$strDatabasesStatsDisable = 'Iskljuèi statistike';
+$strDatabasesStatsEnable = 'Ukljuèi statistike';
+$strDatabasesStatsHeavyTraffic = 'Napomena: ukljuèivanje statistika može prouzrokovati veliki protok podataka izmeðu web i MySQL servera.';
+$strDbPrivileges = 'Privilegije vezane za bazu';
+$strDbSpecific = 'Specifièno za bazu';
+$strDefault = 'Podrazumjevano';
+$strDefaultValueHelp = 'Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta ili navodnika u ovom obliku: a';
+$strDelOld = 'Trenutna strana ima reference na tabele koje više ne postoje. Želite li da obrišete te reference?';
+$strDelete = 'Obriši';
+$strDeleteAndFlush = 'Obriši korisnike i ponovo uèitaj privilegije.';
+$strDeleteAndFlushDescr = 'Ovo je najèistiji naèin, ali ponovno uèitavanje privilegina može da potraje.';
+$strDeleteFailed = 'Brisanje nije uspjelo!';
+$strDeleteUserMessage = 'Upravo ste obrisali korisnika: %s.';
+$strDeleted = 'Red je obrisan';
+$strDeletedRows = 'Obrisani redovi:';
+$strDeleting = 'Brišem %s';
+$strDescending = 'Opadajuæi';
+$strDescription = 'Opis';
+$strDictionary = 'rijeènik';
+$strDisabled = 'Onemoguæeno';
+$strDisplay = 'Prikaži';
+$strDisplayFeat = 'Prikaži osobine';
+$strDisplayOrder = 'Redosled prikaza:';
+$strDisplayPDF = 'Prikaži PDF shemu';
+$strDoAQuery = 'Napravi "upit po primjeru" (džoker: "%")';
+$strDoYouReally = 'Da li stvarno hoæete da ';
+$strDocu = 'Dokumentacija';
+$strDrop = 'Odbaci';
+$strDropDB = 'Odbaci bazu %s';
+$strDropSelectedDatabases = 'Odbaci izabrane baze';
+$strDropTable = 'Odbaci tabelu';
+$strDropUsersDb = 'Odbaci baze koje se zovu isto kao korisnici.';
+$strDumpComments = 'Ukljuèi komentare kolona kao komentare unutar SQL-a';
+$strDumpSaved = 'Sadržaj baze je saèuvan u fajl %s.';
+$strDumpXRows = 'Prikaži %s redova poèevši od reda %s.';
+$strDumpingData = 'Prikaz podataka tabele';
+$strDynamic = 'dinamièki';
+
+$strEdit = 'Promeni';
+$strEditPDFPages = 'Izmena PDF strana';
+$strEditPrivileges = 'Promijeni privilegije';
+$strEffective = 'Efektivne';
+$strEmpty = 'Isprazni';
+$strEmptyResultSet = 'MySQL je vratio prazan rezultat (nula redova).';
+$strEnabled = 'Omoguæeno';
+$strEnd = 'Kraj';
+$strEndCut = 'KRAJ REZ';
+$strEndRaw = 'KRAJ SIROVO';
+$strEnglish = 'Engleski';
+$strEnglishPrivileges = ' Napomena: MySQL imena privilegija moraju da budu na engleskom ';
+$strError = 'Greška';
+$strEstonian = 'Estonski';
+$strExcelOptions = 'Excel opcije';
+$strExecuteBookmarked = 'Izvrši upamæen upit';
+$strExplain = 'Objasni SQL';
+$strExport = 'Izvoz';
+$strExportToXML = 'Izvoz u XML format';
+$strExtendedInserts = 'Prošireni INSERT';
+$strExtra = 'Dodatno';
+
+$strFailedAttempts = 'Neuspelih pokušaja';
+$strField = 'Polje';
+$strFieldHasBeenDropped = 'Polje %s je obrisano';
+$strFields = 'Polja';
+$strFieldsEmpty = ' Broj polja je nula! ';
+$strFieldsEnclosedBy = 'Polja ogranièena sa';
+$strFieldsEscapedBy = 'Escape karakter ';
+$strFieldsTerminatedBy = 'Polja razdvojena sa';
+$strFileAlreadyExists = 'Datoteka %s veæ postoji na serveru, promijenite ime datoteke ili ukljuèite opciju prepisivanja.';
+$strFileCouldNotBeRead = 'Datoteku nije moguæe proèitati';
+$strFileNameTemplate = 'Šablon imena datoteke';
+$strFileNameTemplateHelp = 'Koristi __DB__ za ime baze, __TABLE__ za ime tabele i %sbilo koju strftime%s opciju za specifikaciju vremena, i ekstenzija æe automatski biti dodata. Sav ostali tekst biæe saèuvan.';
+$strFileNameTemplateRemember = 'zapamti šablon';
+$strFixed = 'uraðeno';
+$strFlushPrivilegesNote = 'Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje server koristi ako su izvršene ruène izmjene. U tom sluèaju %sponovo uèitajte privilegije%s pre nego što nastavite.';
+$strFlushTable = 'Osvježi tabelu ("FLUSH")';
+$strFormEmpty = 'Nedostaje vrijednost u obrascu!';
+$strFormat = 'Format';
+$strFullText = 'Pun tekst';
+$strFunction = 'Funkcija';
+
+$strGenBy = 'Generirao';
+$strGenTime = 'Vrijeme kreiranja';
+$strGeneralRelationFeat = 'Opšte osobine relacija';
+$strGerman = 'Njemaèki';
+$strGlobal = 'globalno';
+$strGlobalPrivileges = 'Globalne privilegije';
+$strGlobalValue = 'Globalna vrednost';
+$strGo = 'Kreni';
+$strGrantOption = 'Omoguæi';
+$strGrants = 'Omoguæi';
+$strGreek = 'Grèki';
+$strGzip = '"gzip-ovano"';
+
+$strHasBeenAltered = 'je promijenjen(a).';
+$strHasBeenCreated = 'je kreiran(a).';
+$strHaveToShow = 'Morate izabrati bar jednu kolonu za prikaz';
+$strHebrew = 'Jevrejski';
+$strHome = 'Poèetna strana';
+$strHomepageOfficial = 'phpMyAdmin veb sajt';
+$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download stranica';
+$strHost = 'Host';
+$strHostEmpty = 'Ime hosta je prazno!';
+$strHungarian = 'Maðarski';
+
+$strId = 'ID';
+$strIdxFulltext = 'Tekst kljuè';
+$strIfYouWish = 'Ako želite da izlistate samo neke kolone u tabeli, navedite ih razdvojene zarezom';
+$strIgnore = 'Ignoriši';
+$strIgnoringFile = 'Ignorišem fajl %s';
+$strImportDocSQL = 'Uvoz docSQL fajlova';
+$strImportFiles = 'Uvoz fajlova';
+$strImportFinished = 'Uvoz završen';
+$strInUse = 'se koristi';
+$strIndex = 'Kljuè';
+$strIndexHasBeenDropped = 'Kljuè %s je obrisan';
+$strIndexName = 'Ime kljuèa :';
+$strIndexType = 'Tip kljuèa :';
+$strIndexes = 'Kljuèevi';
+$strInnodbStat = 'InnoDB status';
+$strInsecureMySQL = 'Vaš konfiguracioni fajl sadrži podešavanja (root bez lozinke) koja odgovaraju standardnom MySQL privilegovanom nalogu. Vaš MySQL server radi sa ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite ovaj sigurnosni rizik.';
+$strInsert = 'Novi zapis';
+$strInsertAsNewRow = 'Unesi kao novi red';
+$strInsertNewRow = 'Unesi novi red';
+$strInsertTextfiles = 'Uvezi podatke iz tekstualne datoteke';
+$strInsertedRowId = 'ID umetnutih redova:';
+$strInsertedRows = 'Uneseno redova:';
+$strInstructions = 'Uputstva';
+$strInvalidName = '"%s" je rezervirana rijeè, \nne možete je koristiti kao ime polja, tabele ili baze.';
+
+$strJapanese = 'Japanski';
+$strJumpToDB = 'Preði na bazu "%s".';
+$strJustDelete = 'Samo obriši korisnike iz tabele privilegija.';
+$strJustDeleteDescr = '"Obrisani" korisnici æe i dalje imati pristup serveru dok privilegije ne budu ponovo uèitane.';
+
+$strKeepPass = 'Nemoj da mijenjaš lozinku';
+$strKeyname = 'Ime kljuèa';
+$strKill = 'Obustavi';
+$strKorean = 'Korejski';
+
+$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'LaTeX opcije';
+$strLandscape = 'Položeno';
+$strLength = 'Dužina';
+$strLengthSet = 'Dužina/Vrijednost*';
+$strLimitNumRows = 'Broj redova po strani';
+$strLineFeed = 'Oznaka za kraj linije: \\n';
+$strLines = 'Linije';
+$strLinesTerminatedBy = 'Linije se završavaju sa';
+$strLinkNotFound = 'Veza nije pronaðena';
+$strLinksTo = 'Veze ka';
+$strLithuanian = 'Litvanski';
+$strLoadExplanation = 'Najbolji metod je veæ izabran, ali ga možete promijeniti ako ne radi.';
+$strLoadMethod = 'LOAD metod';
+$strLocalhost = 'Lokalni';
+$strLocationTextfile = 'Lokacija tekstualne datoteke';
+$strLogPassword = 'Lozinka:';
+$strLogUsername = 'Korisnièko ime:';
+$strLogin = 'Prijavljivanje';
+$strLoginInformation = 'Podatci o prijavi';
+$strLogout = 'Odjavljivanje';
+
+$strMIME_MIMEtype = 'MIME-tipovi';
+$strMIME_available_mime = 'Dostupni MIME-tipovi';
+$strMIME_available_transform = 'Dostupne transformacije';
+$strMIME_description = 'Opis';
+$strMIME_file = 'Ime datoteke';
+$strMIME_nodescription = 'Nema opisa za ovu transformaciju. Molimo pitajte autora šta %s radi.';
+$strMIME_transformation = 'Tranformacije èitaèa';
+$strMIME_transformation_note = 'Za listu dostupnih opcija transformacije i njihove transformacije MIME-tipova, kliknite na %sopise transformacija%s';
+$strMIME_transformation_options = 'Opcije transformacije';
+$strMIME_transformation_options_note = 'Molimo unesite vrijednosti za opcije transformacije koristeæi ovaj oblik: \'a\',\'b\',\'c\'... Ako treba da unesete obrnutu kosu crtu ("\\") ili apostrof ("\'") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na primjer \'\\\\xyz\' ili \'a\\\'b\').';
+$strMIME_without = 'MIME-tipovi prikazani u kursivu nemaju odvojene funkcije transformacije.';
+$strMissingBracket = 'Nedostaje zagrada';
+$strModifications = 'Izmjene su saèuvane';
+$strModify = 'Promijeni';
+$strModifyIndexTopic = 'Izmijeni kljuè';
+$strMoreStatusVars = 'Još statusnih promjenljivih';
+$strMoveTable = 'Pomjeri tabelu u (baza. tabela):';
+$strMoveTableOK = 'Tabela %s je pomjerena u %s.';
+$strMoveTableSameNames = 'Ne mogu da premjestim tabelu u samu sebe!';
+$strMultilingual = 'višejezièki';
+$strMustSelectFile = 'Morate izabrati datoteku koju želite da umetnete.';
+$strMySQLCharset = 'MySQL set karaktera';
+$strMySQLReloaded = 'MySQL ponovo pokrenut.';
+$strMySQLSaid = 'MySQL kaže: ';
+$strMySQLServerProcess = 'MySQL %pma_s1% pokrenut na %pma_s2%, prijavljen kao %pma_s3%';
+$strMySQLShowProcess = 'Prikaži listu procesa';
+$strMySQLShowStatus = 'Prikaži MySQL informacije o toku rada';
+$strMySQLShowVars = 'Prikaži MySQL sistemske promenljive';
+
+$strName = 'Ime';
+$strNext = 'Slijedeæi';
+$strNo = 'Ne';
+$strNoDatabases = 'Baza ne postoji';
+$strNoDatabasesSelected = 'Nije izabrana ni jedna baza.';
+$strNoDescription = 'nema opisa';
+$strNoDropDatabases = '"DROP DATABASE" komanda je onemoguæena.';
+$strNoExplain = 'Preskoèi objašnjavanje SQL-a';
+$strNoFrames = 'phpMyAdmin preferira èitaèe koji podržavaju okvire.';
+$strNoIndex = 'Kljuè nije definisan!';
+$strNoIndexPartsDefined = 'Dijelovi kljuèa nisu definisani!';
+$strNoModification = 'Nema izmjena';
+$strNoOptions = 'Ne postoje opcije za ovaj format';
+$strNoPassword = 'Nema lozinke';
+$strNoPermission = 'Veb serveru nije dozvoljeno da saèuva datoteku %s.';
+$strNoPhp = 'bez PHP koda';
+$strNoPrivileges = 'Nema privilegija';
+$strNoQuery = 'Nema SQL upita!';
+$strNoRights = 'Nije Vam dozvoljeno da budete ovdje!';
+$strNoSpace = 'Nedovoljno prostora za snimanje datoteke %s.';
+$strNoTablesFound = 'Tabele nisu pronaðene u bazi.';
+$strNoUsersFound = 'Korisnik nije naðen.';
+$strNoUsersSelected = 'Korisnik nije izabran.';
+$strNoValidateSQL = 'Preskoèi provjeru SQL-a';
+$strNone = 'nema';
+$strNotNumber = 'Ovo nije broj!';
+$strNotOK = 'nije u redu';
+$strNotSet = '%s tabela nije pronaðena ili nije postavljena u %s';
+$strNotValidNumber = 'nije odgovarajuæi broj kolone!';
+$strNull = 'Null';
+$strNumSearchResultsInTable = '%s pogodaka unutar tabele %s ';
+$strNumSearchResultsTotal = 'Ukupno: %s pogodaka';
+$strNumTables = 'Tabele';
+
+$strOK = 'U redu';
+$strOftenQuotation = 'Navodnici koji se koriste. OPCIONO se misli da neka polja mogu, ali ne moraju da budu pod znacima navoda.';
+$strOperations = 'Operacije';
+$strOptimizeTable = 'Optimiziraj tabelu';
+$strOptionalControls = 'Opciono. Znak koji prethodi specijalnim znacima.';
+$strOptionally = 'OPCIONO';
+$strOptions = 'Opcije';
+$strOr = 'ili';
+$strOverhead = 'Prekoraèenje';
+$strOverwriteExisting = 'Prepiši postojeæe fajlove';
+
+$strPHP40203 = 'Koristite PHP 4.2.3, koji ima ozbiljnu gresku sa višebajtnim stringovima (mbstring). Pogledajte izvještaj o grešci br. 19404. Ova verzija PHP-a se ne preporuèuje za korišæenje sa phpMyAdmin.';
+$strPHPVersion = 'verzija PHP-a';
+$strPageNumber = 'Broj strane:';
+$strPaperSize = 'Dimenzije papira';
+$strPartialText = 'Dio teksta';
+$strPassword = 'Lozinka';
+$strPasswordChanged = 'Lozinka za %s je uspješno promjenjena.';
+$strPasswordEmpty = 'Lozinka je prazna!';
+$strPasswordNotSame = 'Lozinke nisu identiène!';
+$strPdfDbSchema = 'Shema baze "%s" - Strana %s';
+$strPdfInvalidPageNum = 'Nedefinisan broj PDF strane!';
+$strPdfInvalidTblName = 'Tabela "%s" ne postoji!';
+$strPdfNoTables = 'Nema tabela';
+$strPerHour = 'na sat';
+$strPerMinute = 'u minuti';
+$strPerSecond = 'u sekundi';
+$strPhoneBook = 'telefonski imenik';
+$strPhp = 'Napravi PHP kod';
+$strPmaDocumentation = 'phpMyAdmin dokumentacija';
+$strPmaUriError = '$cfg[\'PmaAbsoluteUri\'] direktiva MORA biti podješena u konfiguracionoj datoteci!';
+$strPortrait = 'Uspravno';
+$strPos1 = 'Poèetak';
+$strPrevious = 'Prethodna';
+$strPrimary = 'Primarni';
+$strPrimaryKey = 'Primarni kljuè';
+$strPrimaryKeyHasBeenDropped = 'Primarni kljuè je obrisan';
+$strPrimaryKeyName = 'Ime primarnog kljuèa mora da bude... PRIMARY!';
+$strPrimaryKeyWarning = '("PRIMARY" mora biti ime samo primarnog kljuèa!)';
+$strPrint = 'Štampaj';
+$strPrintView = 'Za štampu';
+$strPrivDescAllPrivileges = 'Ukljuèuje sve privilegije osim GRANT.';
+$strPrivDescAlter = 'Dozvoljava izmjenu struktura postojeæih tabela.';
+$strPrivDescCreateDb = 'Dozvoljava kreiranje novih baza i tabela.';
+$strPrivDescCreateTbl = 'Dozvoljava kreiranje novih tabela.';
+$strPrivDescCreateTmpTable = 'Dozvoljava kreiranje privremenih tabela..';
+$strPrivDescDelete = 'Dozvoljava brisanje podataka.';
+$strPrivDescDropDb = 'Dozvoljava odbacivanje baza i tabela.';
+$strPrivDescDropTbl = 'Dozvoljava odbacivanje tabela.';
+$strPrivDescExecute = 'Dozvoljava pokretanje saèuvanih procedura. Nema efekta u ovoj verziji MySQL-a.';
+$strPrivDescFile = 'Dozvoljava uvoz podataka i njihov izvoz u datoteke.';
+$strPrivDescGrant = 'Dozvoljava dodavanje korisnika i privilegija bez ponovnog uèitavanja tabela privilegija.';
+$strPrivDescIndex = 'Dozvoljava kreiranje i brisanje kljuèeva.';
+$strPrivDescInsert = 'Dozvoljava umetanje i zamjenu podataka.';
+$strPrivDescLockTables = 'Dozvoljava zakljuèavanje tabela tekuæim procesima.';
+$strPrivDescMaxConnections = 'Ogranièava broj novih konekcija koje korisnik može ta otvori na sat.';
+$strPrivDescMaxQuestions = 'Ogranièava broj upita koje korisnik može da uputi serveru za sat.';
+$strPrivDescMaxUpdates = 'Ogranièava broj komandi koje menjaju tabele ili baze koje korisnik može da izvrši na sat.';
+$strPrivDescProcess3 = 'Dozvoljava prekidanje procesa drugih korisnika.';
+$strPrivDescProcess4 = 'Dozvoljava pregled kompletnih upita u listi procesa.';
+$strPrivDescReferences = 'Nema efekta u ovoj verziji MySQL-a.';
+$strPrivDescReload = 'Dozvoljava ponovno uèitavanje podešavanja servera i pražnjenje keša servera.';
+$strPrivDescReplClient = 'Daje pravo korisniku da pita gde su glavni/pomoæni serveri.';
+$strPrivDescReplSlave = 'Potrebno zbog pomoænih servera za replikaciju.';
+$strPrivDescSelect = 'Dozvoljava èitanje podataka.';
+$strPrivDescShowDb = 'Daje pristup kompletnoj listi baza.';
+$strPrivDescShutdown = 'Dozvoljava gašenje servera.';
+$strPrivDescSuper = ' Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; Neophodno za veæinu administrativnih opcija kao što su podešavanje globalnih promenljivih ili prekidanje procesa ostalih korisnika.';
+$strPrivDescUpdate = 'Dozvoljava izmenu podataka.';
+$strPrivDescUsage = 'Nema privilegija.';
+$strPrivileges = 'Privilegije';
+$strPrivilegesReloaded = 'Privilegije su uspešno ponovo uèitane.';
+$strProcesslist = 'Lista procesa';
+$strProperties = 'Svojstva';
+$strPutColNames = 'Stavi imena polja u prvi red';
+
+$strQBE = 'Upit po primeru';
+$strQBEDel = 'Del';
+$strQBEIns = 'Ins';
+$strQueryFrame = 'Prozor za upite';
+$strQueryFrameDebug = 'Debugging informacije';
+$strQueryFrameDebugBox = 'Aktivne promjenljive za formular sa upitom:\nDB: %s\nTabela: %s\nServer: %s\n\nTrenutne promenljive za formular sa upitom:\nDB: %s\nTabela: %s\nServer: %s\n\nLokacija sa koje je otvoreno: %s\nLokacija okvira: %s.';
+$strQueryOnDb = 'SQL upit na bazi %s :';
+$strQuerySQLHistory = 'SQL istorijat';
+$strQueryStatistics = 'Statistike upita : %s upita je postavljeno serveru od njegovog pokretanja.';
+$strQueryTime = 'Upit je trajao %01.4f sekundi';
+$strQueryType = 'Vrsta upita';
+$strQueryWindowLock = 'Ne prepisuj ovaj upit izvan prozora';
+
+$strReType = 'Ponovite unos';
+$strReceived = 'Primljeno';
+$strRecords = 'Zapisi';
+$strReferentialIntegrity = 'Proveri referencijalni integritet:';
+$strRelationNotWorking = 'Dodatne moguænosti za rad sa povezanim tabelama su iskljuèene. Da biste saznali zašto, kliknite %sovde%s.';
+$strRelationView = 'Relacioni pogled';
+$strRelationalSchema = 'Relaciona shema';
+$strRelations = 'Relacije';
+$strReloadFailed = 'Ponovno pokretanje MySQL-a nije uspelo.';
+$strReloadMySQL = 'Ponovo pokreni MySQL';
+$strReloadingThePrivileges = 'Ponovo uèitavam privilegije';
+$strRememberReload = 'Ne zaboravite da ponovo pokrenete server.';
+$strRemoveSelectedUsers = 'Ukloni izabrane korisnike';
+$strRenameTable = 'Promjeni ime tabele u ';
+$strRenameTableOK = 'Tabeli %s promjenjeno ime u %s';
+$strRepairTable = 'Popravi tabelu';
+$strReplace = 'Zamijeni';
+$strReplaceNULLBy = 'Zamijeni NULL sa';
+$strReplaceTable = 'Zamijeni podatke u tabeli sa podatcima iz datoteke';
+$strReset = 'Resetuj';
+$strResourceLimits = 'Ogranièenja resursa';
+$strRevoke = 'Zabrani';
+$strRevokeAndDelete = 'Obustavi sve aktivne privilegije korisnika i zatim ih obriši.';
+$strRevokeAndDeleteDescr = 'Korisnici æe i dalje imati USAGE privilegije dok se privilegije ponovo ne uèitaju.';
+$strRevokeGrant = 'Zabrani GRANT';
+$strRevokeGrantMessage = 'Zabranili ste GRANT privilegije za %s';
+$strRevokeMessage = 'Zabranili ste privilegije za %s';
+$strRevokePriv = 'Zabrani privilegije';
+$strRowLength = 'Dužina reda';
+$strRowSize = 'Velièina reda';
+$strRows = 'Redova';
+$strRowsFrom = ' redova poèev od reda';
+$strRowsModeFlippedHorizontal = 'horizontalnom (rotirana zaglavlja)';
+$strRowsModeHorizontal = 'horizontalnom';
+$strRowsModeOptions = 'u %s modu i ponovi zaglavlje posle svakog %s reda';
+$strRowsModeVertical = 'vertikalnom';
+$strRowsStatistic = 'Statistike reda';
+$strRunQuery = 'Izvrši SQL upit';
+$strRunSQLQuery = 'Izvrši SQL upit(e) na bazi %s';
+$strRunning = 'na serveru %s';
+$strRussian = 'Ruski';
+
+$strSQL = 'SQL';
+$strSQLOptions = 'SQL opcije';
+$strSQLParserBugMessage = 'Postoji moguænost da ste pronašli gresku u SQL parseru. Molimo ispitajte svoj upit pažljivo, i provjerite da su navodnici ispravni i da ne nedostaju. Ostali moguæi razlozi greške mogu biti da ste poslali binarni fajl van oblasti za obièan tekst. Možete probati svoj upit u MySQL interfejsu komandne linije. Donja poruka o grešci MySQL servera, ako je ima, može vam pomoæi u otkrivanju problema. Ako i dalje imate probleme ili ako parser ne uspjeva tamo gde uspeva interfejs komandne linije, svedite svoj SQL upit na jedan jedini upit koji stvara probleme i pošaljite nam izvještaj o grešci sa delom koda u donjoj REZ sekciji:';
+$strSQLParserUserError = 'Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL servera, koja vam može pomoæi u otkrivanju problema';
+$strSQLQuery = 'SQL upit';
+$strSQLResult = 'SQL rezultat';
+$strSQPBugInvalidIdentifer = 'Neispravan identifikator';
+$strSQPBugUnclosedQuote = 'Navodnik nije zatvoren';
+$strSQPBugUnknownPunctuation = 'Nepoznat string interpunkcije';
+$strSave = 'Saèuvaj';
+$strSaveOnServer = 'Saèuvaj na server u direktorijum %s';
+$strScaleFactorSmall = 'Faktor umanjenja je premali da bi shema stala na jednu stranu';
+$strSearch = 'Pretraživanje';
+$strSearchFormTitle = 'Pretraživanje baze';
+$strSearchInTables = 'Unutar tabela:';
+$strSearchNeedle = 'Rijeèi ili vrednosti koje se traže (džoker: "%"):';
+$strSearchOption1 = 'bar jednu od rijeèi';
+$strSearchOption2 = 'sve rijeèi';
+$strSearchOption3 = 'taèan izraz';
+$strSearchOption4 = 'kao regularni izraz';
+$strSearchResultsFor = 'Rezultati pretrage za "%s " %s:';
+$strSearchType = 'Traži:';
+$strSecretRequired = 'Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret).';
+$strSelect = 'Selekcija';
+$strSelectADb = 'Izaberite bazu';
+$strSelectAll = 'Izaberi sve';
+$strSelectFields = 'Izaberi polja (najmanje jedno)';
+$strSelectNumRows = 'u upitu';
+$strSelectTables = 'Izaberi tabele';
+$strSend = 'Saèuvaj kao datoteku';
+$strSent = 'Poslato';
+$strServer = 'Server %s';
+$strServerChoice = 'Izbor servera';
+$strServerStatus = 'Informacije o toku rada';
+$strServerStatusUptime = 'Ovaj MySQL server radi veæ %s. Pokrenut je %s.';
+$strServerTabProcesslist = 'Procesi';
+$strServerTabVariables = 'Promjenljive';
+$strServerTrafficNotes = 'Saobraæaj servera : Tabele pokazuju statistike mrežnog saobraæaja na ovom MySQL serveru od njegovog pokretanja.';
+$strServerVars = 'Serverske promenljive i podešavanja';
+$strServerVersion = 'Verzija servera';
+$strSessionValue = 'Vrijednost sesije';
+$strSetEnumVal = 'Ako je polje "enum" ili "set", unesite vrijednosti u formatu: \'a\',\'b\',\'c\'... Ako vam treba obrnuta kosa crta ("\\") ili apostrof ("\'") koristite ih u "izbjegnutom" (escaped) obliku (na primer \'\\\\xyz\' ili \'a\\\'b\').';
+$strShow = 'Prikaži';
+$strShowAll = 'Prikaži sve';
+$strShowColor = 'Prikaži boju';
+$strShowCols = 'Prikaži kolone';
+$strShowDatadictAs = 'Format rijeènika podataka';
+$strShowFullQueries = 'Prikaži kompletne upite';
+$strShowGrid = 'Prikaži mrežu';
+$strShowPHPInfo = 'Prikaži informacije o PHP-u';
+$strShowTableDimension = 'Prikaži dimenzije tabele';
+$strShowTables = 'Prikaži tabele';
+$strShowThisQuery = 'Prikaži ponovo ovaj upit';
+$strShowingRecords = 'Prikaz zapisa';
+$strSimplifiedChinese = 'Pojednostavljeni kineski';
+$strSingly = '(po jednom polju)';
+$strSize = 'Velièina';
+$strSort = 'Sortiranje';
+$strSpaceUsage = 'Zauzeæe';
+$strSplitWordsWithSpace = 'Rijeèi se odvajaju razmakom (" ").';
+$strStatCheckTime = 'Posljednja provjera';
+$strStatCreateTime = 'Napravljeno';
+$strStatUpdateTime = 'Posljednja izmjena';
+$strStatement = 'Ime';
+$strStatus = 'Status';
+$strStrucCSV = 'CSV format';
+$strStrucData = 'Struktura i podatci';
+$strStrucDrop = 'Dodaj \'DROP TABLE\'';
+$strStrucExcelCSV = 'CSV za MS Excel';
+$strStrucOnly = 'Samo struktura';
+$strStructPropose = 'Predloži strukturu tabele';
+$strStructure = 'Struktura';
+$strSubmit = 'Pošalji';
+$strSuccess = 'Vaš SQL upit je uspešno izvršen';
+$strSum = 'Ukupno';
+$strSwedish = 'Švedski';
+$strSwitchToTable = 'Preði na kopiranu tabelu';
+
+$strTable = 'Tabela';
+$strTableComments = 'Komentari tabele';
+$strTableEmpty = 'Ima tabele je prazno!';
+$strTableHasBeenDropped = 'Tabela %s je odbaèena';
+$strTableHasBeenEmptied = 'Tabela %s je ispražnjena';
+$strTableHasBeenFlushed = 'Tabela %s je osvežena';
+$strTableMaintenance = 'Radnje na tabeli';
+$strTableOfContents = 'Sadržaj';
+$strTableOptions = 'Opcije tabele';
+$strTableStructure = 'Struktura tabele';
+$strTableType = 'Tip tabele';
+$strTables = '%s tabela';
+$strTblPrivileges = 'Privilegije vezane za tabele';
+$strTextAreaLength = 'Zbog njehove velièine, polje možda neæete moæi da izmenite';
+$strThai = 'Tajlandski ';
+$strTheContent = 'Sadržaj datoteke je dodat u bazu.';
+$strTheContents = 'Podatke sadržane u tabeli zameni sa podacima iz datoteke koji imaju identiène primarne i jedinstvene (unique) kljuèeve.';
+$strTheTerminator = 'Separator polja u datoteci.';
+$strThisHost = 'Ovaj server';
+$strThisNotDirectory = 'Ovo nije direktorijum';
+$strThreadSuccessfullyKilled = 'Proces %s je uspješno prekinut.';
+$strTime = 'Vrijeme';
+$strToggleScratchboard = 'Ukljuèuje/iskljuèuje scratchboard';
+$strTotal = 'ukupno';
+$strTotalUC = 'Ukupno';
+$strTraditionalChinese = 'Tradicionalni kineski';
+$strTraffic = 'Saobraæaj';
+$strTransformation_image_jpeg__inline = 'Prikazuje umanjenu sliku na koju je moguæe kliknuti; opcije: širina, visina u pikselima (èuva originalni odnos)';
+$strTransformation_image_jpeg__link = 'Prikazuje link ka ovoj slici (npr. direktno preuzimanje iz BLOB-a).';
+$strTransformation_image_png__inline = 'Prikaži JPEG slike na strani';
+$strTransformation_text_plain__dateformat = 'Uzima TIME, TIMESTAMP ili DATETIME polje i formatira ga koristeæi lokalni oblik prikazivanja datuma. Prva opcija je ofset (u satima) koji se dodaje vremenskoj oznaci (podrazumevano: 0). Druga opcija je razlièit format datuma prema parametrima koji su dostupni za PHP-ov strftime().';
+$strTransformation_text_plain__external = 'SAMO LINUX: Pokreæe eksternu aplikaciju i popunjava podatke u poljima preko standardnog ulaza. Vraæa standardni izlaz aplikacije. Podrazumevano je Tidy, za lepši prikaz HTML koda. Zbog sigurnosnih razloga, morate ruèno izmeniti datoteku libraries/transformations/text_plain__external.inc.php i dodati alate koje želite da koristite. Prva opcija je broj programa koje želite da koristite, a druga su parametri programa. Ako se treæi parametar postavi na 1 izlaz æe biti konvertovan koristeæi htmlspecialchars() (podrazumevano je 1). Ako je èetvrti parametar postavljen na 1, NOWRAP æe biti dodato æeliji sa sadržajem tako da æe izlaz biti prikazan bez izmena. (podrazumevano 1)';
+$strTransformation_text_plain__formatted = 'Èuva originalno formatiranje polja. Escaping se ne vrši.';
+$strTransformation_text_plain__imagelink = 'Prikazuje sliku i link, polje sadrži naziv datoteke; prva opcija je prefiks kao "http://domain.com/", druga opcija je širina u pikselima, treæa je visina.';
+$strTransformation_text_plain__link = 'Prikazuje link, polje sadrži naziv datoteke; prva opcija je prefiks kao "http://domain.com/", druga opcija je naslov za link.';
+$strTransformation_text_plain__substr = 'Pokazuje samo deo stringa. Prva opcija je ofset koji definiše gde poèinje izlaz vašeg teksta (podrazumevano 0). Druga opcija je ofset koji pokazuje koliko æe teksta biti prikazano. Ako je nema, sav preostali tekst æe biti prikazan. Treæa opcija odreðuje koji æe znaci biti dodati izlazu kada se prikaže podstring (podrazumevano: ...) .';
+$strTransformation_text_plain__unformatted = 'Prikazuje HTML kod kao HTML entitete. HTML formatiranje se ne prikazuje.';
+$strTruncateQueries = 'Prikaži skraæene upite';
+$strTurkish = 'Turski';
+$strType = 'Tip';
+
+$strUkrainian = 'Ukrajinski';
+$strUncheckAll = 'nijedno';
+$strUnicode = 'Unikod';
+$strUnique = 'Jedinstveni';
+$strUnknown = 'nepoznat';
+$strUnselectAll = 'ništa';
+$strUpdComTab = 'Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments';
+$strUpdatePrivMessage = 'Ažurirali ste privilegije za %s.';
+$strUpdateProfile = 'Promjeni profil:';
+$strUpdateProfileMessage = 'Profil je promjenjen.';
+$strUpdateQuery = 'Ažuriraj upit';
+$strUsage = 'Zauzeæe';
+$strUseBackquotes = 'Koristi \' za ogranièavanje imena polja';
+$strUseHostTable = 'Koristi tabelu hosta';
+$strUseTables = 'Koristi tabele';
+$strUseTextField = 'Koristi tekst polje';
+$strUseThisValue = 'Koristi ovu vrijednost';
+$strUser = 'Korisnik';
+$strUserAlreadyExists = 'Korisnik %s veæ postoji!';
+$strUserEmpty = 'Ime korisnika nije unijeto!';
+$strUserName = 'Ime korisnika';
+$strUserNotFound = 'Izabrani korisnik nije pronaðen u tabeli privilegija.';
+$strUserOverview = 'Pregled korisnika';
+$strUsers = 'Korisnici';
+$strUsersDeleted = 'Izabrani korisnici su uspješno obrisani.';
+$strUsersHavingAccessToDb = 'Korisnici koji imaju pristup "%s"';
+
+$strValidateSQL = 'Provjeri SQL';
+$strValidatorError = 'SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane neophodne PHP ekstenzije opisane u %sdokumentaciji%s.';
+$strValue = 'Vrijednost';
+$strVar = 'Promjenljiva';
+$strViewDump = 'Prikaži sadržaj (shemu) tabele';
+$strViewDumpDB = 'Prikaži sadržaj (shemu) baze';
+$strViewDumpDatabases = 'Prikaži sadržaj (shemu) baze';
+
+$strWebServerUploadDirectory = 'direkcija za slanje web servera ';
+$strWebServerUploadDirectoryError = 'Direkcija koju ste izabrali za slanje nije dostupna';
+$strWelcome = 'Dobrodošli na %s';
+$strWestEuropean = 'Zapadnoevropski';
+$strWildcard = 'Džoker';
+$strWindowNotFound = 'Odredišnji prozor pretraživaèa nije mogao da bude ažuriran. Možda ste zatvorili matièni prozor, ili vaš preraživaè onemoguæava ažuriranje meðu prozorima zbog sigurnosnih podešavanja';
+$strWithChecked = 'Oznaèeno:';
+$strWritingCommentNotPossible = 'Pisanje komentara nije moguæe';
+$strWritingRelationNotPossible = 'Upisivanje relacije nije moguæe';
+$strWrongUser = 'Pogrešno korisnièko ime/lozinka. Ulaz nije dozvoljen.';
+
+$strXML = 'XML';
+
+$strYes = 'Da';
+
+$strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.';
+$strZip = '"zipovano"';
+
+?>
diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php3 b/lang/brazilian_portuguese-iso-8859-1.inc.php3
index 72d96f389..b28ce2d5a 100644
--- a/lang/brazilian_portuguese-iso-8859-1.inc.php3
+++ b/lang/brazilian_portuguese-iso-8859-1.inc.php3
@@ -733,4 +733,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/brazilian_portuguese-utf-8.inc.php3 b/lang/brazilian_portuguese-utf-8.inc.php3
index 6593850b8..e1df88f39 100644
--- a/lang/brazilian_portuguese-utf-8.inc.php3
+++ b/lang/brazilian_portuguese-utf-8.inc.php3
@@ -734,4 +734,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/bulgarian-koi8-r.inc.php3 b/lang/bulgarian-koi8-r.inc.php3
index 82d15cbf2..2304d17bc 100644
--- a/lang/bulgarian-koi8-r.inc.php3
+++ b/lang/bulgarian-koi8-r.inc.php3
@@ -714,4 +714,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/bulgarian-utf-8.inc.php3 b/lang/bulgarian-utf-8.inc.php3
index ecc7b06a6..6201ba03f 100644
--- a/lang/bulgarian-utf-8.inc.php3
+++ b/lang/bulgarian-utf-8.inc.php3
@@ -715,4 +715,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/bulgarian-windows-1251.inc.php3 b/lang/bulgarian-windows-1251.inc.php3
index 9b1df07f4..1422cc141 100644
--- a/lang/bulgarian-windows-1251.inc.php3
+++ b/lang/bulgarian-windows-1251.inc.php3
@@ -714,4 +714,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/catalan-iso-8859-1.inc.php3 b/lang/catalan-iso-8859-1.inc.php3
index 154a7de2c..bc2ec210d 100644
--- a/lang/catalan-iso-8859-1.inc.php3
+++ b/lang/catalan-iso-8859-1.inc.php3
@@ -71,8 +71,10 @@ $strBeginCut = 'INICI DEL TALL';
$strBeginRaw = 'INICI DEL VOLCAT';
$strBinary = ' Binari ';
$strBinaryDoNotEdit = ' Binari - no editeu ';
+$strBookmarkAllUsers = 'Deixa accedir a cada usuari a aquesta consulta arxivada';
$strBookmarkDeleted = 'S\'ha esborrat la consulta arxivada.';
$strBookmarkLabel = 'Etiqueta';
+$strBookmarkOptions = 'Opcions de consulta arxivada';
$strBookmarkQuery = 'Consulta SQL arxivada';
$strBookmarkThis = 'Arxiva aquesta consulta SQL';
$strBookmarkView = 'Només mirar';
@@ -126,6 +128,8 @@ $strConfigFileError = 'phpMyAdmin
$strConfigureTableCoord = 'Configura les coordenades per la taula %s';
$strConfirm = 'Ho vols fer realment?';
$strConnections = 'Conexions';
+$strConstraintsForDumped = 'Restriccions per taules volcades';
+$strConstraintsForTable = 'Restriccions per la taula';
$strCookiesRequired = 'A partir d\'aquest punt és necessari tenir les Cookies activades.';
$strCopyTable = 'Copia taula a (base-de-dades. taula):';
$strCopyTableOK = 'La taula %s ha estat copiada a %s.';
@@ -293,6 +297,8 @@ $strInsertTextfiles = 'Inserir fitxers de text a la taula';
$strInsertedRowId = 'Id de la fila inserida:';
$strInsertedRows = 'Files Inserides:';
$strInstructions = 'Instruccions';
+$strInternalNotNecessary = '* No es necessita una relació interna si ja existeix a InnoDB.';
+$strInternalRelations = 'Relacions internes';
$strInvalidName = '"%s" és una paraula reservada, no es pot fer servir com a nom de base de dades/taula/camp.';
$strJapanese = 'Japonès';
@@ -308,6 +314,13 @@ $strKorean = 'Core
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Opcions LaTeX';
$strLandscape = 'Horitzontal';
+$strLatexCaption = 'Titol de Taula';
+$strLatexContent = 'Contingut de la taula __TABLE__';
+$strLatexContinued = '(continúa)';
+$strLatexContinuedCaption = 'Continuació del Titol de taula';
+$strLatexIncludeCaption = 'Inclusió del titol de taula';
+$strLatexLabel = 'Etiqueta de clau';
+$strLatexStructure = 'Estructura de la taula __TABLE__';
$strLength = 'Longitud';
$strLengthSet = 'Longitud/Valors*';
$strLimitNumRows = 'registres per plana';
@@ -322,6 +335,7 @@ $strLoadMethod = 'Metode de CARREGA';
$strLocalhost = 'Local';
$strLocationTextfile = 'Ubicació del fitxer de text';
$strLogPassword = 'Contrasenya:';
+$strLogServer = 'Servidor';
$strLogUsername = 'Nom d\'Usuari:';
$strLogin = 'Identificació';
$strLoginInformation = 'Informació d\'Identificació';
@@ -431,6 +445,7 @@ $strPrimaryKeyName = 'El nom de la clau principal ha de ser ... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" ha de ser el nom i només el nom de la clau principal!)';
$strPrint = 'Imprimir';
$strPrintView = 'Imprimir vista';
+$strPrintViewFull = 'Vista d\'impresió (amb texts sencers)';
$strPrivDescAllPrivileges = 'Inclou tots els permissos excepte GRANT (atorgar).';
$strPrivDescAlter = 'Permet alterar l\'estructura de taules existents.';
$strPrivDescCreateDb = 'Permet crear noves bases de dades i taules.';
@@ -528,6 +543,7 @@ $strSQLParserUserError = 'Sembla que hi ha un error a la consulta SQL. La sortid
$strSQLQuery = 'crida SQL';
$strSQLResult = 'Resultat SQL';
$strSQPBugInvalidIdentifer = 'Identificador Incorrecte';
+$strSQPBugUnclosedQuote = 'Cometa no tancada';
$strSQPBugUnclosedQuote = 'Cometes sense tancar';
$strSQPBugUnknownPunctuation = 'Signe de puntuació desconegut';
$strSave = 'Guardar';
@@ -579,6 +595,7 @@ $strSimplifiedChinese = 'Xin
$strSingly = '(només)';
$strSize = 'Mida';
$strSort = 'Classificació';
+$strSortByKey = 'Classifica per la clau';
$strSpaceUsage = 'Utilització d\'espai';
$strSplitWordsWithSpace = 'Paraules separades per un espai (" ").';
$strStatCheckTime = 'Darrera comprovació';
@@ -651,6 +668,7 @@ $strUpdatePrivMessage = 'Heu actualitzat els privilegis de %s.';
$strUpdateProfile = 'Actualitza perfil:';
$strUpdateProfileMessage = 'S\'ha actualitzat el perfil.';
$strUpdateQuery = 'Actualitza consulta';
+$strUpgradeMySQL = 'Es necessari actualitzar a MySQL %s o posterior.';
$strUsage = 'Ús';
$strUseBackquotes = 'Usa "backquotes" amb taules i noms de camps';
$strUseHostTable = 'Utilitza la Taula de Hosts';
@@ -694,16 +712,4 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/catalan-utf-8.inc.php3 b/lang/catalan-utf-8.inc.php3
index d26232dbc..a42599044 100644
--- a/lang/catalan-utf-8.inc.php3
+++ b/lang/catalan-utf-8.inc.php3
@@ -72,8 +72,10 @@ $strBeginCut = 'INICI DEL TALL';
$strBeginRaw = 'INICI DEL VOLCAT';
$strBinary = ' Binari ';
$strBinaryDoNotEdit = ' Binari - no editeu ';
+$strBookmarkAllUsers = 'Deixa accedir a cada usuari a aquesta consulta arxivada';
$strBookmarkDeleted = 'S\'ha esborrat la consulta arxivada.';
$strBookmarkLabel = 'Etiqueta';
+$strBookmarkOptions = 'Opcions de consulta arxivada';
$strBookmarkQuery = 'Consulta SQL arxivada';
$strBookmarkThis = 'Arxiva aquesta consulta SQL';
$strBookmarkView = 'Només mirar';
@@ -127,6 +129,8 @@ $strConfigFileError = 'phpMyAdmin és incapaç de llegir el fitxer de configurac
$strConfigureTableCoord = 'Configura les coordenades per la taula %s';
$strConfirm = 'Ho vols fer realment?';
$strConnections = 'Conexions';
+$strConstraintsForDumped = 'Restriccions per taules volcades';
+$strConstraintsForTable = 'Restriccions per la taula';
$strCookiesRequired = 'A partir d\'aquest punt és necessari tenir les Cookies activades.';
$strCopyTable = 'Copia taula a (base-de-dades. taula):';
$strCopyTableOK = 'La taula %s ha estat copiada a %s.';
@@ -294,6 +298,8 @@ $strInsertTextfiles = 'Inserir fitxers de text a la taula';
$strInsertedRowId = 'Id de la fila inserida:';
$strInsertedRows = 'Files Inserides:';
$strInstructions = 'Instruccions';
+$strInternalNotNecessary = '* No es necessita una relació interna si ja existeix a InnoDB.';
+$strInternalRelations = 'Relacions internes';
$strInvalidName = '"%s" és una paraula reservada, no es pot fer servir com a nom de base de dades/taula/camp.';
$strJapanese = 'Japonès';
@@ -309,6 +315,13 @@ $strKorean = 'Coreà ';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Opcions LaTeX';
$strLandscape = 'Horitzontal';
+$strLatexCaption = 'Titol de Taula';
+$strLatexContent = 'Contingut de la taula __TABLE__';
+$strLatexContinued = '(continúa)';
+$strLatexContinuedCaption = 'Continuació del Titol de taula';
+$strLatexIncludeCaption = 'Inclusió del titol de taula';
+$strLatexLabel = 'Etiqueta de clau';
+$strLatexStructure = 'Estructura de la taula __TABLE__';
$strLength = 'Longitud';
$strLengthSet = 'Longitud/Valors*';
$strLimitNumRows = 'registres per plana';
@@ -323,6 +336,7 @@ $strLoadMethod = 'Metode de CARREGA';
$strLocalhost = 'Local';
$strLocationTextfile = 'Ubicació del fitxer de text';
$strLogPassword = 'Contrasenya:';
+$strLogServer = 'Servidor';
$strLogUsername = 'Nom d\'Usuari:';
$strLogin = 'Identificació';
$strLoginInformation = 'Informació d\'Identificació';
@@ -432,6 +446,7 @@ $strPrimaryKeyName = 'El nom de la clau principal ha de ser ... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" ha de ser el nom i només el nom de la clau principal!)';
$strPrint = 'Imprimir';
$strPrintView = 'Imprimir vista';
+$strPrintViewFull = 'Vista d\'impresió (amb texts sencers)';
$strPrivDescAllPrivileges = 'Inclou tots els permissos excepte GRANT (atorgar).';
$strPrivDescAlter = 'Permet alterar l\'estructura de taules existents.';
$strPrivDescCreateDb = 'Permet crear noves bases de dades i taules.';
@@ -529,6 +544,7 @@ $strSQLParserUserError = 'Sembla que hi ha un error a la consulta SQL. La sortid
$strSQLQuery = 'crida SQL';
$strSQLResult = 'Resultat SQL';
$strSQPBugInvalidIdentifer = 'Identificador Incorrecte';
+$strSQPBugUnclosedQuote = 'Cometa no tancada';
$strSQPBugUnclosedQuote = 'Cometes sense tancar';
$strSQPBugUnknownPunctuation = 'Signe de puntuació desconegut';
$strSave = 'Guardar';
@@ -580,6 +596,7 @@ $strSimplifiedChinese = 'Xinés Simplificat';
$strSingly = '(només)';
$strSize = 'Mida';
$strSort = 'Classificació';
+$strSortByKey = 'Classifica per la clau';
$strSpaceUsage = 'Utilització d\'espai';
$strSplitWordsWithSpace = 'Paraules separades per un espai (" ").';
$strStatCheckTime = 'Darrera comprovació';
@@ -652,6 +669,7 @@ $strUpdatePrivMessage = 'Heu actualitzat els privilegis de %s.';
$strUpdateProfile = 'Actualitza perfil:';
$strUpdateProfileMessage = 'S\'ha actualitzat el perfil.';
$strUpdateQuery = 'Actualitza consulta';
+$strUpgradeMySQL = 'Es necessari actualitzar a MySQL %s o posterior.';
$strUsage = 'Ús';
$strUseBackquotes = 'Usa "backquotes" amb taules i noms de camps';
$strUseHostTable = 'Utilitza la Taula de Hosts';
@@ -695,16 +713,4 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/chinese_big5-utf-8.inc.php3 b/lang/chinese_big5-utf-8.inc.php3
index f7fc2ad9b..7571d2f77 100644
--- a/lang/chinese_big5-utf-8.inc.php3
+++ b/lang/chinese_big5-utf-8.inc.php3
@@ -699,22 +699,28 @@ $strYes = ' 是 ';
$strZeroRemovesTheLimit = '註: è¨å®šé€™äº›é¸é …為 0 (é›¶) å¯è§£é™¤é™åˆ¶.';
$strZip = '"zipped"';
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
+$strBrowseForeignValues = 'ç€è¦½å¤–來值';
-$strUseThisValue = 'Use this value'; //to translate
+$strUseThisValue = '使用æ¤å€¼';
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
+$strWindowNotFound = '目地的視窗無法更新. å¯èƒ½ä½ 已關閉æ¤è¦–çª—æˆ–ä½ çš„ç€è¦½å™¨æ–¼å®‰å…¨è¨å®šå…§å•Ÿå‹•了無法跨視窗更新';
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strInternalRelations = '內部關è¯';
+$strInternalNotNecessary = '* 當內部關è¯åœ¨ InnoDB å·²å˜åœ¨æ™‚是無需è¦çš„.';
+$strUpgradeMySQL = '您應該更新到 MySQL %s 或之後.';
+$strLatexStructure = '資料表 __TABLE__ çµæ§‹';
+$strLatexContinued = '(連續)';
+$strLatexContent = '資料表 __TABLE__ 內容';
+$strLatexIncludeCaption = '包括資料表標題';
+$strLatexCaption = '資料表標題';
+$strLatexLabel = '標記éµå';
+$strLatexContinuedCaption = '連續資料表標題';
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strPrintViewFull = 'åˆ—å°æª¢è¦– (顯示完整文å—)';
+$strLogServer = '伺æœå™¨';
+$strSortByKey = 'ä¾éµå排åº';
+$strBookmarkAllUsers = '所有用者å¯è®€å–æ¤æ›¸ç±¤';
+$strConstraintsForDumped = '備份資料表é™åˆ¶';
+$strConstraintsForTable = '資料表é™åˆ¶';
+$strBookmarkOptions = '書籤é¸é …';
?>
diff --git a/lang/chinese_big5.inc.php3 b/lang/chinese_big5.inc.php3
index 7ba8f40f0..c0657457e 100644
--- a/lang/chinese_big5.inc.php3
+++ b/lang/chinese_big5.inc.php3
@@ -615,7 +615,7 @@ $strTableHasBeenFlushed = '
$strTableMaintenance = '¸ê®ÆªíºûÅ@';
$strTableOfContents = '¥Ø¿ý';
$strTableOptions = '¸ê®Æªí¿ï¶µ';
-$strTableStructure = '¸ê®Æªí®æ¦¡¡G';
+$strTableStructure = '¸ê®Æªíµ²ºc¡G';
$strTableType = '¸ê®ÆªíÃþ«¬';
$strTables = '%s ¸ê®Æªí';
$strTblPrivileges = '«ü©w¸ê®ÆªíÅv';
@@ -698,22 +698,28 @@ $strYes = '
$strZeroRemovesTheLimit = 'µù: ³]©w³o¨Ç¿ï¶µ¬° 0 (¹s) ¥i¸Ñ°£¨î.';
$strZip = '"zipped"';
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
+$strBrowseForeignValues = 'ÂsÄý¥~¨ÓÈ';
-$strUseThisValue = 'Use this value'; //to translate
+$strUseThisValue = '¨Ï¥Î¦¹È';
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
+$strWindowNotFound = '¥Ø¦aªºµøµ¡µLªk§ó·s. ¥i¯à§A¤wÃö³¬¦¹µøµ¡©Î§AªºÂsÄý¾¹©ó¦w¥þ³]©w¤º±Ò°Ê¤FµLªk¸óµøµ¡§ó·s';
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strInternalRelations = '¤º³¡ÃöÁp';
+$strInternalNotNecessary = '* ·í¤º³¡ÃöÁp¦b InnoDB ¤w¦s¦b®É¬OµL»Ýnªº.';
+$strUpgradeMySQL = '±zÀ³¸Ó§ó·s¨ì MySQL %s ©Î¤§«á.';
+$strLatexStructure = '¸ê®Æªí __TABLE__ µ²ºc';
+$strLatexContinued = '(³sÄò)';
+$strLatexContent = '¸ê®Æªí __TABLE__ ¤º®e';
+$strLatexIncludeCaption = '¥]¬A¸ê®Æªí¼ÐÃD';
+$strLatexCaption = '¸ê®Æªí¼ÐÃD';
+$strLatexLabel = '¼Ð°OÁä¦W';
+$strLatexContinuedCaption = '³sÄò¸ê®Æªí¼ÐÃD';
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strPrintViewFull = '¦C¦LÀ˵ø (Åã¥Ü§¹¾ã¤å¦r)';
+$strLogServer = '¦øªA¾¹';
+$strSortByKey = '¨ÌÁä¦W±Æ§Ç';
+$strBookmarkAllUsers = '©Ò¦³¥ÎªÌ¥iŪ¨ú¦¹®ÑÅÒ';
+$strConstraintsForDumped = '³Æ¥÷¸ê®Æªí¨î';
+$strConstraintsForTable = '¸ê®Æªí¨î';
+$strBookmarkOptions = '®ÑÅÒ¿ï¶µ';
?>
diff --git a/lang/chinese_gb-utf-8.inc.php3 b/lang/chinese_gb-utf-8.inc.php3
index 835a21a85..f9ee32097 100644
--- a/lang/chinese_gb-utf-8.inc.php3
+++ b/lang/chinese_gb-utf-8.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/chinese_gb.inc.php3 b/lang/chinese_gb.inc.php3
index 5473cdee6..bd620e053 100644
--- a/lang/chinese_gb.inc.php3
+++ b/lang/chinese_gb.inc.php3
@@ -710,4 +710,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/croatian-iso-8859-2.inc.php3 b/lang/croatian-iso-8859-2.inc.php3
index 94c308d20..5836887c8 100644
--- a/lang/croatian-iso-8859-2.inc.php3
+++ b/lang/croatian-iso-8859-2.inc.php3
@@ -732,4 +732,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/croatian-utf-8.inc.php3 b/lang/croatian-utf-8.inc.php3
index a25a5c4e8..b4c6bc1e8 100644
--- a/lang/croatian-utf-8.inc.php3
+++ b/lang/croatian-utf-8.inc.php3
@@ -733,4 +733,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/croatian-windows-1250.inc.php3 b/lang/croatian-windows-1250.inc.php3
index f60fc5b39..f8461a668 100644
--- a/lang/croatian-windows-1250.inc.php3
+++ b/lang/croatian-windows-1250.inc.php3
@@ -732,4 +732,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/czech-iso-8859-2.inc.php3 b/lang/czech-iso-8859-2.inc.php3
index cdbf6544f..624ceab8d 100644
--- a/lang/czech-iso-8859-2.inc.php3
+++ b/lang/czech-iso-8859-2.inc.php3
@@ -77,8 +77,10 @@ $strBeginCut = 'ZA
$strBeginRaw = 'ZAÈÁTEK VÝPISU';
$strBinary = ' Binární ';
$strBinaryDoNotEdit = ' Binární - neupravujte ';
+$strBookmarkAllUsers = 'Umo¾nit v¹em u¾ivatelùm pou¾ívat tuto polo¾ku';
$strBookmarkDeleted = 'Polo¾ka byla smazána z oblíbených.';
$strBookmarkLabel = 'Název';
+$strBookmarkOptions = 'Nastavení oblíbeného dotazu';
$strBookmarkQuery = 'Oblíbený SQL dotaz';
$strBookmarkThis = 'Pøidat tento SQL dotaz do oblíbených';
$strBookmarkView = 'Jen zobrazit';
@@ -132,6 +134,8 @@ $strConfigFileError = 'phpMyAdmin nemohl na
$strConfigureTableCoord = 'Prosím, nastavte souøadnice pro tabulku %s';
$strConfirm = 'Opravdu chcete toto provést?';
$strConnections = 'Pøipojení';
+$strConstraintsForDumped = 'Omezení pro exportované tabulky';
+$strConstraintsForTable = 'Omezení pro tabulku';
$strCookiesRequired = 'Bìhem tohoto kroku musíte mít povoleny cookies.';
$strCopyTable = 'Kopírovat tabulku do (databáze. tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
@@ -337,6 +341,7 @@ $strLoadMethod = 'Parametry pro p
$strLocalhost = 'Lokální';
$strLocationTextfile = 'textový soubor';
$strLogPassword = 'Heslo:';
+$strLogServer = 'Server';
$strLogUsername = 'Jméno:';
$strLogin = 'Pøihlá¹ení';
$strLoginInformation = 'Pøihla¹ování';
@@ -595,6 +600,7 @@ $strSimplifiedChinese = 'Zjedodu
$strSingly = '(po jednom)';
$strSize = 'Velikost';
$strSort = 'Øadit';
+$strSortByKey = 'Setøídit podle klíèe';
$strSpaceUsage = 'Vyu¾ití místa';
$strSplitWordsWithSpace = 'Slova jsou oddìlena mezerou (" ").';
$strStatCheckTime = 'Poslední kontrola';
diff --git a/lang/czech-utf-8.inc.php3 b/lang/czech-utf-8.inc.php3
index 80c91b5fc..363f160f2 100644
--- a/lang/czech-utf-8.inc.php3
+++ b/lang/czech-utf-8.inc.php3
@@ -78,8 +78,10 @@ $strBeginCut = 'ZAÄŒÃTEK VÃPISU';
$strBeginRaw = 'ZAÄŒÃTEK VÃPISU';
$strBinary = ' Binárnà ';
$strBinaryDoNotEdit = ' Binárnà - neupravujte ';
+$strBookmarkAllUsers = 'Umožnit vÅ¡em uživatelům použÃvat tuto položku';
$strBookmarkDeleted = 'Položka byla smazána z oblÃbených.';
$strBookmarkLabel = 'Název';
+$strBookmarkOptions = 'Nastavenà oblÃbeného dotazu';
$strBookmarkQuery = 'OblÃbený SQL dotaz';
$strBookmarkThis = 'PÅ™idat tento SQL dotaz do oblÃbených';
$strBookmarkView = 'Jen zobrazit';
@@ -133,6 +135,8 @@ $strConfigFileError = 'phpMyAdmin nemohl naÄÃst konfiguraÄnà soubor! Ta
$strConfigureTableCoord = 'ProsÃm, nastavte souÅ™adnice pro tabulku %s';
$strConfirm = 'Opravdu chcete toto provést?';
$strConnections = 'PÅ™ipojenÃ';
+$strConstraintsForDumped = 'Omezenà pro exportované tabulky';
+$strConstraintsForTable = 'Omezenà pro tabulku';
$strCookiesRequired = 'BÄ›hem tohoto kroku musÃte mÃt povoleny cookies.';
$strCopyTable = 'KopÃrovat tabulku do (databáze. tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkopÃrována do %s.';
@@ -338,6 +342,7 @@ $strLoadMethod = 'Parametry pro pÅ™Ãkaz LOAD';
$strLocalhost = 'LokálnÃ';
$strLocationTextfile = 'textový soubor';
$strLogPassword = 'Heslo:';
+$strLogServer = 'Server';
$strLogUsername = 'Jméno:';
$strLogin = 'PÅ™ihlášenÃ';
$strLoginInformation = 'PÅ™ihlaÅ¡ovánÃ';
@@ -596,6 +601,7 @@ $strSimplifiedChinese = 'ZjedoduÅ¡ená ÄŒÃnÅ¡tina';
$strSingly = '(po jednom)';
$strSize = 'Velikost';
$strSort = 'Řadit';
+$strSortByKey = 'SetÅ™Ãdit podle klÃÄe';
$strSpaceUsage = 'Využità mÃsta';
$strSplitWordsWithSpace = 'Slova jsou oddělena mezerou (" ").';
$strStatCheckTime = 'Poslednà kontrola';
diff --git a/lang/czech-windows-1250.inc.php3 b/lang/czech-windows-1250.inc.php3
index d816ef271..68ea81e04 100644
--- a/lang/czech-windows-1250.inc.php3
+++ b/lang/czech-windows-1250.inc.php3
@@ -77,8 +77,10 @@ $strBeginCut = 'ZA
$strBeginRaw = 'ZAÈÁTEK VÝPISU';
$strBinary = ' Binární ';
$strBinaryDoNotEdit = ' Binární - neupravujte ';
+$strBookmarkAllUsers = 'Umožnit všem uživatelùm používat tuto položku';
$strBookmarkDeleted = 'Položka byla smazána z oblíbených.';
$strBookmarkLabel = 'Název';
+$strBookmarkOptions = 'Nastavení oblíbeného dotazu';
$strBookmarkQuery = 'Oblíbený SQL dotaz';
$strBookmarkThis = 'Pøidat tento SQL dotaz do oblíbených';
$strBookmarkView = 'Jen zobrazit';
@@ -132,6 +134,8 @@ $strConfigFileError = 'phpMyAdmin nemohl na
$strConfigureTableCoord = 'Prosím, nastavte souøadnice pro tabulku %s';
$strConfirm = 'Opravdu chcete toto provést?';
$strConnections = 'Pøipojení';
+$strConstraintsForDumped = 'Omezení pro exportované tabulky';
+$strConstraintsForTable = 'Omezení pro tabulku';
$strCookiesRequired = 'Bìhem tohoto kroku musíte mít povoleny cookies.';
$strCopyTable = 'Kopírovat tabulku do (databáze. tabulka):';
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
@@ -337,6 +341,7 @@ $strLoadMethod = 'Parametry pro p
$strLocalhost = 'Lokální';
$strLocationTextfile = 'textový soubor';
$strLogPassword = 'Heslo:';
+$strLogServer = 'Server';
$strLogUsername = 'Jméno:';
$strLogin = 'Pøihlášení';
$strLoginInformation = 'Pøihlašování';
@@ -595,6 +600,7 @@ $strSimplifiedChinese = 'Zjedodu
$strSingly = '(po jednom)';
$strSize = 'Velikost';
$strSort = 'Øadit';
+$strSortByKey = 'Setøídit podle klíèe';
$strSpaceUsage = 'Využití místa';
$strSplitWordsWithSpace = 'Slova jsou oddìlena mezerou (" ").';
$strStatCheckTime = 'Poslední kontrola';
diff --git a/lang/danish-iso-8859-1.inc.php3 b/lang/danish-iso-8859-1.inc.php3
index ccc1a5fce..431155bfb 100644
--- a/lang/danish-iso-8859-1.inc.php3
+++ b/lang/danish-iso-8859-1.inc.php3
@@ -727,4 +727,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/danish-utf-8.inc.php3 b/lang/danish-utf-8.inc.php3
index 84c6a1ffd..4497ca974 100644
--- a/lang/danish-utf-8.inc.php3
+++ b/lang/danish-utf-8.inc.php3
@@ -728,4 +728,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/dutch-iso-8859-1.inc.php3 b/lang/dutch-iso-8859-1.inc.php3
index e5a91a997..2874297e8 100644
--- a/lang/dutch-iso-8859-1.inc.php3
+++ b/lang/dutch-iso-8859-1.inc.php3
@@ -25,9 +25,13 @@ $strAPrimaryKey = 'Een primaire sleutel is toegevoegd aan %s';
$strAbortedClients = 'Afgehaakte';
$strAbsolutePathToDocSqlDir = 'Geef een absoluut pad op de webserver aan naar de docSQL directory';
$strAccessDenied = 'Toegang geweigerd ';
+$strAccessDeniedExplanation = 'phpMyAdmin probeerde met de MySQL server te verbinden maar de server weigerde de verbinding. Controleer de host, de gebruikersnaam en het wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de informatie die u van de Beheerder van de MySQL server kreeg.';
$strAction = 'Actie';
+$strAddAutoIncrement = 'Voeg AUTO_INCREMENT waarde toe';
$strAddDeleteColumn = 'Toevoegen/Verwijderen Veld Kolommen';
$strAddDeleteRow = 'Toevoegen/Verwijderen Criteria Rij';
+$strAddDropDatabase = 'Voeg DROP DATABASE toe';
+$strAddIntoComments = 'Voeg toe in commentaar';
$strAddNewField = 'Nieuw veld toevoegen';
$strAddPriv = 'Voeg nieuwe rechten toe';
$strAddPrivMessage = 'U heeft nieuwe rechten toegevoegd.';
@@ -56,12 +60,17 @@ $strAnyDatabase = 'Een willekeurige database';
$strAnyHost = 'Een willekeurige host';
$strAnyTable = 'Een willekeurige tabel';
$strAnyUser = 'Een willekeurige gebruiker';
+$strArabic = 'Arabisch';
+$strArmenian = 'Armenian';
$strAscending = 'Oplopend';
$strAtBeginningOfTable = 'Aan het begin van de tabel';
$strAtEndOfTable = 'Aan het eind van de tabel';
$strAttr = 'Attributen';
+$strAutodetect = 'Auto detectie';
+$strAutomaticLayout = 'Automatische lay-out';
$strBack = 'Terug';
+$strBaltic = 'Baltisch';
$strBeginCut = 'Begin KNIP';
$strBeginRaw = 'Begin RAW';
$strBinary = ' Binair ';
@@ -72,9 +81,12 @@ $strBookmarkQuery = 'Opgeslagen SQL-query';
$strBookmarkThis = 'Sla deze SQL-query op';
$strBookmarkView = 'Alleen bekijken';
$strBrowse = 'Verkennen';
+$strBrowseForeignValues = 'Bekijk vreemde waardes';
+$strBulgarian = 'Bulgaars';
$strBzError = 'phpMyAdmin is er niet in geslaagd om de dump te comprimeren doordat de Bz2 extensie in deze php versie niet functioneert. Het wordt sterk aangeraden om de instelling $cfg[\'BZipDump\']
in uw phpMyAdmin configuratie bestand op FALSE
te zetten. Als u Bz2 compressie wilt gebruiken zult u moeten upgraden naar een latere php versie. Zie php bug report %s voor meer informatie.';
$strBzip = '"ge-bzipt"';
+$strCSVOptions = 'CSV opties';
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
$strCantLoad = 'Kan de %s extentie niet laden, Controleer de PHP Configuratie';
$strCantLoadMySQL = 'kan de MySQL extensie niet laden, controleer de PHP configuratie.';
@@ -83,6 +95,9 @@ $strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
$strCardinality = 'Kardinaliteit';
$strCarriage = 'Harde return: \\r';
+$strCaseInsensitive = 'hoofdletter ongevoelig';
+$strCaseSensitive = 'hoofdletter gevoelig';
+$strCentralEuropean = 'Centraal Europees';
$strChange = 'Veranderen';
$strChangeCopyMode = 'Maak een nieuwe gebruiker aan met dezelfde privileges en ...';
$strChangeCopyModeCopy = '... behoud de oude.';
@@ -92,7 +107,10 @@ $strChangeCopyModeRevoke = ' ... herstel alle actieve privileges van de oude en
$strChangeCopyUser = 'Wijzig de Login Informatie / Kopieer gebruiker';
$strChangeDisplay = 'Kies weer te geven veld';
$strChangePassword = 'Wijzig paswoord';
+$strCharset = 'Karakterset';e
$strCharsetOfFile = 'Karakter set van het bestand:';
+$strCharsets = 'Karaktersets';
+$strCharsetsAndCollations = 'Karakter Sets en Collations';
$strCheckAll = 'Selecteer alles';
$strCheckDbPriv = 'Controleer database rechten';
$strCheckPrivs = 'Controleer privileges';
@@ -100,6 +118,7 @@ $strCheckPrivsLong = 'Controleer privileges voor database "%s".';
$strCheckTable = 'Controleer tabel';
$strChoosePage = 'Kies een pagina om aan te passen';
$strColComFeat = 'Toon kolom commentaar';
+$strCollation = 'Collation';
$strColumn = 'Kolom';
$strColumnNames = 'Kolom namen';
$strColumnPrivileges = 'Kolom-specifieke privileges';
@@ -114,6 +133,7 @@ $strConnections = 'Connecties';
$strCookiesRequired = 'Cookies moeten aan staan voorbij dit punt.';
$strCopyTable = 'Kopieer tabel naar (database. tabel):';
$strCopyTableOK = 'Tabel %s is gekopieerd naar %s.';
+$strCopyTableSameNames = 'Kan de tabel niet naar dezelfde kopiëren!';
$strCouldNotKill = 'phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het al gesloten.';
$strCreate = 'Aanmaken';
$strCreateIndex = 'Creëer een index op kolommen %s ';
@@ -123,7 +143,11 @@ $strCreateNewTable = 'Nieuwe tabel aanmaken in database %s';
$strCreatePage = 'Creëer een nieuwe pagina';
$strCreatePdfFeat = 'Aanmaken van PDF bestanden';
$strCriteria = 'Criteria';
+$strCroatian = 'Croaties';
+$strCyrillic = 'Cyrillic';
+$strCzech = 'Tsjechisch';
+$strDBComment = 'Database commentaar: ';
$strDBGContext = 'Context';
$strDBGContextID = 'Context ID';
$strDBGHits = 'Hits';
@@ -133,11 +157,14 @@ $strDBGMinTimeMs = 'Min tijd, ms';
$strDBGModule = 'Module';
$strDBGTimePerHitMs = 'Tijd/Hit, ms';
$strDBGTotalTimeMs = 'Totaal tijd, ms';
+$strDanish = 'Deens';
$strData = 'Data';
$strDataDict = 'Data Woordenboek';
$strDataOnly = 'Alleen data';
$strDatabase = 'Database ';
+$strDatabaseExportOptions = 'Database export opties';
$strDatabaseHasBeenDropped = 'Database %s is vervallen.';
+$strDatabaseNoTable = 'Deze database bevat geen tabel!';
$strDatabaseWildcard = 'Database (wildcards toegestaan):';
$strDatabases = 'databases';
$strDatabasesDropped = '%s databases zijn succesvol verwijderd.';
@@ -149,6 +176,7 @@ $strDbPrivileges = 'Database-specifieke privileges';
$strDbSpecific = 'database-specifiek';
$strDefault = 'Standaardwaarde';
$strDefaultValueHelp = 'Voer voor standaard waarden aub een enkele waarde in, zonder backslash of aanhalingstekens, gebruik makend van dit formaat: a';
+$strDelOld = 'De huidige pagina heeft referenties met tabellen die niet langer bestaan. Wilt u deze referenties verwijderen?';
$strDelete = 'Verwijderen';
$strDeleteAndFlush = 'Verwijder de gebruikers en vernieuw de privileges daarna.';
$strDeleteAndFlushDescr = 'Dit is de nette manier, maar het vernieuwen van de privileges kan even duren.';
@@ -158,6 +186,8 @@ $strDeleted = 'De rij is verwijderd';
$strDeletedRows = 'Verwijder rijen:';
$strDeleting = 'Verwijderen van %s';
$strDescending = 'Aflopend';
+$strDescription = 'Beschrijving';
+$strDictionary = 'Woordenboek';
$strDisabled = 'Uitgeschakeld';
$strDisplay = 'Laat zien';
$strDisplayFeat = 'Toon Opties';
@@ -171,6 +201,8 @@ $strDropDB = 'Verwijder database %s';
$strDropSelectedDatabases = 'Geselecteerde databases verwijderen';
$strDropTable = 'Verwijder tabel';
$strDropUsersDb = 'Verwijder de databasen die dezelfde naam hebben als de gebruikers.';
+$strDumpComments = 'Voeg column comments in als inline SQL-comments';
+$strDumpSaved = 'Dump is bewaard als %s.';
$strDumpXRows = '%s rijen aan het dumpen, start bij rij %s.';
$strDumpingData = 'Gegevens worden uitgevoerd voor tabel';
$strDynamic = 'dynamisch';
@@ -185,8 +217,12 @@ $strEnabled = 'Ingeschakeld';
$strEnd = 'Einde';
$strEndCut = 'Einde KNIP';
$strEndRaw = 'Einde RAW';
+$strEnglish = 'Engels';
$strEnglishPrivileges = ' Aantekening: de namen van de MySQL rechten zijn uitgelegd in het Engels ';
$strError = 'Fout';
+$strEstonian = 'Estonian';
+$strExcelOptions = 'Excel opties';
+$strExecuteBookmarked = 'Voor de gebookmarkte query uit';
$strExplain = 'Verklaar SQL';
$strExport = 'Exporteer';
$strExportToXML = 'Exporteer naar XML formaat';
@@ -201,7 +237,11 @@ $strFieldsEmpty = ' Het velden aantal is leeg! ';
$strFieldsEnclosedBy = 'Velden ingesloten door';
$strFieldsEscapedBy = 'Velden ontsnapt door';
$strFieldsTerminatedBy = 'Velden beëindigd door';
+$strFileAlreadyExists = 'Bestaand %s bestaat al op de server, verander de bestandsnaam of controleer overschrijf opties.';
$strFileCouldNotBeRead = 'Bestand kon niet worden gelezen';
+$strFileNameTemplate = 'File naam template';
+$strFileNameTemplateHelp = 'Gebruik __DB__ voor de database naam, __TABLE__ voor tabel naam en %sany strftime%s opties voor tijd specificaties, extensies zullen automatisch worden bijgevoegd. Elke andere tekst zal worden bewaard.';
+$strFileNameTemplateRemember = 'Onthoud template';
$strFixed = 'vast';
$strFlushPrivilegesNote = 'Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL privileges tabel. De content van deze tabel kan verschillen met de rechten van de server als er handmatig aanpassingen zijn aangebracht. Mocht dit het geval zijn dan moet men %sde privilege table vernieuwen%s voordat men verder gaat.';
$strFlushTable = 'Schoon de tabel ("FLUSH")';
@@ -213,22 +253,26 @@ $strFunction = 'Functie';
$strGenBy = 'Gegenereerd door';
$strGenTime = 'Generatie Tijd';
$strGeneralRelationFeat = 'Basis relatie opties';
+$strGerman = 'Duits';
$strGlobal = 'globaal';
$strGlobalPrivileges = 'Globale privileges';
$strGlobalValue = 'Globale waarde';
$strGo = 'Start';
$strGrantOption = 'Toekennen';
$strGrants = 'Toekennen';
+$strGreek = 'Grieks';
$strGzip = '"ge-gzipt"';
$strHasBeenAltered = 'is veranderd.';
$strHasBeenCreated = 'is aangemaakt.';
$strHaveToShow = 'Er moet ten minste 1 weer te geven kolom worden gekozen';
+$strHebrew = 'Hebreeuws';
$strHome = 'Home';
$strHomepageOfficial = 'Officiële phpMyAdmin Website';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Pagina';
$strHost = 'Host';
$strHostEmpty = 'De hostnaam is leeg!';
+$strHungarian = 'Hongaars';
$strId = 'ID';
$strIdxFulltext = 'Volledige tekst';
@@ -244,15 +288,20 @@ $strIndexHasBeenDropped = 'Index %s is vervallen';
$strIndexName = 'Index naam :';
$strIndexType = 'Index type :';
$strIndexes = 'Indices';
+$strInnodbStat = 'InnoDB Status';
$strInsecureMySQL = 'Uw configuratie bestand bevat instellingen (root zonder wachtwoord) die betrekking hebben tot de standaard MySQL account. Uw MySQL server draait met deze standaard waardes, en is open voor ongewilde toegang, het wordt dus aangeraden dit op te lossen.';
$strInsert = 'Invoegen';
$strInsertAsNewRow = 'Voeg toe als nieuwe rij';
$strInsertNewRow = 'Nieuwe rij invoegen';
$strInsertTextfiles = 'Invoegen tekstbestanden in tabel';
+$strInsertedRowId = 'Ingevoegde rij id:';
$strInsertedRows = 'Ingevoegde rijen:';
$strInstructions = 'Instructies';
+$strInternalNotNecessary = '* Een interne relatie is niet nodig wanneer er ook een InnoDB aanwezig is.';
+$strInternalRelations = 'Interne relaties';
$strInvalidName = '"%s" is een gereserveerd woord, u kunt het niet gebruiken voor een database/tabel/veld naam.';
+$strJapanese = 'Japans';
$strJumpToDB = 'Ga naar database "%s".';
$strJustDelete = 'Verwijder gewoon de gebruikers van de privileges tabel.';
$strJustDeleteDescr = 'De "verwijderde" gebruikers zullen de server kunnen gebruiken zoals altijd zolang de privileges nog niet zijn vernieuwd.';
@@ -260,9 +309,18 @@ $strJustDeleteDescr = 'De "verwijderde" gebruikers zullen de server ku
$strKeepPass = 'Wijzig het wachtwoord niet';
$strKeyname = 'Sleutelnaam';
$strKill = 'stop proces';
+$strKorean = 'Koreaans';
$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'LaTeX opties';
$strLandscape = 'Landschap';
+$strLatexCaption = 'Tabel caption';
+$strLatexContent = 'Content van tabel __TABLE__';
+$strLatexContinued = '(vervolgd)';
+$strLatexContinuedCaption = 'Vervolgde tabel caption';
+$strLatexIncludeCaption = 'Voeg tabel caption toe';
+$strLatexLabel = 'Label sleutel';
+$strLatexStructure = 'Structuur van de tabel __TABLE__';
$strLength = 'Lengte';
$strLengthSet = 'Lengte/Waardes*';
$strLimitNumRows = 'records per pagina';
@@ -271,6 +329,9 @@ $strLines = 'Regels';
$strLinesTerminatedBy = 'Regels beëindigd door';
$strLinkNotFound = 'Link niet gevonden';
$strLinksTo = 'Gelinked naar';
+$strLithuanian = 'Lithuanian';
+$strLoadExplanation = 'De beste methode is aan gevinkt standaard maar u kunt dit veranderen mocht het niet lukken.';
+$strLoadMethod = 'LOAD methode';
$strLocalhost = 'Local';
$strLocationTextfile = 'Locatie van het tekstbestand';
$strLogPassword = 'Wachtwoord:';
@@ -279,6 +340,17 @@ $strLogin = 'Inloggen';
$strLoginInformation = 'Login Informatie';
$strLogout = 'Uitloggen';
+$strMIME_MIMEtype = 'MIME-type';
+$strMIME_available_mime = 'Beschikbare MIME-types';
+$strMIME_available_transform = 'Beschikbare transformaties';
+$strMIME_description = 'Beschrijving';
+$strMIME_file = 'Filenaam';
+$strMIME_nodescription = 'Geen beschrijving beschikbaar voor deze transformatie. Raadpleeg de maker over wat %s doet.';
+$strMIME_transformation = 'Browser transformaties';
+$strMIME_transformation_note = 'Voor een lijst met beschikbare transformatie opties en MIME-type transformaties, klik op %sTransformatie opties%s';
+$strMIME_transformation_options = 'Transformatie opties';
+$strMIME_transformation_options_note = 'Voeg de waardes voor transformatie optie in het volgende formaat in: \'a\',\'b\',\'c\'... Wanneer u een backslash ("\") of een enkele quote ("\'") moet invoegen in deze waardes, backslashes het dan (bijvoorbeeld \'\\\\xyz\' of \'a\\\'b\').';
+$strMIME_without = 'MIME-types die in italics staan (Schuin) hebben geen aparte transformatie functies';
$strMissingBracket = 'Er ontbreekt een bracket';
$strModifications = 'Wijzigingen opgeslagen.';
$strModify = 'Aanpassen';
@@ -286,6 +358,9 @@ $strModifyIndexTopic = 'Wijzig een index';
$strMoreStatusVars = 'Meer status variabelen';
$strMoveTable = 'Verplaats tabel naar (database. tabel):';
$strMoveTableOK = 'Tabel %s is verplaatst naar %s.';
+$strMoveTableSameNames = 'Kan de tabel niet naar dezelfde verplaatsen!';
+$strMultilingual = 'multilingual';
+$strMustSelectFile = 'U moet een bestand selecteren welke u wilt invoegen.';
$strMySQLCharset = 'MySQL Karakterset';
$strMySQLReloaded = 'MySQL opnieuw geladen.';
$strMySQLSaid = 'MySQL retourneerde: ';
@@ -306,11 +381,14 @@ $strNoFrames = 'phpMyAdmin is werkt gebruiksvriendelijker met een browser die $cfg[\'PmaAbsoluteUri\'] richtlijn MOET gezet zijn in het configuratie bestand!';
@@ -361,6 +444,7 @@ $strPrimaryKeyName = 'De naam van de primaire sleutel moet PRIMARY zijn!';
$strPrimaryKeyWarning = '("PRIMARY" moet de naam van en alleen van een primaire sleutel zijn!)';
$strPrint = 'Afdrukken';
$strPrintView = 'Printopmaak';
+$strPrintViewFull = 'Print overzicht (met volledige teksten)';
$strPrivDescAllPrivileges = 'Bevat alle privileges behalve GRANT.';
$strPrivDescAlter = 'Maakt het mogelijk de structuur van bestaande tabellen aan te passen.';
$strPrivDescCreateDb = 'Maakt het mogelijk om nieuwe databases en tabellen te maken.';
@@ -399,9 +483,15 @@ $strPutColNames = 'Plaats veldnamen in de eerste rij';
$strQBE = 'Query opbouwen';
$strQBEDel = 'Verwijder';
$strQBEIns = 'Toevoegen';
+$strQueryFrame = 'Query window';
+$strQueryFrameDebug = 'Debugging informatie';
+$strQueryFrameDebugBox = 'Actieve variabelen voor het formaat van de query:\nDB: %s\nTabel: %s\nServer: % s\n\nHuidige variabelen voor het formaat van de query:\nDB: %s\nTabel: %s\nServer: %s\n\nOpener locatie: %s\nFrameset locatie: %s.';
$strQueryOnDb = 'SQL-query op database %s :';
+$strQuerySQLHistory = 'SQL-geschiedenis';
$strQueryStatistics = 'Query statistieken : Sinds het opstarten zijn er, %s queries gestuurd naar de server.';
+$strQueryTime = 'Query duurde %01.4f sec';
$strQueryType = 'Query type';
+$strQueryWindowLock = 'Overschrijf deze query niet van buitenaf dit scherm';
$strReType = 'Type opnieuw';
$strReceived = 'Ontvangen';
@@ -410,6 +500,7 @@ $strReferentialIntegrity = 'Controleer referenti
$strRelationNotWorking = 'Extra opties om met tabellen te werken die gelinked zijn, zijn uitgeschakeld. Om te weten te komen waarom klik %shier%s.';
$strRelationView = 'Relatie overzicht';
$strRelationalSchema = 'Relationeel schema';
+$strRelations = 'Relaties';
$strReloadFailed = 'Opnieuw laden van MySQL mislukt.';
$strReloadMySQL = 'MySQL opnieuw laden.';
$strReloadingThePrivileges = 'Bezig de privileges te vernieuwen';
@@ -419,6 +510,7 @@ $strRenameTable = 'Tabel hernoemen naar';
$strRenameTableOK = 'Tabel %s is hernoemt naar %s';
$strRepairTable = 'Repareer tabel';
$strReplace = 'Vervangen';
+$strReplaceNULLBy = 'Vervang NULL door';
$strReplaceTable = 'Vervang tabelgegevens met het bestand';
$strReset = 'Opnieuw';
$strResourceLimits = 'Resource limitaties';
@@ -433,6 +525,7 @@ $strRowLength = 'Lengte van de rij';
$strRowSize = ' Grootte van de rij';
$strRows = 'Rijen';
$strRowsFrom = 'rijen beginnend bij';
+$strRowsModeFlippedHorizontal = 'horizontaal (rotated headers)';
$strRowsModeHorizontal = 'horizontaal';
$strRowsModeOptions = 'in %s modus en herhaal kopregels na %s cellen';
$strRowsModeVertical = 'verticaal';
@@ -440,8 +533,10 @@ $strRowsStatistic = 'Rij statistiek';
$strRunQuery = 'Query uitvoeren';
$strRunSQLQuery = 'Draai SQL query/queries op database %s';
$strRunning = 'wordt uitgevoerd op %s';
+$strRussian = 'Russisch';
$strSQL = 'SQL';
+$strSQLOptions = 'SQL opties';
$strSQLParserBugMessage = 'Er is een kans dat u een fout heeft aangetroffen in de SQL parser. Let er goed op, dat de query op de correcte plaatsen quotes heeft. Een ander mogelijkheid voor deze foutmelding kan zijn dat u het ge-quote text gedeelte in bineary mode heeft. U kunt ook uw query proberen in de command line van MySQL. De MySQL server foutmelding hieronder, mocht die aanwezig zijn, kan ook helpen met het opsporen van fouten. Blijft u problemen houden of als de parser fouten geeft terwijl het goed gaat in de command line van MySQL, probeer dan de SQL query in te korten en een bug report met het stukje data te sturen van het CUT gedeelte hieronder:';
$strSQLParserUserError = 'Er schijnt een fout te zijn in uw SQL query. Mocht de MySQL server een error hebben terug gegeven, probeer dan of uw hiermee uw fout kunt oplossen.';
$strSQLQuery = 'SQL-query';
@@ -450,6 +545,7 @@ $strSQPBugInvalidIdentifer = 'Ongeldige Identifer';
$strSQPBugUnclosedQuote = 'Quote niet afgesloten';
$strSQPBugUnknownPunctuation = 'Onbekende Punctuatie String';
$strSave = 'Opslaan';
+$strSaveOnServer = 'Bewaar op de server in %s directory';
$strScaleFactorSmall = 'De schaal factor is te klein om het schema op een pagina te zetten';
$strSearch = 'Zoeken';
$strSearchFormTitle = 'Zoeken in de database';
@@ -461,6 +557,7 @@ $strSearchOption3 = 'de exacte zin';
$strSearchOption4 = 'als een reguliere expressie';
$strSearchResultsFor = 'Zoek resultaten voor "%s " %s:';
$strSearchType = 'Zoek:';
+$strSecretRequired = 'Het configuratie bestand heeft nu een geheime wachtwoord zin nodig (blowfish_secret).';
$strSelect = 'Selecteren';
$strSelectADb = 'Selecteer A.U.B. een database';
$strSelectAll = 'Selecteer alles';
@@ -485,17 +582,22 @@ $strShowAll = 'Toon alles';
$strShowColor = 'Toon kleur';
$strShowCols = 'Toon kolommen';
$strShowDatadictAs = 'Data Dictionary Formaat';
+$strShowFullQueries = 'Toon volledige Queries';
$strShowGrid = 'Toon grid';
$strShowPHPInfo = 'Laat informatie over PHP zien';
$strShowTableDimension = 'Geef de dimensies van de tabellen weer';
$strShowTables = 'Toon tabellen';
$strShowThisQuery = ' Laat deze query hier zien ';
$strShowingRecords = 'Toon Records';
+$strSimplifiedChinese = 'Vereenvoudigd Chinese';
$strSingly = '(apart)';
$strSize = 'Grootte';
$strSort = 'Sorteren';
$strSpaceUsage = 'Ruimte gebruik';
$strSplitWordsWithSpace = 'Woorden worden gesplit door een spatie karakter (" ").';
+$strStatCheckTime = 'Laatst gecontroleerd';
+$strStatCreateTime = 'Gecreëerd';
+$strStatUpdateTime = 'Laatst bijgewerkt';
$strStatement = 'Opdrachten';
$strStatus = 'Status';
$strStrucCSV = 'CSV gegevens';
@@ -508,6 +610,8 @@ $strStructure = 'Structuur';
$strSubmit = 'Verzenden';
$strSuccess = 'Uw SQL-query is succesvol uitgevoerd.';
$strSum = 'Som';
+$strSwedish = 'Zweeds';
+$strSwitchToTable = 'Wissel naar de gekopieerde tabel';
$strTable = 'Tabel';
$strTableComments = 'Tabel opmerkingen';
@@ -517,11 +621,13 @@ $strTableHasBeenEmptied = 'Tabel %s is leeg gemaakt';
$strTableHasBeenFlushed = 'Tabel %s is geschoond';
$strTableMaintenance = 'Tabel onderhoud';
$strTableOfContents = 'Inhoudsopgave';
+$strTableOptions = 'Tabel opties';
$strTableStructure = 'Tabel structuur voor tabel';
$strTableType = 'Tabel type';
$strTables = '%s tabel(len)';
$strTblPrivileges = 'Tabel-specifieke privileges';
$strTextAreaLength = ' Vanwege z\'n lengte, is dit veld misschien niet te wijzigen ';
+$strThai = 'Thais';
$strTheContent = 'De inhoud van uw bestand is ingevoegd.';
$strTheContents = 'De inhoud van het bestand vervangt de inhoud van de geselecteerde tabel voor rijen met een identieke primaire of unieke sleutel.';
$strTheTerminator = 'De afsluiter van de velden.';
@@ -529,22 +635,43 @@ $strThisHost = 'Deze Host';
$strThisNotDirectory = 'Dit was geen directory';
$strThreadSuccessfullyKilled = 'Thread %s is met success afgesloten.';
$strTime = 'Tijd';
+$strToggleScratchboard = 'toggle scratchboard';
$strTotal = 'totaal';
$strTotalUC = 'Totaal';
+$strTraditionalChinese = 'Traditioneel Chinees';
$strTraffic = 'Verkeer';
+$strTransformation_image_jpeg__inline = 'Toont een klik bare thumbnail; opties: width,height in pixels (houdt de originele ratio)';
+$strTransformation_image_jpeg__link = 'Toont een link naar deze image (directe blob download, i.e.).';
+$strTransformation_image_png__inline = 'Zie image/jpeg: inline';
+$strTransformation_text_plain__dateformat = 'Neemt een TIME, TIMESTAMP of DATETIME veld en vormt het naar uw lokale datumformaat. Eerst optie is de offset (in uren) welke zal worden toegevoegd aan de timestamp (Default: 0). De tweede opties is een ander datumformaat volgens de parameters beschikbaar volgens PHPs strftime().';
+$strTransformation_text_plain__external = 'ALLEEN LINUX: Lanceert een externe applicatie en voed het de veld data via standaard input. Geeft standaard output van de applicatie terug. Default is Netjes, om nette HTML code te tonen. Om beveiligings redenen zult u handmatig het bestand libraries/transformations/text_plain__external.inc.php moeten aanpassen en de tools die u mag draaien invoegen. De eerste opties is het nummer van het programma wat u wilt gebruiken, de tweede optie zijn de parameters voor dit programma. Het derde parameter, wanneer ingesteld op 1, zal de output omzetten door middel van htmlspecialchars() (Standaard is 1). Een vierde parameter, wanneer ingesteld als 1 zal NOWRAQP aan de content cell toevoegen, zodat de gehele output getoond zal worden zonder te herstructureren (Standaard 1)';
+$strTransformation_text_plain__formatted = 'Preserveert het originele formaat van het veld. Er wordt geen Escaping toegepast.';
+$strTransformation_text_plain__imagelink = 'Toont een plaatje en een link, het veld bevat de bestandsnaam; De eerste optie is een prefix als "http://domein.com/", de tweede optie is de breedte in pixels, de derde is de hoogte.';
+$strTransformation_text_plain__link = 'Toont een link, het veld bevat de bestandsnaam; De eerste optie is een prefix als "http://domein.com/", de tweede optie is de titel voor de link.';
+$strTransformation_text_plain__substr = 'Toont alleen een stuk van een string. De eerst optie is een offset om te bepalen waar de output van uw tekst start (Standaard 0). De tweede optie is een offset van de hoeveel tekst die terug wordt gegeven. Wanneer leeg, zal het alle overgebleven tekst teruggeven. De derde optie defineerd welke karakters worden toegevoegd aan de output wanneer een substring wordt teruggegeven (Standaard: ...) .';
+$strTransformation_text_plain__unformatted = 'Toont HTML code als HTML entities. Er wordt geen HTML formatting getoond.';
+$strTruncateQueries = 'Truncate getoonde Queries';
+$strTurkish = 'Turks';
$strType = 'Type';
+$strUkrainian = 'Ukrainian';
$strUncheckAll = 'Deselecteer alles';
+$strUnicode = 'Unicode';
$strUnique = 'Unieke waarde';
+$strUnknown = 'onbekend';
$strUnselectAll = 'Deselecteer alles';
+$strUpdComTab = 'Raadpleeg de Documentatie over hoe u uw Column_comments tabel bijwerkt.';
$strUpdatePrivMessage = 'U heeft de rechten aangepast voor %s.';
$strUpdateProfile = 'Pas profiel aan:';
$strUpdateProfileMessage = 'Het profiel is aangepast.';
$strUpdateQuery = 'Wijzig Query';
+$strUpgradeMySQL = 'U moet opwaarderen naar MySQL %s of hoger.';
$strUsage = 'Gebruik';
$strUseBackquotes = 'Gebruik backquotes (`) bij tabellen en velden\' namen';
+$strUseHostTable = 'Gebruik Host Tabel';
$strUseTables = 'Gebruik tabellen';
$strUseTextField = 'Gebruik tekstveld';
+$strUseThisValue = 'Gebruik deze waarde';
$strUser = 'Gebruiker';
$strUserAlreadyExists = 'De gebruiker %s bestaat al!';
$strUserEmpty = 'De gebruikersnaam is leeg!';
@@ -561,165 +688,34 @@ $strValue = 'Waarde';
$strVar = 'Variabelen';
$strViewDump = 'Bekijk een dump (schema) van tabel';
$strViewDumpDB = 'Bekijk een dump (schema) van database';
+$strViewDumpDatabases = 'Bekijk dump (schema) van de databases';
$strWebServerUploadDirectory = 'web-server upload directory';
$strWebServerUploadDirectoryError = 'De directory die u heeft ingesteld om te uploaden kan niet worden bereikt.';
$strWelcome = 'Welkom op %s';
+$strWestEuropean = 'West Europees';
$strWildcard = 'joker teken';
+$strWindowNotFound = 'Het doel browser scherm kon niet worden bijgewerkt. Misschien heeft u het scherm gesloten of uw browser blokkeert bijwerkingen van uw browser beveiliging';
$strWithChecked = 'Met geselecteerd:';
$strWritingCommentNotPossible = 'Het toevoegen van commentaar is niet mogelijk';
$strWritingRelationNotPossible = 'Toevoegen van een relatie is niet mogelijk';
$strWrongUser = 'Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd.';
+$strXML = 'XML';
+
$strYes = 'Ja';
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
$strZip = '"Gezipt"';
// To translate
-$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
-$strAutomaticLayout = 'Automatic layout'; //to translate
-$strCSVOptions = 'CSV options';//to translate
+$strLogServer = 'Server'; //to translate
-$strDBComment = 'Database comment: ';//to translate
-$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
-$strDumpComments = 'Include column comments as inline SQL-comments';//to translate
+$strSortByKey = 'Sort by key'; //to translate
-$strFileNameTemplate = 'File name template';//to translate
-$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';//to translate
-$strFileNameTemplateRemember = 'remember template';//to translate
-
-$strInnodbStat = 'InnoDB Status'; //to translate
-
-$strMIME_MIMEtype = 'MIME-type';//to translate
-$strMIME_available_mime = 'Available MIME-types';//to translate
-$strMIME_available_transform = 'Available transformations';//to translate
-$strMIME_description = 'Description';//to translate
-$strMIME_file = 'Filename';//to translate
-$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.';//to translate
-$strMIME_transformation = 'Browser transformation';//to translate
-$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s';//to translate
-$strMIME_transformation_options = 'Transformation options';//to translate
-$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate
-$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate
-
-$strNoOptions = 'This format has no options';//to translate
-
-$strPerMinute = 'per minute';//to translate
-$strPerSecond = 'per second';//to translate
-
-$strQueryFrame = 'Query window';//to translate
-$strQueryFrameDebug = 'Debugging information';//to translate
-$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.';//to translate
-$strQuerySQLHistory = 'SQL-history';//to translate
-$strQueryTime = 'Query took %01.4f sec';//to translate
-
-$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate
-
-$strSQLOptions = 'SQL options';//to translate
-$strStatCheckTime = 'Last check';//to translate
-$strStatCreateTime = 'Creation';//to translate
-$strStatUpdateTime = 'Last update';//to translate
-
-$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
-$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).';//to translate
-$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
-$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().';//to translate
-$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)';//to translate
-$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.';//to translate
-$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .';//to translate
-$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.';//to translate
-
-$strXML = 'XML';//to translate
-
-$strAutodetect = 'Autodetect'; //to translate
-$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
-$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
-$strUseHostTable = 'Use Host Table'; //to translate
-$strShowFullQueries = 'Show Full Queries'; //to translate
-$strTruncateQueries = 'Truncate Shown Queries'; //to translate
-$strSwitchToTable = 'Switch to copied table'; //to translate
-$strCharset = 'Charset'; //to translate
-$strLaTeXOptions = 'LaTeX options'; //to translate
-$strRelations = 'Relations'; //to translate
-$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
-$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
-$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
-$strSaveOnServer = 'Save on server in %s directory'; //to translate
-$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
-$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
-$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
-$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
-$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
-$strInsertedRowId = 'Inserted row id:'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
-$strExcelOptions = 'Excel options'; //to translate
-$strReplaceNULLBy = 'Replace NULL by'; //to translate
-$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
-$strPaperSize = 'Paper size'; //to translate
-$strDatabaseNoTable = 'This database contains no table!';//to translate
-$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
-$strAddIntoComments = 'Add into comments';//to translate
-$strDatabaseExportOptions = 'Database export options';//to translate
-$strAddDropDatabase = 'Add DROP DATABASE';//to translate
-$strToggleScratchboard = 'toggle scratchboard'; //to translate
-$strTableOptions = 'Table options'; //to translate
-$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
-$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strCharsets = 'Charsets'; //to translate
-$strDescription = 'Description'; //to translate
-$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
-$strCollation = 'Collation'; //to translate
-$strMultilingual = 'multilingual'; //to translate
-$strGerman = 'German'; //to translate
-$strPhoneBook = 'phone book'; //to translate
-$strDictionary = 'dictionary'; //to translate
-$strSwedish = 'Swedish'; //to translate
-$strDanish = 'Danish'; //to translate
-$strCzech = 'Czech'; //to translate
-$strTurkish = 'Turkish'; //to translate
-$strEnglish = 'English'; //to translate
-$strHungarian = 'Hungarian'; //to translate
-$strCroatian = 'Croatian'; //to translate
-$strBulgarian = 'Bulgarian'; //to translate
-$strLithuanian = 'Lithuanian'; //to translate
-$strEstonian = 'Estonian'; //to translate
-$strCaseInsensitive = 'case-insensitive'; //to translate
-$strCaseSensitive = 'case-sensitive'; //to translate
-$strUkrainian = 'Ukrainian'; //to translate
-$strHebrew = 'Hebrew'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strRussian = 'Russian'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strUnicode = 'Unicode'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strKorean = 'Korean'; //to translate
-$strGreek = 'Greek'; //to translate
-$strJapanese = 'Japanese'; //to translate
-$strThai = 'Thai'; //to translate
-$strUseThisValue = 'Use this value'; //to translate
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/dutch-utf-8.inc.php3 b/lang/dutch-utf-8.inc.php3
index 3510165b2..bfa4882cd 100644
--- a/lang/dutch-utf-8.inc.php3
+++ b/lang/dutch-utf-8.inc.php3
@@ -26,9 +26,13 @@ $strAPrimaryKey = 'Een primaire sleutel is toegevoegd aan %s';
$strAbortedClients = 'Afgehaakte';
$strAbsolutePathToDocSqlDir = 'Geef een absoluut pad op de webserver aan naar de docSQL directory';
$strAccessDenied = 'Toegang geweigerd ';
+$strAccessDeniedExplanation = 'phpMyAdmin probeerde met de MySQL server te verbinden maar de server weigerde de verbinding. Controleer de host, de gebruikersnaam en het wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de informatie die u van de Beheerder van de MySQL server kreeg.';
$strAction = 'Actie';
+$strAddAutoIncrement = 'Voeg AUTO_INCREMENT waarde toe';
$strAddDeleteColumn = 'Toevoegen/Verwijderen Veld Kolommen';
$strAddDeleteRow = 'Toevoegen/Verwijderen Criteria Rij';
+$strAddDropDatabase = 'Voeg DROP DATABASE toe';
+$strAddIntoComments = 'Voeg toe in commentaar';
$strAddNewField = 'Nieuw veld toevoegen';
$strAddPriv = 'Voeg nieuwe rechten toe';
$strAddPrivMessage = 'U heeft nieuwe rechten toegevoegd.';
@@ -57,12 +61,17 @@ $strAnyDatabase = 'Een willekeurige database';
$strAnyHost = 'Een willekeurige host';
$strAnyTable = 'Een willekeurige tabel';
$strAnyUser = 'Een willekeurige gebruiker';
+$strArabic = 'Arabisch';
+$strArmenian = 'Armenian';
$strAscending = 'Oplopend';
$strAtBeginningOfTable = 'Aan het begin van de tabel';
$strAtEndOfTable = 'Aan het eind van de tabel';
$strAttr = 'Attributen';
+$strAutodetect = 'Auto detectie';
+$strAutomaticLayout = 'Automatische lay-out';
$strBack = 'Terug';
+$strBaltic = 'Baltisch';
$strBeginCut = 'Begin KNIP';
$strBeginRaw = 'Begin RAW';
$strBinary = ' Binair ';
@@ -73,9 +82,12 @@ $strBookmarkQuery = 'Opgeslagen SQL-query';
$strBookmarkThis = 'Sla deze SQL-query op';
$strBookmarkView = 'Alleen bekijken';
$strBrowse = 'Verkennen';
+$strBrowseForeignValues = 'Bekijk vreemde waardes';
+$strBulgarian = 'Bulgaars';
$strBzError = 'phpMyAdmin is er niet in geslaagd om de dump te comprimeren doordat de Bz2 extensie in deze php versie niet functioneert. Het wordt sterk aangeraden om de instelling $cfg[\'BZipDump\']
in uw phpMyAdmin configuratie bestand op FALSE
te zetten. Als u Bz2 compressie wilt gebruiken zult u moeten upgraden naar een latere php versie. Zie php bug report %s voor meer informatie.';
$strBzip = '"ge-bzipt"';
+$strCSVOptions = 'CSV opties';
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
$strCantLoad = 'Kan de %s extentie niet laden, Controleer de PHP Configuratie';
$strCantLoadMySQL = 'kan de MySQL extensie niet laden, controleer de PHP configuratie.';
@@ -84,6 +96,9 @@ $strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
$strCardinality = 'Kardinaliteit';
$strCarriage = 'Harde return: \\r';
+$strCaseInsensitive = 'hoofdletter ongevoelig';
+$strCaseSensitive = 'hoofdletter gevoelig';
+$strCentralEuropean = 'Centraal Europees';
$strChange = 'Veranderen';
$strChangeCopyMode = 'Maak een nieuwe gebruiker aan met dezelfde privileges en ...';
$strChangeCopyModeCopy = '... behoud de oude.';
@@ -93,7 +108,10 @@ $strChangeCopyModeRevoke = ' ... herstel alle actieve privileges van de oude en
$strChangeCopyUser = 'Wijzig de Login Informatie / Kopieer gebruiker';
$strChangeDisplay = 'Kies weer te geven veld';
$strChangePassword = 'Wijzig paswoord';
+$strCharset = 'Karakterset';e
$strCharsetOfFile = 'Karakter set van het bestand:';
+$strCharsets = 'Karaktersets';
+$strCharsetsAndCollations = 'Karakter Sets en Collations';
$strCheckAll = 'Selecteer alles';
$strCheckDbPriv = 'Controleer database rechten';
$strCheckPrivs = 'Controleer privileges';
@@ -101,6 +119,7 @@ $strCheckPrivsLong = 'Controleer privileges voor database "%s".';
$strCheckTable = 'Controleer tabel';
$strChoosePage = 'Kies een pagina om aan te passen';
$strColComFeat = 'Toon kolom commentaar';
+$strCollation = 'Collation';
$strColumn = 'Kolom';
$strColumnNames = 'Kolom namen';
$strColumnPrivileges = 'Kolom-specifieke privileges';
@@ -115,6 +134,7 @@ $strConnections = 'Connecties';
$strCookiesRequired = 'Cookies moeten aan staan voorbij dit punt.';
$strCopyTable = 'Kopieer tabel naar (database. tabel):';
$strCopyTableOK = 'Tabel %s is gekopieerd naar %s.';
+$strCopyTableSameNames = 'Kan de tabel niet naar dezelfde kopiëren!';
$strCouldNotKill = 'phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het al gesloten.';
$strCreate = 'Aanmaken';
$strCreateIndex = 'Creëer een index op kolommen %s ';
@@ -124,7 +144,11 @@ $strCreateNewTable = 'Nieuwe tabel aanmaken in database %s';
$strCreatePage = 'Creëer een nieuwe pagina';
$strCreatePdfFeat = 'Aanmaken van PDF bestanden';
$strCriteria = 'Criteria';
+$strCroatian = 'Croaties';
+$strCyrillic = 'Cyrillic';
+$strCzech = 'Tsjechisch';
+$strDBComment = 'Database commentaar: ';
$strDBGContext = 'Context';
$strDBGContextID = 'Context ID';
$strDBGHits = 'Hits';
@@ -134,11 +158,14 @@ $strDBGMinTimeMs = 'Min tijd, ms';
$strDBGModule = 'Module';
$strDBGTimePerHitMs = 'Tijd/Hit, ms';
$strDBGTotalTimeMs = 'Totaal tijd, ms';
+$strDanish = 'Deens';
$strData = 'Data';
$strDataDict = 'Data Woordenboek';
$strDataOnly = 'Alleen data';
$strDatabase = 'Database ';
+$strDatabaseExportOptions = 'Database export opties';
$strDatabaseHasBeenDropped = 'Database %s is vervallen.';
+$strDatabaseNoTable = 'Deze database bevat geen tabel!';
$strDatabaseWildcard = 'Database (wildcards toegestaan):';
$strDatabases = 'databases';
$strDatabasesDropped = '%s databases zijn succesvol verwijderd.';
@@ -150,6 +177,7 @@ $strDbPrivileges = 'Database-specifieke privileges';
$strDbSpecific = 'database-specifiek';
$strDefault = 'Standaardwaarde';
$strDefaultValueHelp = 'Voer voor standaard waarden aub een enkele waarde in, zonder backslash of aanhalingstekens, gebruik makend van dit formaat: a';
+$strDelOld = 'De huidige pagina heeft referenties met tabellen die niet langer bestaan. Wilt u deze referenties verwijderen?';
$strDelete = 'Verwijderen';
$strDeleteAndFlush = 'Verwijder de gebruikers en vernieuw de privileges daarna.';
$strDeleteAndFlushDescr = 'Dit is de nette manier, maar het vernieuwen van de privileges kan even duren.';
@@ -159,6 +187,8 @@ $strDeleted = 'De rij is verwijderd';
$strDeletedRows = 'Verwijder rijen:';
$strDeleting = 'Verwijderen van %s';
$strDescending = 'Aflopend';
+$strDescription = 'Beschrijving';
+$strDictionary = 'Woordenboek';
$strDisabled = 'Uitgeschakeld';
$strDisplay = 'Laat zien';
$strDisplayFeat = 'Toon Opties';
@@ -172,6 +202,8 @@ $strDropDB = 'Verwijder database %s';
$strDropSelectedDatabases = 'Geselecteerde databases verwijderen';
$strDropTable = 'Verwijder tabel';
$strDropUsersDb = 'Verwijder de databasen die dezelfde naam hebben als de gebruikers.';
+$strDumpComments = 'Voeg column comments in als inline SQL-comments';
+$strDumpSaved = 'Dump is bewaard als %s.';
$strDumpXRows = '%s rijen aan het dumpen, start bij rij %s.';
$strDumpingData = 'Gegevens worden uitgevoerd voor tabel';
$strDynamic = 'dynamisch';
@@ -186,8 +218,12 @@ $strEnabled = 'Ingeschakeld';
$strEnd = 'Einde';
$strEndCut = 'Einde KNIP';
$strEndRaw = 'Einde RAW';
+$strEnglish = 'Engels';
$strEnglishPrivileges = ' Aantekening: de namen van de MySQL rechten zijn uitgelegd in het Engels ';
$strError = 'Fout';
+$strEstonian = 'Estonian';
+$strExcelOptions = 'Excel opties';
+$strExecuteBookmarked = 'Voor de gebookmarkte query uit';
$strExplain = 'Verklaar SQL';
$strExport = 'Exporteer';
$strExportToXML = 'Exporteer naar XML formaat';
@@ -202,7 +238,11 @@ $strFieldsEmpty = ' Het velden aantal is leeg! ';
$strFieldsEnclosedBy = 'Velden ingesloten door';
$strFieldsEscapedBy = 'Velden ontsnapt door';
$strFieldsTerminatedBy = 'Velden beëindigd door';
+$strFileAlreadyExists = 'Bestaand %s bestaat al op de server, verander de bestandsnaam of controleer overschrijf opties.';
$strFileCouldNotBeRead = 'Bestand kon niet worden gelezen';
+$strFileNameTemplate = 'File naam template';
+$strFileNameTemplateHelp = 'Gebruik __DB__ voor de database naam, __TABLE__ voor tabel naam en %sany strftime%s opties voor tijd specificaties, extensies zullen automatisch worden bijgevoegd. Elke andere tekst zal worden bewaard.';
+$strFileNameTemplateRemember = 'Onthoud template';
$strFixed = 'vast';
$strFlushPrivilegesNote = 'Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL privileges tabel. De content van deze tabel kan verschillen met de rechten van de server als er handmatig aanpassingen zijn aangebracht. Mocht dit het geval zijn dan moet men %sde privilege table vernieuwen%s voordat men verder gaat.';
$strFlushTable = 'Schoon de tabel ("FLUSH")';
@@ -214,22 +254,26 @@ $strFunction = 'Functie';
$strGenBy = 'Gegenereerd door';
$strGenTime = 'Generatie Tijd';
$strGeneralRelationFeat = 'Basis relatie opties';
+$strGerman = 'Duits';
$strGlobal = 'globaal';
$strGlobalPrivileges = 'Globale privileges';
$strGlobalValue = 'Globale waarde';
$strGo = 'Start';
$strGrantOption = 'Toekennen';
$strGrants = 'Toekennen';
+$strGreek = 'Grieks';
$strGzip = '"ge-gzipt"';
$strHasBeenAltered = 'is veranderd.';
$strHasBeenCreated = 'is aangemaakt.';
$strHaveToShow = 'Er moet ten minste 1 weer te geven kolom worden gekozen';
+$strHebrew = 'Hebreeuws';
$strHome = 'Home';
$strHomepageOfficial = 'Officiële phpMyAdmin Website';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Pagina';
$strHost = 'Host';
$strHostEmpty = 'De hostnaam is leeg!';
+$strHungarian = 'Hongaars';
$strId = 'ID';
$strIdxFulltext = 'Volledige tekst';
@@ -245,15 +289,20 @@ $strIndexHasBeenDropped = 'Index %s is vervallen';
$strIndexName = 'Index naam :';
$strIndexType = 'Index type :';
$strIndexes = 'Indices';
+$strInnodbStat = 'InnoDB Status';
$strInsecureMySQL = 'Uw configuratie bestand bevat instellingen (root zonder wachtwoord) die betrekking hebben tot de standaard MySQL account. Uw MySQL server draait met deze standaard waardes, en is open voor ongewilde toegang, het wordt dus aangeraden dit op te lossen.';
$strInsert = 'Invoegen';
$strInsertAsNewRow = 'Voeg toe als nieuwe rij';
$strInsertNewRow = 'Nieuwe rij invoegen';
$strInsertTextfiles = 'Invoegen tekstbestanden in tabel';
+$strInsertedRowId = 'Ingevoegde rij id:';
$strInsertedRows = 'Ingevoegde rijen:';
$strInstructions = 'Instructies';
+$strInternalNotNecessary = '* Een interne relatie is niet nodig wanneer er ook een InnoDB aanwezig is.';
+$strInternalRelations = 'Interne relaties';
$strInvalidName = '"%s" is een gereserveerd woord, u kunt het niet gebruiken voor een database/tabel/veld naam.';
+$strJapanese = 'Japans';
$strJumpToDB = 'Ga naar database "%s".';
$strJustDelete = 'Verwijder gewoon de gebruikers van de privileges tabel.';
$strJustDeleteDescr = 'De "verwijderde" gebruikers zullen de server kunnen gebruiken zoals altijd zolang de privileges nog niet zijn vernieuwd.';
@@ -261,9 +310,18 @@ $strJustDeleteDescr = 'De "verwijderde" gebruikers zullen de server ku
$strKeepPass = 'Wijzig het wachtwoord niet';
$strKeyname = 'Sleutelnaam';
$strKill = 'stop proces';
+$strKorean = 'Koreaans';
$strLaTeX = 'LaTeX';
+$strLaTeXOptions = 'LaTeX opties';
$strLandscape = 'Landschap';
+$strLatexCaption = 'Tabel caption';
+$strLatexContent = 'Content van tabel __TABLE__';
+$strLatexContinued = '(vervolgd)';
+$strLatexContinuedCaption = 'Vervolgde tabel caption';
+$strLatexIncludeCaption = 'Voeg tabel caption toe';
+$strLatexLabel = 'Label sleutel';
+$strLatexStructure = 'Structuur van de tabel __TABLE__';
$strLength = 'Lengte';
$strLengthSet = 'Lengte/Waardes*';
$strLimitNumRows = 'records per pagina';
@@ -272,6 +330,9 @@ $strLines = 'Regels';
$strLinesTerminatedBy = 'Regels beëindigd door';
$strLinkNotFound = 'Link niet gevonden';
$strLinksTo = 'Gelinked naar';
+$strLithuanian = 'Lithuanian';
+$strLoadExplanation = 'De beste methode is aan gevinkt standaard maar u kunt dit veranderen mocht het niet lukken.';
+$strLoadMethod = 'LOAD methode';
$strLocalhost = 'Local';
$strLocationTextfile = 'Locatie van het tekstbestand';
$strLogPassword = 'Wachtwoord:';
@@ -280,6 +341,17 @@ $strLogin = 'Inloggen';
$strLoginInformation = 'Login Informatie';
$strLogout = 'Uitloggen';
+$strMIME_MIMEtype = 'MIME-type';
+$strMIME_available_mime = 'Beschikbare MIME-types';
+$strMIME_available_transform = 'Beschikbare transformaties';
+$strMIME_description = 'Beschrijving';
+$strMIME_file = 'Filenaam';
+$strMIME_nodescription = 'Geen beschrijving beschikbaar voor deze transformatie. Raadpleeg de maker over wat %s doet.';
+$strMIME_transformation = 'Browser transformaties';
+$strMIME_transformation_note = 'Voor een lijst met beschikbare transformatie opties en MIME-type transformaties, klik op %sTransformatie opties%s';
+$strMIME_transformation_options = 'Transformatie opties';
+$strMIME_transformation_options_note = 'Voeg de waardes voor transformatie optie in het volgende formaat in: \'a\',\'b\',\'c\'... Wanneer u een backslash ("\") of een enkele quote ("\'") moet invoegen in deze waardes, backslashes het dan (bijvoorbeeld \'\\\\xyz\' of \'a\\\'b\').';
+$strMIME_without = 'MIME-types die in italics staan (Schuin) hebben geen aparte transformatie functies';
$strMissingBracket = 'Er ontbreekt een bracket';
$strModifications = 'Wijzigingen opgeslagen.';
$strModify = 'Aanpassen';
@@ -287,6 +359,9 @@ $strModifyIndexTopic = 'Wijzig een index';
$strMoreStatusVars = 'Meer status variabelen';
$strMoveTable = 'Verplaats tabel naar (database. tabel):';
$strMoveTableOK = 'Tabel %s is verplaatst naar %s.';
+$strMoveTableSameNames = 'Kan de tabel niet naar dezelfde verplaatsen!';
+$strMultilingual = 'multilingual';
+$strMustSelectFile = 'U moet een bestand selecteren welke u wilt invoegen.';
$strMySQLCharset = 'MySQL Karakterset';
$strMySQLReloaded = 'MySQL opnieuw geladen.';
$strMySQLSaid = 'MySQL retourneerde: ';
@@ -307,11 +382,14 @@ $strNoFrames = 'phpMyAdmin is werkt gebruiksvriendelijker met een browser die $cfg[\'PmaAbsoluteUri\'] richtlijn MOET gezet zijn in het configuratie bestand!';
@@ -362,6 +445,7 @@ $strPrimaryKeyName = 'De naam van de primaire sleutel moet PRIMARY zijn!';
$strPrimaryKeyWarning = '("PRIMARY" moet de naam van en alleen van een primaire sleutel zijn!)';
$strPrint = 'Afdrukken';
$strPrintView = 'Printopmaak';
+$strPrintViewFull = 'Print overzicht (met volledige teksten)';
$strPrivDescAllPrivileges = 'Bevat alle privileges behalve GRANT.';
$strPrivDescAlter = 'Maakt het mogelijk de structuur van bestaande tabellen aan te passen.';
$strPrivDescCreateDb = 'Maakt het mogelijk om nieuwe databases en tabellen te maken.';
@@ -400,9 +484,15 @@ $strPutColNames = 'Plaats veldnamen in de eerste rij';
$strQBE = 'Query opbouwen';
$strQBEDel = 'Verwijder';
$strQBEIns = 'Toevoegen';
+$strQueryFrame = 'Query window';
+$strQueryFrameDebug = 'Debugging informatie';
+$strQueryFrameDebugBox = 'Actieve variabelen voor het formaat van de query:\nDB: %s\nTabel: %s\nServer: % s\n\nHuidige variabelen voor het formaat van de query:\nDB: %s\nTabel: %s\nServer: %s\n\nOpener locatie: %s\nFrameset locatie: %s.';
$strQueryOnDb = 'SQL-query op database %s :';
+$strQuerySQLHistory = 'SQL-geschiedenis';
$strQueryStatistics = 'Query statistieken : Sinds het opstarten zijn er, %s queries gestuurd naar de server.';
+$strQueryTime = 'Query duurde %01.4f sec';
$strQueryType = 'Query type';
+$strQueryWindowLock = 'Overschrijf deze query niet van buitenaf dit scherm';
$strReType = 'Type opnieuw';
$strReceived = 'Ontvangen';
@@ -411,6 +501,7 @@ $strReferentialIntegrity = 'Controleer referentiële integriteit';
$strRelationNotWorking = 'Extra opties om met tabellen te werken die gelinked zijn, zijn uitgeschakeld. Om te weten te komen waarom klik %shier%s.';
$strRelationView = 'Relatie overzicht';
$strRelationalSchema = 'Relationeel schema';
+$strRelations = 'Relaties';
$strReloadFailed = 'Opnieuw laden van MySQL mislukt.';
$strReloadMySQL = 'MySQL opnieuw laden.';
$strReloadingThePrivileges = 'Bezig de privileges te vernieuwen';
@@ -420,6 +511,7 @@ $strRenameTable = 'Tabel hernoemen naar';
$strRenameTableOK = 'Tabel %s is hernoemt naar %s';
$strRepairTable = 'Repareer tabel';
$strReplace = 'Vervangen';
+$strReplaceNULLBy = 'Vervang NULL door';
$strReplaceTable = 'Vervang tabelgegevens met het bestand';
$strReset = 'Opnieuw';
$strResourceLimits = 'Resource limitaties';
@@ -434,6 +526,7 @@ $strRowLength = 'Lengte van de rij';
$strRowSize = ' Grootte van de rij';
$strRows = 'Rijen';
$strRowsFrom = 'rijen beginnend bij';
+$strRowsModeFlippedHorizontal = 'horizontaal (rotated headers)';
$strRowsModeHorizontal = 'horizontaal';
$strRowsModeOptions = 'in %s modus en herhaal kopregels na %s cellen';
$strRowsModeVertical = 'verticaal';
@@ -441,8 +534,10 @@ $strRowsStatistic = 'Rij statistiek';
$strRunQuery = 'Query uitvoeren';
$strRunSQLQuery = 'Draai SQL query/queries op database %s';
$strRunning = 'wordt uitgevoerd op %s';
+$strRussian = 'Russisch';
$strSQL = 'SQL';
+$strSQLOptions = 'SQL opties';
$strSQLParserBugMessage = 'Er is een kans dat u een fout heeft aangetroffen in de SQL parser. Let er goed op, dat de query op de correcte plaatsen quotes heeft. Een ander mogelijkheid voor deze foutmelding kan zijn dat u het ge-quote text gedeelte in bineary mode heeft. U kunt ook uw query proberen in de command line van MySQL. De MySQL server foutmelding hieronder, mocht die aanwezig zijn, kan ook helpen met het opsporen van fouten. Blijft u problemen houden of als de parser fouten geeft terwijl het goed gaat in de command line van MySQL, probeer dan de SQL query in te korten en een bug report met het stukje data te sturen van het CUT gedeelte hieronder:';
$strSQLParserUserError = 'Er schijnt een fout te zijn in uw SQL query. Mocht de MySQL server een error hebben terug gegeven, probeer dan of uw hiermee uw fout kunt oplossen.';
$strSQLQuery = 'SQL-query';
@@ -451,6 +546,7 @@ $strSQPBugInvalidIdentifer = 'Ongeldige Identifer';
$strSQPBugUnclosedQuote = 'Quote niet afgesloten';
$strSQPBugUnknownPunctuation = 'Onbekende Punctuatie String';
$strSave = 'Opslaan';
+$strSaveOnServer = 'Bewaar op de server in %s directory';
$strScaleFactorSmall = 'De schaal factor is te klein om het schema op een pagina te zetten';
$strSearch = 'Zoeken';
$strSearchFormTitle = 'Zoeken in de database';
@@ -462,6 +558,7 @@ $strSearchOption3 = 'de exacte zin';
$strSearchOption4 = 'als een reguliere expressie';
$strSearchResultsFor = 'Zoek resultaten voor "%s " %s:';
$strSearchType = 'Zoek:';
+$strSecretRequired = 'Het configuratie bestand heeft nu een geheime wachtwoord zin nodig (blowfish_secret).';
$strSelect = 'Selecteren';
$strSelectADb = 'Selecteer A.U.B. een database';
$strSelectAll = 'Selecteer alles';
@@ -486,17 +583,22 @@ $strShowAll = 'Toon alles';
$strShowColor = 'Toon kleur';
$strShowCols = 'Toon kolommen';
$strShowDatadictAs = 'Data Dictionary Formaat';
+$strShowFullQueries = 'Toon volledige Queries';
$strShowGrid = 'Toon grid';
$strShowPHPInfo = 'Laat informatie over PHP zien';
$strShowTableDimension = 'Geef de dimensies van de tabellen weer';
$strShowTables = 'Toon tabellen';
$strShowThisQuery = ' Laat deze query hier zien ';
$strShowingRecords = 'Toon Records';
+$strSimplifiedChinese = 'Vereenvoudigd Chinese';
$strSingly = '(apart)';
$strSize = 'Grootte';
$strSort = 'Sorteren';
$strSpaceUsage = 'Ruimte gebruik';
$strSplitWordsWithSpace = 'Woorden worden gesplit door een spatie karakter (" ").';
+$strStatCheckTime = 'Laatst gecontroleerd';
+$strStatCreateTime = 'Gecreëerd';
+$strStatUpdateTime = 'Laatst bijgewerkt';
$strStatement = 'Opdrachten';
$strStatus = 'Status';
$strStrucCSV = 'CSV gegevens';
@@ -509,6 +611,8 @@ $strStructure = 'Structuur';
$strSubmit = 'Verzenden';
$strSuccess = 'Uw SQL-query is succesvol uitgevoerd.';
$strSum = 'Som';
+$strSwedish = 'Zweeds';
+$strSwitchToTable = 'Wissel naar de gekopieerde tabel';
$strTable = 'Tabel';
$strTableComments = 'Tabel opmerkingen';
@@ -518,11 +622,13 @@ $strTableHasBeenEmptied = 'Tabel %s is leeg gemaakt';
$strTableHasBeenFlushed = 'Tabel %s is geschoond';
$strTableMaintenance = 'Tabel onderhoud';
$strTableOfContents = 'Inhoudsopgave';
+$strTableOptions = 'Tabel opties';
$strTableStructure = 'Tabel structuur voor tabel';
$strTableType = 'Tabel type';
$strTables = '%s tabel(len)';
$strTblPrivileges = 'Tabel-specifieke privileges';
$strTextAreaLength = ' Vanwege z\'n lengte, is dit veld misschien niet te wijzigen ';
+$strThai = 'Thais';
$strTheContent = 'De inhoud van uw bestand is ingevoegd.';
$strTheContents = 'De inhoud van het bestand vervangt de inhoud van de geselecteerde tabel voor rijen met een identieke primaire of unieke sleutel.';
$strTheTerminator = 'De afsluiter van de velden.';
@@ -530,22 +636,43 @@ $strThisHost = 'Deze Host';
$strThisNotDirectory = 'Dit was geen directory';
$strThreadSuccessfullyKilled = 'Thread %s is met success afgesloten.';
$strTime = 'Tijd';
+$strToggleScratchboard = 'toggle scratchboard';
$strTotal = 'totaal';
$strTotalUC = 'Totaal';
+$strTraditionalChinese = 'Traditioneel Chinees';
$strTraffic = 'Verkeer';
+$strTransformation_image_jpeg__inline = 'Toont een klik bare thumbnail; opties: width,height in pixels (houdt de originele ratio)';
+$strTransformation_image_jpeg__link = 'Toont een link naar deze image (directe blob download, i.e.).';
+$strTransformation_image_png__inline = 'Zie image/jpeg: inline';
+$strTransformation_text_plain__dateformat = 'Neemt een TIME, TIMESTAMP of DATETIME veld en vormt het naar uw lokale datumformaat. Eerst optie is de offset (in uren) welke zal worden toegevoegd aan de timestamp (Default: 0). De tweede opties is een ander datumformaat volgens de parameters beschikbaar volgens PHPs strftime().';
+$strTransformation_text_plain__external = 'ALLEEN LINUX: Lanceert een externe applicatie en voed het de veld data via standaard input. Geeft standaard output van de applicatie terug. Default is Netjes, om nette HTML code te tonen. Om beveiligings redenen zult u handmatig het bestand libraries/transformations/text_plain__external.inc.php moeten aanpassen en de tools die u mag draaien invoegen. De eerste opties is het nummer van het programma wat u wilt gebruiken, de tweede optie zijn de parameters voor dit programma. Het derde parameter, wanneer ingesteld op 1, zal de output omzetten door middel van htmlspecialchars() (Standaard is 1). Een vierde parameter, wanneer ingesteld als 1 zal NOWRAQP aan de content cell toevoegen, zodat de gehele output getoond zal worden zonder te herstructureren (Standaard 1)';
+$strTransformation_text_plain__formatted = 'Preserveert het originele formaat van het veld. Er wordt geen Escaping toegepast.';
+$strTransformation_text_plain__imagelink = 'Toont een plaatje en een link, het veld bevat de bestandsnaam; De eerste optie is een prefix als "http://domein.com/", de tweede optie is de breedte in pixels, de derde is de hoogte.';
+$strTransformation_text_plain__link = 'Toont een link, het veld bevat de bestandsnaam; De eerste optie is een prefix als "http://domein.com/", de tweede optie is de titel voor de link.';
+$strTransformation_text_plain__substr = 'Toont alleen een stuk van een string. De eerst optie is een offset om te bepalen waar de output van uw tekst start (Standaard 0). De tweede optie is een offset van de hoeveel tekst die terug wordt gegeven. Wanneer leeg, zal het alle overgebleven tekst teruggeven. De derde optie defineerd welke karakters worden toegevoegd aan de output wanneer een substring wordt teruggegeven (Standaard: ...) .';
+$strTransformation_text_plain__unformatted = 'Toont HTML code als HTML entities. Er wordt geen HTML formatting getoond.';
+$strTruncateQueries = 'Truncate getoonde Queries';
+$strTurkish = 'Turks';
$strType = 'Type';
+$strUkrainian = 'Ukrainian';
$strUncheckAll = 'Deselecteer alles';
+$strUnicode = 'Unicode';
$strUnique = 'Unieke waarde';
+$strUnknown = 'onbekend';
$strUnselectAll = 'Deselecteer alles';
+$strUpdComTab = 'Raadpleeg de Documentatie over hoe u uw Column_comments tabel bijwerkt.';
$strUpdatePrivMessage = 'U heeft de rechten aangepast voor %s.';
$strUpdateProfile = 'Pas profiel aan:';
$strUpdateProfileMessage = 'Het profiel is aangepast.';
$strUpdateQuery = 'Wijzig Query';
+$strUpgradeMySQL = 'U moet opwaarderen naar MySQL %s of hoger.';
$strUsage = 'Gebruik';
$strUseBackquotes = 'Gebruik backquotes (`) bij tabellen en velden\' namen';
+$strUseHostTable = 'Gebruik Host Tabel';
$strUseTables = 'Gebruik tabellen';
$strUseTextField = 'Gebruik tekstveld';
+$strUseThisValue = 'Gebruik deze waarde';
$strUser = 'Gebruiker';
$strUserAlreadyExists = 'De gebruiker %s bestaat al!';
$strUserEmpty = 'De gebruikersnaam is leeg!';
@@ -562,165 +689,34 @@ $strValue = 'Waarde';
$strVar = 'Variabelen';
$strViewDump = 'Bekijk een dump (schema) van tabel';
$strViewDumpDB = 'Bekijk een dump (schema) van database';
+$strViewDumpDatabases = 'Bekijk dump (schema) van de databases';
$strWebServerUploadDirectory = 'web-server upload directory';
$strWebServerUploadDirectoryError = 'De directory die u heeft ingesteld om te uploaden kan niet worden bereikt.';
$strWelcome = 'Welkom op %s';
+$strWestEuropean = 'West Europees';
$strWildcard = 'joker teken';
+$strWindowNotFound = 'Het doel browser scherm kon niet worden bijgewerkt. Misschien heeft u het scherm gesloten of uw browser blokkeert bijwerkingen van uw browser beveiliging';
$strWithChecked = 'Met geselecteerd:';
$strWritingCommentNotPossible = 'Het toevoegen van commentaar is niet mogelijk';
$strWritingRelationNotPossible = 'Toevoegen van een relatie is niet mogelijk';
$strWrongUser = 'Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd.';
+$strXML = 'XML';
+
$strYes = 'Ja';
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
$strZip = '"Gezipt"';
// To translate
-$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
-$strAutomaticLayout = 'Automatic layout'; //to translate
-$strCSVOptions = 'CSV options';//to translate
+$strLogServer = 'Server'; //to translate
-$strDBComment = 'Database comment: ';//to translate
-$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
-$strDumpComments = 'Include column comments as inline SQL-comments';//to translate
+$strSortByKey = 'Sort by key'; //to translate
-$strFileNameTemplate = 'File name template';//to translate
-$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';//to translate
-$strFileNameTemplateRemember = 'remember template';//to translate
-
-$strInnodbStat = 'InnoDB Status'; //to translate
-
-$strMIME_MIMEtype = 'MIME-type';//to translate
-$strMIME_available_mime = 'Available MIME-types';//to translate
-$strMIME_available_transform = 'Available transformations';//to translate
-$strMIME_description = 'Description';//to translate
-$strMIME_file = 'Filename';//to translate
-$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.';//to translate
-$strMIME_transformation = 'Browser transformation';//to translate
-$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s';//to translate
-$strMIME_transformation_options = 'Transformation options';//to translate
-$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate
-$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate
-
-$strNoOptions = 'This format has no options';//to translate
-
-$strPerMinute = 'per minute';//to translate
-$strPerSecond = 'per second';//to translate
-
-$strQueryFrame = 'Query window';//to translate
-$strQueryFrameDebug = 'Debugging information';//to translate
-$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.';//to translate
-$strQuerySQLHistory = 'SQL-history';//to translate
-$strQueryTime = 'Query took %01.4f sec';//to translate
-
-$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate
-
-$strSQLOptions = 'SQL options';//to translate
-$strStatCheckTime = 'Last check';//to translate
-$strStatCreateTime = 'Creation';//to translate
-$strStatUpdateTime = 'Last update';//to translate
-
-$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
-$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).';//to translate
-$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
-$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().';//to translate
-$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)';//to translate
-$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.';//to translate
-$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .';//to translate
-$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.';//to translate
-
-$strXML = 'XML';//to translate
-
-$strAutodetect = 'Autodetect'; //to translate
-$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
-$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
-$strUseHostTable = 'Use Host Table'; //to translate
-$strShowFullQueries = 'Show Full Queries'; //to translate
-$strTruncateQueries = 'Truncate Shown Queries'; //to translate
-$strSwitchToTable = 'Switch to copied table'; //to translate
-$strCharset = 'Charset'; //to translate
-$strLaTeXOptions = 'LaTeX options'; //to translate
-$strRelations = 'Relations'; //to translate
-$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
-$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
-$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
-$strSaveOnServer = 'Save on server in %s directory'; //to translate
-$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
-$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
-$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
-$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
-$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
-$strInsertedRowId = 'Inserted row id:'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
-$strExcelOptions = 'Excel options'; //to translate
-$strReplaceNULLBy = 'Replace NULL by'; //to translate
-$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
-$strPaperSize = 'Paper size'; //to translate
-$strDatabaseNoTable = 'This database contains no table!';//to translate
-$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
-$strAddIntoComments = 'Add into comments';//to translate
-$strDatabaseExportOptions = 'Database export options';//to translate
-$strAddDropDatabase = 'Add DROP DATABASE';//to translate
-$strToggleScratchboard = 'toggle scratchboard'; //to translate
-$strTableOptions = 'Table options'; //to translate
-$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
-$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strCharsets = 'Charsets'; //to translate
-$strDescription = 'Description'; //to translate
-$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
-$strCollation = 'Collation'; //to translate
-$strMultilingual = 'multilingual'; //to translate
-$strGerman = 'German'; //to translate
-$strPhoneBook = 'phone book'; //to translate
-$strDictionary = 'dictionary'; //to translate
-$strSwedish = 'Swedish'; //to translate
-$strDanish = 'Danish'; //to translate
-$strCzech = 'Czech'; //to translate
-$strTurkish = 'Turkish'; //to translate
-$strEnglish = 'English'; //to translate
-$strHungarian = 'Hungarian'; //to translate
-$strCroatian = 'Croatian'; //to translate
-$strBulgarian = 'Bulgarian'; //to translate
-$strLithuanian = 'Lithuanian'; //to translate
-$strEstonian = 'Estonian'; //to translate
-$strCaseInsensitive = 'case-insensitive'; //to translate
-$strCaseSensitive = 'case-sensitive'; //to translate
-$strUkrainian = 'Ukrainian'; //to translate
-$strHebrew = 'Hebrew'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strRussian = 'Russian'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strUnicode = 'Unicode'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strKorean = 'Korean'; //to translate
-$strGreek = 'Greek'; //to translate
-$strJapanese = 'Japanese'; //to translate
-$strThai = 'Thai'; //to translate
-$strUseThisValue = 'Use this value'; //to translate
-$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
-$strBrowseForeignValues = 'Browse foreign values'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/english-iso-8859-1.inc.php3 b/lang/english-iso-8859-1.inc.php3
index 9d19340ab..a2fdb8a77 100644
--- a/lang/english-iso-8859-1.inc.php3
+++ b/lang/english-iso-8859-1.inc.php3
@@ -71,8 +71,10 @@ $strBeginCut = 'BEGIN CUT';
$strBeginRaw = 'BEGIN RAW';
$strBinary = 'Binary';
$strBinaryDoNotEdit = 'Binary - do not edit';
+$strBookmarkAllUsers = 'Let every user access this bookmark';
$strBookmarkDeleted = 'The bookmark has been deleted.';
$strBookmarkLabel = 'Label';
+$strBookmarkOptions = 'Bookmark options';
$strBookmarkQuery = 'Bookmarked SQL-query';
$strBookmarkThis = 'Bookmark this SQL-query';
$strBookmarkView = 'View only';
@@ -126,6 +128,8 @@ $strConfigFileError = 'phpMyAdmin was unable to read your configuration file! . table):';
$strCopyTableOK = 'Table %s has been copied to %s.';
@@ -331,6 +335,7 @@ $strLoadMethod = 'LOAD method';
$strLocalhost = 'Local';
$strLocationTextfile = 'Location of the textfile';
$strLogPassword = 'Password:';
+$strLogServer = 'Server';
$strLogUsername = 'Username:';
$strLogin = 'Login';
$strLoginInformation = 'Login Information';
@@ -589,6 +594,7 @@ $strSimplifiedChinese = 'Simplified Chinese';
$strSingly = '(singly)';
$strSize = 'Size';
$strSort = 'Sort';
+$strSortByKey = 'Sort by key';
$strSpaceUsage = 'Space usage';
$strSplitWordsWithSpace = 'Words are separated by a space character (" ").';
$strStatCheckTime = 'Last check';
@@ -703,5 +709,4 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
-
?>
diff --git a/lang/english-utf-8.inc.php3 b/lang/english-utf-8.inc.php3
index 407025912..68c732095 100644
--- a/lang/english-utf-8.inc.php3
+++ b/lang/english-utf-8.inc.php3
@@ -72,8 +72,10 @@ $strBeginCut = 'BEGIN CUT';
$strBeginRaw = 'BEGIN RAW';
$strBinary = 'Binary';
$strBinaryDoNotEdit = 'Binary - do not edit';
+$strBookmarkAllUsers = 'Let every user access this bookmark';
$strBookmarkDeleted = 'The bookmark has been deleted.';
$strBookmarkLabel = 'Label';
+$strBookmarkOptions = 'Bookmark options';
$strBookmarkQuery = 'Bookmarked SQL-query';
$strBookmarkThis = 'Bookmark this SQL-query';
$strBookmarkView = 'View only';
@@ -127,6 +129,8 @@ $strConfigFileError = 'phpMyAdmin was unable to read your configuration file! . table):';
$strCopyTableOK = 'Table %s has been copied to %s.';
@@ -332,6 +336,7 @@ $strLoadMethod = 'LOAD method';
$strLocalhost = 'Local';
$strLocationTextfile = 'Location of the textfile';
$strLogPassword = 'Password:';
+$strLogServer = 'Server';
$strLogUsername = 'Username:';
$strLogin = 'Login';
$strLoginInformation = 'Login Information';
@@ -590,6 +595,7 @@ $strSimplifiedChinese = 'Simplified Chinese';
$strSingly = '(singly)';
$strSize = 'Size';
$strSort = 'Sort';
+$strSortByKey = 'Sort by key';
$strSpaceUsage = 'Space usage';
$strSplitWordsWithSpace = 'Words are separated by a space character (" ").';
$strStatCheckTime = 'Last check';
@@ -704,5 +710,4 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
-
?>
diff --git a/lang/estonian-iso-8859-1.inc.php3 b/lang/estonian-iso-8859-1.inc.php3
index d0f4a0304..84cd2ac17 100644
--- a/lang/estonian-iso-8859-1.inc.php3
+++ b/lang/estonian-iso-8859-1.inc.php3
@@ -705,4 +705,10 @@ $strZeroRemovesTheLimit = 'M
$strZip = '"zipitud"';
// To translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/estonian-utf-8.inc.php3 b/lang/estonian-utf-8.inc.php3
index b7acfc299..c054fff7c 100644
--- a/lang/estonian-utf-8.inc.php3
+++ b/lang/estonian-utf-8.inc.php3
@@ -706,4 +706,10 @@ $strZeroRemovesTheLimit = 'Märkus: Märkides antud seaded 0 (null) , eemaldate
$strZip = '"zipitud"';
// To translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/finnish-iso-8859-1.inc.php3 b/lang/finnish-iso-8859-1.inc.php3
index 97449178c..8ec13407f 100644
--- a/lang/finnish-iso-8859-1.inc.php3
+++ b/lang/finnish-iso-8859-1.inc.php3
@@ -729,4 +729,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/finnish-utf-8.inc.php3 b/lang/finnish-utf-8.inc.php3
index efce9267e..e4fbd2700 100644
--- a/lang/finnish-utf-8.inc.php3
+++ b/lang/finnish-utf-8.inc.php3
@@ -730,4 +730,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/french-iso-8859-1.inc.php3 b/lang/french-iso-8859-1.inc.php3
index 824a4049b..7ee11500c 100644
--- a/lang/french-iso-8859-1.inc.php3
+++ b/lang/french-iso-8859-1.inc.php3
@@ -72,8 +72,10 @@ $strBeginCut = 'D
$strBeginRaw = 'Début des informations sur l\'anomalie';
$strBinary = 'Binaire';
$strBinaryDoNotEdit = 'Binaire - ne pas éditer';
+$strBookmarkAllUsers = 'Signet visible pour les autres utilisateurs';
$strBookmarkDeleted = 'Le signet a été effacé.';
$strBookmarkLabel = 'Intitulé';
+$strBookmarkOptions = 'Options pour les signets';
$strBookmarkQuery = 'Requêtes en signets';
$strBookmarkThis = 'Conserver cette requête dans les signets';
$strBookmarkView = 'Voir uniquement';
@@ -127,6 +129,8 @@ $strConfigFileError = 'phpMyAdmin n\'a pu lire votre fichier de configuration!Copier la table vers (base. table) :';
$strCopyTableOK = 'La table %s a été copiée vers %s.';
@@ -294,6 +298,8 @@ $strInsertTextfiles = 'Ins
$strInsertedRowId = 'Identifiant de l\'enregistrement inséré:';
$strInsertedRows = 'Nombre d\'enregistrements insérés :';
$strInstructions = 'Instructions';
+$strInternalNotNecessary = '* Si une relation existe dans InnoDB, il n\'est pas nécessaire de la définir dans les relations internes.';
+$strInternalRelations = 'Relations internes';
$strInvalidName = '"%s" est un mot réservé, il ne peut être utilisé comme nom de base/table/champ.';
$strJapanese = 'japonais';
@@ -309,6 +315,13 @@ $strKorean = 'cor
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Options LaTeX';
$strLandscape = 'Paysage';
+$strLatexCaption = 'Sous-titre de la table';
+$strLatexContent = 'Contenu de la table __TABLE__';
+$strLatexContinued = '(suite)';
+$strLatexContinuedCaption = 'Sous-titre de la table (suite)';
+$strLatexIncludeCaption = 'Inclure les sous-titres';
+$strLatexLabel = 'Clé de l\'étiquette';
+$strLatexStructure = 'Structure de la table __TABLE__';
$strLength = 'Long.';
$strLengthSet = 'Taille/Valeurs*';
$strLimitNumRows = 'Nombre d\'enregistrements par page';
@@ -323,6 +336,7 @@ $strLoadMethod = 'M
$strLocalhost = 'Local';
$strLocationTextfile = 'Emplacement du fichier texte';
$strLogPassword = 'Mot de passe :';
+$strLogServer = 'Serveur';
$strLogUsername = 'Nom d\'utilisateur :';
$strLogin = 'Connexion';
$strLoginInformation = 'Information pour la connexion';
@@ -432,6 +446,7 @@ $strPrimaryKeyName = 'Le nom d\'une clef primaire doit
$strPrimaryKeyWarning = '("PRIMARY" doit et ne peut être que le nom d\'une clef primaire !)';
$strPrint = 'Imprimer';
$strPrintView = 'Version imprimable';
+$strPrintViewFull = 'Version imprimable (avec textes complets)';
$strPrivDescAllPrivileges = 'Tous les privilèges sauf GRANT.';
$strPrivDescAlter = 'Permission de modifier la structure des tables existantes.';
$strPrivDescCreateDb = 'Permission de créer des bases de données et des tables.';
@@ -580,6 +595,7 @@ $strSimplifiedChinese = 'chinois simplifi
$strSingly = '(à refaire après insertions/destructions)';
$strSize = 'Taille';
$strSort = 'Tri';
+$strSortByKey = 'Trier sur l\'index';
$strSpaceUsage = 'Espace utilisé';
$strSplitWordsWithSpace = 'Séparer les mots par un espace (" ").';
$strStatCheckTime = 'Dernière vérification';
@@ -652,6 +668,7 @@ $strUpdatePrivMessage = 'Vous avez modifi
$strUpdateProfile = 'Modifier le profil :';
$strUpdateProfileMessage = 'Le profil a été modifié.';
$strUpdateQuery = 'Mise-à-jour de la requête';
+$strUpgradeMySQL = 'Vous devriez utiliser MySQL en version %s ou plus récente.';
$strUsage = 'Espace';
$strUseBackquotes = 'Protéger les noms des tables et des champs par des "`"';
$strUseHostTable = 'Utiliser la table Host';
@@ -695,16 +712,4 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
$strZip = '"zippé"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/french-utf-8.inc.php3 b/lang/french-utf-8.inc.php3
index 1b5f3bddd..6688eac67 100644
--- a/lang/french-utf-8.inc.php3
+++ b/lang/french-utf-8.inc.php3
@@ -73,8 +73,10 @@ $strBeginCut = 'Début de la section à couper';
$strBeginRaw = 'Début des informations sur l\'anomalie';
$strBinary = 'Binaire';
$strBinaryDoNotEdit = 'Binaire - ne pas éditer';
+$strBookmarkAllUsers = 'Signet visible pour les autres utilisateurs';
$strBookmarkDeleted = 'Le signet a été effacé.';
$strBookmarkLabel = 'Intitulé';
+$strBookmarkOptions = 'Options pour les signets';
$strBookmarkQuery = 'Requêtes en signets';
$strBookmarkThis = 'Conserver cette requête dans les signets';
$strBookmarkView = 'Voir uniquement';
@@ -128,6 +130,8 @@ $strConfigFileError = 'phpMyAdmin n\'a pu lire votre fichier de configuration!Copier la table vers (base. table) :';
$strCopyTableOK = 'La table %s a été copiée vers %s.';
@@ -295,6 +299,8 @@ $strInsertTextfiles = 'Insérer des données provenant d\'un fichier texte dans
$strInsertedRowId = 'Identifiant de l\'enregistrement inséré:';
$strInsertedRows = 'Nombre d\'enregistrements insérés :';
$strInstructions = 'Instructions';
+$strInternalNotNecessary = '* Si une relation existe dans InnoDB, il n\'est pas nécessaire de la définir dans les relations internes.';
+$strInternalRelations = 'Relations internes';
$strInvalidName = '"%s" est un mot réservé, il ne peut être utilisé comme nom de base/table/champ.';
$strJapanese = 'japonais';
@@ -310,6 +316,13 @@ $strKorean = 'coréen';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Options LaTeX';
$strLandscape = 'Paysage';
+$strLatexCaption = 'Sous-titre de la table';
+$strLatexContent = 'Contenu de la table __TABLE__';
+$strLatexContinued = '(suite)';
+$strLatexContinuedCaption = 'Sous-titre de la table (suite)';
+$strLatexIncludeCaption = 'Inclure les sous-titres';
+$strLatexLabel = 'Clé de l\'étiquette';
+$strLatexStructure = 'Structure de la table __TABLE__';
$strLength = 'Long.';
$strLengthSet = 'Taille/Valeurs*';
$strLimitNumRows = 'Nombre d\'enregistrements par page';
@@ -324,6 +337,7 @@ $strLoadMethod = 'Méthode pour le LOAD';
$strLocalhost = 'Local';
$strLocationTextfile = 'Emplacement du fichier texte';
$strLogPassword = 'Mot de passe :';
+$strLogServer = 'Serveur';
$strLogUsername = 'Nom d\'utilisateur :';
$strLogin = 'Connexion';
$strLoginInformation = 'Information pour la connexion';
@@ -433,6 +447,7 @@ $strPrimaryKeyName = 'Le nom d\'une clef primaire doit être PRIMARY !';
$strPrimaryKeyWarning = '("PRIMARY" doit et ne peut être que le nom d\'une clef primaire !)';
$strPrint = 'Imprimer';
$strPrintView = 'Version imprimable';
+$strPrintViewFull = 'Version imprimable (avec textes complets)';
$strPrivDescAllPrivileges = 'Tous les privilèges sauf GRANT.';
$strPrivDescAlter = 'Permission de modifier la structure des tables existantes.';
$strPrivDescCreateDb = 'Permission de créer des bases de données et des tables.';
@@ -581,6 +596,7 @@ $strSimplifiedChinese = 'chinois simplifié';
$strSingly = '(à refaire après insertions/destructions)';
$strSize = 'Taille';
$strSort = 'Tri';
+$strSortByKey = 'Trier sur l\'index';
$strSpaceUsage = 'Espace utilisé';
$strSplitWordsWithSpace = 'Séparer les mots par un espace (" ").';
$strStatCheckTime = 'Dernière vérification';
@@ -653,6 +669,7 @@ $strUpdatePrivMessage = 'Vous avez modifié les privilèges pour %s.';
$strUpdateProfile = 'Modifier le profil :';
$strUpdateProfileMessage = 'Le profil a été modifié.';
$strUpdateQuery = 'Mise-à -jour de la requête';
+$strUpgradeMySQL = 'Vous devriez utiliser MySQL en version %s ou plus récente.';
$strUsage = 'Espace';
$strUseBackquotes = 'Protéger les noms des tables et des champs par des "`"';
$strUseHostTable = 'Utiliser la table Host';
@@ -696,16 +713,4 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
$strZip = '"zippé"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/galician-iso-8859-1.inc.php3 b/lang/galician-iso-8859-1.inc.php3
index aa33dad1f..70574cca6 100644
--- a/lang/galician-iso-8859-1.inc.php3
+++ b/lang/galician-iso-8859-1.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/galician-utf-8.inc.php3 b/lang/galician-utf-8.inc.php3
index 308518a09..877b968aa 100644
--- a/lang/galician-utf-8.inc.php3
+++ b/lang/galician-utf-8.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/georgian-utf-8.inc.php3 b/lang/georgian-utf-8.inc.php3
index 3722a09fa..99f162e09 100644
--- a/lang/georgian-utf-8.inc.php3
+++ b/lang/georgian-utf-8.inc.php3
@@ -733,4 +733,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/german-iso-8859-1.inc.php3 b/lang/german-iso-8859-1.inc.php3
index 81b80a2b8..dc3020b07 100644
--- a/lang/german-iso-8859-1.inc.php3
+++ b/lang/german-iso-8859-1.inc.php3
@@ -292,7 +292,7 @@ $strIndexName = 'Index Name :';
$strIndexType = 'Index Typ :';
$strIndexes = 'Indizes';
$strInnodbStat = 'InnoDB-Status';
-$strInsecureMySQL = 'Ihre Konfigurationsdatei enthält Einstellungen (Benutzer "root" ohne Passwort), welche denen des MySQL-Stardardbenutzers entsprechen. Wird Ihr MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke unbedingt schließen!';
+$strInsecureMySQL = 'Ihre Konfigurationsdatei enthält Einstellungen (Benutzer "root" ohne Passwort), welche denen des MySQL-Standardbenutzers entsprechen. Wird Ihr MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke unbedingt schließen!';
$strInsert = 'Einfügen';
$strInsertAsNewRow = ' Als neuen Datensatz speichern ';
$strInsertNewRow = 'Neue Zeile einfügen';
@@ -373,7 +373,7 @@ $strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
$strNoExplain = 'SQL-Erklärung umgehen';
$strNoFrames = 'phpMyAdmin arbeitet besser mit einem Frame -fähigen Browser.';
$strNoIndex = 'Kein Index definiert!';
-$strNoIndexPartsDefined = 'Keine Indizies definiert.';
+$strNoIndexPartsDefined = 'Keine Indizes definiert.';
$strNoModification = 'Keine Änderung';
$strNoOptions = 'Für dieses Format sind keine Optionen vorhanden';
$strNoPassword = 'Kein Kennwort';
@@ -439,7 +439,7 @@ $strPrimaryKeyWarning = 'Der Name des Prim
$strPrint = 'Drucken';
$strPrintView = 'Druckansicht';
$strPrivDescAllPrivileges = 'Enthält alle Rechte bis auf GRANT.';
-$strPrivDescAlter = 'Erlaubt das Verändern der Struktur betehender Tabellen.';
+$strPrivDescAlter = 'Erlaubt das Verändern der Struktur bestehender Tabellen.';
$strPrivDescCreateDb = 'Erlaubt das Erstellen neuer Datenbanken und Tabellen.';
$strPrivDescCreateTbl = 'Erlaubt das Erstellen neuer Tabellen.';
$strPrivDescCreateTmpTable = 'Erlaubt das Erstellen temporärer Tabellen.';
@@ -453,7 +453,7 @@ $strPrivDescIndex = 'Erlaubt das Erstellen und L
$strPrivDescInsert = 'Erlaubt das Hinzufügen und Ersetzen von Daten.';
$strPrivDescLockTables = 'Erlaubt die Sperrung bestimmter Tabellen.';
$strPrivDescMaxConnections = 'Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde aufbauen darf.';
-$strPrivDescMaxQuestions = 'Begrent die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf.';
+$strPrivDescMaxQuestions = 'Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf.';
$strPrivDescMaxUpdates = 'Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an allen Datenbanken und Tabellen vornehmen darf.';
$strPrivDescProcess3 = 'Erlaubt das Beenden fremder Prozesse.';
$strPrivDescProcess4 = 'Erlaubt das Anzeigen der vollen Abfragen in der Prozessliste.';
@@ -465,7 +465,7 @@ $strPrivDescSelect = 'Erlaubt das Auslesen von Daten.';
$strPrivDescShowDb = 'Gewährt Zugang zur vollständigen Datenbankliste.';
$strPrivDescShutdown = 'Erlaubt das Beenden des Servers.';
$strPrivDescSuper = 'Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen bereits erreicht ist; Wird für viele administrative Operationen, wie das Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt.';
-$strPrivDescUpdate = 'Elaubt das Verändern von gespeicherten Daten.';
+$strPrivDescUpdate = 'Erlaubt das Verändern von gespeicherten Daten.';
$strPrivDescUsage = 'Keine Rechte.';
$strPrivileges = 'Rechte';
$strPrivilegesReloaded = 'Die Benutzerprofile wurden neu geladen.';
@@ -481,10 +481,10 @@ $strQueryFrameDebug = 'Debugging Information';
$strQueryFrameDebugBox = 'Aktive Variablen des Abfrageformulars:\nDB: %s\nTabellle: %s\nServer: %s\n\nMomentate Variablen des Abfrageofrmulars:\nDB: %s\nTabelle: %s\nServer: %s\n\nQuelle des öffnenden Fensters: %s\nQuelle des Framesets: %s.';
$strQueryOnDb = ' SQL-Befehl in der Datenbank %s :';
$strQuerySQLHistory = 'SQL-Verlaufsprotokoll';
-$strQueryStatistics = 'Abfragestatisktik : Seit seinem Start wurden %s Abfragen an diesen MySQL-Server gesandt.';
+$strQueryStatistics = 'Abfragestatistik : Seit seinem Start wurden %s Abfragen an diesen MySQL-Server gesandt.';
$strQueryTime = 'die Abfrage dauerte %01.4f sek';
$strQueryType = 'Abfrageart';
-$strQueryWindowLock = 'Abfrage vor Änderungen ausserhalb des Fensters schützen';
+$strQueryWindowLock = 'Abfrage vor Änderungen außerhalb des Fensters schützen';
$strReType = 'Wiederholen';
$strReceived = 'Empfangen';
@@ -539,7 +539,7 @@ $strSQPBugUnclosedQuote = 'Nicht geschlossene Anf
$strSQPBugUnknownPunctuation = 'Unbekannte Interpunktion';
$strSave = 'Speichern';
$strSaveOnServer = 'Datei auf dem Server in Verzeichnis %s speichern';
-$strScaleFactorSmall = 'Der Skalierungsfaktor ist zu klein, sodass das Schma nicht auf eine Seite passt!';
+$strScaleFactorSmall = 'Der Skalierungsfaktor ist zu klein, sodass das Schema nicht auf eine Seite passt!';
$strSearch = 'Suche';
$strSearchFormTitle = 'Durchsuche die Datenbank';
$strSearchInTables = 'In der / den Tabelle(n):';
@@ -637,12 +637,12 @@ $strTransformation_image_jpeg__inline = 'Ein klickbares Vorschaubild anzeigen. O
$strTransformation_image_jpeg__link = 'Einen Link zum Bild anzeigen, z.B. zum Download von BLOB-Daten.';
$strTransformation_image_png__inline = 'Siehe image/jpeg: inline';
$strTransformation_text_plain__dateformat = 'Wandelt ein TIME, TIMESTAMP oder DATETIME-Feld und formatiert es unter Berücksichtigung des lokalen Zeitformats. Erste Option: Differenz (in Stunden) zur Addition/Subtraktion der aktuellen Zeit (Standard: 0). Zweite Option: Zeitformat anstelle des lokalen, Variablen siehe PHPs strftime().';
-$strTransformation_text_plain__external = 'Nur für LINUX: Startet ein externes Programm und verwendet die Daten des Feldes für die Standardeingabe. Stellt innerhalb von PHPMyAdmin die Standardausgabe des externen Programmes dar. Die Voreinstellung wurde für Tidy optimiert, um HTML code optisch zu formatieren. Aus Sicherheitsgründen müssen Sie die Datei libraries/transformations/text_plain__external.inc.php von Hand bearbeiten um weitere Programme hinzuzufügen. Die erste Option ist die Nummer des dort hinterlegten Programmes und die zweite Option legt die Parameter für das externe Programm fest. Die dritte Option bestimmt, falls auf 1 gesetzt, dass die Ausgabe mit htmlspecialchars() formatiert wird (Standard: 1). Die vierte Option bestimmt, falls auf 1 gesetzt, ob ein NOWRAP-Parameter der Tabellenzelle hinzugefügt wird um einen automatischen Umbruch der Standardausgabe zu verhindern (Standard: 1)';
+$strTransformation_text_plain__external = 'Nur für LINUX: Startet ein externes Programm und verwendet die Daten des Feldes für die Standardeingabe. Stellt innerhalb von phpMyAdmin die Standardausgabe des externen Programmes dar. Die Voreinstellung wurde für Tidy optimiert, um HTML code optisch zu formatieren. Aus Sicherheitsgründen müssen Sie die Datei libraries/transformations/text_plain__external.inc.php von Hand bearbeiten um weitere Programme hinzuzufügen. Die erste Option ist die Nummer des dort hinterlegten Programmes und die zweite Option legt die Parameter für das externe Programm fest. Die dritte Option bestimmt, falls auf 1 gesetzt, dass die Ausgabe mit htmlspecialchars() formatiert wird (Standard: 1). Die vierte Option bestimmt, falls auf 1 gesetzt, ob ein NOWRAP-Parameter der Tabellenzelle hinzugefügt wird um einen automatischen Umbruch der Standardausgabe zu verhindern (Standard: 1)';
$strTransformation_text_plain__formatted = 'Behält Ursprungsformatierung des Feldes bei. Kein Escaping oder Umlautwandlung wird durchgeführt.';
$strTransformation_text_plain__imagelink = 'Benutzt den Inhalt eines Feldes um ein Bild und einen Link dazu darzustellen. Die erste Option ist ein Präfix vor dem eigentlichen Feldinhalt wie "http://www.domain.com". Zweite Option ist die Breite des Bildes, die dritte Option die Höhe des Bildes in Pixeln.';
$strTransformation_text_plain__link = 'Benutzt den Inhalt eines Feldes um einen Link darzustellen. Die erste Option ist ein Präfix vor dem eigentlichen Feldinhalt wie "http://www.domain.com". Zweite Option ist der darzustellende Titel des Links';
$strTransformation_text_plain__substr = 'Stellt nur einen Teil des Feldinhaltes dar. Die erste Option definiert die Position des Textes ab dem die Ausgabe startet (Standard: 0), die zweite Option gibt an wieviel Zeichen ab dort dargestellt werden sollen. Falls diese Option leer ist, wird der gesamte verbleibende Text dargestellt. Die dritte Option kann einen Text enthalten, der bei partieller Ausgabe des Textes angehängt wird, um eine Abschneidung kenntlich zu machen (Standard: ...).';
-$strTransformation_text_plain__unformatted = 'Wandelt Sonderzeichen nach HTML-Regeln um, um HTML-formatierungen innerhalb des Feldinhaltes unwirksam zu machen.';
+$strTransformation_text_plain__unformatted = 'Wandelt Sonderzeichen nach HTML-Regeln um, um HTML-Formatierungen innerhalb des Feldinhaltes unwirksam zu machen.';
$strTruncateQueries = 'Zeige die SQL-Abfragen verkürzt an';
$strTurkish = 'Türkisch';
$strType = 'Typ';
@@ -685,7 +685,7 @@ $strWebServerUploadDirectory = 'Upload-Verzeichnis auf dem Webserver';
$strWebServerUploadDirectoryError = 'Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden.';
$strWelcome = 'Willkommen bei %s';
$strWestEuropean = 'Westeuropäisch';
-$strWildcard = 'wildcard';
+$strWildcard = 'Platzhalter';
$strWithChecked = 'markierte:';
$strWritingCommentNotPossible = 'Es können keine Kommentare geschrieben werden';
$strWritingRelationNotPossible = 'Es können keine Spaltenbeziehungen gespeichert werden.';
@@ -713,4 +713,10 @@ $strLatexLabel = 'Kennzeichen';
$strLatexContinuedCaption = 'Fortgesetzte Tabellenbeschriftung';
$strPrintViewFull = 'Druckansicht (vollständige Textfelder)';
+$strLogServer = 'Server';
+$strSortByKey = 'Nach Schlüssel sortieren';
+$strBookmarkAllUsers = 'Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen';
+$strConstraintsForDumped = 'Constraints der exportierten Tabellen';
+$strConstraintsForTable = 'Constraints der Tabelle';
+$strBookmarkOptions = 'Optionen zur Speicherung der SQL-Abfrage';
?>
diff --git a/lang/german-utf-8.inc.php3 b/lang/german-utf-8.inc.php3
index 4e3bc8617..3648b1242 100644
--- a/lang/german-utf-8.inc.php3
+++ b/lang/german-utf-8.inc.php3
@@ -293,7 +293,7 @@ $strIndexName = 'Index Name :';
$strIndexType = 'Index Typ :';
$strIndexes = 'Indizes';
$strInnodbStat = 'InnoDB-Status';
-$strInsecureMySQL = 'Ihre Konfigurationsdatei enthält Einstellungen (Benutzer "root" ohne Passwort), welche denen des MySQL-Stardardbenutzers entsprechen. Wird Ihr MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke unbedingt schließen!';
+$strInsecureMySQL = 'Ihre Konfigurationsdatei enthält Einstellungen (Benutzer "root" ohne Passwort), welche denen des MySQL-Standardbenutzers entsprechen. Wird Ihr MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke unbedingt schließen!';
$strInsert = 'Einfügen';
$strInsertAsNewRow = ' Als neuen Datensatz speichern ';
$strInsertNewRow = 'Neue Zeile einfügen';
@@ -374,7 +374,7 @@ $strNoDropDatabases = 'Die Anweisung "DROP DATABASE" wurde deaktiviert.';
$strNoExplain = 'SQL-Erklärung umgehen';
$strNoFrames = 'phpMyAdmin arbeitet besser mit einem Frame -fähigen Browser.';
$strNoIndex = 'Kein Index definiert!';
-$strNoIndexPartsDefined = 'Keine Indizies definiert.';
+$strNoIndexPartsDefined = 'Keine Indizes definiert.';
$strNoModification = 'Keine Änderung';
$strNoOptions = 'Für dieses Format sind keine Optionen vorhanden';
$strNoPassword = 'Kein Kennwort';
@@ -440,7 +440,7 @@ $strPrimaryKeyWarning = 'Der Name des Primärschlüssels darf nur "PRIMAR
$strPrint = 'Drucken';
$strPrintView = 'Druckansicht';
$strPrivDescAllPrivileges = 'Enthält alle Rechte bis auf GRANT.';
-$strPrivDescAlter = 'Erlaubt das Verändern der Struktur betehender Tabellen.';
+$strPrivDescAlter = 'Erlaubt das Verändern der Struktur bestehender Tabellen.';
$strPrivDescCreateDb = 'Erlaubt das Erstellen neuer Datenbanken und Tabellen.';
$strPrivDescCreateTbl = 'Erlaubt das Erstellen neuer Tabellen.';
$strPrivDescCreateTmpTable = 'Erlaubt das Erstellen temporärer Tabellen.';
@@ -454,7 +454,7 @@ $strPrivDescIndex = 'Erlaubt das Erstellen und Löschen von Indizes.';
$strPrivDescInsert = 'Erlaubt das Hinzufügen und Ersetzen von Daten.';
$strPrivDescLockTables = 'Erlaubt die Sperrung bestimmter Tabellen.';
$strPrivDescMaxConnections = 'Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde aufbauen darf.';
-$strPrivDescMaxQuestions = 'Begrent die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf.';
+$strPrivDescMaxQuestions = 'Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf.';
$strPrivDescMaxUpdates = 'Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an allen Datenbanken und Tabellen vornehmen darf.';
$strPrivDescProcess3 = 'Erlaubt das Beenden fremder Prozesse.';
$strPrivDescProcess4 = 'Erlaubt das Anzeigen der vollen Abfragen in der Prozessliste.';
@@ -466,7 +466,7 @@ $strPrivDescSelect = 'Erlaubt das Auslesen von Daten.';
$strPrivDescShowDb = 'Gewährt Zugang zur vollständigen Datenbankliste.';
$strPrivDescShutdown = 'Erlaubt das Beenden des Servers.';
$strPrivDescSuper = 'Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen bereits erreicht ist; Wird für viele administrative Operationen, wie das Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt.';
-$strPrivDescUpdate = 'Elaubt das Verändern von gespeicherten Daten.';
+$strPrivDescUpdate = 'Erlaubt das Verändern von gespeicherten Daten.';
$strPrivDescUsage = 'Keine Rechte.';
$strPrivileges = 'Rechte';
$strPrivilegesReloaded = 'Die Benutzerprofile wurden neu geladen.';
@@ -482,10 +482,10 @@ $strQueryFrameDebug = 'Debugging Information';
$strQueryFrameDebugBox = 'Aktive Variablen des Abfrageformulars:\nDB: %s\nTabellle: %s\nServer: %s\n\nMomentate Variablen des Abfrageofrmulars:\nDB: %s\nTabelle: %s\nServer: %s\n\nQuelle des öffnenden Fensters: %s\nQuelle des Framesets: %s.';
$strQueryOnDb = ' SQL-Befehl in der Datenbank %s :';
$strQuerySQLHistory = 'SQL-Verlaufsprotokoll';
-$strQueryStatistics = 'Abfragestatisktik : Seit seinem Start wurden %s Abfragen an diesen MySQL-Server gesandt.';
+$strQueryStatistics = 'Abfragestatistik : Seit seinem Start wurden %s Abfragen an diesen MySQL-Server gesandt.';
$strQueryTime = 'die Abfrage dauerte %01.4f sek';
$strQueryType = 'Abfrageart';
-$strQueryWindowLock = 'Abfrage vor Änderungen ausserhalb des Fensters schützen';
+$strQueryWindowLock = 'Abfrage vor Änderungen außerhalb des Fensters schützen';
$strReType = 'Wiederholen';
$strReceived = 'Empfangen';
@@ -540,7 +540,7 @@ $strSQPBugUnclosedQuote = 'Nicht geschlossene Anführungszeichen';
$strSQPBugUnknownPunctuation = 'Unbekannte Interpunktion';
$strSave = 'Speichern';
$strSaveOnServer = 'Datei auf dem Server in Verzeichnis %s speichern';
-$strScaleFactorSmall = 'Der Skalierungsfaktor ist zu klein, sodass das Schma nicht auf eine Seite passt!';
+$strScaleFactorSmall = 'Der Skalierungsfaktor ist zu klein, sodass das Schema nicht auf eine Seite passt!';
$strSearch = 'Suche';
$strSearchFormTitle = 'Durchsuche die Datenbank';
$strSearchInTables = 'In der / den Tabelle(n):';
@@ -638,12 +638,12 @@ $strTransformation_image_jpeg__inline = 'Ein klickbares Vorschaubild anzeigen. O
$strTransformation_image_jpeg__link = 'Einen Link zum Bild anzeigen, z.B. zum Download von BLOB-Daten.';
$strTransformation_image_png__inline = 'Siehe image/jpeg: inline';
$strTransformation_text_plain__dateformat = 'Wandelt ein TIME, TIMESTAMP oder DATETIME-Feld und formatiert es unter Berücksichtigung des lokalen Zeitformats. Erste Option: Differenz (in Stunden) zur Addition/Subtraktion der aktuellen Zeit (Standard: 0). Zweite Option: Zeitformat anstelle des lokalen, Variablen siehe PHPs strftime().';
-$strTransformation_text_plain__external = 'Nur für LINUX: Startet ein externes Programm und verwendet die Daten des Feldes für die Standardeingabe. Stellt innerhalb von PHPMyAdmin die Standardausgabe des externen Programmes dar. Die Voreinstellung wurde für Tidy optimiert, um HTML code optisch zu formatieren. Aus Sicherheitsgründen müssen Sie die Datei libraries/transformations/text_plain__external.inc.php von Hand bearbeiten um weitere Programme hinzuzufügen. Die erste Option ist die Nummer des dort hinterlegten Programmes und die zweite Option legt die Parameter für das externe Programm fest. Die dritte Option bestimmt, falls auf 1 gesetzt, dass die Ausgabe mit htmlspecialchars() formatiert wird (Standard: 1). Die vierte Option bestimmt, falls auf 1 gesetzt, ob ein NOWRAP-Parameter der Tabellenzelle hinzugefügt wird um einen automatischen Umbruch der Standardausgabe zu verhindern (Standard: 1)';
+$strTransformation_text_plain__external = 'Nur für LINUX: Startet ein externes Programm und verwendet die Daten des Feldes für die Standardeingabe. Stellt innerhalb von phpMyAdmin die Standardausgabe des externen Programmes dar. Die Voreinstellung wurde für Tidy optimiert, um HTML code optisch zu formatieren. Aus Sicherheitsgründen müssen Sie die Datei libraries/transformations/text_plain__external.inc.php von Hand bearbeiten um weitere Programme hinzuzufügen. Die erste Option ist die Nummer des dort hinterlegten Programmes und die zweite Option legt die Parameter für das externe Programm fest. Die dritte Option bestimmt, falls auf 1 gesetzt, dass die Ausgabe mit htmlspecialchars() formatiert wird (Standard: 1). Die vierte Option bestimmt, falls auf 1 gesetzt, ob ein NOWRAP-Parameter der Tabellenzelle hinzugefügt wird um einen automatischen Umbruch der Standardausgabe zu verhindern (Standard: 1)';
$strTransformation_text_plain__formatted = 'Behält Ursprungsformatierung des Feldes bei. Kein Escaping oder Umlautwandlung wird durchgeführt.';
$strTransformation_text_plain__imagelink = 'Benutzt den Inhalt eines Feldes um ein Bild und einen Link dazu darzustellen. Die erste Option ist ein Präfix vor dem eigentlichen Feldinhalt wie "http://www.domain.com". Zweite Option ist die Breite des Bildes, die dritte Option die Höhe des Bildes in Pixeln.';
$strTransformation_text_plain__link = 'Benutzt den Inhalt eines Feldes um einen Link darzustellen. Die erste Option ist ein Präfix vor dem eigentlichen Feldinhalt wie "http://www.domain.com". Zweite Option ist der darzustellende Titel des Links';
$strTransformation_text_plain__substr = 'Stellt nur einen Teil des Feldinhaltes dar. Die erste Option definiert die Position des Textes ab dem die Ausgabe startet (Standard: 0), die zweite Option gibt an wieviel Zeichen ab dort dargestellt werden sollen. Falls diese Option leer ist, wird der gesamte verbleibende Text dargestellt. Die dritte Option kann einen Text enthalten, der bei partieller Ausgabe des Textes angehängt wird, um eine Abschneidung kenntlich zu machen (Standard: ...).';
-$strTransformation_text_plain__unformatted = 'Wandelt Sonderzeichen nach HTML-Regeln um, um HTML-formatierungen innerhalb des Feldinhaltes unwirksam zu machen.';
+$strTransformation_text_plain__unformatted = 'Wandelt Sonderzeichen nach HTML-Regeln um, um HTML-Formatierungen innerhalb des Feldinhaltes unwirksam zu machen.';
$strTruncateQueries = 'Zeige die SQL-Abfragen verkürzt an';
$strTurkish = 'Türkisch';
$strType = 'Typ';
@@ -686,7 +686,7 @@ $strWebServerUploadDirectory = 'Upload-Verzeichnis auf dem Webserver';
$strWebServerUploadDirectoryError = 'Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden.';
$strWelcome = 'Willkommen bei %s';
$strWestEuropean = 'Westeuropäisch';
-$strWildcard = 'wildcard';
+$strWildcard = 'Platzhalter';
$strWithChecked = 'markierte:';
$strWritingCommentNotPossible = 'Es können keine Kommentare geschrieben werden';
$strWritingRelationNotPossible = 'Es können keine Spaltenbeziehungen gespeichert werden.';
@@ -714,4 +714,10 @@ $strLatexLabel = 'Kennzeichen';
$strLatexContinuedCaption = 'Fortgesetzte Tabellenbeschriftung';
$strPrintViewFull = 'Druckansicht (vollständige Textfelder)';
+$strLogServer = 'Server';
+$strSortByKey = 'Nach Schlüssel sortieren';
+$strBookmarkAllUsers = 'Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen';
+$strConstraintsForDumped = 'Constraints der exportierten Tabellen';
+$strConstraintsForTable = 'Constraints der Tabelle';
+$strBookmarkOptions = 'Optionen zur Speicherung der SQL-Abfrage';
?>
diff --git a/lang/greek-iso-8859-7.inc.php3 b/lang/greek-iso-8859-7.inc.php3
index 07dbfa5c7..e0afa2946 100644
--- a/lang/greek-iso-8859-7.inc.php3
+++ b/lang/greek-iso-8859-7.inc.php3
@@ -713,4 +713,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/greek-utf-8.inc.php3 b/lang/greek-utf-8.inc.php3
index 0dfde0dff..8669a7db0 100644
--- a/lang/greek-utf-8.inc.php3
+++ b/lang/greek-utf-8.inc.php3
@@ -714,4 +714,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/hebrew-iso-8859-8-i.inc.php3 b/lang/hebrew-iso-8859-8-i.inc.php3
index fd36e740e..4ada5284f 100644
--- a/lang/hebrew-iso-8859-8-i.inc.php3
+++ b/lang/hebrew-iso-8859-8-i.inc.php3
@@ -729,4 +729,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/hindi-utf-8.inc.php3 b/lang/hindi-utf-8.inc.php3
index 2a7376cba..7ee34d44e 100644
--- a/lang/hindi-utf-8.inc.php3
+++ b/lang/hindi-utf-8.inc.php3
@@ -743,4 +743,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/hungarian-iso-8859-2.inc.php3 b/lang/hungarian-iso-8859-2.inc.php3
index 2ab4db01f..6250852ca 100644
--- a/lang/hungarian-iso-8859-2.inc.php3
+++ b/lang/hungarian-iso-8859-2.inc.php3
@@ -717,4 +717,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/hungarian-utf-8.inc.php3 b/lang/hungarian-utf-8.inc.php3
index a739ab516..a17554b39 100644
--- a/lang/hungarian-utf-8.inc.php3
+++ b/lang/hungarian-utf-8.inc.php3
@@ -718,4 +718,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/indonesian-iso-8859-1.inc.php3 b/lang/indonesian-iso-8859-1.inc.php3
index b5233084a..3dca832e8 100644
--- a/lang/indonesian-iso-8859-1.inc.php3
+++ b/lang/indonesian-iso-8859-1.inc.php3
@@ -19,9 +19,9 @@ $timespanfmt = '%s hari, %s jam, %s menit dan %s detik';
$strAPrimaryKey = 'Primary key telah ditambah pada %s';
$strAbortedClients = 'Dibatalkan';
-$strAbsolutePathToDocSqlDir = 'Silakan isi Absolute Path di webserver yang menunjuk ke direktori docSQL';
+$strAbsolutePathToDocSqlDir = 'Silakan tentukan Absolute Path di webserver yang menunjuk ke direktori docSQL';
$strAccessDenied = 'Akses ditolak';
-$strAccessDeniedExplanation = 'phpMyAdmin telah coba untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Perlu diperiksa ulang nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberi oleh administrator dari server MySQL.';
+$strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Perlu diperiksa ulang nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberi oleh administrator dari server MySQL.';
$strAction = 'Aksi';
$strAddAutoIncrement = 'Tambahkan nilai AUTO_INCREMENT';
$strAddDeleteColumn = 'Tambah/Hapus kolom';
@@ -71,8 +71,10 @@ $strBeginCut = 'Mulai potong (CUT)';
$strBeginRaw = 'MULAI mentah (RAW)';
$strBinary = 'Binari';
$strBinaryDoNotEdit = 'Binari - jangan di-edit';
+$strBookmarkAllUsers = 'Izinkan kepada seluruh pengguna untuk mengakses Bookmark ini';
$strBookmarkDeleted = 'Bookmark telah dihapus.';
$strBookmarkLabel = 'Judul';
+$strBookmarkOptions = 'Pilihan untuk Bookmark';
$strBookmarkQuery = 'Bookmark query SQL ';
$strBookmarkThis = 'Bookmark SQL-query ini';
$strBookmarkView = 'Hanya melihat';
@@ -126,6 +128,8 @@ $strConfigFileError = 'phpMyAdmin gagal membaca file konfigurasi! Hal ini d
$strConfigureTableCoord = 'Silakan konfigurasikan koordinasi bagi tabel %s';
$strConfirm = 'Anda yakin ingin melakukannya?';
$strConnections = 'Koneksi';
+$strConstraintsForDumped = 'Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)';
+$strConstraintsForTable = 'Ketidakleluasaan untuk tabel';
$strCookiesRequired = 'Cookies harus diaktifkan mulai dari sini.';
$strCopyTable = 'Salin tabel ke (database. nama tabel):';
$strCopyTableOK = 'Tabel %s telah disalin ke %s.';
@@ -293,6 +297,8 @@ $strInsertTextfiles = 'Sisipkan data baru dari textfile ke dalam tabel';
$strInsertedRowId = 'Menyisip baris id:';
$strInsertedRows = 'Baris yang disisipkan:';
$strInstructions = 'Petunjuk';
+$strInternalNotNecessary = '* Relasi internal tidak dibutuhkan bila ia telah berada dalam InnoDB.';
+$strInternalRelations = 'Relasi internal';
$strInvalidName = '"%s" adalah kata khusus dan tidak dapat dipergunakan sebagai nama database,tabel atau field.';
$strJapanese = 'Bahasa Jepang';
@@ -308,6 +314,13 @@ $strKorean = 'Bahasa Korea';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Pilihan LaTeX';
$strLandscape = 'Landscape';
+$strLatexCaption = 'Judul halaman';
+$strLatexContent = 'Isi dari tabel __TABLE__';
+$strLatexContinued = '(dilanjutkan)';
+$strLatexContinuedCaption = 'Lanjutan dari judul halaman tabel';
+$strLatexIncludeCaption = 'Memasukkan judul halaman tabel';
+$strLatexLabel = 'Kunci nama';
+$strLatexStructure = 'Struktur dari tabel __TABLE__';
$strLength = 'Ukuran Panjang';
$strLengthSet = 'Ukuran Panjang/Nilai*';
$strLimitNumRows = 'Jumlah baris per halaman';
@@ -322,6 +335,7 @@ $strLoadMethod = 'Caranya LOAD';
$strLocalhost = 'Lokal';
$strLocationTextfile = 'Lokasi dari textfile';
$strLogPassword = 'Kata Sandi:';
+$strLogServer = 'Server';
$strLogUsername = 'Nama Pengguna:';
$strLogin = 'Login';
$strLoginInformation = 'Informasi Login';
@@ -431,6 +445,7 @@ $strPrimaryKeyName = 'Nama primary key mesti... PRIMARY!';
$strPrimaryKeyWarning = '(Tanda nama "PRIMARY" wajib sebagai satu-satunya nama dan hanya sebagai Primary Key saja!)';
$strPrint = 'Cetak';
$strPrintView = 'Pandangan cetak';
+$strPrintViewFull = 'Pandangan cetak ( dengan teks lengkap)';
$strPrivDescAllPrivileges = 'Mengunakan seluruh Hak Istimewa (Privileges) selain GRANT.';
$strPrivDescAlter = 'Mengizinkan untuk merubah struktur dari tabel yang ada.';
$strPrivDescCreateDb = 'Mengizinkan untuk buat Database dan tabel yang baru.';
@@ -518,7 +533,7 @@ $strRowsModeVertical = 'vertikal';
$strRowsStatistic = 'Statistik Baris';
$strRunQuery = 'Jalankan query SQL';
$strRunSQLQuery = 'Jalankan query SQL pada database %s';
-$strRunning = 'dilaksana pada %s';
+$strRunning = 'dijalankan pada %s';
$strRussian = 'Bahasa Rusia';
$strSQL = 'SQL';
@@ -531,7 +546,7 @@ $strSQPBugInvalidIdentifer = 'Identifer tidak valid';
$strSQPBugUnclosedQuote = 'Kutipan tidak ditutup';
$strSQPBugUnknownPunctuation = 'Punctation String tidak dikenali';
$strSave = 'Simpan';
-$strSaveOnServer = 'Simpan di server di direktori %s';
+$strSaveOnServer = 'Simpan di server dalam direktori %s';
$strScaleFactorSmall = 'Faktor skala yang dipilih terlalu kecil untuk dimuat dalam skema satu halaman';
$strSearch = 'Cari';
$strSearchFormTitle = 'Cari dalam database';
@@ -579,6 +594,7 @@ $strSimplifiedChinese = 'Bahasa Cina disederhanakan';
$strSingly = '(unik)';
$strSize = 'Ukuran';
$strSort = 'Urutkan';
+$strSortByKey = 'Urut berdasarkan kunci';
$strSpaceUsage = 'Penggunaan ruang';
$strSplitWordsWithSpace = 'Kata dipisahkan oleh karakter spasi (" ").';
$strStatCheckTime = 'Pemeriksaan terakhir';
@@ -651,6 +667,7 @@ $strUpdatePrivMessage = 'Hak Akses (privilege) untuk %s telah di-update.';
$strUpdateProfile = 'Update profil pengguna:';
$strUpdateProfileMessage = 'Profil pengguna telah di-update.';
$strUpdateQuery = 'Update proses pencarian';
+$strUpgradeMySQL = 'Disarankan untuk meng-update ke MySQL versi %s atau lebih baru.';
$strUsage = 'Penggunaan';
$strUseBackquotes = 'Gunakan backquotes dengan nama tabel dan nama field';
$strUseHostTable = 'Gunakan Host Table';
@@ -694,16 +711,4 @@ $strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) aka
$strZip = '"Dikompress dengan Zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/indonesian-utf-8.inc.php3 b/lang/indonesian-utf-8.inc.php3
index a27e7ec28..70991ed1f 100644
--- a/lang/indonesian-utf-8.inc.php3
+++ b/lang/indonesian-utf-8.inc.php3
@@ -20,9 +20,9 @@ $timespanfmt = '%s hari, %s jam, %s menit dan %s detik';
$strAPrimaryKey = 'Primary key telah ditambah pada %s';
$strAbortedClients = 'Dibatalkan';
-$strAbsolutePathToDocSqlDir = 'Silakan isi Absolute Path di webserver yang menunjuk ke direktori docSQL';
+$strAbsolutePathToDocSqlDir = 'Silakan tentukan Absolute Path di webserver yang menunjuk ke direktori docSQL';
$strAccessDenied = 'Akses ditolak';
-$strAccessDeniedExplanation = 'phpMyAdmin telah coba untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Perlu diperiksa ulang nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberi oleh administrator dari server MySQL.';
+$strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Perlu diperiksa ulang nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberi oleh administrator dari server MySQL.';
$strAction = 'Aksi';
$strAddAutoIncrement = 'Tambahkan nilai AUTO_INCREMENT';
$strAddDeleteColumn = 'Tambah/Hapus kolom';
@@ -72,8 +72,10 @@ $strBeginCut = 'Mulai potong (CUT)';
$strBeginRaw = 'MULAI mentah (RAW)';
$strBinary = 'Binari';
$strBinaryDoNotEdit = 'Binari - jangan di-edit';
+$strBookmarkAllUsers = 'Izinkan kepada seluruh pengguna untuk mengakses Bookmark ini';
$strBookmarkDeleted = 'Bookmark telah dihapus.';
$strBookmarkLabel = 'Judul';
+$strBookmarkOptions = 'Pilihan untuk Bookmark';
$strBookmarkQuery = 'Bookmark query SQL ';
$strBookmarkThis = 'Bookmark SQL-query ini';
$strBookmarkView = 'Hanya melihat';
@@ -127,6 +129,8 @@ $strConfigFileError = 'phpMyAdmin gagal membaca file konfigurasi! Hal ini d
$strConfigureTableCoord = 'Silakan konfigurasikan koordinasi bagi tabel %s';
$strConfirm = 'Anda yakin ingin melakukannya?';
$strConnections = 'Koneksi';
+$strConstraintsForDumped = 'Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)';
+$strConstraintsForTable = 'Ketidakleluasaan untuk tabel';
$strCookiesRequired = 'Cookies harus diaktifkan mulai dari sini.';
$strCopyTable = 'Salin tabel ke (database. nama tabel):';
$strCopyTableOK = 'Tabel %s telah disalin ke %s.';
@@ -294,6 +298,8 @@ $strInsertTextfiles = 'Sisipkan data baru dari textfile ke dalam tabel';
$strInsertedRowId = 'Menyisip baris id:';
$strInsertedRows = 'Baris yang disisipkan:';
$strInstructions = 'Petunjuk';
+$strInternalNotNecessary = '* Relasi internal tidak dibutuhkan bila ia telah berada dalam InnoDB.';
+$strInternalRelations = 'Relasi internal';
$strInvalidName = '"%s" adalah kata khusus dan tidak dapat dipergunakan sebagai nama database,tabel atau field.';
$strJapanese = 'Bahasa Jepang';
@@ -309,6 +315,13 @@ $strKorean = 'Bahasa Korea';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'Pilihan LaTeX';
$strLandscape = 'Landscape';
+$strLatexCaption = 'Judul halaman';
+$strLatexContent = 'Isi dari tabel __TABLE__';
+$strLatexContinued = '(dilanjutkan)';
+$strLatexContinuedCaption = 'Lanjutan dari judul halaman tabel';
+$strLatexIncludeCaption = 'Memasukkan judul halaman tabel';
+$strLatexLabel = 'Kunci nama';
+$strLatexStructure = 'Struktur dari tabel __TABLE__';
$strLength = 'Ukuran Panjang';
$strLengthSet = 'Ukuran Panjang/Nilai*';
$strLimitNumRows = 'Jumlah baris per halaman';
@@ -323,6 +336,7 @@ $strLoadMethod = 'Caranya LOAD';
$strLocalhost = 'Lokal';
$strLocationTextfile = 'Lokasi dari textfile';
$strLogPassword = 'Kata Sandi:';
+$strLogServer = 'Server';
$strLogUsername = 'Nama Pengguna:';
$strLogin = 'Login';
$strLoginInformation = 'Informasi Login';
@@ -432,6 +446,7 @@ $strPrimaryKeyName = 'Nama primary key mesti... PRIMARY!';
$strPrimaryKeyWarning = '(Tanda nama "PRIMARY" wajib sebagai satu-satunya nama dan hanya sebagai Primary Key saja!)';
$strPrint = 'Cetak';
$strPrintView = 'Pandangan cetak';
+$strPrintViewFull = 'Pandangan cetak ( dengan teks lengkap)';
$strPrivDescAllPrivileges = 'Mengunakan seluruh Hak Istimewa (Privileges) selain GRANT.';
$strPrivDescAlter = 'Mengizinkan untuk merubah struktur dari tabel yang ada.';
$strPrivDescCreateDb = 'Mengizinkan untuk buat Database dan tabel yang baru.';
@@ -519,7 +534,7 @@ $strRowsModeVertical = 'vertikal';
$strRowsStatistic = 'Statistik Baris';
$strRunQuery = 'Jalankan query SQL';
$strRunSQLQuery = 'Jalankan query SQL pada database %s';
-$strRunning = 'dilaksana pada %s';
+$strRunning = 'dijalankan pada %s';
$strRussian = 'Bahasa Rusia';
$strSQL = 'SQL';
@@ -532,7 +547,7 @@ $strSQPBugInvalidIdentifer = 'Identifer tidak valid';
$strSQPBugUnclosedQuote = 'Kutipan tidak ditutup';
$strSQPBugUnknownPunctuation = 'Punctation String tidak dikenali';
$strSave = 'Simpan';
-$strSaveOnServer = 'Simpan di server di direktori %s';
+$strSaveOnServer = 'Simpan di server dalam direktori %s';
$strScaleFactorSmall = 'Faktor skala yang dipilih terlalu kecil untuk dimuat dalam skema satu halaman';
$strSearch = 'Cari';
$strSearchFormTitle = 'Cari dalam database';
@@ -580,6 +595,7 @@ $strSimplifiedChinese = 'Bahasa Cina disederhanakan';
$strSingly = '(unik)';
$strSize = 'Ukuran';
$strSort = 'Urutkan';
+$strSortByKey = 'Urut berdasarkan kunci';
$strSpaceUsage = 'Penggunaan ruang';
$strSplitWordsWithSpace = 'Kata dipisahkan oleh karakter spasi (" ").';
$strStatCheckTime = 'Pemeriksaan terakhir';
@@ -652,6 +668,7 @@ $strUpdatePrivMessage = 'Hak Akses (privilege) untuk %s telah di-update.';
$strUpdateProfile = 'Update profil pengguna:';
$strUpdateProfileMessage = 'Profil pengguna telah di-update.';
$strUpdateQuery = 'Update proses pencarian';
+$strUpgradeMySQL = 'Disarankan untuk meng-update ke MySQL versi %s atau lebih baru.';
$strUsage = 'Penggunaan';
$strUseBackquotes = 'Gunakan backquotes dengan nama tabel dan nama field';
$strUseHostTable = 'Gunakan Host Table';
@@ -695,16 +712,4 @@ $strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) aka
$strZip = '"Dikompress dengan Zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/italian-iso-8859-1.inc.php3 b/lang/italian-iso-8859-1.inc.php3
index 020119e28..8d9e4e335 100644
--- a/lang/italian-iso-8859-1.inc.php3
+++ b/lang/italian-iso-8859-1.inc.php3
@@ -710,4 +710,10 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
// To translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/italian-utf-8.inc.php3 b/lang/italian-utf-8.inc.php3
index 2c22c56ec..a978f8e1c 100644
--- a/lang/italian-utf-8.inc.php3
+++ b/lang/italian-utf-8.inc.php3
@@ -711,4 +711,10 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
// To translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/japanese-euc.inc.php3 b/lang/japanese-euc.inc.php3
index e6d188ccf..a5eab15e8 100644
--- a/lang/japanese-euc.inc.php3
+++ b/lang/japanese-euc.inc.php3
@@ -717,4 +717,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/japanese-sjis.inc.php3 b/lang/japanese-sjis.inc.php3
index a4e05805e..0eb2e421e 100644
--- a/lang/japanese-sjis.inc.php3
+++ b/lang/japanese-sjis.inc.php3
@@ -717,4 +717,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/japanese-utf-8.inc.php3 b/lang/japanese-utf-8.inc.php3
index df19aa216..8b127df08 100644
--- a/lang/japanese-utf-8.inc.php3
+++ b/lang/japanese-utf-8.inc.php3
@@ -718,4 +718,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/korean-ks_c_5601-1987.inc.php3 b/lang/korean-ks_c_5601-1987.inc.php3
index dfee025ec..ce12ae929 100644
--- a/lang/korean-ks_c_5601-1987.inc.php3
+++ b/lang/korean-ks_c_5601-1987.inc.php3
@@ -727,4 +727,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/latvian-utf-8.inc.php3 b/lang/latvian-utf-8.inc.php3
index ab4379d26..f86ec7b63 100644
--- a/lang/latvian-utf-8.inc.php3
+++ b/lang/latvian-utf-8.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/latvian-windows-1257.inc.php3 b/lang/latvian-windows-1257.inc.php3
index 1575847d4..ef5a9b1c4 100644
--- a/lang/latvian-windows-1257.inc.php3
+++ b/lang/latvian-windows-1257.inc.php3
@@ -710,4 +710,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/lithuanian-utf-8.inc.php3 b/lang/lithuanian-utf-8.inc.php3
index ac63b130d..e50cc41d2 100644
--- a/lang/lithuanian-utf-8.inc.php3
+++ b/lang/lithuanian-utf-8.inc.php3
@@ -707,4 +707,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/lithuanian-windows-1257.inc.php3 b/lang/lithuanian-windows-1257.inc.php3
index c69c7ecff..9e02f6544 100644
--- a/lang/lithuanian-windows-1257.inc.php3
+++ b/lang/lithuanian-windows-1257.inc.php3
@@ -706,4 +706,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/malay-iso-8859-1.inc.php3 b/lang/malay-iso-8859-1.inc.php3
index 0a6924233..decee4002 100644
--- a/lang/malay-iso-8859-1.inc.php3
+++ b/lang/malay-iso-8859-1.inc.php3
@@ -730,4 +730,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/malay-utf-8.inc.php3 b/lang/malay-utf-8.inc.php3
index c9fcaa42a..d345968d5 100644
--- a/lang/malay-utf-8.inc.php3
+++ b/lang/malay-utf-8.inc.php3
@@ -731,4 +731,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/norwegian-iso-8859-1.inc.php3 b/lang/norwegian-iso-8859-1.inc.php3
index 53d33b33f..056eb37c5 100644
--- a/lang/norwegian-iso-8859-1.inc.php3
+++ b/lang/norwegian-iso-8859-1.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/norwegian-utf-8.inc.php3 b/lang/norwegian-utf-8.inc.php3
index 776a6bdac..5e1707df9 100644
--- a/lang/norwegian-utf-8.inc.php3
+++ b/lang/norwegian-utf-8.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/persian-utf-8.inc.php3 b/lang/persian-utf-8.inc.php3
new file mode 100644
index 000000000..62a9af614
--- /dev/null
+++ b/lang/persian-utf-8.inc.php3
@@ -0,0 +1,743 @@
+Ù„Ø·ÙØ§ پيكربندي(وضعيت) PHP را بررسي نماييد.';
+$strCantLoadRecodeIconv = 'بارگذاري iconv يا recode extension كه براي تبديل مجموعه كاراكترها لازم است ØŒ مقدور نمي‌باشد، php را براي اجازه Ø§Ø³ØªÙØ§Ø¯Ù‡ از آنها تنظيم كرده Ùˆ يا تبديل مجموعه كاراكترها (charset conversion) را در phpMyAdmin ØºÙŠØ±ÙØ¹Ø§Ù„ نماييد.';
+$strCantRenameIdxToPrimary = 'بازناميدن Ùهرست به PRIMARY مقدور نمي‌باشد!';
+$strCarriage = 'Ø±ÙØªÙ† به سر سطر: \\r';
+$strChange = 'تغيير';
+$strChangeDisplay = 'ستون را براي نمايش انتخاب نماييد';
+$strChangePassword = 'تغيير اسم رمز';
+$strCharsetOfFile = 'مجموعه كاراكترهاي پرونده:';
+$strCheckAll = 'انتخاب همه';
+$strCheckDbPriv = 'بررسي امتيازات پايگاه‌داده';
+$strCheckTable = 'بررسي جدول';
+$strChoosePage = 'Ù„Ø·ÙØ§ يك ØµÙØÙ‡ را براي ويرايش انتخاب نماييد';
+$strColComFeat = 'نمايش ØªÙˆØ¶ÙŠØØ§Øª ستون';
+$strColumn = 'ستون';
+$strColumnNames = 'نام ستونها';
+$strComments = 'ØªÙˆØ¶ÙŠØØ§Øª';
+$strCompleteInserts = 'تمام وروديها';
+$strCompression = 'ÙØ´Ø±Ø¯Ù‡â€ŒØ³Ø§Ø²ÙŠ';
+$strConfigFileError = 'phpMyAdmin قادر به خواندن پرونده تنظيمات نمي‌باشد! اين ممكن است به خاطر وجود يك مشكل دستوري Ùˆ يا پيدانشدن پرونده توسط php باشد. Ù„Ø·ÙØ§ پرونده تنظميات را مستقيما توسط پيوند زير صدا زده Ùˆ پيغام(هاي) خطاي php كه Ø¯Ø±ÙŠØ§ÙØª مي‌كنيد را بخوانيد. در اكثر موارد يك علامت نقل قول (" \' ") يا ويرگول‌نقطه (" ; ") در جايي وجود ندارد. اگر يك ØµÙØÙ‡ خالي Ø¯Ø±ÙŠØ§ÙØª كرديد ØŒ همه چيز درست است.';
+$strConfigureTableCoord = 'Ù„Ø·ÙØ§ مختصات جدول %s را تنظيم كنيد';
+$strConfirm = 'آيا براي انجام اين كار مطمئن هستيد؟';
+$strCopyTable = 'كپي كردن جدول به (پايگاه داده. جدول):';
+$strCopyTableOK = 'جدول %s به %s كپي شد.';
+$strCreate = 'ساختن';
+$strCreateIndex = 'ساخت يك Ùهرست در %s ستون';
+$strCreateIndexTopic = 'ساخت Ùهرست جديد';
+$strCreateNewDatabase = 'ساخت پايگاه داده جديد';
+$strCreateNewTable = 'ساخت جدول جديد در پايگاه داده %s';
+$strCreatePage = 'ساخت يك ØµÙØÙ‡ جديد';
+$strCreatePdfFeat = 'ساخت PDFs';
+$strCriteria = 'معيارها';
+
+$strData = 'داده';
+$strDataDict = 'ÙØ±Ù‡Ù†Ú¯ داده‌ها';
+$strDataOnly = 'Ùقط داده‌ها';
+$strDatabase = 'پايگاه داده ';
+$strDatabaseHasBeenDropped = 'پايگاه داده %s ØØ°Ù گرديد.';
+$strDatabaseWildcard = 'پايگاه‌داده (wildcards allowed):';
+$strDatabases = 'پايگاههاي داده';
+$strDatabasesStats = 'آمار پايگاههاي داده';
+$strDefault = 'Ù¾ÙŠØ´â€ŒÙØ±Ø¶';
+$strDelete = 'ØØ°Ù';
+$strDeleteFailed = 'ØØ°Ù نگرديد!';
+$strDeleteUserMessage = 'شما كاربر %s را ØØ°Ù نموديد.';
+$strDeleted = 'سطر ØØ°Ù گرديد .';
+$strDeletedRows = 'سطرهاي ØØ°Ù‌شده :';
+$strDescending = 'نزولي';
+$strDisabled = 'ØºÙŠØ±ÙØ¹Ø§Ù„';
+$strDisplay = 'نمايش';
+$strDisplayFeat = 'نمايش خصوصيات';
+$strDisplayOrder = 'ترتيب نمايش:';
+$strDisplayPDF = 'نمايش الگوي PDF';
+$strDoAQuery = 'انجام يك "پرس و جو با نمونه" (wildcard: "%")';
+$strDoYouReally = 'آيا مطمئن هستيد ';
+$strDocu = 'مستندات';
+$strDrop = 'ØØ°Ù';
+$strDropDB = 'ØØ°Ù پايگاه داده %s';
+$strDropTable = 'ØØ°Ù جدول';
+$strDumpXRows = 'ØØ°Ù %s سطر(ها) ابتدا از سطر شماره %s.';
+$strDumpingData = 'ØØ°Ù داده‌هاي جدول';
+$strDynamic = 'پويا';
+
+$strEdit = 'ويرايش';
+$strEditPDFPages = 'ويرايش ØµÙØØ§Øª PDF';
+$strEditPrivileges = 'ويرايش امتيازات';
+$strEffective = 'موثر';
+$strEmpty = 'خالي كردن';
+$strEmptyResultSet = 'MySQL يك نتيجه خالي داد. (مثلا 0 سطر).';
+$strEnabled = 'ÙØ¹Ø§Ù„';
+$strEnd = 'انتها';
+$strEndCut = 'END CUT';
+$strEndRaw = 'END RAW';
+$strEnglishPrivileges = ' نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود .';
+$strError = 'خطا';
+$strExplain = 'Ø´Ø±Ø Ø¯Ø§Ø¯Ù† SQL';
+$strExport = 'صدور';
+$strExportToXML = 'صدور به قالب XML';
+$strExtendedInserts = 'وروديهاي تمديدشده';
+$strExtra = 'اضاÙÙŠ';
+
+$strField = 'ستون';
+$strFieldHasBeenDropped = 'ستون %s ØØ°Ù گرديد';
+$strFields = 'ستونها';
+$strFieldsEmpty = ' تعداد ستونها خالي است! ';
+$strFieldsEnclosedBy = 'ستونهاي Ø¯Ø±Ù…ÙŠØ§Ù†â€ŒÚ¯Ø±ÙØªÙ‡ با';
+$strFieldsEscapedBy = 'ستونهاي جداشده با';
+$strFieldsTerminatedBy = 'ستونهاي منتهي به';
+$strFixed = 'fixed';
+$strFlushTable = 'Flush the table ("FLUSH")';
+$strFormEmpty = 'مقداري در ÙØ±Ù… وارد نشده !';
+$strFormat = 'قالب';
+$strFullText = 'كاملا متن';
+$strFunction = 'تابع';
+
+$strGenBy = 'توليد‌شده توسط';
+$strGenTime = 'زمان توليد';
+$strGo = 'تاييد';
+$strGrants = 'امتيازدهي';
+$strGzip = '"gzipped"';
+
+$strHasBeenAltered = 'تغيير داده‌شد.';
+$strHasBeenCreated = 'ساخته شد.';
+$strHaveToShow = 'شما ØØ°Ø§Ù‚Ù„ بايد يك ستون را براي نمايش انتخاب نماييد';
+$strHome = 'خانه';
+$strHomepageOfficial = 'ØµÙØÙ‡ خانه رسمي phpMyAdmin';
+$strHomepageSourceforge = 'ØµÙØÙ‡ بارگذاري Sourceforge phpMyAdmin';
+$strHost = 'ميزبان';
+$strHostEmpty = 'نام ميزبان خالي است!';
+
+$strIdxFulltext = 'كاملا متن';
+$strIfYouWish = 'اگر مي‌خواهيد كه Ùقط بعضي از ستونهاي جدول را بارگذاري نماييد ØŒ ليست ستونها را با كاما از هم جدا نماييد.';
+$strIgnore = 'Ignore';
+$strImportDocSQL = 'وارد كردن پرونده‌هاي docSQL';
+$strInUse = 'in use';
+$strIndex = 'Ùهرست';
+$strIndexHasBeenDropped = 'Ùهرست %s ØØ°Ù گرديد';
+$strIndexName = 'اسم Ùهرست :';
+$strIndexType = 'نوع Ùهرست :';
+$strIndexes = 'Ùهرست‌ها';
+$strInsecureMySQL = 'پرونده پيكربندي شما ØØ§ÙˆÙŠ ØªÙ†Ø¸ÙŠÙ…Ø§ØªÙŠ است (كاربر root بدون اسم رمز) كه مرتبط با ØØ³Ø§Ø¨ Ù¾ÙŠØ´â€ŒÙØ±Ø¶ MySQL مي‌باشد. اجراي MySQL با اين Ù¾ÙŠØ´â€ŒÙØ±Ø¶ باعث ورود غيرمجاز مي‌شود ØŒ Ùˆ شما بايد اين ØÙره امنيتي را ذرست كنيد.';
+$strInsert = 'درج';
+$strInsertAsNewRow = 'درج به عنوان يك سطر جديد';
+$strInsertNewRow = 'درج سطر جديد';
+$strInsertTextfiles = 'درج داده‌ها از يك پرونده متني در جدول';
+$strInsertedRows = 'سطرهاي درج‌شده:';
+$strInstructions = 'راهنمايي';
+$strInvalidName = '"%s" يكي از كلمات ذخيره‌شده(كليدي) مي‌باشد, شما نمي‌توانيد از آن به عنوان نام پايگاه‌داده/جدول/ستون Ø§Ø³ØªÙØ§Ø¯Ù‡ نماييد.';
+
+$strKeepPass = 'عدم تغيير اسم رمز';
+$strKeyname = 'Keyname';
+$strKill = 'Kill';
+
+$strLength = 'طول';
+$strLengthSet = 'طول/مقادير*';
+$strLimitNumRows = 'تعداد سطرها در هر ØµÙØÙ‡';
+$strLineFeed = 'تعويض خط: \\n';
+$strLines = 'خطوط';
+$strLinesTerminatedBy = 'خطوط منتهي به';
+$strLinkNotFound = 'پيوند پيدا نشد';
+$strLinksTo = 'پيوند به';
+$strLocationTextfile = 'Ù…ØÙ„ پرونده متني';
+$strLogPassword = 'اسم رمز:';
+$strLogUsername = 'نام كاربر:';
+$strLogin = 'ورود';
+$strLogout = 'خروج';
+
+$strMissingBracket = 'ÙØ§Ù‚د كروشه';
+$strModifications = 'Ø§ØµÙ„Ø§ØØ§Øª ذخيره گرديد';
+$strModify = 'اصلاØ';
+$strModifyIndexTopic = 'Ø§ØµÙ„Ø§Ø ÙŠÙƒ Ùهرست';
+$strMoveTable = 'انتقال جدول به (پايگاه داده. جدول):';
+$strMoveTableOK = 'جدول %s به %s انتقال داده‌شد.';
+$strMySQLCharset = 'مجموع كاراكترهاي MySQL';
+$strMySQLReloaded = 'MySQL مجددا بارگذاري شد.';
+$strMySQLSaid = 'پيغام MySQL :';
+$strMySQLServerProcess = 'MySQL %pma_s1% اجراشده در ميزبان %pma_s2% توسط %pma_s3%';
+$strMySQLShowProcess = 'نمايش ÙØ±Ø§ÙŠÙ†Ø¯Ù‡Ø§';
+$strMySQLShowStatus = 'نمايش اطلاعات MySQL';
+$strMySQLShowVars = 'نمايش متغيرهاي سيستمي MySQL';
+
+$strName = 'اسم';
+$strNext = 'بعد';
+$strNo = 'خير';
+$strNoDatabases = 'No databases';
+$strNoDescription = 'no Description';
+$strNoDropDatabases = 'دستور "DROP DATABASE" ØºÙŠØ±ÙØ¹Ø§Ù„ مي‌باشد.';
+$strNoIndex = 'هيچ Ùهرستي تعريÙ‌نشده‌است!';
+$strNoPassword = 'بدون اسم رمز';
+$strNoPhp = 'بدون كد PHP';
+$strNoQuery = 'No SQL query!';
+$strNoTablesFound = 'در اين پايگاه داده هيچ جدولي وجود ندارد .';
+$strNoUsersFound = 'هيچ كاربري وچود ندارد.';
+$strNone = 'خير';
+$strNotNumber = 'اين يك عدد نيست!';
+$strNotOK = 'not OK';
+$strNotSet = 'جدول %s وجود ندارد و يا در %s تنظيم نشده‌است';
+$strNotValidNumber = ' يك شماره سطر صØÙŠØ نيست!';
+$strNull = 'خالي';
+$strNumTables = 'جدولها';
+
+$strOK = 'تاييد';
+$strOftenQuotation = 'اغلب علامت نقل قول. اختياري به اين معني است كه Ùقط ستونهاي char Ùˆ varchar توسط كاراكتر "enclosed by" درميان Ú¯Ø±ÙØªÙ‡â€ŒÙ…يشوند.';
+$strOperations = 'عمليات';
+$strOptimizeTable = 'بهينه‌سازي جدول';
+$strOptionalControls = 'اختياري. كنترل چگونگي خواندن و نوشتن كاراكترهاي خاص.';
+$strOptionally = 'اختياري';
+$strOptions = 'انتخابها';
+$strOr = 'يا';
+
+$strPHPVersion = 'نسخه PHP';
+$strPageNumber = 'شماره ØµÙØÙ‡:';
+$strPassword = 'اسم رمز';
+$strPasswordEmpty = 'اسم رمز خالي است!';
+$strPasswordNotSame = 'اسم رمزها مانند هم نمي‌باشد!';
+$strPdfInvalidTblName = 'جدول "%s" وجود ندارد!';
+$strPdfNoTables = 'No tables';
+$strPhp = 'ساخت كد PHP';
+$strPmaDocumentation = 'مستندات phpMyAdmin';
+$strPos1 = 'شروع';
+$strPrevious = 'قبل';
+$strPrimary = 'اصلي';
+$strPrimaryKey = 'كيد اصلي';
+$strPrimaryKeyHasBeenDropped = 'كليد اصلي ØØ°Ù گرديد';
+$strPrimaryKeyName = 'نام كليد اصلي بايد PRIMARY باشد !';
+$strPrimaryKeyWarning = '(Ùقط Ùˆ Ùقط بايد "PRIMARY" نام يك كليد اصلي باشد!)';
+$strPrint = 'چاپ';
+$strPrintView = 'نماي چاپ';
+$strPrivileges = 'امتيازات';
+$strProperties = 'خصوصيات';
+$strPutColNames = 'قراردادن نام ستونها در اولين سطر';
+
+$strQBE = 'پرس و جو';
+$strQBEDel = 'Del';
+$strQBEIns = 'Ins';
+$strQueryOnDb = 'پرس و جوي SQL از پايگاه داده %s :';
+
+$strReType = 'تكرار';
+$strRecords = 'سطرها';
+$strRelationNotWorking ='امكانات اضاÙÙŠ براي كاركردن با جدولهاي پيوندي ØºÙŠØ±ÙØ¹Ø§Ù„ شده‌است . براي پيداكردن دليل آن %sاينجا%s را بزنيد .';
+$strReloadMySQL = 'بار كردن مجدد MySQL';
+$strRememberReload = 'سرور را مجددا بارگذاري نماييد.';
+$strRenameTable = 'بازناميدن جدول به';
+$strRenameTableOK = 'جدول %s به %s تغيير نام داده‌شد';
+$strRepairTable = 'مرمت جدول';
+$strReplace = 'جايگذاري';
+$strReplaceTable = 'جايگزيني داده‌هاي جدول با پرونده';
+$strReset = 'Reset';
+$strRevoke = 'ابطال';
+$strRevokeGrant = 'ابطال امتيازدهي';
+$strRevokeGrantMessage = 'شما امتيازدهي براي %s را ابطال كرديد';
+$strRevokeMessage = 'شما امتيازات %s را ابطال كرديد';
+$strRevokePriv = 'ابطال امتيازات';
+$strRowLength = 'طول سطر';
+$strRowSize = ' اندازه سطر ';
+$strRows = 'سطرها';
+$strRowsFrom = 'سطر(ها) ابتدا از سطر شماره ';
+$strRowsModeHorizontal = 'اÙقي';
+$strRowsModeVertical = 'عمودي';
+$strRowsStatistic = 'آمار سطرها';
+$strRunQuery = 'Submit Query';
+$strRunSQLQuery = 'اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s';
+$strRunning = 'در ميزبان %s';
+
+$strSQL = 'SQL';
+$strSQLQuery = 'پرس و جوي SQL';
+$strSQLResult = 'نتيجه SQL';
+$strSave = 'ذخيره';
+$strSearch = 'جستجو';
+$strSearchFormTitle = 'جستجو در پايگاه‌داده';
+$strSearchInTables = 'در جدول(هاي) :';
+$strSearchNeedle = 'كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: "%"):';
+$strSearchOption1 = 'ØØ¯Ø§Ù‚Ù„ يكي از كلمات';
+$strSearchOption2 = 'تمامي كلمات';
+$strSearchOption3 = 'عبارت كامل';
+$strSearchOption4 = 'بعنوان مبين منظم(as regular expression)';
+$strSearchResultsFor = 'نتيجه جستجوي "%s " %s:';
+$strSearchType = 'نوع جستجو :';
+$strSelect = 'انتخاب';
+$strSelectADb = 'Ù„Ø·ÙØ§ يك پايگاه داده را انتخاب نماييد.';
+$strSelectAll = 'انتخاب همه';
+$strSelectFields = 'ستونها را انتخاب نماييد (ØØ¯Ø§Ù‚Ù„ يكي)';
+$strSelectNumRows = 'in query';
+$strSelectTables = 'Select Tables';
+$strSend = 'ذخيره به صورت پرونده';
+$strServer = 'سرور %s';
+$strServerVersion = 'نسخه سرور';
+$strSetEnumVal = 'اگر نوع ستون "enum" يا "set" مي‌باشد ØŒ Ù„Ø·ÙØ§ براي ورود مقادير از اين قالب Ø§Ø³ØªÙØ§Ø¯Ù‡ نماييد : \'a\',\'b\',\'c\'... اگر Ø§ØØªÙŠØ§Ø¬ داشتيد كه از علامت مميز برعكس(بك‌اسلش) (" \ ") يا نقل‌قول تكي (" \' ") در آن مقادير Ø§Ø³ØªÙØ§Ø¯Ù‡ نماييد ØŒ قبل از آنها علامت (" \ ") را بگذاريد (براي مثال\'\\\\xyz\' يا \'a\\\'b\')';
+$strShow = 'نمايش';
+$strShowAll = 'نمايش همه';
+$strShowColor = 'نمايش رنگ';
+$strShowCols = 'نمايش ستونها';
+$strShowGrid = 'Show grid';
+$strShowPHPInfo = 'نمايش اطلاعات PHP';
+$strShowTableDimension = 'نمايش ابعاد جدولها';
+$strShowTables = 'نمايش جدولها';
+$strShowThisQuery = ' نمايش دوباره اين پرس و جو در اينجا ';
+$strShowingRecords = 'Showing rows';
+$strSingly = '(تنها)';
+$strSize = 'اندازه';
+$strSort = 'ترتيب';
+$strSpaceUsage = 'ÙØ¶Ø§ÙŠ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ´Ø¯Ù‡';
+$strSplitWordsWithSpace = 'كلمات با علامت ÙØ§ØµÙ„Ù‡ (" ") جدا مي‌شوند.';
+$strStatement = 'شرج';
+$strStrucCSV = 'داده‌هاي CSV';
+$strStrucData = 'ساختار و داده‌ها';
+$strStrucDrop = 'Ø§ÙØ²ÙˆØ¯Ù† \'جدول ØØ°Ù‌شده\'';
+$strStrucExcelCSV = 'CSV براي داده‌هاي Ms Excel';
+$strStrucOnly = 'Ùقط ساختار';
+$strStructPropose = 'پيشنهاد ساختار جدول';
+$strStructure = 'ساختار';
+$strSubmit = 'ارسال';
+$strSuccess = 'پرس Ùˆ جوي SQL شما با موÙقيت اجرا گرديد';
+$strSum = 'مجموع';
+
+$strTable = 'جدول';
+$strTableComments = 'ØªÙˆØ¶ÙŠØØ§Øª جدول';
+$strTableEmpty = 'نام جدول وارد نشده‌است !';
+$strTableHasBeenDropped = 'جدول %s ØØ°Ù گرديد';
+$strTableHasBeenEmptied = 'جدول %s خالي شد';
+$strTableMaintenance = 'نگهداشت جدول';
+$strTableType = 'نوع جدول';
+$strTables = '%s جدول(ها)';
+$strTheContent = 'Ù…ØØªÙˆÙŠØ§Øª پرونده شما قراداده‌شد.';
+$strTotal = 'جمع كل';
+$strTotalUC = 'جمع كل';
+$strType = 'نوع';
+
+$strUncheckAll = 'عدم انتخاب همه';
+$strUnique = 'يكتا';
+$strUnselectAll = 'عدم انتخاب همه';
+$strUpdatePrivMessage = 'امتيازات %s به هنگام گرديد.';
+$strUpdateProfile = 'به هنگام درآوري تنظيمات:';
+$strUpdateProfileMessage = 'تنظيمات به هنگام گرديد.';
+$strUpdateQuery = 'به‌هنگام سازي پرس و جو';
+$strUsage = 'Ø§Ø³ØªÙØ§Ø¯Ù‡';
+$strUseBackquotes = 'قراردادن نام جدولها و ستونها بين علامت نقل‌قول (" \' ")';
+$strUseTables = 'بكارگيري جدولها';
+$strUser = 'كاربر';
+$strUserEmpty = 'نام كاربر خالي است!';
+$strUserName = 'نام كاربر';
+$strUsers = 'كاربران';
+
+$strValidateSQL = 'معتبرسازي SQL';
+$strValue = 'مقدار';
+$strViewDump = 'نمايش الگوي جدول';
+$strViewDumpDB = 'نمايش الگوي پايگاه داده';
+
+$strWebServerUploadDirectoryError = 'پوشه‌اي را كه براي انتقال ÙØ§ÙŠÙ„ انتخاب كرده‌ايد قابل دسترسي نيست.';
+$strWelcome = 'به %s خوش‌آمديد';
+$strWithChecked = 'موارد انتخاب‌شده :';
+$strWrongUser = 'نام كاربر/اسم رمز اشتباه است. دسترسي مجاز نيست.';
+
+$strYes = 'بلي';
+
+$strZip = '"zipped"';
+// To translate
+$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
+
+$strAbortedClients = 'Aborted'; //to translate
+$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
+$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
+$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
+$strAddDropDatabase = 'Add DROP DATABASE'; //to translate
+$strAddIntoComments = 'Add into comments'; //to translate
+$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
+$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
+$strAddToIndex = 'Add to index %s column(s)'; //to translate
+$strAddedColumnComment = 'Added comment for column'; //to translate
+$strAddedColumnRelation = 'Added relation for column'; //to translate
+$strAdministration = 'Administration'; //to translate
+$strArabic = 'Arabic'; //to translate
+$strArmenian = 'Armenian'; //to translate
+$strAutodetect = 'Autodetect'; //to translate
+$strAutomaticLayout = 'Automatic layout'; //to translate
+
+$strBaltic = 'Baltic'; //to translate
+$strBinaryDoNotEdit = 'Binary - do not edit'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strBookmarkDeleted = 'The bookmark has been deleted.'; //to translate
+$strBookmarkLabel = 'Label'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
+$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
+$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
+$strBookmarkView = 'View only'; //to translate
+$strBrowseForeignValues = 'Browse foreign values'; //to translate
+$strBulgarian = 'Bulgarian'; //to translate
+$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the $cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file to FALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
+
+$strCSVOptions = 'CSV options'; //to translate
+$strCannotLogin = 'Cannot login to MySQL server'; //to translate
+$strCantLoad = 'cannot load %s extension, please check PHP Configuration'; //to translate
+$strCantUseRecodeIconv = 'Can not use iconv nor libiconv nor recode_string function while extension reports to be loaded. Check your php configuration.'; //to translate
+$strCardinality = 'Cardinality'; //to translate
+$strCaseInsensitive = 'case-insensitive'; //to translate
+$strCaseSensitive = 'case-sensitive'; //to translate
+$strCentralEuropean = 'Central European'; //to translate
+$strChangeCopyMode = 'Create a new user with the same privileges and ...'; //to translate
+$strChangeCopyModeCopy = '... keep the old one.'; //to translate
+$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; //to translate
+$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; //to translate
+$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; //to translate
+$strChangeCopyUser = 'Change Login Information / Copy User'; //to translate
+$strCharset = 'Charset'; //to translate
+$strCharsets = 'Charsets'; //to translate
+$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
+$strCheckPrivs = 'Check Privileges'; //to translate
+$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
+$strCollation = 'Collation'; //to translate
+$strColumnPrivileges = 'Column-specific privileges'; //to translate
+$strCommand = 'Command'; //to translate
+$strConnections = 'Connections'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strCookiesRequired = 'Cookies must be enabled past this point.'; //to translate
+$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
+$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.'; //to translate
+$strCroatian = 'Croatian'; //to translate
+$strCyrillic = 'Cyrillic'; //to translate
+$strCzech = 'Czech'; //to translate
+
+$strDBComment = 'Database comment: '; //to translate
+$strDBGContext = 'Context'; //to translate
+$strDBGContextID = 'Context ID'; //to translate
+$strDBGHits = 'Hits'; //to translate
+$strDBGLine = 'Line'; //to translate
+$strDBGMaxTimeMs = 'Max time, ms'; //to translate
+$strDBGMinTimeMs = 'Min time, ms'; //to translate
+$strDBGModule = 'Module'; //to translate
+$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
+$strDBGTotalTimeMs = 'Total time, ms'; //to translate
+$strDanish = 'Danish'; //to translate
+$strDatabaseExportOptions = 'Database export options'; //to translate
+$strDatabaseNoTable = 'This database contains no table!'; //to translate
+$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
+$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
+$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
+$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
+$strDbPrivileges = 'Database-specific privileges'; //to translate
+$strDbSpecific = 'database-specific'; //to translate
+$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
+$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
+$strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; //to translate
+$strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; //to translate
+$strDeleting = 'Deleting %s'; //to translate
+$strDescription = 'Description'; //to translate
+$strDictionary = 'dictionary'; //to translate
+$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
+$strDropUsersDb = 'Drop the databases that have the same names as the users.'; //to translate
+$strDumpComments = 'Include column comments as inline SQL-comments'; //to translate
+$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
+
+$strEnglish = 'English'; //to translate
+$strEstonian = 'Estonian'; //to translate
+$strExcelOptions = 'Excel options'; //to translate
+$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
+
+$strFailedAttempts = 'Failed attempts'; //to translate
+$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
+$strFileCouldNotBeRead = 'File could not be read'; //to translate
+$strFileNameTemplate = 'File name template'; //to translate
+$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.'; //to translate
+$strFileNameTemplateRemember = 'remember template'; //to translate
+$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
+
+$strGeneralRelationFeat = 'General relation features'; //to translate
+$strGerman = 'German'; //to translate
+$strGlobal = 'global'; //to translate
+$strGlobalPrivileges = 'Global privileges'; //to translate
+$strGlobalValue = 'Global value'; //to translate
+$strGrantOption = 'Grant'; //to translate
+$strGreek = 'Greek'; //to translate
+
+$strHebrew = 'Hebrew'; //to translate
+$strHungarian = 'Hungarian'; //to translate
+
+$strId = 'ID'; //to translate
+$strIgnoringFile = 'Ignoring file %s'; //to translate
+$strImportFiles = 'Import files'; //to translate
+$strImportFinished = 'Import finished'; //to translate
+$strInnodbStat = 'InnoDB Status'; //to translate
+$strInsertedRowId = 'Inserted row id:'; //to translate
+$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
+$strInternalRelations = 'Internal relations'; //to translate
+
+$strJapanese = 'Japanese'; //to translate
+$strJumpToDB = 'Jump to database "%s".'; //to translate
+$strJustDelete = 'Just delete the users from the privilege tables.'; //to translate
+$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; //to translate
+
+$strKorean = 'Korean'; //to translate
+
+$strLaTeX = 'LaTeX'; //to translate
+$strLaTeXOptions = 'LaTeX options'; //to translate
+$strLandscape = 'Landscape'; //to translate
+$strLatexCaption = 'Table caption'; //to translate
+$strLatexContent = 'Content of table __TABLE__'; //to translate
+$strLatexContinued = '(continued)'; //to translate
+$strLatexContinuedCaption = 'Continued table caption'; //to translate
+$strLatexIncludeCaption = 'Include table caption'; //to translate
+$strLatexLabel = 'Label key'; //to translate
+$strLatexStructure = 'Structure of table __TABLE__'; //to translate
+$strLithuanian = 'Lithuanian'; //to translate
+$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
+$strLoadMethod = 'LOAD method'; //to translate
+$strLocalhost = 'Local'; //to translate
+$strLogServer = 'Server'; //to translate
+$strLoginInformation = 'Login Information'; //to translate
+
+$strMIME_MIMEtype = 'MIME-type'; //to translate
+$strMIME_available_mime = 'Available MIME-types'; //to translate
+$strMIME_available_transform = 'Available transformations'; //to translate
+$strMIME_description = 'Description'; //to translate
+$strMIME_file = 'Filename'; //to translate
+$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.'; //to translate
+$strMIME_transformation = 'Browser transformation'; //to translate
+$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s'; //to translate
+$strMIME_transformation_options = 'Transformation options'; //to translate
+$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').'; //to translate
+$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function'; //to translate
+$strMoreStatusVars = 'More status variables'; //to translate
+$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
+$strMultilingual = 'multilingual'; //to translate
+$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
+
+$strNoDatabasesSelected = 'No databases selected.'; //to translate
+$strNoExplain = 'Skip Explain SQL'; //to translate
+$strNoFrames = 'phpMyAdmin is more friendly with a frames-capable browser.'; //to translate
+$strNoIndexPartsDefined = 'No index parts defined!'; //to translate
+$strNoModification = 'No change'; //to translate
+$strNoOptions = 'This format has no options'; //to translate
+$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
+$strNoPrivileges = 'No Privileges'; //to translate
+$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
+$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
+$strNoUsersSelected = 'No users selected.'; //to translate
+$strNoValidateSQL = 'Skip Validate SQL'; //to translate
+$strNumSearchResultsInTable = '%s match(es) inside table %s '; //to translate
+$strNumSearchResultsTotal = 'Total: %s match(es)'; //to translate
+
+$strOverhead = 'Overhead'; //to translate
+$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
+
+$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
+$strPaperSize = 'Paper size'; //to translate
+$strPartialText = 'Partial Texts'; //to translate
+$strPasswordChanged = 'The Password for %s was changed successfully.'; //to translate
+$strPdfDbSchema = 'Schema of the the "%s" database - Page %s'; //to translate
+$strPdfInvalidPageNum = 'Undefined PDF page number!'; //to translate
+$strPerHour = 'per hour'; //to translate
+$strPerMinute = 'per minute'; //to translate
+$strPerSecond = 'per second'; //to translate
+$strPhoneBook = 'phone book'; //to translate
+$strPmaUriError = 'The $cfg[\'PmaAbsoluteUri\'] directive MUST be set in your configuration file!'; //to translate
+$strPortrait = 'Portrait'; //to translate
+$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
+$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
+$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
+$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
+$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
+$strPrivDescDelete = 'Allows deleting data.'; //to translate
+$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
+$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
+$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
+$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
+$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
+$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
+$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
+$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
+$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.'; //to translate
+$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.'; //to translate
+$strPrivDescMaxUpdates = 'Limits the number of commands that change any table or database the user may execute per hour.'; //to translate
+$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
+$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
+$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
+$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
+$strPrivDescReplClient = 'Gives the right to the user to ask where the slaves / masters are.'; //to translate
+$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
+$strPrivDescSelect = 'Allows reading data.'; //to translate
+$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
+$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
+$strPrivDescSuper = 'Allows connecting, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
+$strPrivDescUpdate = 'Allows changing data.'; //to translate
+$strPrivDescUsage = 'No privileges.'; //to translate
+$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
+$strProcesslist = 'Process list'; //to translate
+
+$strQueryFrame = 'Query window'; //to translate
+$strQueryFrameDebug = 'Debugging information'; //to translate
+$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.'; //to translate
+$strQuerySQLHistory = 'SQL-history'; //to translate
+$strQueryStatistics = 'Query statistics : Since its startup, %s queries have been sent to the server.'; //to translate
+$strQueryTime = 'Query took %01.4f sec'; //to translate
+$strQueryType = 'Query type'; //to translate
+$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
+
+$strReceived = 'Received'; //to translate
+$strReferentialIntegrity = 'Check referential integrity:'; //to translate
+$strRelationView = 'Relation view'; //to translate
+$strRelationalSchema = 'Relational schema'; //to translate
+$strRelations = 'Relations'; //to translate
+$strReloadFailed = 'MySQL reload failed.'; //to translate
+$strReloadingThePrivileges = 'Reloading the privileges'; //to translate
+$strRemoveSelectedUsers = 'Remove selected users'; //to translate
+$strReplaceNULLBy = 'Replace NULL by'; //to translate
+$strResourceLimits = 'Resource limits'; //to translate
+$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; //to translate
+$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
+$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)'; //to translate
+$strRowsModeOptions = 'in %s mode and repeat headers after %s cells'; //to translate
+$strRussian = 'Russian'; //to translate
+
+$strSQLOptions = 'SQL options'; //to translate
+$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; //to translate
+$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; //to translate
+$strSQPBugInvalidIdentifer = 'Invalid Identifer'; //to translate
+$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
+$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
+$strSaveOnServer = 'Save on server in %s directory'; //to translate
+$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page'; //to translate
+$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
+$strSent = 'Sent'; //to translate
+$strServerChoice = 'Server Choice'; //to translate
+$strServerStatus = 'Runtime Information'; //to translate
+$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
+$strServerTabProcesslist = 'Processes'; //to translate
+$strServerTabVariables = 'Variables'; //to translate
+$strServerTrafficNotes = 'Server traffic : These tables show the network traffic statistics of this MySQL server since its startup.'; //to translate
+$strServerVars = 'Server variables and settings'; //to translate
+$strSessionValue = 'Session value'; //to translate
+$strShowDatadictAs = 'Data Dictionary Format'; //to translate
+$strShowFullQueries = 'Show Full Queries'; //to translate
+$strSimplifiedChinese = 'Simplified Chinese'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strStatCheckTime = 'Last check'; //to translate
+$strStatCreateTime = 'Creation'; //to translate
+$strStatUpdateTime = 'Last update'; //to translate
+$strStatus = 'Status'; //to translate
+$strSwedish = 'Swedish'; //to translate
+$strSwitchToTable = 'Switch to copied table'; //to translate
+
+$strTableHasBeenFlushed = 'Table %s has been flushed'; //to translate
+$strTableOfContents = 'Table of contents'; //to translate
+$strTableOptions = 'Table options'; //to translate
+$strTableStructure = 'Table structure for table'; //to translate
+$strTblPrivileges = 'Table-specific privileges'; //to translate
+$strTextAreaLength = ' Because of its length, this field might not be editable '; //to translate
+$strThai = 'Thai'; //to translate
+$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; //to translate
+$strTheTerminator = 'The terminator of the fields.'; //to translate
+$strThisHost = 'This Host'; //to translate
+$strThisNotDirectory = 'This was not a directory'; //to translate
+$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
+$strTime = 'Time'; //to translate
+$strToggleScratchboard = 'Toggle scratchboard'; //to translate
+$strTraditionalChinese = 'Traditional Chinese'; //to translate
+$strTraffic = 'Traffic'; //to translate
+$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
+$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).'; //to translate
+$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
+$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().'; //to translate
+$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)'; //to translate
+$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.'; //to translate
+$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
+$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
+$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .'; //to translate
+$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.'; //to translate
+$strTruncateQueries = 'Truncate Shown Queries'; //to translate
+$strTurkish = 'Turkish'; //to translate
+
+$strUkrainian = 'Ukrainian'; //to translate
+$strUnicode = 'Unicode'; //to translate
+$strUnknown = 'unknown'; //to translate
+$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
+$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
+$strUseHostTable = 'Use Host Table'; //to translate
+$strUseTextField = 'Use text field'; //to translate
+$strUseThisValue = 'Use this value'; //to translate
+$strUserAlreadyExists = 'The user %s already exists!'; //to translate
+$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
+$strUserOverview = 'User overview'; //to translate
+$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
+$strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate
+
+$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; //to translate
+$strVar = 'Variable'; //to translate
+$strViewDumpDatabases = 'View dump (schema) of databases'; //to translate
+
+$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
+$strWestEuropean = 'West European'; //to translate
+$strWildcard = 'wildcard'; //to translate
+$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
+$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
+$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
+
+$strXML = 'XML'; //to translate
+
+$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
+?>
diff --git a/lang/persian-windows-1256.inc.php3 b/lang/persian-windows-1256.inc.php3
new file mode 100644
index 000000000..cb7315952
--- /dev/null
+++ b/lang/persian-windows-1256.inc.php3
@@ -0,0 +1,743 @@
+áØÝÇ íßÑÈäÏí(æÖÚíÊ) PHP ÑÇ ÈÑÑÓí äãÇííÏ.';
+$strCantLoadRecodeIconv = 'ÈÇÑÐÇÑí iconv íÇ recode extension ßå ÈÑÇí ÊÈÏíá ãÌãæÚå ßÇÑÇßÊÑåÇ áÇÒã ÇÓÊ ¡ ãÞ쾄 äãíÈÇÔÏ¡ php ÑÇ ÈÑÇí ÇÌÇÒå ÇÓÊÝÇÏå ÇÒ ÂäåÇ ÊäÙíã ßÑÏå æ íÇ ÊÈÏíá ãÌãæÚå ßÇÑÇßÊÑåÇ (charset conversion) ÑÇ ÏÑ phpMyAdmin ÛíÑÝÚÇá äãÇííÏ.';
+$strCantRenameIdxToPrimary = 'ÈÇÒäÇãíÏä ÝåÑÓÊ Èå PRIMARY ãÞ쾄 äãíÈÇÔÏ!';
+$strCarriage = 'ÑÝÊä Èå ÓÑ ÓØÑ: \\r';
+$strChange = 'ÊÛííÑ';
+$strChangeDisplay = 'ÓÊæä ÑÇ ÈÑÇí äãÇíÔ ÇäÊÎÇÈ äãÇííÏ';
+$strChangePassword = 'ÊÛííÑ ÇÓã ÑãÒ';
+$strCharsetOfFile = 'ãÌãæÚå ßÇÑÇßÊÑåÇí ÑæäÏå:';
+$strCheckAll = 'ÇäÊÎÇÈ åãå';
+$strCheckDbPriv = 'ÈÑÑÓí ÇãÊíÇÒÇÊ ÇíÇåÏÇÏå';
+$strCheckTable = 'ÈÑÑÓí ÌÏæá';
+$strChoosePage = 'áØÝÇ íß ÕÝÍå ÑÇ ÈÑÇí æíÑÇíÔ ÇäÊÎÇÈ äãÇííÏ';
+$strColComFeat = 'äãÇíÔ ÊæÖíÍÇÊ ÓÊæä';
+$strColumn = 'ÓÊæä';
+$strColumnNames = 'äÇã ÓÊæäåÇ';
+$strComments = 'ÊæÖíÍÇÊ';
+$strCompleteInserts = 'ÊãÇã æÑæÏíåÇ';
+$strCompression = 'ÝÔÑÏåÓÇÒí';
+$strConfigFileError = 'phpMyAdmin ÞÇÏÑ Èå ÎæÇäÏä ÑæäÏå ÊäÙíãÇÊ äãíÈÇÔÏ! Çíä ããßä ÇÓÊ Èå ÎÇØÑ æÌæÏ íß ãÔßá ÏÓÊæÑí æ íÇ íÏÇäÔÏä ÑæäÏå ÊæÓØ php ÈÇÔÏ. áØÝÇ ÑæäÏå ÊäÙãíÇÊ ÑÇ ãÓÊÞíãÇ ÊæÓØ íæäÏ ÒíÑ ÕÏÇ ÒÏå æ íÛÇã(åÇí) ÎØÇí php ßå ÏÑíÇÝÊ ãíßäíÏ ÑÇ ÈÎæÇäíÏ. ÏÑ ÇßËÑ ãæÇÑÏ íß ÚáÇãÊ äÞá Þæá (" \' ") íÇ æíÑæáäÞØå (" ; ") ÏÑ ÌÇíí æÌæÏ äÏÇÑÏ. ÇÑ íß ÕÝÍå ÎÇáí ÏÑíÇÝÊ ßÑÏíÏ ¡ åãå íÒ ÏÑÓÊ ÇÓÊ.';
+$strConfigureTableCoord = 'áØÝÇ ãÎÊÕÇÊ ÌÏæá %s ÑÇ ÊäÙíã ßäíÏ';
+$strConfirm = 'ÂíÇ ÈÑÇí ÇäÌÇã Çíä ßÇÑ ãØãÆä åÓÊíÏ¿';
+$strCopyTable = 'ßí ßÑÏä ÌÏæá Èå (ÇíÇå ÏÇÏå. ÌÏæá):';
+$strCopyTableOK = 'ÌÏæá %s Èå %s ßí ÔÏ.';
+$strCreate = 'ÓÇÎÊä';
+$strCreateIndex = 'ÓÇÎÊ íß ÝåÑÓÊ ÏÑ %s ÓÊæä';
+$strCreateIndexTopic = 'ÓÇÎÊ ÝåÑÓÊ ÌÏíÏ';
+$strCreateNewDatabase = 'ÓÇÎÊ ÇíÇå ÏÇÏå ÌÏíÏ';
+$strCreateNewTable = 'ÓÇÎÊ ÌÏæá ÌÏíÏ ÏÑ ÇíÇå ÏÇÏå %s';
+$strCreatePage = 'ÓÇÎÊ íß ÕÝÍå ÌÏíÏ';
+$strCreatePdfFeat = 'ÓÇÎÊ PDFs';
+$strCriteria = 'ãÚíÇÑåÇ';
+
+$strData = 'ÏÇÏå';
+$strDataDict = 'ÝÑåä ÏÇÏååÇ';
+$strDataOnly = 'ÝÞØ ÏÇÏååÇ';
+$strDatabase = 'ÇíÇå ÏÇÏå ';
+$strDatabaseHasBeenDropped = 'ÇíÇå ÏÇÏå %s ÍÐÝ ÑÏíÏ.';
+$strDatabaseWildcard = 'ÇíÇåÏÇÏå (wildcards allowed):';
+$strDatabases = 'ÇíÇååÇí ÏÇÏå';
+$strDatabasesStats = 'ÂãÇÑ ÇíÇååÇí ÏÇÏå';
+$strDefault = 'íÔÝÑÖ';
+$strDelete = 'ÍÐÝ';
+$strDeleteFailed = 'ÍÐÝ äÑÏíÏ!';
+$strDeleteUserMessage = 'ÔãÇ ßÇÑÈÑ %s ÑÇ ÍÐÝ äãæÏíÏ.';
+$strDeleted = 'ÓØÑ ÍÐÝ ÑÏíÏ .';
+$strDeletedRows = 'ÓØÑåÇí ÍÐÝÔÏå :';
+$strDescending = 'äÒæáí';
+$strDisabled = 'ÛíÑÝÚÇá';
+$strDisplay = 'äãÇíÔ';
+$strDisplayFeat = 'äãÇíÔ ÎÕæÕíÇÊ';
+$strDisplayOrder = 'ÊÑÊíÈ äãÇíÔ:';
+$strDisplayPDF = 'äãÇíÔ Çáæí PDF';
+$strDoAQuery = 'ÇäÌÇã íß "ÑÓ æ Ìæ ÈÇ äãæäå" (wildcard: "%")';
+$strDoYouReally = 'ÂíÇ ãØãÆä åÓÊíÏ ';
+$strDocu = 'ãÓÊäÏÇÊ';
+$strDrop = 'ÍÐÝ';
+$strDropDB = 'ÍÐÝ ÇíÇå ÏÇÏå %s';
+$strDropTable = 'ÍÐÝ ÌÏæá';
+$strDumpXRows = 'ÍÐÝ %s ÓØÑ(åÇ) ÇÈÊÏÇ ÇÒ ÓØÑ ÔãÇÑå %s.';
+$strDumpingData = 'ÍÐÝ ÏÇÏååÇí ÌÏæá';
+$strDynamic = 'æíÇ';
+
+$strEdit = 'æíÑÇíÔ';
+$strEditPDFPages = 'æíÑÇíÔ ÕÝÍÇÊ PDF';
+$strEditPrivileges = 'æíÑÇíÔ ÇãÊíÇÒÇÊ';
+$strEffective = 'ãæËÑ';
+$strEmpty = 'ÎÇáí ßÑÏä';
+$strEmptyResultSet = 'MySQL íß äÊíÌå ÎÇáí ÏÇÏ. (ãËáÇ 0 ÓØÑ).';
+$strEnabled = 'ÝÚÇá';
+$strEnd = 'ÇäÊåÇ';
+$strEndCut = 'END CUT';
+$strEndRaw = 'END RAW';
+$strEnglishPrivileges = ' äßÊå : äÇã ÇãÊíÇÒÇÊ MySQL Èå ÒÈÇä ÇäáíÓí ÈíÇä ãíÔæÏ .';
+$strError = 'ÎØÇ';
+$strExplain = 'ÔÑÍ ÏÇÏä SQL';
+$strExport = 'ÕÏæÑ';
+$strExportToXML = 'Õ쾄 Èå ÞÇáÈ XML';
+$strExtendedInserts = 'æÑæÏíåÇí ÊãÏíÏÔÏå';
+$strExtra = 'ÇÖÇÝí';
+
+$strField = 'ÓÊæä';
+$strFieldHasBeenDropped = 'ÓÊæä %s ÍÐÝ ÑÏíÏ';
+$strFields = 'ÓÊæäåÇ';
+$strFieldsEmpty = ' ÊÚÏÇÏ ÓÊæäåÇ ÎÇáí ÇÓÊ! ';
+$strFieldsEnclosedBy = 'ÓÊæäåÇí ÏÑãíÇäÑÝÊå ÈÇ';
+$strFieldsEscapedBy = 'ÓÊæäåÇí ÌÏÇÔÏå ÈÇ';
+$strFieldsTerminatedBy = 'ÓÊæäåÇí ãäÊåí Èå';
+$strFixed = 'fixed';
+$strFlushTable = 'Flush the table ("FLUSH")';
+$strFormEmpty = 'ãÞÏÇÑí ÏÑ ÝÑã æÇÑÏ äÔÏå !';
+$strFormat = 'ÞÇáÈ';
+$strFullText = 'ßÇãáÇ ãÊä';
+$strFunction = 'ÊÇÈÚ';
+
+$strGenBy = 'ÊæáíÏÔÏå ÊæÓØ';
+$strGenTime = 'ÒãÇä ÊæáíÏ';
+$strGo = 'ÊÇííÏ';
+$strGrants = 'ÇãÊíÇÒÏåí';
+$strGzip = '"gzipped"';
+
+$strHasBeenAltered = 'ÊÛííÑ ÏÇÏåÔÏ.';
+$strHasBeenCreated = 'ÓÇÎÊå ÔÏ.';
+$strHaveToShow = 'ÔãÇ ÍÐÇÞá ÈÇíÏ íß ÓÊæä ÑÇ ÈÑÇí äãÇíÔ ÇäÊÎÇÈ äãÇííÏ';
+$strHome = 'ÎÇäå';
+$strHomepageOfficial = 'ÕÝÍå ÎÇäå ÑÓãí phpMyAdmin';
+$strHomepageSourceforge = 'ÕÝÍå ÈÇÑÐÇÑí Sourceforge phpMyAdmin';
+$strHost = 'ãíÒÈÇä';
+$strHostEmpty = 'äÇã ãíÒÈÇä ÎÇáí ÇÓÊ!';
+
+$strIdxFulltext = 'ßÇãáÇ ãÊä';
+$strIfYouWish = 'ÇÑ ãíÎæÇåíÏ ßå ÝÞØ ÈÚÖí ÇÒ ÓÊæäåÇí ÌÏæá ÑÇ ÈÇÑÐÇÑí äãÇííÏ ¡ áíÓÊ ÓÊæäåÇ ÑÇ ÈÇ ßÇãÇ ÇÒ åã ÌÏÇ äãÇííÏ.';
+$strIgnore = 'Ignore';
+$strImportDocSQL = 'æÇÑÏ ßÑÏä ÑæäÏååÇí docSQL';
+$strInUse = 'in use';
+$strIndex = 'ÝåÑÓÊ';
+$strIndexHasBeenDropped = 'ÝåÑÓÊ %s ÍÐÝ ÑÏíÏ';
+$strIndexName = 'ÇÓã ÝåÑÓÊ :';
+$strIndexType = 'äæÚ ÝåÑÓÊ :';
+$strIndexes = 'ÝåÑÓÊåÇ';
+$strInsecureMySQL = 'ÑæäÏå íßÑÈäÏí ÔãÇ ÍÇæí ÊäÙíãÇÊí ÇÓÊ (ßÇÑÈÑ root ÈÏæä ÇÓã ÑãÒ) ßå ãÑÊÈØ ÈÇ ÍÓÇÈ íÔÝÑÖ MySQL ãíÈÇÔÏ. ÇÌÑÇí MySQL ÈÇ Çíä íÔÝÑÖ ÈÇÚË æÑæÏ ÛíÑãÌÇÒ ãíÔæÏ ¡ æ ÔãÇ ÈÇíÏ Çíä ÍÝÑå ÇãäíÊí ÑÇ ÐÑÓÊ ßäíÏ.';
+$strInsert = 'ÏÑÌ';
+$strInsertAsNewRow = 'ÏÑÌ Èå ÚäæÇä íß ÓØÑ ÌÏíÏ';
+$strInsertNewRow = 'ÏÑÌ ÓØÑ ÌÏíÏ';
+$strInsertTextfiles = 'ÏÑÌ ÏÇÏååÇ ÇÒ íß ÑæäÏå ãÊäí ÏÑ ÌÏæá';
+$strInsertedRows = 'ÓØÑåÇí ÏÑÌÔÏå:';
+$strInstructions = 'ÑÇåäãÇíí';
+$strInvalidName = '"%s" íßí ÇÒ ßáãÇÊ ÐÎíÑåÔÏå(ßáíÏí) ãíÈÇÔÏ, ÔãÇ äãíÊæÇäíÏ ÇÒ Âä Èå ÚäæÇä äÇã ÇíÇåÏÇÏå/ÌÏæá/ÓÊæä ÇÓÊÝÇÏå äãÇííÏ.';
+
+$strKeepPass = 'ÚÏã ÊÛííÑ ÇÓã ÑãÒ';
+$strKeyname = 'Keyname';
+$strKill = 'Kill';
+
+$strLength = 'Øæá';
+$strLengthSet = 'Øæá/ãÞÇÏíÑ*';
+$strLimitNumRows = 'ÊÚÏÇÏ ÓØÑåÇ ÏÑ åÑ ÕÝÍå';
+$strLineFeed = 'ÊÚæíÖ ÎØ: \\n';
+$strLines = 'ÎØæØ';
+$strLinesTerminatedBy = 'ÎØæØ ãäÊåí Èå';
+$strLinkNotFound = 'íæäÏ íÏÇ äÔÏ';
+$strLinksTo = 'íæäÏ Èå';
+$strLocationTextfile = 'ãÍá ÑæäÏå ãÊäí';
+$strLogPassword = 'ÇÓã ÑãÒ:';
+$strLogUsername = 'äÇã ßÇÑÈÑ:';
+$strLogin = 'æÑæÏ';
+$strLogout = 'ÎÑæÌ';
+
+$strMissingBracket = 'ÝÇÞÏ ßÑæÔå';
+$strModifications = 'ÇÕáÇÍÇÊ ÐÎíÑå ÑÏíÏ';
+$strModify = 'ÇÕáÇÍ';
+$strModifyIndexTopic = 'ÇÕáÇÍ íß ÝåÑÓÊ';
+$strMoveTable = 'ÇäÊÞÇá ÌÏæá Èå (ÇíÇå ÏÇÏå. ÌÏæá):';
+$strMoveTableOK = 'ÌÏæá %s Èå %s ÇäÊÞÇá ÏÇÏåÔÏ.';
+$strMySQLCharset = 'ãÌãæÚ ßÇÑÇßÊÑåÇí MySQL';
+$strMySQLReloaded = 'MySQL ãÌÏÏÇ ÈÇÑÐÇÑí ÔÏ.';
+$strMySQLSaid = 'íÛÇã MySQL :';
+$strMySQLServerProcess = 'MySQL %pma_s1% ÇÌÑÇÔÏå ÏÑ ãíÒÈÇä %pma_s2% ÊæÓØ %pma_s3%';
+$strMySQLShowProcess = 'äãÇíÔ ÝÑÇíäÏåÇ';
+$strMySQLShowStatus = 'äãÇíÔ ÇØáÇÚÇÊ MySQL';
+$strMySQLShowVars = 'äãÇíÔ ãÊÛíÑåÇí ÓíÓÊãí MySQL';
+
+$strName = 'ÇÓã';
+$strNext = 'ÈÚÏ';
+$strNo = '뒄';
+$strNoDatabases = 'No databases';
+$strNoDescription = 'no Description';
+$strNoDropDatabases = 'ÏÓ澄 "DROP DATABASE" ÛíÑÝÚÇá ãíÈÇÔÏ.';
+$strNoIndex = 'åí ÝåÑÓÊí ÊÚÑíÝäÔÏåÇÓÊ!';
+$strNoPassword = 'ÈÏæä ÇÓã ÑãÒ';
+$strNoPhp = 'ÈÏæä ßÏ PHP';
+$strNoQuery = 'No SQL query!';
+$strNoTablesFound = 'ÏÑ Çíä ÇíÇå ÏÇÏå åí ÌÏæáí æÌæÏ äÏÇÑÏ .';
+$strNoUsersFound = 'åí ßÇÑÈÑí ææÏ äÏÇÑÏ.';
+$strNone = '뒄';
+$strNotNumber = 'Çíä íß ÚÏÏ äíÓÊ!';
+$strNotOK = 'not OK';
+$strNotSet = 'ÌÏæá %s æÌæÏ äÏÇÑÏ æ íÇ ÏÑ %s ÊäÙíã äÔÏåÇÓÊ';
+$strNotValidNumber = ' íß ÔãÇÑå ÓØÑ ÕÍíÍ äíÓÊ!';
+$strNull = 'ÎÇáí';
+$strNumTables = 'ÌÏæáåÇ';
+
+$strOK = 'ÊÇííÏ';
+$strOftenQuotation = 'ÇÛáÈ ÚáÇãÊ äÞá Þæá. ÇÎÊíÇÑí Èå Çíä ãÚäí ÇÓÊ ßå ÝÞØ ÓÊæäåÇí char æ varchar ÊæÓØ ßÇÑÇßÊÑ "enclosed by" ÏÑãíÇä ÑÝÊåãíÔæäÏ.';
+$strOperations = 'ÚãáíÇÊ';
+$strOptimizeTable = 'ÈåíäåÓÇÒí ÌÏæá';
+$strOptionalControls = 'ÇÎÊíÇÑí. ßäÊÑá æäí ÎæÇäÏä æ äæÔÊä ßÇÑÇßÊÑåÇí ÎÇÕ.';
+$strOptionally = 'ÇÎÊíÇÑí';
+$strOptions = 'ÇäÊÎÇÈåÇ';
+$strOr = 'íÇ';
+
+$strPHPVersion = 'äÓÎå PHP';
+$strPageNumber = 'ÔãÇÑå ÕÝÍå:';
+$strPassword = 'ÇÓã ÑãÒ';
+$strPasswordEmpty = 'ÇÓã ÑãÒ ÎÇáí ÇÓÊ!';
+$strPasswordNotSame = 'ÇÓã ÑãÒåÇ ãÇääÏ åã äãíÈÇÔÏ!';
+$strPdfInvalidTblName = 'ÌÏæá "%s" æÌæÏ äÏÇÑÏ!';
+$strPdfNoTables = 'No tables';
+$strPhp = 'ÓÇÎÊ ßÏ PHP';
+$strPmaDocumentation = 'ãÓÊäÏÇÊ phpMyAdmin';
+$strPos1 = 'ÔÑæÚ';
+$strPrevious = 'ÞÈá';
+$strPrimary = 'ÇÕáí';
+$strPrimaryKey = 'ßíÏ ÇÕáí';
+$strPrimaryKeyHasBeenDropped = 'ßáíÏ ÇÕáí ÍÐÝ ÑÏíÏ';
+$strPrimaryKeyName = 'äÇã ßáíÏ ÇÕáí ÈÇíÏ PRIMARY ÈÇÔÏ !';
+$strPrimaryKeyWarning = '(ÝÞØ æ ÝÞØ ÈÇíÏ "PRIMARY" äÇã íß ßáíÏ ÇÕáí ÈÇÔÏ!)';
+$strPrint = 'Ç';
+$strPrintView = 'äãÇí Ç';
+$strPrivileges = 'ÇãÊíÇÒÇÊ';
+$strProperties = 'ÎÕæÕíÇÊ';
+$strPutColNames = 'ÞÑÇÑÏÇÏä äÇã ÓÊæäåÇ ÏÑ Çæáíä ÓØÑ';
+
+$strQBE = 'ÑÓ æ Ìæ';
+$strQBEDel = 'Del';
+$strQBEIns = 'Ins';
+$strQueryOnDb = 'ÑÓ æ Ìæí SQL ÇÒ ÇíÇå ÏÇÏå %s :';
+
+$strReType = 'ÊßÑÇÑ';
+$strRecords = 'ÓØÑåÇ';
+$strRelationNotWorking ='ÇãßÇäÇÊ ÇÖÇÝí ÈÑÇí ßÇÑßÑÏä ÈÇ ÌÏæáåÇí íæäÏí ÛíÑÝÚÇá ÔÏåÇÓÊ . ÈÑÇí íÏÇßÑÏä Ïáíá Âä %sÇíäÌÇ%s ÑÇ ÈÒäíÏ .';
+$strReloadMySQL = 'ÈÇÑ ßÑÏä ãÌÏÏ MySQL';
+$strRememberReload = 'ÓÑæÑ ÑÇ ãÌÏÏÇ ÈÇÑÐÇÑí äãÇííÏ.';
+$strRenameTable = 'ÈÇÒäÇãíÏä ÌÏæá Èå';
+$strRenameTableOK = 'ÌÏæá %s Èå %s ÊÛííÑ äÇã ÏÇÏåÔÏ';
+$strRepairTable = 'ãÑãÊ ÌÏæá';
+$strReplace = 'ÌÇíÐÇÑí';
+$strReplaceTable = 'ÌÇíÒíäí ÏÇÏååÇí ÌÏæá ÈÇ ÑæäÏå';
+$strReset = 'Reset';
+$strRevoke = 'ÇÈØÇá';
+$strRevokeGrant = 'ÇÈØÇá ÇãÊíÇÒÏåí';
+$strRevokeGrantMessage = 'ÔãÇ ÇãÊíÇÒÏåí ÈÑÇí %s ÑÇ ÇÈØÇá ßÑÏíÏ';
+$strRevokeMessage = 'ÔãÇ ÇãÊíÇÒÇÊ %s ÑÇ ÇÈØÇá ßÑÏíÏ';
+$strRevokePriv = 'ÇÈØÇá ÇãÊíÇÒÇÊ';
+$strRowLength = 'Øæá ÓØÑ';
+$strRowSize = ' ÇäÏÇÒå ÓØÑ ';
+$strRows = 'ÓØÑåÇ';
+$strRowsFrom = 'ÓØÑ(åÇ) ÇÈÊÏÇ ÇÒ ÓØÑ ÔãÇÑå ';
+$strRowsModeHorizontal = 'ÇÝÞí';
+$strRowsModeVertical = 'ÚãæÏí';
+$strRowsStatistic = 'ÂãÇÑ ÓØÑåÇ';
+$strRunQuery = 'Submit Query';
+$strRunSQLQuery = 'ÇÌÑÇí ÑÓ æ Ìæ(åÇ)í SQL ÏÑ ÇíÇåÏÇÏå %s';
+$strRunning = 'ÏÑ ãíÒÈÇä %s';
+
+$strSQL = 'SQL';
+$strSQLQuery = 'ÑÓ æ Ìæí SQL';
+$strSQLResult = 'äÊíÌå SQL';
+$strSave = 'ÐÎíÑå';
+$strSearch = 'ÌÓÊÌæ';
+$strSearchFormTitle = 'ÌÓÊÌæ ÏÑ ÇíÇåÏÇÏå';
+$strSearchInTables = 'ÏÑ ÌÏæá(åÇí) :';
+$strSearchNeedle = 'ßáãå(åÇ) íÇ ãÞÏÇÑ(åÇ) ÈÑÇí ÌÓÊÌæ (wildcard: "%"):';
+$strSearchOption1 = 'ÍÏÇÞá íßí ÇÒ ßáãÇÊ';
+$strSearchOption2 = 'ÊãÇãí ßáãÇÊ';
+$strSearchOption3 = 'ÚÈÇÑÊ ßÇãá';
+$strSearchOption4 = 'ÈÚäæÇä ãÈíä ãäÙã(as regular expression)';
+$strSearchResultsFor = 'äÊíÌå ÌÓÊÌæí "%s " %s:';
+$strSearchType = 'äæÚ ÌÓÊÌæ :';
+$strSelect = 'ÇäÊÎÇÈ';
+$strSelectADb = 'áØÝÇ íß ÇíÇå ÏÇÏå ÑÇ ÇäÊÎÇÈ äãÇííÏ.';
+$strSelectAll = 'ÇäÊÎÇÈ åãå';
+$strSelectFields = 'ÓÊæäåÇ ÑÇ ÇäÊÎÇÈ äãÇííÏ (ÍÏÇÞá íßí)';
+$strSelectNumRows = 'in query';
+$strSelectTables = 'Select Tables';
+$strSend = 'ÐÎíÑå Èå ÕæÑÊ ÑæäÏå';
+$strServer = 'ÓÑæÑ %s';
+$strServerVersion = 'äÓÎå ÓÑæÑ';
+$strSetEnumVal = 'ÇÑ äæÚ ÓÊæä "enum" íÇ "set" ãíÈÇÔÏ ¡ áØÝÇ ÈÑÇí æÑæÏ ãÞÇÏíÑ ÇÒ Çíä ÞÇáÈ ÇÓÊÝÇÏå äãÇííÏ : \'a\',\'b\',\'c\'... ÇÑ ÇÍÊíÇÌ ÏÇÔÊíÏ ßå ÇÒ ÚáÇãÊ ããíÒ ÈÑÚßÓ(ÈßÇÓáÔ) (" \ ") íÇ äÞáÞæá Êßí (" \' ") ÏÑ Âä ãÞÇÏíÑ ÇÓÊÝÇÏå äãÇííÏ ¡ ÞÈá ÇÒ ÂäåÇ ÚáÇãÊ (" \ ") ÑÇ ÈÐÇÑíÏ (ÈÑÇí ãËÇá\'\\\\xyz\' íÇ \'a\\\'b\')';
+$strShow = 'äãÇíÔ';
+$strShowAll = 'äãÇíÔ åãå';
+$strShowColor = 'äãÇíÔ Ñä';
+$strShowCols = 'äãÇíÔ ÓÊæäåÇ';
+$strShowGrid = 'Show grid';
+$strShowPHPInfo = 'äãÇíÔ ÇØáÇÚÇÊ PHP';
+$strShowTableDimension = 'äãÇíÔ ÇÈÚÇÏ ÌÏæáåÇ';
+$strShowTables = 'äãÇíÔ ÌÏæáåÇ';
+$strShowThisQuery = ' äãÇíÔ ÏæÈÇÑå Çíä ÑÓ æ Ìæ ÏÑ ÇíäÌÇ ';
+$strShowingRecords = 'Showing rows';
+$strSingly = '(ÊäåÇ)';
+$strSize = 'ÇäÏÇÒå';
+$strSort = 'ÊÑÊíÈ';
+$strSpaceUsage = 'ÝÖÇí ÇÓÊÝÇÏåÔÏå';
+$strSplitWordsWithSpace = 'ßáãÇÊ ÈÇ ÚáÇãÊ ÝÇÕáå (" ") ÌÏÇ ãíÔæäÏ.';
+$strStatement = 'ÔÑÌ';
+$strStrucCSV = 'ÏÇÏååÇí CSV';
+$strStrucData = 'ÓÇÎÊÇÑ æ ÏÇÏååÇ';
+$strStrucDrop = 'ÇÝÒæÏä \'ÌÏæá ÍÐÝÔÏå\'';
+$strStrucExcelCSV = 'CSV ÈÑÇí ÏÇÏååÇí Ms Excel';
+$strStrucOnly = 'ÝÞØ ÓÇÎÊÇÑ';
+$strStructPropose = 'íÔäåÇÏ ÓÇÎÊÇÑ ÌÏæá';
+$strStructure = 'ÓÇÎÊÇÑ';
+$strSubmit = 'ÇÑÓÇá';
+$strSuccess = 'ÑÓ æ Ìæí SQL ÔãÇ ÈÇ ãæÝÞíÊ ÇÌÑÇ ÑÏíÏ';
+$strSum = 'ãÌãæÚ';
+
+$strTable = 'ÌÏæá';
+$strTableComments = 'ÊæÖíÍÇÊ ÌÏæá';
+$strTableEmpty = 'äÇã ÌÏæá æÇÑÏ äÔÏåÇÓÊ !';
+$strTableHasBeenDropped = 'ÌÏæá %s ÍÐÝ ÑÏíÏ';
+$strTableHasBeenEmptied = 'ÌÏæá %s ÎÇáí ÔÏ';
+$strTableMaintenance = 'äåÏÇÔÊ ÌÏæá';
+$strTableType = 'äæÚ ÌÏæá';
+$strTables = '%s ÌÏæá(åÇ)';
+$strTheContent = 'ãÍÊæíÇÊ ÑæäÏå ÔãÇ ÞÑÇÏÇÏåÔÏ.';
+$strTotal = 'ÌãÚ ßá';
+$strTotalUC = 'ÌãÚ ßá';
+$strType = 'äæÚ';
+
+$strUncheckAll = 'ÚÏã ÇäÊÎÇÈ åãå';
+$strUnique = 'íßÊÇ';
+$strUnselectAll = 'ÚÏã ÇäÊÎÇÈ åãå';
+$strUpdatePrivMessage = 'ÇãÊíÇÒÇÊ %s Èå åäÇã ÑÏíÏ.';
+$strUpdateProfile = 'Èå åäÇã ÏÑÂæÑí ÊäÙíãÇÊ:';
+$strUpdateProfileMessage = 'ÊäÙíãÇÊ Èå åäÇã ÑÏíÏ.';
+$strUpdateQuery = 'ÈååäÇã ÓÇÒí ÑÓ æ Ìæ';
+$strUsage = 'ÇÓÊÝÇÏå';
+$strUseBackquotes = 'ÞÑÇÑÏÇÏä äÇã ÌÏæáåÇ æ ÓÊæäåÇ Èíä ÚáÇãÊ äÞáÞæá (" \' ")';
+$strUseTables = 'ÈßÇÑíÑí ÌÏæáåÇ';
+$strUser = 'ßÇÑÈÑ';
+$strUserEmpty = 'äÇã ßÇÑÈÑ ÎÇáí ÇÓÊ!';
+$strUserName = 'äÇã ßÇÑÈÑ';
+$strUsers = 'ßÇÑÈÑÇä';
+
+$strValidateSQL = 'ãÚÊÈÑÓÇÒí SQL';
+$strValue = 'ãÞÏÇÑ';
+$strViewDump = 'äãÇíÔ Çáæí ÌÏæá';
+$strViewDumpDB = 'äãÇíÔ Çáæí ÇíÇå ÏÇÏå';
+
+$strWebServerUploadDirectoryError = 'æÔåÇí ÑÇ ßå ÈÑÇí ÇäÊÞÇá ÝÇíá ÇäÊÎÇÈ ßÑÏåÇíÏ ÞÇÈá ÏÓÊÑÓí äíÓÊ.';
+$strWelcome = 'Èå %s ÎæÔÂãÏíÏ';
+$strWithChecked = 'ãæÇÑÏ ÇäÊÎÇÈÔÏå :';
+$strWrongUser = 'äÇã ßÇÑÈÑ/ÇÓã ÑãÒ ÇÔÊÈÇå ÇÓÊ. ÏÓÊÑÓí ãÌÇÒ äíÓÊ.';
+
+$strYes = 'Èáí';
+
+$strZip = '"zipped"';
+
+// To translate
+$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
+
+$strAbortedClients = 'Aborted'; //to translate
+$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
+$strAccessDeniedExplanation = 'phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.'; //to translate
+$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
+$strAddDropDatabase = 'Add DROP DATABASE'; //to translate
+$strAddIntoComments = 'Add into comments'; //to translate
+$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
+$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
+$strAddToIndex = 'Add to index %s column(s)'; //to translate
+$strAddedColumnComment = 'Added comment for column'; //to translate
+$strAddedColumnRelation = 'Added relation for column'; //to translate
+$strAdministration = 'Administration'; //to translate
+$strArabic = 'Arabic'; //to translate
+$strArmenian = 'Armenian'; //to translate
+$strAutodetect = 'Autodetect'; //to translate
+$strAutomaticLayout = 'Automatic layout'; //to translate
+
+$strBaltic = 'Baltic'; //to translate
+$strBinaryDoNotEdit = 'Binary - do not edit'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strBookmarkDeleted = 'The bookmark has been deleted.'; //to translate
+$strBookmarkLabel = 'Label'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
+$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
+$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
+$strBookmarkView = 'View only'; //to translate
+$strBrowseForeignValues = 'Browse foreign values'; //to translate
+$strBulgarian = 'Bulgarian'; //to translate
+$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the $cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file to FALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
+
+$strCSVOptions = 'CSV options'; //to translate
+$strCannotLogin = 'Cannot login to MySQL server'; //to translate
+$strCantLoad = 'cannot load %s extension, please check PHP Configuration'; //to translate
+$strCantUseRecodeIconv = 'Can not use iconv nor libiconv nor recode_string function while extension reports to be loaded. Check your php configuration.'; //to translate
+$strCardinality = 'Cardinality'; //to translate
+$strCaseInsensitive = 'case-insensitive'; //to translate
+$strCaseSensitive = 'case-sensitive'; //to translate
+$strCentralEuropean = 'Central European'; //to translate
+$strChangeCopyMode = 'Create a new user with the same privileges and ...'; //to translate
+$strChangeCopyModeCopy = '... keep the old one.'; //to translate
+$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; //to translate
+$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; //to translate
+$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; //to translate
+$strChangeCopyUser = 'Change Login Information / Copy User'; //to translate
+$strCharset = 'Charset'; //to translate
+$strCharsets = 'Charsets'; //to translate
+$strCharsetsAndCollations = 'Character Sets and Collations'; //to translate
+$strCheckPrivs = 'Check Privileges'; //to translate
+$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
+$strCollation = 'Collation'; //to translate
+$strColumnPrivileges = 'Column-specific privileges'; //to translate
+$strCommand = 'Command'; //to translate
+$strConnections = 'Connections'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strCookiesRequired = 'Cookies must be enabled past this point.'; //to translate
+$strCopyTableSameNames = 'Can\'t copy table to same one!'; //to translate
+$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.'; //to translate
+$strCroatian = 'Croatian'; //to translate
+$strCyrillic = 'Cyrillic'; //to translate
+$strCzech = 'Czech'; //to translate
+
+$strDBComment = 'Database comment: '; //to translate
+$strDBGContext = 'Context'; //to translate
+$strDBGContextID = 'Context ID'; //to translate
+$strDBGHits = 'Hits'; //to translate
+$strDBGLine = 'Line'; //to translate
+$strDBGMaxTimeMs = 'Max time, ms'; //to translate
+$strDBGMinTimeMs = 'Min time, ms'; //to translate
+$strDBGModule = 'Module'; //to translate
+$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
+$strDBGTotalTimeMs = 'Total time, ms'; //to translate
+$strDanish = 'Danish'; //to translate
+$strDatabaseExportOptions = 'Database export options'; //to translate
+$strDatabaseNoTable = 'This database contains no table!'; //to translate
+$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
+$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
+$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
+$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
+$strDbPrivileges = 'Database-specific privileges'; //to translate
+$strDbSpecific = 'database-specific'; //to translate
+$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
+$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
+$strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; //to translate
+$strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; //to translate
+$strDeleting = 'Deleting %s'; //to translate
+$strDescription = 'Description'; //to translate
+$strDictionary = 'dictionary'; //to translate
+$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
+$strDropUsersDb = 'Drop the databases that have the same names as the users.'; //to translate
+$strDumpComments = 'Include column comments as inline SQL-comments'; //to translate
+$strDumpSaved = 'Dump has been saved to file %s.'; //to translate
+
+$strEnglish = 'English'; //to translate
+$strEstonian = 'Estonian'; //to translate
+$strExcelOptions = 'Excel options'; //to translate
+$strExecuteBookmarked = 'Execute bookmarked query'; //to translate
+
+$strFailedAttempts = 'Failed attempts'; //to translate
+$strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; //to translate
+$strFileCouldNotBeRead = 'File could not be read'; //to translate
+$strFileNameTemplate = 'File name template'; //to translate
+$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.'; //to translate
+$strFileNameTemplateRemember = 'remember template'; //to translate
+$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
+
+$strGeneralRelationFeat = 'General relation features'; //to translate
+$strGerman = 'German'; //to translate
+$strGlobal = 'global'; //to translate
+$strGlobalPrivileges = 'Global privileges'; //to translate
+$strGlobalValue = 'Global value'; //to translate
+$strGrantOption = 'Grant'; //to translate
+$strGreek = 'Greek'; //to translate
+
+$strHebrew = 'Hebrew'; //to translate
+$strHungarian = 'Hungarian'; //to translate
+
+$strId = 'ID'; //to translate
+$strIgnoringFile = 'Ignoring file %s'; //to translate
+$strImportFiles = 'Import files'; //to translate
+$strImportFinished = 'Import finished'; //to translate
+$strInnodbStat = 'InnoDB Status'; //to translate
+$strInsertedRowId = 'Inserted row id:'; //to translate
+$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
+$strInternalRelations = 'Internal relations'; //to translate
+
+$strJapanese = 'Japanese'; //to translate
+$strJumpToDB = 'Jump to database "%s".'; //to translate
+$strJustDelete = 'Just delete the users from the privilege tables.'; //to translate
+$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; //to translate
+
+$strKorean = 'Korean'; //to translate
+
+$strLaTeX = 'LaTeX'; //to translate
+$strLaTeXOptions = 'LaTeX options'; //to translate
+$strLandscape = 'Landscape'; //to translate
+$strLatexCaption = 'Table caption'; //to translate
+$strLatexContent = 'Content of table __TABLE__'; //to translate
+$strLatexContinued = '(continued)'; //to translate
+$strLatexContinuedCaption = 'Continued table caption'; //to translate
+$strLatexIncludeCaption = 'Include table caption'; //to translate
+$strLatexLabel = 'Label key'; //to translate
+$strLatexStructure = 'Structure of table __TABLE__'; //to translate
+$strLithuanian = 'Lithuanian'; //to translate
+$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
+$strLoadMethod = 'LOAD method'; //to translate
+$strLocalhost = 'Local'; //to translate
+$strLogServer = 'Server'; //to translate
+$strLoginInformation = 'Login Information'; //to translate
+
+$strMIME_MIMEtype = 'MIME-type'; //to translate
+$strMIME_available_mime = 'Available MIME-types'; //to translate
+$strMIME_available_transform = 'Available transformations'; //to translate
+$strMIME_description = 'Description'; //to translate
+$strMIME_file = 'Filename'; //to translate
+$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.'; //to translate
+$strMIME_transformation = 'Browser transformation'; //to translate
+$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s'; //to translate
+$strMIME_transformation_options = 'Transformation options'; //to translate
+$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').'; //to translate
+$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function'; //to translate
+$strMoreStatusVars = 'More status variables'; //to translate
+$strMoveTableSameNames = 'Can\'t move table to same one!'; //to translate
+$strMultilingual = 'multilingual'; //to translate
+$strMustSelectFile = 'You should select file which you want to insert.'; //to translate
+
+$strNoDatabasesSelected = 'No databases selected.'; //to translate
+$strNoExplain = 'Skip Explain SQL'; //to translate
+$strNoFrames = 'phpMyAdmin is more friendly with a frames-capable browser.'; //to translate
+$strNoIndexPartsDefined = 'No index parts defined!'; //to translate
+$strNoModification = 'No change'; //to translate
+$strNoOptions = 'This format has no options'; //to translate
+$strNoPermission = 'The web server does not have permission to save the file %s.'; //to translate
+$strNoPrivileges = 'No Privileges'; //to translate
+$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
+$strNoSpace = 'Insufficient space to save the file %s.'; //to translate
+$strNoUsersSelected = 'No users selected.'; //to translate
+$strNoValidateSQL = 'Skip Validate SQL'; //to translate
+$strNumSearchResultsInTable = '%s match(es) inside table %s '; //to translate
+$strNumSearchResultsTotal = 'Total: %s match(es)'; //to translate
+
+$strOverhead = 'Overhead'; //to translate
+$strOverwriteExisting = 'Overwrite existing file(s)'; //to translate
+
+$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
+$strPaperSize = 'Paper size'; //to translate
+$strPartialText = 'Partial Texts'; //to translate
+$strPasswordChanged = 'The Password for %s was changed successfully.'; //to translate
+$strPdfDbSchema = 'Schema of the the "%s" database - Page %s'; //to translate
+$strPdfInvalidPageNum = 'Undefined PDF page number!'; //to translate
+$strPerHour = 'per hour'; //to translate
+$strPerMinute = 'per minute'; //to translate
+$strPerSecond = 'per second'; //to translate
+$strPhoneBook = 'phone book'; //to translate
+$strPmaUriError = 'The $cfg[\'PmaAbsoluteUri\'] directive MUST be set in your configuration file!'; //to translate
+$strPortrait = 'Portrait'; //to translate
+$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
+$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
+$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
+$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
+$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
+$strPrivDescDelete = 'Allows deleting data.'; //to translate
+$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
+$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
+$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
+$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
+$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
+$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
+$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
+$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
+$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.'; //to translate
+$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.'; //to translate
+$strPrivDescMaxUpdates = 'Limits the number of commands that change any table or database the user may execute per hour.'; //to translate
+$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
+$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
+$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
+$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
+$strPrivDescReplClient = 'Gives the right to the user to ask where the slaves / masters are.'; //to translate
+$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
+$strPrivDescSelect = 'Allows reading data.'; //to translate
+$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
+$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
+$strPrivDescSuper = 'Allows connecting, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
+$strPrivDescUpdate = 'Allows changing data.'; //to translate
+$strPrivDescUsage = 'No privileges.'; //to translate
+$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
+$strProcesslist = 'Process list'; //to translate
+
+$strQueryFrame = 'Query window'; //to translate
+$strQueryFrameDebug = 'Debugging information'; //to translate
+$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.'; //to translate
+$strQuerySQLHistory = 'SQL-history'; //to translate
+$strQueryStatistics = 'Query statistics : Since its startup, %s queries have been sent to the server.'; //to translate
+$strQueryTime = 'Query took %01.4f sec'; //to translate
+$strQueryType = 'Query type'; //to translate
+$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
+
+$strReceived = 'Received'; //to translate
+$strReferentialIntegrity = 'Check referential integrity:'; //to translate
+$strRelationView = 'Relation view'; //to translate
+$strRelationalSchema = 'Relational schema'; //to translate
+$strRelations = 'Relations'; //to translate
+$strReloadFailed = 'MySQL reload failed.'; //to translate
+$strReloadingThePrivileges = 'Reloading the privileges'; //to translate
+$strRemoveSelectedUsers = 'Remove selected users'; //to translate
+$strReplaceNULLBy = 'Replace NULL by'; //to translate
+$strResourceLimits = 'Resource limits'; //to translate
+$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; //to translate
+$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
+$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)'; //to translate
+$strRowsModeOptions = 'in %s mode and repeat headers after %s cells'; //to translate
+$strRussian = 'Russian'; //to translate
+
+$strSQLOptions = 'SQL options'; //to translate
+$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; //to translate
+$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; //to translate
+$strSQPBugInvalidIdentifer = 'Invalid Identifer'; //to translate
+$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
+$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
+$strSaveOnServer = 'Save on server in %s directory'; //to translate
+$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page'; //to translate
+$strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; //to translate
+$strSent = 'Sent'; //to translate
+$strServerChoice = 'Server Choice'; //to translate
+$strServerStatus = 'Runtime Information'; //to translate
+$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
+$strServerTabProcesslist = 'Processes'; //to translate
+$strServerTabVariables = 'Variables'; //to translate
+$strServerTrafficNotes = 'Server traffic : These tables show the network traffic statistics of this MySQL server since its startup.'; //to translate
+$strServerVars = 'Server variables and settings'; //to translate
+$strSessionValue = 'Session value'; //to translate
+$strShowDatadictAs = 'Data Dictionary Format'; //to translate
+$strShowFullQueries = 'Show Full Queries'; //to translate
+$strSimplifiedChinese = 'Simplified Chinese'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strStatCheckTime = 'Last check'; //to translate
+$strStatCreateTime = 'Creation'; //to translate
+$strStatUpdateTime = 'Last update'; //to translate
+$strStatus = 'Status'; //to translate
+$strSwedish = 'Swedish'; //to translate
+$strSwitchToTable = 'Switch to copied table'; //to translate
+
+$strTableHasBeenFlushed = 'Table %s has been flushed'; //to translate
+$strTableOfContents = 'Table of contents'; //to translate
+$strTableOptions = 'Table options'; //to translate
+$strTableStructure = 'Table structure for table'; //to translate
+$strTblPrivileges = 'Table-specific privileges'; //to translate
+$strTextAreaLength = ' Because of its length, this field might not be editable '; //to translate
+$strThai = 'Thai'; //to translate
+$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; //to translate
+$strTheTerminator = 'The terminator of the fields.'; //to translate
+$strThisHost = 'This Host'; //to translate
+$strThisNotDirectory = 'This was not a directory'; //to translate
+$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
+$strTime = 'Time'; //to translate
+$strToggleScratchboard = 'Toggle scratchboard'; //to translate
+$strTraditionalChinese = 'Traditional Chinese'; //to translate
+$strTraffic = 'Traffic'; //to translate
+$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
+$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).'; //to translate
+$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
+$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().'; //to translate
+$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)'; //to translate
+$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.'; //to translate
+$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
+$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
+$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .'; //to translate
+$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.'; //to translate
+$strTruncateQueries = 'Truncate Shown Queries'; //to translate
+$strTurkish = 'Turkish'; //to translate
+
+$strUkrainian = 'Ukrainian'; //to translate
+$strUnicode = 'Unicode'; //to translate
+$strUnknown = 'unknown'; //to translate
+$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
+$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
+$strUseHostTable = 'Use Host Table'; //to translate
+$strUseTextField = 'Use text field'; //to translate
+$strUseThisValue = 'Use this value'; //to translate
+$strUserAlreadyExists = 'The user %s already exists!'; //to translate
+$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
+$strUserOverview = 'User overview'; //to translate
+$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
+$strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate
+
+$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; //to translate
+$strVar = 'Variable'; //to translate
+$strViewDumpDatabases = 'View dump (schema) of databases'; //to translate
+
+$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
+$strWestEuropean = 'West European'; //to translate
+$strWildcard = 'wildcard'; //to translate
+$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
+$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
+$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
+
+$strXML = 'XML'; //to translate
+
+$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
+?>
diff --git a/lang/polish-iso-8859-2.inc.php3 b/lang/polish-iso-8859-2.inc.php3
index 6b94b8c1c..da04df25c 100644
--- a/lang/polish-iso-8859-2.inc.php3
+++ b/lang/polish-iso-8859-2.inc.php3
@@ -71,8 +71,10 @@ $strBeginCut = 'TNIJ ST
$strBeginRaw = 'SUROWE DANE ST¡D';
$strBinary = ' Binarne ';
$strBinaryDoNotEdit = ' Binarne - nie do edycji ';
+$strBookmarkAllUsers = 'Pozwolenie na dostêp do zapytania przez ka¿dego u¿ytkownika';
$strBookmarkDeleted = 'Zapamiêtane zapytanie SQL zosta³o usuniête.';
$strBookmarkLabel = 'Nazwa';
+$strBookmarkOptions = 'Opcje zapamiêtanych zapytañ';
$strBookmarkQuery = 'Zapamiêtane zapytanie SQL';
$strBookmarkThis = 'Zapamiêtanie zapytania SQL';
$strBookmarkView = 'Tylko do pokazania';
@@ -126,6 +128,8 @@ $strConfigFileError = 'phpMyAdmin nie zdo
$strConfigureTableCoord = 'Proszê skonfigurowaæ wspó³rzêdnie dla tabeli %s';
$strConfirm = 'Czy na pewno to zrobiæ?';
$strConnections = 'Po³±czenia';
+$strConstraintsForDumped = 'Ograniczenia dla zrzutów tabel';
+$strConstraintsForTable = 'Ograniczenia dla tabeli';
$strCookiesRequired = 'Odt±d musi byæ w³±czona obs³uga "cookies".';
$strCopyTable = 'Skopiuj tabelê do (bazadanych. tabela):';
$strCopyTableOK = 'Tabela %s zosta³a skopiowana do %s.';
@@ -293,6 +297,8 @@ $strInsertTextfiles = 'Dodanie pliku tekstowego do tabeli';
$strInsertedRowId = 'Id wstawionego wiersza:';
$strInsertedRows = 'Wprowadzone rekordy:';
$strInstructions = 'Instrukcje';
+$strInternalNotNecessary = '* Wewnêtrzna relacja nie jest konieczna gdy istnieje równie¿ w InnoDB.';
+$strInternalRelations = 'Wewnêtrzne relacje';
$strInvalidName = '"%s" jest s³owem zarezerwowanym, nie mo¿na u¿yæ go jako nazwy bazy danych/tabeli/pola.';
$strJapanese = 'Japoñski';
@@ -308,6 +314,13 @@ $strKorean = 'Korea
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'opcje LaTeX\'a';
$strLandscape = 'Orientacja pozioma';
+$strLatexCaption = 'Nag³ówek tabeli';
+$strLatexContent = 'Zawarto¶æ tabeli __TABLE__';
+$strLatexContinued = '(kontynuacja)';
+$strLatexContinuedCaption = 'Kontynuacja nag³ówka tabeli';
+$strLatexIncludeCaption = 'Za³±cz nag³ówek tabeli';
+$strLatexLabel = 'Etykieta klucza';
+$strLatexStructure = 'Struktura tabeli __TABLE__';
$strLength = 'D³ugo¶æ';
$strLengthSet = 'D³ugo¶æ/Warto¶ci*';
$strLimitNumRows = 'rekordów na stronie';
@@ -322,6 +335,7 @@ $strLoadMethod = 'Metoda LOAD';
$strLocalhost = 'Host lokalny';
$strLocationTextfile = 'Lokalizacja pliku tekstowego';
$strLogPassword = 'Has³o:';
+$strLogServer = 'Serwer';
$strLogUsername = 'U¿ytkownik:';
$strLogin = 'Login';
$strLoginInformation = 'Dane u¿ytkownika';
@@ -431,6 +445,7 @@ $strPrimaryKeyName = 'Nazw
$strPrimaryKeyWarning = '("PRIMARY" musi byæ nazw± jedynie klucza podstawowego!)';
$strPrint = 'Drukowanie';
$strPrintView = 'Widok do wydruku';
+$strPrintViewFull = 'Widok do wydruku (z pe³nymi tekstami)';
$strPrivDescAllPrivileges = 'Zawiera wszystkie uprawnienia, oprócz GRANT.';
$strPrivDescAlter = 'Pozwala zmieniaæ strukturê istniej±cych tabel.';
$strPrivDescCreateDb = 'Pozwala tworzyæ nowe bazy danych i tabele.';
@@ -579,6 +594,7 @@ $strSimplifiedChinese = 'Chi
$strSingly = '(pojedynczo)';
$strSize = 'Rozmiar';
$strSort = 'Sortuj';
+$strSortByKey = 'Sortowanie wg klucza';
$strSpaceUsage = 'Wykorzystanie przestrzeni';
$strSplitWordsWithSpace = 'S³owa s± rozdzielane znakiem spacji (" ").';
$strStatCheckTime = 'Ostatnie sprawdzenie';
@@ -651,6 +667,7 @@ $strUpdatePrivMessage = 'Uaktualni
$strUpdateProfile = 'Uaktualnienie profilu:';
$strUpdateProfileMessage = 'Profil zosta³ uaktualniony.';
$strUpdateQuery = 'Zmiana zapytania';
+$strUpgradeMySQL = 'Poleca siê aktualizacjê do MySQL w wersji %s lub pó¼niejszej.';
$strUsage = 'Wykorzystanie';
$strUseBackquotes = 'U¿ycie cudzys³owów z nazwami tabel i pól';
$strUseHostTable = 'U¿ycie tabeli hostów';
@@ -694,16 +711,4 @@ $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograni
$strZip = '".zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/polish-utf-8.inc.php3 b/lang/polish-utf-8.inc.php3
index dd988063e..e0db99cfe 100644
--- a/lang/polish-utf-8.inc.php3
+++ b/lang/polish-utf-8.inc.php3
@@ -72,8 +72,10 @@ $strBeginCut = 'TNIJ STĄD';
$strBeginRaw = 'SUROWE DANE STĄD';
$strBinary = ' Binarne ';
$strBinaryDoNotEdit = ' Binarne - nie do edycji ';
+$strBookmarkAllUsers = 'Pozwolenie na dostęp do zapytania przez każdego użytkownika';
$strBookmarkDeleted = 'Zapamiętane zapytanie SQL zostało usunięte.';
$strBookmarkLabel = 'Nazwa';
+$strBookmarkOptions = 'Opcje zapamiętanych zapytań';
$strBookmarkQuery = 'Zapamiętane zapytanie SQL';
$strBookmarkThis = 'Zapamiętanie zapytania SQL';
$strBookmarkView = 'Tylko do pokazania';
@@ -127,6 +129,8 @@ $strConfigFileError = 'phpMyAdmin nie zdołał odczytać Twojego pliku konfigura
$strConfigureTableCoord = 'Proszę skonfigurować współrzędnie dla tabeli %s';
$strConfirm = 'Czy na pewno to zrobić?';
$strConnections = 'Połączenia';
+$strConstraintsForDumped = 'Ograniczenia dla zrzutów tabel';
+$strConstraintsForTable = 'Ograniczenia dla tabeli';
$strCookiesRequired = 'Odtąd musi być włączona obsługa "cookies".';
$strCopyTable = 'Skopiuj tabelÄ™ do (bazadanych. tabela):';
$strCopyTableOK = 'Tabela %s została skopiowana do %s.';
@@ -294,6 +298,8 @@ $strInsertTextfiles = 'Dodanie pliku tekstowego do tabeli';
$strInsertedRowId = 'Id wstawionego wiersza:';
$strInsertedRows = 'Wprowadzone rekordy:';
$strInstructions = 'Instrukcje';
+$strInternalNotNecessary = '* Wewnętrzna relacja nie jest konieczna gdy istnieje również w InnoDB.';
+$strInternalRelations = 'Wewnętrzne relacje';
$strInvalidName = '"%s" jest słowem zarezerwowanym, nie można użyć go jako nazwy bazy danych/tabeli/pola.';
$strJapanese = 'Japoński';
@@ -309,6 +315,13 @@ $strKorean = 'Koreański';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'opcje LaTeX\'a';
$strLandscape = 'Orientacja pozioma';
+$strLatexCaption = 'Nagłówek tabeli';
+$strLatexContent = 'Zawartość tabeli __TABLE__';
+$strLatexContinued = '(kontynuacja)';
+$strLatexContinuedCaption = 'Kontynuacja nagłówka tabeli';
+$strLatexIncludeCaption = 'Załącz nagłówek tabeli';
+$strLatexLabel = 'Etykieta klucza';
+$strLatexStructure = 'Struktura tabeli __TABLE__';
$strLength = 'Długość';
$strLengthSet = 'Długość/Wartości*';
$strLimitNumRows = 'rekordów na stronie';
@@ -323,6 +336,7 @@ $strLoadMethod = 'Metoda LOAD';
$strLocalhost = 'Host lokalny';
$strLocationTextfile = 'Lokalizacja pliku tekstowego';
$strLogPassword = 'Hasło:';
+$strLogServer = 'Serwer';
$strLogUsername = 'Użytkownik:';
$strLogin = 'Login';
$strLoginInformation = 'Dane użytkownika';
@@ -432,6 +446,7 @@ $strPrimaryKeyName = 'Nazwą podstawowego klucza musi być... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" musi być nazwą jedynie klucza podstawowego!)';
$strPrint = 'Drukowanie';
$strPrintView = 'Widok do wydruku';
+$strPrintViewFull = 'Widok do wydruku (z pełnymi tekstami)';
$strPrivDescAllPrivileges = 'Zawiera wszystkie uprawnienia, oprócz GRANT.';
$strPrivDescAlter = 'Pozwala zmieniać strukturę istniejących tabel.';
$strPrivDescCreateDb = 'Pozwala tworzyć nowe bazy danych i tabele.';
@@ -580,6 +595,7 @@ $strSimplifiedChinese = 'Chiński uproszczony';
$strSingly = '(pojedynczo)';
$strSize = 'Rozmiar';
$strSort = 'Sortuj';
+$strSortByKey = 'Sortowanie wg klucza';
$strSpaceUsage = 'Wykorzystanie przestrzeni';
$strSplitWordsWithSpace = 'Słowa są rozdzielane znakiem spacji (" ").';
$strStatCheckTime = 'Ostatnie sprawdzenie';
@@ -652,6 +668,7 @@ $strUpdatePrivMessage = 'Uaktualniłeś uprawnienia dla %s.';
$strUpdateProfile = 'Uaktualnienie profilu:';
$strUpdateProfileMessage = 'Profil został uaktualniony.';
$strUpdateQuery = 'Zmiana zapytania';
+$strUpgradeMySQL = 'Poleca się aktualizację do MySQL w wersji %s lub późniejszej.';
$strUsage = 'Wykorzystanie';
$strUseBackquotes = 'Użycie cudzysłowów z nazwami tabel i pól';
$strUseHostTable = 'Użycie tabeli hostów';
@@ -695,16 +712,4 @@ $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograni
$strZip = '".zip"';
// To translate
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/portuguese-iso-8859-1.inc.php3 b/lang/portuguese-iso-8859-1.inc.php3
index edd827a16..3847be638 100644
--- a/lang/portuguese-iso-8859-1.inc.php3
+++ b/lang/portuguese-iso-8859-1.inc.php3
@@ -728,4 +728,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/portuguese-utf-8.inc.php3 b/lang/portuguese-utf-8.inc.php3
index adf84e4a7..dbccc4a3d 100644
--- a/lang/portuguese-utf-8.inc.php3
+++ b/lang/portuguese-utf-8.inc.php3
@@ -729,4 +729,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/romanian-iso-8859-1.inc.php3 b/lang/romanian-iso-8859-1.inc.php3
index e5a1a1376..d8a7a7b43 100644
--- a/lang/romanian-iso-8859-1.inc.php3
+++ b/lang/romanian-iso-8859-1.inc.php3
@@ -707,4 +707,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/romanian-utf-8.inc.php3 b/lang/romanian-utf-8.inc.php3
index c3a1e4555..d4d07fa78 100644
--- a/lang/romanian-utf-8.inc.php3
+++ b/lang/romanian-utf-8.inc.php3
@@ -708,4 +708,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/russian-dos-866.inc.php3 b/lang/russian-dos-866.inc.php3
index 5ff2080e0..512a098fe 100644
--- a/lang/russian-dos-866.inc.php3
+++ b/lang/russian-dos-866.inc.php3
@@ -716,4 +716,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/russian-koi8-r.inc.php3 b/lang/russian-koi8-r.inc.php3
index 40b7bd180..c3a623516 100644
--- a/lang/russian-koi8-r.inc.php3
+++ b/lang/russian-koi8-r.inc.php3
@@ -714,4 +714,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/russian-utf-8.inc.php3 b/lang/russian-utf-8.inc.php3
index cb5448274..faab592c6 100644
--- a/lang/russian-utf-8.inc.php3
+++ b/lang/russian-utf-8.inc.php3
@@ -715,4 +715,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/russian-windows-1251.inc.php3 b/lang/russian-windows-1251.inc.php3
index 9694c4b91..fda3da286 100644
--- a/lang/russian-windows-1251.inc.php3
+++ b/lang/russian-windows-1251.inc.php3
@@ -714,4 +714,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/serbian_cyrillic-utf-8.inc.php3 b/lang/serbian_cyrillic-utf-8.inc.php3
index 26151b450..3f8718a40 100644
--- a/lang/serbian_cyrillic-utf-8.inc.php3
+++ b/lang/serbian_cyrillic-utf-8.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/serbian_cyrillic-windows-1251.inc.php3 b/lang/serbian_cyrillic-windows-1251.inc.php3
index c02581cc1..a7ec8647b 100644
--- a/lang/serbian_cyrillic-windows-1251.inc.php3
+++ b/lang/serbian_cyrillic-windows-1251.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/serbian_latin-utf-8.inc.php3 b/lang/serbian_latin-utf-8.inc.php3
index 58c414eb7..6e3cef613 100644
--- a/lang/serbian_latin-utf-8.inc.php3
+++ b/lang/serbian_latin-utf-8.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/serbian_latin-windows-1250.inc.php3 b/lang/serbian_latin-windows-1250.inc.php3
index 56c90913e..5632655cd 100644
--- a/lang/serbian_latin-windows-1250.inc.php3
+++ b/lang/serbian_latin-windows-1250.inc.php3
@@ -711,4 +711,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovak-iso-8859-2.inc.php3 b/lang/slovak-iso-8859-2.inc.php3
index 33689adbc..d6409ce73 100644
--- a/lang/slovak-iso-8859-2.inc.php3
+++ b/lang/slovak-iso-8859-2.inc.php3
@@ -707,4 +707,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovak-utf-8.inc.php3 b/lang/slovak-utf-8.inc.php3
index 6aeef8d6c..a63ece64e 100644
--- a/lang/slovak-utf-8.inc.php3
+++ b/lang/slovak-utf-8.inc.php3
@@ -708,4 +708,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovak-windows-1250.inc.php3 b/lang/slovak-windows-1250.inc.php3
index 62e817e7b..d1c38f271 100644
--- a/lang/slovak-windows-1250.inc.php3
+++ b/lang/slovak-windows-1250.inc.php3
@@ -707,4 +707,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovenian-iso-8859-2.inc.php3 b/lang/slovenian-iso-8859-2.inc.php3
index 13fc5a02d..cd8b937db 100644
--- a/lang/slovenian-iso-8859-2.inc.php3
+++ b/lang/slovenian-iso-8859-2.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovenian-utf-8.inc.php3 b/lang/slovenian-utf-8.inc.php3
index ace3f5bdf..41fda37dd 100644
--- a/lang/slovenian-utf-8.inc.php3
+++ b/lang/slovenian-utf-8.inc.php3
@@ -713,4 +713,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/slovenian-windows-1250.inc.php3 b/lang/slovenian-windows-1250.inc.php3
index 4d95e9a39..a85af3d72 100644
--- a/lang/slovenian-windows-1250.inc.php3
+++ b/lang/slovenian-windows-1250.inc.php3
@@ -712,4 +712,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/spanish-iso-8859-1.inc.php3 b/lang/spanish-iso-8859-1.inc.php3
index c6e692756..209cf0654 100644
--- a/lang/spanish-iso-8859-1.inc.php3
+++ b/lang/spanish-iso-8859-1.inc.php3
@@ -71,8 +71,10 @@ $strBeginCut = 'INICIO DEL CORTE';
$strBeginRaw = 'INICIO DEL VOLCADO';
$strBinary = ' Binario ';
$strBinaryDoNotEdit = ' Binario - ¡no editar! ';
+$strBookmarkAllUsers = 'Permitir que todo usuario pueda acceder a este bookmark';
$strBookmarkDeleted = 'El "bookmark" ha sido borrado.';
$strBookmarkLabel = 'Etiqueta';
+$strBookmarkOptions = 'Opciones de bookmark';
$strBookmarkQuery = 'Consulta guardada en favoritos';
$strBookmarkThis = 'Guardar esta consulta en favoritos';
$strBookmarkView = 'Solamente ver';
@@ -126,6 +128,8 @@ $strConfigFileError = '
$strConfigureTableCoord = 'Configure las coordenadas para la tabla %s';
$strConfirm = '¿Realmente quiere hacerlo?';
$strConnections = 'Conexiones';
+$strConstraintsForDumped = 'Filtros para las tablas descargadas (dump)';
+$strConstraintsForTable = 'Filtros para la tabla';
$strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.';
$strCopyTable = 'Copiar la tabla a (base de datos. tabla):';
$strCopyTableOK = 'La tabla %s se copió a %s.';
@@ -293,6 +297,8 @@ $strInsertTextfiles = 'Insertar archivo de texto en la tabla';
$strInsertedRowId = 'Se insertó la id de la fila:';
$strInsertedRows = 'Filas insertadas:';
$strInstructions = 'Instrucciones';
+$strInternalNotNecessary = '* No es necesaria una relación interna cuando también existe en InnoDB.';
+$strInternalRelations = 'Relaciones internas';
$strInvalidName = '"%s" es una palabra reservada, no puede usarla como nombre de /Base de datos/tabla/campo.';
$strJapanese = 'Japonés';
@@ -308,6 +314,13 @@ $strKorean = 'Coreano';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'opciones LaTeX';
$strLandscape = 'Orientación horizontal';
+$strLatexCaption = 'Subtitulado de la tabla';
+$strLatexContent = 'Contenido de la tabla __TABLE__';
+$strLatexContinued = '(continúa)';
+$strLatexContinuedCaption = 'Continuación del subtitulado de la tabla';
+$strLatexIncludeCaption = 'Incluya subtitulado de la tabla';
+$strLatexLabel = 'Clave de la etiqueta';
+$strLatexStructure = 'Estructura de la tabla __TABLE__';
$strLength = 'Longitud';
$strLengthSet = 'Longitud/Valores*';
$strLimitNumRows = 'registros por página';
@@ -322,6 +335,7 @@ $strLoadMethod = 'CARGAR m
$strLocalhost = 'Local';
$strLocationTextfile = 'Localización del archivo de texto';
$strLogPassword = 'Contraseña:';
+$strLogServer = 'Servidor';
$strLogUsername = 'Usuario:';
$strLogin = 'Identificación';
$strLoginInformation = 'Información acerca del login';
@@ -431,6 +445,7 @@ $strPrimaryKeyName = 'El nombre de la clave primaria debe ser...
$strPrimaryKeyWarning = '("PRIMARY" debe ser el nombre de y únicamente de ¡una clave primaria!)';
$strPrint = 'Imprimir';
$strPrintView = 'Vista de impresión';
+$strPrintViewFull = 'Previsualización para imprimir (documento completo)';
$strPrivDescAllPrivileges = 'Incluye todos los privilegios excepto CONCEDER (GRANT).';
$strPrivDescAlter = 'Permite alterar la estructura de las tablas existentes.';
$strPrivDescCreateDb = 'Permite crear nuevas bases de datos y tablas.';
@@ -529,6 +544,7 @@ $strSQLQuery = 'consulta SQL';
$strSQLResult = 'Resultado SQL';
$strSQPBugInvalidIdentifer = 'El identificador no es válido';
$strSQPBugUnclosedQuote = 'Comillas sin cerrar';
+$strSQPBugUnclosedQuote = 'hay una comilla sencilla sin cerrar';
$strSQPBugUnknownPunctuation = 'Signo de puntuación desconocido';
$strSave = 'Grabar';
$strSaveOnServer = 'Guardar en el servidor, en el directorio %s ';
@@ -579,6 +595,7 @@ $strSimplifiedChinese = 'Chino simplificado';
$strSingly = '(solo)';
$strSize = 'Tamaño';
$strSort = 'Ordenar';
+$strSortByKey = 'Organizar según la clave';
$strSpaceUsage = 'Espacio utilizado';
$strSplitWordsWithSpace = 'Palabras separadas por un espacio (" ").';
$strStatCheckTime = 'Última revisión';
@@ -651,6 +668,7 @@ $strUpdatePrivMessage = 'Ud. ha actualizado los privilegios para %s.';
$strUpdateProfile = 'Actualiza el perfil:';
$strUpdateProfileMessage = 'Se ha actualizado el perfil.';
$strUpdateQuery = 'Modificar la consulta';
+$strUpgradeMySQL = 'Usted debería actualizarse a MySQL %s o a una versión más reciente.';
$strUsage = 'Uso';
$strUseBackquotes = 'Usar "backquotes" con tablas y nombres de campo';
$strUseHostTable = 'Use la tabla Anfitrión (Host)';
@@ -693,16 +711,4 @@ $strYes = 'S
$strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el límite.';
$strZip = '"comprimido con zip"';
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/spanish-utf-8.inc.php3 b/lang/spanish-utf-8.inc.php3
index 71396bf1c..07b859206 100644
--- a/lang/spanish-utf-8.inc.php3
+++ b/lang/spanish-utf-8.inc.php3
@@ -72,8 +72,10 @@ $strBeginCut = 'INICIO DEL CORTE';
$strBeginRaw = 'INICIO DEL VOLCADO';
$strBinary = ' Binario ';
$strBinaryDoNotEdit = ' Binario - ¡no editar! ';
+$strBookmarkAllUsers = 'Permitir que todo usuario pueda acceder a este bookmark';
$strBookmarkDeleted = 'El "bookmark" ha sido borrado.';
$strBookmarkLabel = 'Etiqueta';
+$strBookmarkOptions = 'Opciones de bookmark';
$strBookmarkQuery = 'Consulta guardada en favoritos';
$strBookmarkThis = 'Guardar esta consulta en favoritos';
$strBookmarkView = 'Solamente ver';
@@ -127,6 +129,8 @@ $strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!<
$strConfigureTableCoord = 'Configure las coordenadas para la tabla %s';
$strConfirm = '¿Realmente quiere hacerlo?';
$strConnections = 'Conexiones';
+$strConstraintsForDumped = 'Filtros para las tablas descargadas (dump)';
+$strConstraintsForTable = 'Filtros para la tabla';
$strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.';
$strCopyTable = 'Copiar la tabla a (base de datos. tabla):';
$strCopyTableOK = 'La tabla %s se copió a %s.';
@@ -294,6 +298,8 @@ $strInsertTextfiles = 'Insertar archivo de texto en la tabla';
$strInsertedRowId = 'Se insertó la id de la fila:';
$strInsertedRows = 'Filas insertadas:';
$strInstructions = 'Instrucciones';
+$strInternalNotNecessary = '* No es necesaria una relación interna cuando también existe en InnoDB.';
+$strInternalRelations = 'Relaciones internas';
$strInvalidName = '"%s" es una palabra reservada, no puede usarla como nombre de /Base de datos/tabla/campo.';
$strJapanese = 'Japonés';
@@ -309,6 +315,13 @@ $strKorean = 'Coreano';
$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'opciones LaTeX';
$strLandscape = 'Orientación horizontal';
+$strLatexCaption = 'Subtitulado de la tabla';
+$strLatexContent = 'Contenido de la tabla __TABLE__';
+$strLatexContinued = '(continúa)';
+$strLatexContinuedCaption = 'Continuación del subtitulado de la tabla';
+$strLatexIncludeCaption = 'Incluya subtitulado de la tabla';
+$strLatexLabel = 'Clave de la etiqueta';
+$strLatexStructure = 'Estructura de la tabla __TABLE__';
$strLength = 'Longitud';
$strLengthSet = 'Longitud/Valores*';
$strLimitNumRows = 'registros por página';
@@ -323,6 +336,7 @@ $strLoadMethod = 'CARGAR método';
$strLocalhost = 'Local';
$strLocationTextfile = 'Localización del archivo de texto';
$strLogPassword = 'Contraseña:';
+$strLogServer = 'Servidor';
$strLogUsername = 'Usuario:';
$strLogin = 'Identificación';
$strLoginInformation = 'Información acerca del login';
@@ -432,6 +446,7 @@ $strPrimaryKeyName = 'El nombre de la clave primaria debe ser... ¡PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" debe ser el nombre de y únicamente de ¡una clave primaria!)';
$strPrint = 'Imprimir';
$strPrintView = 'Vista de impresión';
+$strPrintViewFull = 'Previsualización para imprimir (documento completo)';
$strPrivDescAllPrivileges = 'Incluye todos los privilegios excepto CONCEDER (GRANT).';
$strPrivDescAlter = 'Permite alterar la estructura de las tablas existentes.';
$strPrivDescCreateDb = 'Permite crear nuevas bases de datos y tablas.';
@@ -530,6 +545,7 @@ $strSQLQuery = 'consulta SQL';
$strSQLResult = 'Resultado SQL';
$strSQPBugInvalidIdentifer = 'El identificador no es válido';
$strSQPBugUnclosedQuote = 'Comillas sin cerrar';
+$strSQPBugUnclosedQuote = 'hay una comilla sencilla sin cerrar';
$strSQPBugUnknownPunctuation = 'Signo de puntuación desconocido';
$strSave = 'Grabar';
$strSaveOnServer = 'Guardar en el servidor, en el directorio %s ';
@@ -580,6 +596,7 @@ $strSimplifiedChinese = 'Chino simplificado';
$strSingly = '(solo)';
$strSize = 'Tamaño';
$strSort = 'Ordenar';
+$strSortByKey = 'Organizar según la clave';
$strSpaceUsage = 'Espacio utilizado';
$strSplitWordsWithSpace = 'Palabras separadas por un espacio (" ").';
$strStatCheckTime = 'Última revisión';
@@ -652,6 +669,7 @@ $strUpdatePrivMessage = 'Ud. ha actualizado los privilegios para %s.';
$strUpdateProfile = 'Actualiza el perfil:';
$strUpdateProfileMessage = 'Se ha actualizado el perfil.';
$strUpdateQuery = 'Modificar la consulta';
+$strUpgradeMySQL = 'Usted deberÃa actualizarse a MySQL %s o a una versión más reciente.';
$strUsage = 'Uso';
$strUseBackquotes = 'Usar "backquotes" con tablas y nombres de campo';
$strUseHostTable = 'Use la tabla Anfitrión (Host)';
@@ -694,16 +712,4 @@ $strYes = 'SÃ';
$strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el lÃmite.';
$strZip = '"comprimido con zip"';
-$strInternalRelations = 'Internal relations'; //to translate
-$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
-$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
-$strLatexContinuedCaption = 'Continued table caption';//to translate
-
-$strPrintViewFull = 'Print view (with full texts)'; //to translate
?>
diff --git a/lang/swedish-iso-8859-1.inc.php3 b/lang/swedish-iso-8859-1.inc.php3
index c649137f8..bb9077588 100644
--- a/lang/swedish-iso-8859-1.inc.php3
+++ b/lang/swedish-iso-8859-1.inc.php3
@@ -706,4 +706,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/swedish-utf-8.inc.php3 b/lang/swedish-utf-8.inc.php3
index 1ac80cd21..ee815bdbd 100644
--- a/lang/swedish-utf-8.inc.php3
+++ b/lang/swedish-utf-8.inc.php3
@@ -707,4 +707,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/sync_lang.sh b/lang/sync_lang.sh
index 5a8367430..d0c83d4fa 100755
--- a/lang/sync_lang.sh
+++ b/lang/sync_lang.sh
@@ -36,20 +36,20 @@
case "$1" in
--iconv)
- echo Using iconv on user request
+ echo Using iconv on user request
CONVERTOR=iconv
# the space on following is REQUIRED
CONVERTOR_PARAMS=" -f %s -t %s"
shift
;;
--recode)
- echo Using recode on user request
+ echo Using recode on user request
CONVERTOR=recode
CONVERTOR_PARAMS=" -f %s..%s"
shift
;;
*)
- echo Using recode as default, force with --iconv/--recode
+ echo Using recode as default, force with --iconv/--recode
CONVERTOR=recode
CONVERTOR_PARAMS=" -f %s..%s"
;;
@@ -74,6 +74,7 @@ afrikaans-iso-8859-1
albanian-iso-8859-1
arabic-windows-1256
azerbaijani-iso-8859-9
+bosnian-windows-1250
brazilian_portuguese-iso-8859-1
bulgarian-windows-1251
catalan-iso-8859-1
@@ -100,6 +101,7 @@ latvian-windows-1257
lithuanian-windows-1257
malay-iso-8859-1
norwegian-iso-8859-1
+persian-windows-1256
polish-iso-8859-2
portuguese-iso-8859-1
romanian-iso-8859-1
@@ -180,7 +182,7 @@ for base in $BASE_TRANSLATIONS ; do
# at first update existing translations
for file in $create_files ; do
# charset of destination file
-
+
# grepping from file causes problems when it is empty...
charset=$(grep '\$charset' $file | sed "s%^[^'\"]*['\"]\\([^'\"]*\\)['\"][^'\"]*$%\\1%")
if [ -z "$charset" ] ; then
@@ -195,7 +197,7 @@ for base in $BASE_TRANSLATIONS ; do
echo " $file is not needed to update"
continue
fi
-
+
echo -n " to $charset..."
if [ $charset = 'utf-8' ] ; then
# if we convert to utf-8, we should add allow_recoding
@@ -221,7 +223,7 @@ $allow_recoding = TRUE;' > $TEMPFILE
fi
else
# just convert
- $CONVERTOR $(printf "$CONVERTOR_PARAMS" $src_charset $charset) < $base.inc.php3| sed "s/$src_charset/$charset/" > $TEMPFILE
+ $CONVERTOR $(printf "$CONVERTOR_PARAMS" $src_charset $charset) < $base.inc.php3| sed "s/$src_charset/$charset/" > $TEMPFILE
if [ -s $TEMPFILE ] ; then
cat $TEMPFILE > $file
echo done
@@ -231,7 +233,7 @@ $allow_recoding = TRUE;' > $TEMPFILE
fi
fi
done
-
+
# now check whether we found utf-8 translation
if [ $is_utf = no ] ; then
if ( echo $IGNORE_UTF | grep -q $base ) ; then
diff --git a/lang/thai-tis-620.inc.php3 b/lang/thai-tis-620.inc.php3
index 856021b85..209bec4fb 100644
--- a/lang/thai-tis-620.inc.php3
+++ b/lang/thai-tis-620.inc.php3
@@ -717,4 +717,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/thai-utf-8.inc.php3 b/lang/thai-utf-8.inc.php3
index b4798f7bb..bf3dcac87 100644
--- a/lang/thai-utf-8.inc.php3
+++ b/lang/thai-utf-8.inc.php3
@@ -718,4 +718,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/turkish-iso-8859-9.inc.php3 b/lang/turkish-iso-8859-9.inc.php3
index 7817e1991..365089ffe 100644
--- a/lang/turkish-iso-8859-9.inc.php3
+++ b/lang/turkish-iso-8859-9.inc.php3
@@ -1,8 +1,15 @@
DROP DATABASE ekle';
$strAddIntoComments = 'Yorumlara ekle';
$strAddNewField = 'Yeni alan ekle';
-$strAddPriv = 'Yeni ayrýcalýk ekle';
-$strAddPrivMessage = 'Yeni ayrýcalýk eklediniz..';
-$strAddSearchConditions = 'Arama durumu ekle ("where" cümleciði için):';
-$strAddToIndex = '%s sütununu(sütunlarına) index ekle';
+$strAddPriv = 'Yeni imtiyaz ekle';
+$strAddPrivMessage = 'Yeni imtiyaz eklediniz..';
+$strAddPrivilegesOnDb = 'Bir sonraki veritabaný üzerinde imtiyaz ekle';
+$strAddPrivilegesOnTbl = 'Bir sonraki tablo üzerinde imtiyazlar ekle';
+$strAddSearchConditions = 'Arama durumu ekle ("where" komutu için):';
+$strAddToIndex = '%s indeks satýrý ekle';
$strAddUser = 'Yeni kullanýcý ekle';
$strAddUserMessage = 'Yeni bir kullanýcý eklediniz.';
+$strAddedColumnComment = 'Sütun için eklenmiþ yorum';
+$strAddedColumnRelation = 'Sütun için eklenmiþ iliþki';
+$strAdministration = 'Yönetim';
$strAffectedRows = 'Etkilenen satýrlar:';
-$strAfter = 'Sonuna %s';
-$strAfterInsertBack = 'Return';
-$strAfterInsertNewInsert = 'Yeni kayit ekle';
+$strAfter = '%s tablosundan sonra';
+$strAfterInsertBack = 'Önceki sayfaya geri dön';
+$strAfterInsertNewInsert = 'Baþka yeni bir kayýt ekle';
$strAll = 'Tümü';
$strAllTableSameWidth = 'Bütün tablolarý ayný geniþlikte göster';
-$strAlterOrderBy = 'Tabloyu deðiþtir ve þuna göre sýrala:';
-$strAnIndex = '%s üzerinde yeni bir index eklendi';
+$strAlterOrderBy = 'Tablo sýralamasýný þuna göre deðiþtir';
+$strAnIndex = '%s üzerinde yeni bir indeks eklendi';
$strAnalyzeTable = 'Tabloyu analiz et';
$strAnd = 'Ve';
$strAny = 'Herhangi';
@@ -50,82 +68,131 @@ $strAnyDatabase = 'Herhangi veritaban
$strAnyHost = 'Herhangi sunucu';
$strAnyTable = 'Herhangi tablo';
$strAnyUser = 'Herhangi kullanýcý';
+$strArabic = 'Arapça';
+$strArmenian = 'Ermenice';
$strAscending = 'Artan';
-$strAtBeginningOfTable = 'Tablonun baþýnda';
-$strAtEndOfTable = 'Tablonun sonunda';
+$strAtBeginningOfTable = 'Tablo baþýnda';
+$strAtEndOfTable = 'Tablo sonunda';
$strAttr = 'Özellikler';
+$strAutodetect = 'Otomatik tanýma';
+$strAutomaticLayout = 'Otomatik düzen';
$strBack = 'Geri';
+$strBaltic = 'Baltýk';
+$strBeginCut = 'BEGIN CUT';
+$strBeginRaw = 'BEGIN RAW';
$strBinary = 'Binari';
$strBinaryDoNotEdit = 'Binari - düzenlemeyiniz';
$strBookmarkDeleted = 'Bookmark silindi.';
$strBookmarkLabel = 'Etiket';
-$strBookmarkQuery = ' SQL-sorgusu';
-$strBookmarkThis = 'Bu SQL-sorgusunu iþaretle';
+$strBookmarkQuery = ' SQL sorgusu';
+$strBookmarkThis = 'Bu SQL sorgusunu iþaretle';
$strBookmarkView = 'Sadece gözat';
$strBrowse = 'Tara';
$strBrowseForeignValues = 'Foreign(yabancý) deðerleri tara';
$strBulgarian = 'Bulgarca';
+$strBzError = 'phpMyAdmin dump dosyasýný bu php versiyonundaki bozuk bir Bz2 uzantýsý nedeniyle sýkýþtýrýmadý. phpMyAdmin dizinindeki configurasyon dosyasý içindeki $cfg[\'BZipDump\']
yönergesini FALSE
\'a deðiþtirmeniz gerekmektedir. Bz2 sýkýþtýrma özelliklerini kullanmak istiyorsanýz ,bir sonraki php sürümüne güncelleme yapmanýz gerekmektedir.php hata raporu %s\' e bakýnýz ';
$strBzip = '"bzipped"';
-$strCantLoadMySQL = 'mySQL uzantýsýný yükleyemiyor, lütfen PHP ayarlarýný kontrol ediniz.';
+$strCSVOptions = 'CSV seçenekleri';
+$strCannotLogin = 'MySQL seçenekleri';
+$strCantLoad = '%s uzantýsý yüklenemiyor, PHP konfigurasyon dosyasýný kontrol ediniz.';
+$strCantLoadMySQL = 'MySQL uzantýsýný yükleyemiyor, lütfen PHP ayarlarýný kontrol ediniz.';
$strCantLoadRecodeIconv = 'Karakter seti dönüþümü için gerekli olan Iconv veya recode uzantýlarýný yükleyenemiyor. Php\'nin bu uzantýlara izin vermesini saðlayýn veya phpMyAdmin içinde karakter dönüþümünü devre dýþý býrakýnýz...';
-$strCantRenameIdxToPrimary = 'Index\'i PRIMARY olarak adlandırımazsınız!';
-$strCantUseRecodeIconv = 'Uzantý raporlarý yüklenmiþken , ne iconv ne libinconv ne de recode_string fonksiyonu kullanýlamaz. Php ayarlarýnýzý kontrol ediniz.';
+$strCantRenameIdxToPrimary = 'Indeks\'i PRIMARY olarak adlandýrýmazsýnýz!';
+$strCantUseRecodeIconv = 'Uzantý raporlarý yüklenmiþken , ne iconv,ne libinconv,ne de recode_string fonksiyonu kullanýlamaz. Php ayarlarýnýzý kontrol ediniz.';
$strCardinality = 'En önemli';
$strCarriage = 'Enter Karakteri: \\r';
$strCaseInsensitive = 'büyük küçük harf duyarsýz';
$strCaseSensitive = 'büyük küçük harf duyarlý';
+$strCentralEuropean = 'Orta Avrupa';
$strChange = 'Deðiþtir';
+$strChangeCopyMode = 'Ayný imtiyazlarla yeni bir kullanýcý yarat ve :';
+$strChangeCopyModeCopy = 'eski kullanýcýyý muhafaza et.';
+$strChangeCopyModeDeleteAndReload = 'eski kullanýcýyý kullanýcý tablolarýndan sil ve sonra imtiyazlarý yeniden yükle.';
+$strChangeCopyModeJustDelete = 'eski kullanýcýyý kullanýcý tablolarýndan sil.';
+$strChangeCopyModeRevoke = 'eskiden kalan bütün aktif imtiyazlarý iptal et ve sil.';
+$strChangeCopyUser = 'Login bilgisini deðiþtir / Kullanýcý kopyala';
$strChangeDisplay = 'Görmek istediðiniz alaný seçiniz';
$strChangePassword = 'Þifre Deðiþtir';
+$strCharset = 'Karakter seti';
$strCharsetOfFile = 'Dosyanýn karakter seti:';
$strCharsets = 'Karakter setleri';
$strCharsetsAndCollations = 'Karakter setleri ve karþýlaþtýrmalar';
$strCheckAll = 'Tümünü seç';
$strCheckDbPriv = 'Veritabaný önceliklerini kontrol et';
+$strCheckPrivs = 'Ýmtiyazlarý kontrol et';
+$strCheckPrivsLong = '"%s" veritabaný için imtiyazlarý kontrol et.';
$strCheckTable = 'Tabloyu kontrol et';
$strChoosePage = 'Lütfen düzenlemek istediðiniz sayfayý seçin';
$strColComFeat = 'Sütun yorumlarý gösteriliyor';
$strCollation = 'Karþýlaþtýrma';
$strColumn = 'Sütun';
$strColumnNames = 'Sütun adlarý';
-$strComments = 'Yorumlar';
-$strCompleteInserts = 'Tamamlanmýþ eklemeler';
+$strColumnPrivileges = 'Sütuna özgü imtiyazlar';
+$strCommand = 'Komut';
+$strComments = 'Sütun yorum,iliþki ve MIME tiplerini içer.';
+$strCompleteInserts = 'Her INSERT komutunda sütun adlarýný ekle';
+$strCompression = 'Sýkýþtýrma';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanýzý okuyamadý.... Bu php yorumlama hatasý bulduðu zaman veya dosyayý bulamadýðý zaman meydana gelebilir.. Lütfen aþaðýdaki linki kullanarak dosyayý direkt olarak çaðýrýn ve aldýðýnýz php hata mesajlarýný okuyunuz.Çoðu durumda herhangi bir yerde týrnak veya noktalý virgül eksiktir Boþ bir sayfayla karþýlaþýrsanýz ,herþey yolunda demektir.';
$strConfigureTableCoord = ' Lütfen %s tablosu için koordinatlarý yapýlandýrýnýz';
$strConfirm = 'Aþaðýdaki komutu uygulamak istediðinizden emin misiniz?';
-$strCookiesRequired = 'Cookieler açık olmalıdır.';
-$strCopyTable = 'Tabloyu (veritabaný. tablo) kopyala:';
+$strConnections = 'Baðlantýlar';
+$strCookiesRequired = 'Cookieler açýk olmalýdýr.';
+$strCopyTable = 'Tabloyu (veritabaný. tablo) kopyala :';
$strCopyTableOK = '%s tablosu %s üzerine kopyalandý.';
$strCopyTableSameNames = 'Tabloyu aynýsýna kopyalayamýyor!';
+$strCouldNotKill = 'phpMyAdmin %s iþlemini kapatamadý. Büyük ihtimalle daha önceden kapatýlmýþ.';
$strCreate = 'Git';
-$strCreateIndex = '%s sütununda yeni bir index oluştur';
-$strCreateIndexTopic = 'Yeni bir index oluştur';
+$strCreateIndex = '%s. sütunda yeni bir indeks oluþtur.';
+$strCreateIndexTopic = 'Yeni bir indeks oluþtur';
$strCreateNewDatabase = 'Yeni veritabaný oluþtur';
-$strCreateNewTable = '%s veritabaný üzerinde yeni bir tablo oluþtur';
+$strCreateNewTable = '%s veritabaný üzerinde yeni bir tablo oluþtur';
$strCreatePage = 'Yeni sayfa oluþtur';
$strCreatePdfFeat = 'PDF\'lerin oluþturulmasý';
$strCriteria = 'Kriter';
$strCroatian = 'Hýrvatça';
+$strCyrillic = 'Cyril';
$strCzech = 'Çekçe';
+$strDBComment = 'Veritabaný yorumu:';
+$strDBGContext = 'Kontekst';
+$strDBGContextID = 'Kontekst ID';
+$strDBGHits = 'Giriþler(hit)';
+$strDBGLine = 'Satýr';
+$strDBGMaxTimeMs = 'Max zaman, ms';
+$strDBGMinTimeMs = 'Min zaman, ms';
+$strDBGModule = 'Modül';
+$strDBGTimePerHitMs = 'Zaman/Giriþ, ms';
+$strDBGTotalTimeMs = 'Toplam zaman, ms';
$strDanish = 'Danimarkaca';
$strData = 'Veri';
+$strDataDict = 'Veri sözlüðü';
$strDataOnly = 'Sadece veri';
$strDatabase = 'Veritabaný ';
-$strDatabaseExportOptions = 'Veritabaný export ayarlarý';
+$strDatabaseExportOptions = 'Veritabaný dönüþüm ayarlarý';
$strDatabaseHasBeenDropped = '%s veritabaný kaldýrýldý.';
$strDatabaseNoTable = 'Bu veritabaný tablo içermiyor!';
$strDatabaseWildcard = 'Veritabaný (* izin verili):';
-$strDatabases = 'veritabanlarý';
+$strDatabases = 'Veritabanlarý';
+$strDatabasesDropped = '%s veritabanlarý baþarýyla kaldýrýldý.';
$strDatabasesStats = 'Veritabaný istatistikleri';
+$strDatabasesStatsDisable = 'Ýstatistikleri kapat';
+$strDatabasesStatsEnable = 'Ýstatistikleri aç';
+$strDatabasesStatsHeavyTraffic = 'Not: Burada veritabaný istatistiklerini açmak Web Sunucusu ile MySQL arasýnda yüksek trafiðe yol açabilir.';
+$strDbPrivileges = 'Veritabanýna özgü imtiyazlar';
+$strDbSpecific = 'Veritabanýna özgü';
$strDefault = 'Varsayýlan';
+$strDefaultValueHelp = 'Varsayýlan deðerler için,týrnak iþareti veya slash koymayarak ,lütfen tek bir deðer giriniz:þu þekilde : a';
+$strDelOld = 'Þu anki sayfada kullanýlmayan tablolara referanslar bulunuyor. Bu referanslarý silmek ister misiniz?';
$strDelete = 'Sil';
+$strDeleteAndFlush = 'Kullanýcýlarý sil ve sonra imtiyazlarý sil.';
+$strDeleteAndFlushDescr = 'Bu en temiz yoldur , fakat imtiyazlarý yeniden yüklemek zaman alabilir.';
$strDeleteFailed = 'Silme sýrasýnda hata oluþtu!';
$strDeleteUserMessage = '%s kullanýcýsýný sildiniz.';
$strDeleted = 'Satýr silindi.';
$strDeletedRows = 'Silinen satýrlar:';
+$strDeleting = '%s siliniyor';
$strDescending = 'Azalan';
$strDescription = 'Tanýmlama';
$strDictionary = 'sözlük';
@@ -134,27 +201,32 @@ $strDisplay = 'G
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayOrder = 'Görünüm düzeni:';
$strDisplayPDF = 'PDF þemasýný göster';
-$strDoAQuery = '"Örnekle sorgu" yap (joker: "%")';
+$strDoAQuery = ' "Örnekle sorgu" yap. (joker:%) ';
$strDoYouReally = 'Aþaðýdaki komutu uygulamak istediðinizden emin misiniz? ';
-$strDocu = 'Yardým';
+$strDocu = 'Dökümantasyon';
$strDrop = 'Kaldýr';
$strDropDB = 'Veritabaný\'ný kaldýr %s';
+$strDropSelectedDatabases = 'Seçili veritabanlarýný kaldýr';
$strDropTable = 'Tablo\'yu kaldýr';
+$strDropUsersDb = 'Kullanýcýlarla ayný isimlerde olan veritabanlarýný kaldýr.';
+$strDumpComments = ' Sütun yorumlarýný SQL yorumlarý gibi içer';
$strDumpSaved = 'Dump dosyasý %s dosyasýna kaydedildi';
-$strDumpXRows = ' %s satýrdan baþlayarak %s a kadar çýktý üret.';
+$strDumpXRows = 'Satýr sayýsý : %s %s .satýrdan baþlayarak.';
$strDumpingData = 'Tablo döküm verisi';
-$strDynamic = 'dinamik';
+$strDynamic = 'deðiþken';
$strEdit = 'Düzenle';
$strEditPDFPages = ' PDF Sayfalarýný düzenle';
$strEditPrivileges = 'Öncelikleri Düzenle';
$strEffective = 'Efektif';
$strEmpty = 'Boþalt';
-$strEmptyResultSet = 'MySQL boþ bir sonuc kümesi döndürdü ( sýfýr satýr).';
+$strEmptyResultSet = 'MySQL boþ bir sonuç kümesi döndürdü ( sýfýr satýr).';
$strEnabled = 'Etkin';
$strEnd = 'Son';
+$strEndCut = 'END CUT';
+$strEndRaw = 'END RAW';
$strEnglish = 'Ýngilizce';
-$strEnglishPrivileges = ' Not: mySQL öncelik adlarý Ýngilizce olarak belirtilmiþtir ';
+$strEnglishPrivileges = ' Not: MySQL imtiyaz adlarý Ýngilizce olarak belirtilmiþtir ';
$strError = 'Hata';
$strEstonian = 'Estonyaca';
$strExcelOptions = 'Excel ayarlarý';
@@ -162,51 +234,70 @@ $strExecuteBookmarked = '
$strExplain = 'SQL\'i açýkla';
$strExport = 'Dönüþtür';
$strExportToXML = 'XML formatýna dönüþtür';
-$strExtendedInserts = 'Geniþletilmiþ eklemeler';
-$strExtra = 'Ayrýca';
+$strExtendedInserts = 'Tablo ismini ve INSERT deyimini sadece bir kez kullan';
+$strExtra = 'Ekstra';
+$strFailedAttempts = 'Baþarýsýz denemeler';
$strField = 'Alan';
$strFieldHasBeenDropped = '%s alaný kaldýrýlmýþtýr';
-$strFields = 'Alanlar';
+$strFields = 'Alan Sayýsý';
$strFieldsEmpty = ' Alan sayýsý boþ! ';
-$strFieldsEnclosedBy = 'Alan ayýrýcý iþaret';//it does not seem well but just works
-$strFieldsEscapedBy = 'Kaçýþ simgesi(özel iþaretler için)';//it does not seem well but just works
-$strFieldsTerminatedBy = 'Alan bitirici iþaret';//it does not stand seem but just works
+$strFieldsEnclosedBy = 'Kapatma karakteri';
+$strFieldsEscapedBy = 'Kaçýþ karakteri';
+$strFieldsTerminatedBy = 'Alan sonu karakteri';
$strFileAlreadyExists = '%s dosyasý zaten serverda mevcut, dosya adýný deðiþtirin veya üzerine yaz seçeneðini seçin! ';
-$strFixed = 'sabit';
-$strFlushTable = 'Tabloyu kapat("FLUSH")';
+$strFileCouldNotBeRead = 'Dosya okunamadý';
+$strFileNameTemplate = 'Dosya ismi þablonu';
+$strFileNameTemplateHelp = 'Veritabaný ismi için __DB__ , tablo ismi için __TABLE__ ve zaman bildirimi için %sherhangi bir strftime%s deðeri kullanýn,uzantý otomatik olarak eklenecek,herhangi diðer bir metin korunacaktýr.';
+$strFileNameTemplateRemember = 'þablonu hatýrla';
+$strFixed = 'Sabit';
+$strFlushPrivilegesNote = 'Not: phpMyAdmin kullanýcýlarýn imtiyazlarýný direkt olarak MySQL\'ün imtiyaz tablolarýndan alýr.Bu tablolarýn içerikleri,eðer elle deðiþiklik yapýlmýþsa,sunucunun kullandýðý imtiyazlardan farklý olabilir.Bu durumda,devam etmeden önce %simtiyazlarý yeniden yüklemeniz gerekir%s .';
+$strFlushTable = 'Tabloyu yeniden yükle';
$strFormEmpty = 'Form\'da eksik deðer !';
$strFormat = 'Biçim';
$strFullText = 'Tüm metinler';
$strFunction = 'Fonksiyon';
-$strGenBy = 'Oluþturuldu->:';
+$strGenBy = 'üretildi:';
$strGenTime = 'Çýktý Tarihi';
$strGeneralRelationFeat = 'Genel iliþki özellikleri';
$strGerman = 'Almanca';
+$strGlobal = 'genel';
+$strGlobalPrivileges = 'Genel imtiyazlar';
+$strGlobalValue = 'Genel deðer';
$strGo = 'Git';
+$strGrantOption = 'Hak';
$strGrants = 'Haklar';
+$strGreek = 'Yunanca';
$strGzip = '"gziplenmiþ"';
$strHasBeenAltered = 'düzenlendi.';
$strHasBeenCreated = 'yaratýldý.';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
+$strHebrew = 'Ýbranice';
$strHome = 'Ana Sayfa';
$strHomepageOfficial = 'phpMyAdmin Web Sayfasý';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Yükleme Sayfasý';
-$strHost = 'Sunucu:';
+$strHost = 'Sunucu';
$strHostEmpty = 'Sunucu ismi alaný doldurulmadý!';
$strHungarian = 'Macarca';
+$strId = 'ID';
$strIdxFulltext = 'Tüm metinler';
$strIfYouWish = 'Eðer bir tablo\'nun sadece bazý sütunlarýný yüklemek istiyorsanýz,virgüllerle ayrýlmýþ bir alan listesi belirtiniz.';
$strIgnore = 'Yoksay';
+$strIgnoringFile = '%s dosyasýný yoksayýyor';
+$strImportDocSQL = 'docSQL dosyalarýný dönüþtür ';
+$strImportFiles = 'Dosyalarý dönüþtür';
+$strImportFinished = 'Dönüþtürme bitti';
$strInUse = 'kullanýmda';
-$strIndex = 'Index';
-$strIndexHasBeenDropped = '%s index\'i silindi.';
-$strIndexName = 'Index ismi :';
-$strIndexType = 'Index tipi :';
-$strIndexes = 'Index\'ler';
+$strIndex = 'Ýndeks';
+$strIndexHasBeenDropped = '%s indeks\'i silindi.';
+$strIndexName = 'Ýndeks ismi :';
+$strIndexType = 'Ýndeks tipi :';
+$strIndexes = 'Ýndeksler';
+$strInnodbStat = 'InnoDB durumu';
+$strInsecureMySQL = 'Konfigurasyon dosyanýz (þifresiz root) varsayýlan MySQL imtiyaz dosyasýyla aynen uyuþan ayarlar içeriyor.MySQL sunucunuz bu varsayýlan ayarlarla çalýþýyor,dýþardan giriþe açýk,ve bu güvenlik açýðýný hemen düzeltmeniz gerekmektedir.';
$strInsert = 'Ekle';
$strInsertAsNewRow = 'Yeni bir satýr olarak ekle';
$strInsertNewRow = 'Yeni satýr ekle';
@@ -216,32 +307,55 @@ $strInsertedRows = 'Eklenen sat
$strInstructions = 'Talimatlar';
$strInvalidName = '"%s" sözcüðü kullanýlamayan sözcük.Veritabaný/tablo/alan ismi olarak kullanamassýnýz, you can\'t use it as a database/table/field name.';
+$strJapanese = 'Japonca';
+$strJumpToDB = '"%s" veritabanýna git.';
+$strJustDelete = 'Kullanýcýlarý imtiyaz tablolarýndan sil .';
+$strJustDeleteDescr = '"silinmiþ" kullanýcýlar ,imtiyazlar yeniden yüklenmedikçe ,hala sunucuya normaldeki gibi eriþilebilecek ';
+
$strKeepPass = 'Þifreyi deðiþtirme';
$strKeyname = 'Anahtar ismi';
$strKill = 'Kapat';
+$strKorean = 'Korece';
+$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'LaTeX seçenekleri';
+$strLandscape = 'Peyzaj';
$strLength = 'Boyut';
$strLengthSet = 'Boyut/Deðerler*';
-$strLimitNumRows = 'Sayfa başına kayıt sayısı';
+$strLimitNumRows = 'Sayfa baþýna kayýt sayýsý :';
$strLineFeed = 'Satýr: \\n';
$strLines = 'Satýrlar';
$strLinesTerminatedBy = 'Satýr sonu';
$strLinkNotFound = 'Link bulunamadý';
$strLinksTo = 'Linkler->';
$strLithuanian = 'Litvanyaca';
-$strLocalhost = 'Local';
+$strLoadExplanation = 'En iyi yöntem varsayýlan olarak iþaratlenmiþ,fakat hata olursa deðiþtirebilirsiniz.';
+$strLoadMethod = 'YÜKLEME yöntemi';
+$strLocalhost = 'Lokal';
$strLocationTextfile = 'Dosyadan yükle';
-$strLogPassword = 'Şifre:';
-$strLogUsername = 'Kullanıcı Adı:';
+$strLogPassword = 'Þifre:';
+$strLogUsername = 'Kullanýcý Adý:';
$strLogin = 'Login';
+$strLoginInformation = 'Login bilgisi';
$strLogout = 'Çýkýþ';
+$strMIME_MIMEtype = 'MIME-tip';
+$strMIME_available_mime = 'Uygun MIME-tipleri';
+$strMIME_available_transform = 'Uygun dönüþümler';
+$strMIME_description = 'Tanýmlama';
+$strMIME_file = 'Dosya ismi';
+$strMIME_nodescription = 'Bu dönüþüm için uygun bilgi bulunmamaktadýr. Lütfen yazara %s ne yapar diye sorun';
+$strMIME_transformation = 'Tarayýcý dönüþümü';
+$strMIME_transformation_note = 'Uygun dönüþüm seçeneklerinin listesi ve onlarýn MIME-tip dönüþümleri için, %sdönüþüm tanýmlamarý%s\'na týklayýn';
+$strMIME_transformation_options = 'Dönüþüm seçenekleri';
+$strMIME_transformation_options_note = 'Lütfen dönüþüm seçenekleri için deðerleri bu þekili kullanarak giriniz: \'a\',\'b\',\'c\'... Backslash ("\") veya tek týrnak ("\'") kullamanýz gerekiyorsa, þu þekilde kullanýn : \'\\\\xyz\' veya \'a\\\'b\').';
+$strMIME_without = 'Ýtalik olarak yazýlmýþ MIME-tipleri ayrý bir dönüþüm fonksiyonuna sahip deðildir.';
$strMissingBracket = 'Parantez eksik';
$strModifications = 'Deðiþiklikler kaydedildi';
$strModify = 'Deðiþtir';
-$strModifyIndexTopic = 'Index düzenle';
-$strMoveTable = 'Tabloyu (veritabaný. tablo) taþý:';
+$strModifyIndexTopic = 'Indeks düzenle';
+$strMoreStatusVars = 'Diðer durum deðiþkenleri:';
+$strMoveTable = 'Tabloyu (veritabaný. tablo) taþý :';
$strMoveTableOK = '%s tablosu %s üzerine taþýndý.';
$strMoveTableSameNames = 'Tabloyu aynýsýna taþýyamýyor!';
$strMultilingual = 'çoklu dil';
@@ -258,476 +372,361 @@ $strName = '
$strNext = 'Sonraki';
$strNo = 'Hayýr';
$strNoDatabases = 'Veritabaný yok';
+$strNoDatabasesSelected = 'Veritabaný seçilmedi.';
$strNoDescription = 'Tanýmlama yok';
$strNoDropDatabases = '"DROP DATABASE" cümlesi burada kullanýlamaz.';
$strNoExplain = 'SQL açýklamasýný yapma';
-$strNoFrames = 'phpMyAdmin frame destekli bir tarayıcı ile daha iyi çalışmaktadır...';
-$strNoIndex = 'Index tanımlanmadı!';
-$strNoIndexPartsDefined = 'Index kısmı tanımlanmadı!';
+$strNoFrames = 'phpMyAdmin frame destekli bir tarayýcý ile daha iyi çalýþmaktadýr...';
+$strNoIndex = 'Indeks tanýmlanmadý!';
+$strNoIndexPartsDefined = 'Indeks kýsmý tanýmlanmadý!';
$strNoModification = 'Deðiþiklik yok';
+$strNoOptions = 'Bu düzenin seçeði yok';
$strNoPassword = 'Þifre yok';
$strNoPermission = 'Web sunucusu %s dosyasýný kaydetmek için izne sahip deðil.';
$strNoPhp = ' PHP kodsuz';
-$strNoPrivileges = 'Ayrýcalýk yok';
+$strNoPrivileges = 'Ýmtiyaz yok';
$strNoQuery = 'SQL sorgusu yok!';
$strNoRights = 'Burada bulunmak için yeterli haklara sahip deðilsiniz!';
$strNoSpace = '%s dosyasýný kaydetmek için yeterli alan yok.';
$strNoTablesFound = 'Veritabaný\'nda tablo bulunamadý.';
$strNoUsersFound = 'Kullanýcý(lar) bulunamadý.';
+$strNoUsersSelected = 'Kullanýcý seçilmedi.';
$strNoValidateSQL = 'SQL doðrulamasýný yapma';
$strNone = 'Hiçbiri';
-$strNotNumber = 'Bu bir sayý deðil!';
+$strNotNumber = 'Lütfen bir sayý giriniz!';
$strNotOK = 'Tamam deðil';
$strNotSet = '%s tablosu bulunamadý veya %s içinde tanýmlanmadý';
$strNotValidNumber = ' geçerli bir satýr sayýsý deðil!';
$strNull = 'Boþ';
-$strNumSearchResultsInTable = '%s eþleþim : %s tablosu içinde';
+$strNumSearchResultsInTable = '%s ( %s tablosu içinde aramanýza uyan kayýt sayýsý ) ';
$strNumSearchResultsTotal = 'Toplam: %s eþleþim';
+$strNumTables = 'Tablolar';
$strOK = 'Tamam';
-$strOftenQuotation = 'Sýk kullanýlan aktarma iþaretleri.SEÇÝME BAÐLI,sadece char ve varchar alanlarýnýn "enclosed-by" karakteri ile çevreneleceði anlamýna gelir..';
+$strOftenQuotation = 'Sýk kullanýlan aktarma iþaretleri.SEÇÝME BAÐLI,sadece char ve varchar alanlarýnýn kapatma karakteri ile çevreleneceði anlamýna gelir..';
$strOperations = 'Ýþlemler';
$strOptimizeTable = 'Tabloyu optimize et';
$strOptionalControls = 'Özel karakterleri yazmak ve okumak için kontroller.Opsiyonel';
$strOptionally = 'Seçime Baðlý';
$strOptions = 'Seçenekler';
$strOr = 'veya';
-$strOverhead = 'Kullanılamayan Veri';
+$strOverhead = 'Kullanýlamayan Veri';
$strOverwriteExisting = 'Mevcut dosyalarýn üzerine yaz!';
+$strPHP40203 = ' Ciddi bir multi-byte strings (mbstring) hatasýna sahip olan PHP 4.2.3 kullanýyorsunuz,. PHP hata raporu 19404\' e bakýnýz. Bu sürümün phpMyAdmin\'le kullanýlmasý önerilmez.';
$strPHPVersion = 'PHP Sürümü';
$strPageNumber = 'Sayfa numarasý:';
$strPaperSize = 'Kaðýt boyu';
-$strPartialText = 'Bölümsel Metinler';
+$strPartialText = 'Kýsmi Metinler';
$strPassword = 'Þifre';
+$strPasswordChanged = '%s için þifre baþarýyla deðiþtirildi.';
$strPasswordEmpty = 'Þifre alaný doldurulmadý!';
$strPasswordNotSame = 'Girilen þifreler ayný deðil!';
$strPdfDbSchema = ' "%s" veritabanýnýn þemasý - Sayfa %s';
$strPdfInvalidPageNum = 'Tanýmlanmamýþ PDF sayfa numarasý!';
$strPdfInvalidTblName = ' "%s" tablosu bulunamýyor !';
+$strPdfNoTables = 'Tablo yok';
+$strPerHour = 'saat baþýna';
+$strPerMinute = 'dakika baþýna';
+$strPerSecond = 'saniye baþýna';
$strPhoneBook = 'telefon defteri';
$strPhp = 'PHP kodu oluþtur';
$strPmaDocumentation = 'phpMyAdmin yardým';
$strPmaUriError = '$cfg[\'PmaAbsoluteUri\'] \' nin deðeri konfigurasyon dosyasýnýn içinde verilmelidir!';
+$strPortrait = 'Portre';
$strPos1 = 'Baþlangýç';
$strPrevious = 'Önceki';
$strPrimary = 'Birincil';
$strPrimaryKey = 'Birincil anahtar';
$strPrimaryKeyHasBeenDropped = 'Birincil anahtar silindi';
-$strPrimaryKeyName = 'PRIMARY KEY TEK olmalıdır!';
-$strPrimaryKeyWarning = '("PRIMARY" sadece bir anahtarın ismi olmalıdır! )';
+$strPrimaryKeyName = 'PRIMARY KEY TEK olmalýdýr!';
+$strPrimaryKeyWarning = '# PRIMARY sadece birincil bir anahtarýn ismi olmalýdýr! ';
+$strPrint = 'Yazdýr';
$strPrintView = 'Yazýcý görüntüsü';
-$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
-$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
-$strPrivDescMaxUpdates = 'Limits the number of commands that change any table or database the user may execute per hour.';
-$strPrivileges = 'Öncelikler';
+$strPrivDescAllPrivileges = 'GRANT hariç tüm imtiyazlarý içerir.';
+$strPrivDescAlter = 'Varolan tablonun yapýsýnýn deðiþtirilmesine izin verir.';
+$strPrivDescCreateDb = 'Yeni veritabanlarý ve tablolarýn oluþturulmasýna izin verir.';
+$strPrivDescCreateTbl = 'Yeni tablolarýn oluþturulmasýna izin verir.';
+$strPrivDescCreateTmpTable = 'Geçici tablolara oluþturulmasýna izin verir.';
+$strPrivDescDelete = 'Veri silinmesine izin verir.';
+$strPrivDescDropDb = 'Veritabanlarý ve tablolarýn kaldýrýlmasýna izin verir.';
+$strPrivDescDropTbl = 'Tablolarýn kaldýrýlmasýna izin verir.';
+$strPrivDescExecute = 'Kaydedilmiþ yordamlarýn çalýþtýrýlmasýna izin verir.; Bu MySQL sürümünde etkisi yoktur.';
+$strPrivDescFile = 'Data import ve export\'una izin verir.';
+$strPrivDescGrant = 'Ýmtiyaz tablolarýný yeniden yüklemeden yeni kullanýcý ve imtiyaz eklenmesine izin verir.';
+$strPrivDescIndex = 'Ýndekslerin yaratýlmasýna ve kaldýrýlmasýna izin verir.';
+$strPrivDescInsert = 'Verinin eklenmesine ve yer deðiþtirilmesine izin verir.';
+$strPrivDescLockTables = 'Geçerli iþlem için tablolarýn kilitlenmesine izin verir.';
+$strPrivDescMaxConnections = 'Kullanýcýnýn saat baþýna açabileceði baðlantýyý sýnýrlar.';
+$strPrivDescMaxQuestions = 'Kullanýcýnýn saat baþýna sunucuya gönderebileceði sorgu sayýsýný sýnýrlar.';
+$strPrivDescMaxUpdates = 'Kullanýcýnýn,saat baþýna çalýþtýrabileceði,herhangi bir tablo veya veritabaný deðiþtiren komut sayýsýný sýnýrlar.';
+$strPrivDescProcess3 = 'Diðer kullanýcýlarýn iþlemlerinin kapatýlmasýna izin verir.';
+$strPrivDescProcess4 = 'Ýþlem listesindeki bütün sorgularýn görüntülenmesine izin verir.';
+$strPrivDescReferences = 'Bu MySQL sürümünde etkisi yoktur.';
+$strPrivDescReload = 'Sunucu ayarlarýnýn yeniden yüklenmesine ve flush\'a izin ver.(hafýza çýktýsý)';
+$strPrivDescReplClient = 'Slave ve Master\'larýn nerede olduðunu sorma hakký verir.';
+$strPrivDescReplSlave = 'Kopya slave\'ler için zorunlu.';
+$strPrivDescSelect = 'Veri okunmasýna izin ver.';
+$strPrivDescShowDb = 'Bütün veritabanlarý listesine eriþim verir.';
+$strPrivDescShutdown = 'Sunucunun kapatýlmasýna izin ver.';
+$strPrivDescSuper = 'Maksimum baðlantý sayýsý aþýlsa bile baðlanmasýna izin ver;Genel(global) deðiþkenleri setlemek veya diðer kullanýcýlarýn iþlemlerini sonlandýrmak gibi bir çok yönetim iþlemi için gereklidir.';
+$strPrivDescUpdate = 'Veri deðiþtirilmesine izin ver.';
+$strPrivDescUsage = 'Ýmtiyaz yok.';
+$strPrivileges = 'Ýmtiyazlar';
+$strPrivilegesReloaded = 'Ayrýcalýklar baþarýyla yüklendi.';
+$strProcesslist = 'Ýþlem listesi';
$strProperties = 'Özellikler';
+$strPutColNames = 'Ýlk satýrda alan isimlerini koy';
$strQBE = ' Sorgula';
$strQBEDel = 'Del';
$strQBEIns = 'Ins';
-$strQueryOnDb = 'Veritabaný üzerinde SQL-sorgusu %s :';
-$strQueryStatistics = 'Query statistics : Since its startup, %s queries have been sent to the server.';
+$strQueryFrame = 'Sorgu penceresi';
+$strQueryFrameDebug = 'Debug bilgisi';
+$strQueryFrameDebugBox = 'Sorgu formu için aktif deðiþkenler :\nDB: %s\nTablo: %s\nSunucu: %s\n\nSorgu formu için geçerli deðiþkenler:\nDB: %s\nTablo: %s\nSunucu: %s\n\nAçacak konumu: %s\nFrameset konumu: %s.';
+$strQueryOnDb = '%s veritabanýnda SQL sorgusu :';
+$strQuerySQLHistory = 'SQL geçmiþi';
+$strQueryStatistics = 'Sorgu istatistikleri : Baþlangýçtan bu yana sunucuya %s sorgu gönderildi.';
+$strQueryTime = 'Sorgu %01.4f san sürdü';
+$strQueryType = 'Sorgu þekli';
$strQueryWindowLock = 'Pencere dýþýndan bu sorgunun üzerine yazma';
$strReType = 'Yeniden gir';
+$strReceived = 'Alýndý';
$strRecords = 'Kayýtlar';
$strReferentialIntegrity = 'Referans bütünlüðünü kontrol et.';
-$strRelationNotWorking = 'Baðlý tablolarla çalýþmada kullanýlan ekstra özellikler deaktif edildi...Niçin olduðunu öðrenmek için %sburaya%s týklayýnýz...';
+$strRelationNotWorking = 'Baðlý tablolarla çalýþmada kullanýlan ekstra özellikler kapatýldý...Niçin olduðunu öðrenmek için %sburaya%s týklayýnýz...';
$strRelationView = 'Ýliþki görünümü';
+$strRelationalSchema = 'Ýliþki þemasý';
$strRelations = 'Ýliþkiler';
$strReloadFailed = 'MySQL yeniden yüklenmesi gerçekleþtirilemedi.';
-$strReloadMySQL = 'MySQL\'i yeniden yükle';
+$strReloadMySQL = 'MySQL\' i yeniden yükle';
+$strReloadingThePrivileges = 'Ýmtiyazlarý yeniden yüklüyor';
$strRememberReload = 'Server\'ý yeniden yüklemeyi unutmayýnýz.';
+$strRemoveSelectedUsers = 'Seçili kullanýcýlarý kaldýr';
$strRenameTable = 'Tablonun ismini þuna deðiþtir';
$strRenameTableOK = '%s tablosu %s olarak yeniden adlandýrýldý';
$strRepairTable = 'Tablo\'yu onar';
$strReplace = 'Yerdeðiþtir';
-$strReplaceNULLBy = 'NULL u yerdeðiþtir';
+$strReplaceNULLBy = 'NULL \' u bununla yerdeðiþtir';
$strReplaceTable = 'Tablo verisini bir dosyadaki ile deðiþtir';
$strReset = 'Sýfýrla';
+$strResourceLimits = 'Kaynak sýnýrlarý';
$strRevoke = 'Geçersiz kýl';
+$strRevokeAndDelete = 'Kullanýcýlardaki tüm etkin imtiyazlarý geçersiz kýl ve sonra sil..';
+$strRevokeAndDeleteDescr = 'Kullanýcýlar yeniden yüklenene kadar hala KULLANIM ayrýcalýðýna sahip olacaklar.';
$strRevokeGrant = 'Hak geçersiz kýl';
-$strRevokeGrantMessage = '%s için Grant önceliğini kaldırdınız';
-$strRevokeMessage = '%s\'in önceliklerini kaldırdınız';
-$strRevokePriv = 'Ayrýcalýklarý geçersiz kýl';
+$strRevokeGrantMessage = '%s için Grant önceliðini kaldýrdýnýz';
+$strRevokeMessage = '%s\'in önceliklerini kaldýrdýnýz';
+$strRevokePriv = 'Ýmtiyazlarý geçersiz kýl';
$strRowLength = 'Satýr boyu';
$strRowSize = ' Satýr boyutu ';
-$strRows = 'Satýr Sayýsý';
-$strRowsFrom = '(kayýt)baþlayacaðý kayýt :';
+$strRows = 'Satýr';
+$strRowsFrom = 'kayýt : Baþlayacaðý kayýt :';
+$strRowsModeFlippedHorizontal = 'yatay (döndürülmüþ baþlýklar)';
$strRowsModeHorizontal = 'yatay';
-$strRowsModeOptions = '%s modunda ve %s hücre sonra başlığı tekrarla';
+$strRowsModeOptions = '%s olarak göster ve %s hücre sonra baþlýðý tekrarla.';
$strRowsModeVertical = 'dikey';
$strRowsStatistic = 'Satýr istatistiði';
$strRunQuery = 'Sorguyu çalýþtýr';
-$strRunSQLQuery = '%s veritabaný üzerinde sorgu/sorgular çalýþtýr';
-$strRunning = ': %s üzerinde çalýþýyor...';
+$strRunSQLQuery = '%s veritabaný üzerinde sorgu çalýþtýr';
+$strRunning = '# %s üzerinde çalýþýyor...';
+$strRussian = 'Rusça';
-$strSQL = 'SQL';
-$strSQLQuery = 'SQL-sorgusu';
+$strSQL = 'SQL sorgusu';
+$strSQLOptions = 'SQL seçenekleri';
+$strSQLParserBugMessage = 'SQL yorumlayýcýsýnda bir hata bulma ihtimaliniz var.Lütfen sorgunuzu dikkatli bir þekilde gözden geçiriniz,ve týrnaklar doðru ve yanlýþ yazýlmamýþ kontrol ediniz.Diðer olasý hata nedenleri metin alanýna alabileceði boyuttan daha büyük bir dosya yüklüyor olma ihtimalinizdir.Sorgunuzu MySQL komut satýrý arayüzünde de deneyebilirsiniz..MySQL sunucu hata çýktýsý,var ise,hatayý manýzda size yardýmcý olabilir.Hala sorunlarýnýz varsa veya komut satýrý arayüzü çalýþýrken,yorumlayýcý hata veriyorsa,lütfen SQL sorgu giriþinizi hata yaratan tek bir sorguya indirgeyin,ve aþaðýdaki CUT bölümü veri yýðýný ile birlikte hata raporunu bildiriniz:';
+$strSQLParserUserError = 'SQL sorgunuzda bir hata varmýþ gibi gözüküyor.MySQL sunucu hata çýktýsý,var ise,hatayý bulmanýzda size yardýmcý olabilir.';
+$strSQLQuery = 'SQL sorgusu';
$strSQLResult = 'SQL sonucu';
+$strSQPBugInvalidIdentifer = 'Geçersiz tanýmlayýcý';
+$strSQPBugUnknownPunctuation = 'Bilinmeyen noktalama iþareti';
$strSave = 'Kaydet';
$strSaveOnServer = 'Sunucuda %s dizininin içinde kaydet';
$strScaleFactorSmall = 'Çarpan faktörü sayfadaki þema için çok küçük';
$strSearch = 'Ara';
$strSearchFormTitle = 'Veritabanýnda ara';
-$strSearchInTables = 'Tablo(lar) içinde:';
-$strSearchNeedle = 'Aranacak kelime veya deðerler (joker: "%"):';
+$strSearchInTables = 'Tablo içinde ara :';
+$strSearchNeedle = 'Aranacak kelime veya deðerler ( joker: "%" ):';
$strSearchOption1 = 'kelimelerin en azýndan biri';
$strSearchOption2 = 'bütün kelimeler';
$strSearchOption3 = 'tam eþleþim';
$strSearchOption4 = 'normal deyim gibi';
$strSearchResultsFor = ' "%s" %s için arama sonuçlarý:';
-$strSearchType = 'Bul:';
+$strSearchType = 'BUL :';
$strSecretRequired = 'Ayar dosyasý için gizli bir þifre gerekiyor (blowfish_secret).';
$strSelect = 'Seç';
-$strSelectADb = ' Lütfen bir veritabanı seçiniz';
+$strSelectADb = ' Lütfen bir veritabaný seçiniz';
$strSelectAll = 'Tümünü seç';
-$strSelectFields = 'Alan seç (en az bir):';
+$strSelectFields = 'Alan seç (en az bir)';
$strSelectNumRows = 'sorgu içerisinde';
$strSelectTables = 'Tablolarý seç';
$strSend = 'Dosya olarak kaydet';
+$strSent = 'Gönderildi';
+$strServer = '%s sunucusu';
$strServerChoice = 'Server seçimi';
-$strServerTrafficNotes = 'Server traffic : These tables show the network traffic statistics of this MySQL server since its startup.';
+$strServerStatus = 'Çalýþma bilgisi';
+$strServerStatusUptime = 'Bu MySQL sunucusunun çalýþma süresi : %s Baþlama Zamaný: %s ';
+$strServerTabProcesslist = 'Ýþlemler';
+$strServerTabVariables = 'Deðiþkenler';
+$strServerTrafficNotes = 'Sunucu Yoðunluðu : Bu tablolar baþlama zamanýndan bu yana MySQL sunucusunun network yoðunluðunu gösterir.';
+$strServerVars = 'Sunucu deðiþkenleri ve ayarlarý';
$strServerVersion = 'Server sürümü';
+$strSessionValue = 'Oturum deðeri';
$strSetEnumVal = 'Eðer alan tipi "enum" veya "set" ise , lütfen verileri þu formata göre giriniz: \'a\',\'b\',\'c\'... Eðer bu deðerler arasýna backslash ("\") veya tek týrnak koymanýz gerekirse ("\'"),bunun için backslash kullanýn (mesela \'\\\\xyz\' veya \'a\\\'b\').';
-$strShow = 'Göster:';
+$strShow = 'Göster';
$strShowAll = 'Tümünü göster';
$strShowColor = 'Rengi göster';
$strShowCols = 'Bütün sütunlarý göster';
+$strShowDatadictAs = 'Veri sözlüðü formatý';
+$strShowFullQueries = 'Sorgularýn tümünü göster';
$strShowGrid = 'Izgarayý göster';
$strShowPHPInfo = 'PHP bilgisini göster';
-$strShowTableDimension = 'Tablolarýn boyutlarýný göster';
+$strShowTableDimension = 'Tablolarýn';
$strShowTables = 'Tablolarý göster';
-$strShowThisQuery = ' Bu sorguyu burda yine göster ';
-$strShowingRecords = 'Kayýtlarý gösteriyor';
-$strSingly = '(birer birer)';
+$strShowThisQuery = 'Sorguyu burada yine göster.';
+$strShowingRecords = 'Kayýtlarý gösteriyor...';
+$strSimplifiedChinese = 'Basitleþtirilmiþ Çince';
+$strSingly = '( birer birer )';
$strSize = 'Boyut';
$strSort = 'Sýrala';
$strSpaceUsage = 'Kullanýlan alan';
$strSplitWordsWithSpace = 'Kelimeler bir boþluk karakteriyle bölünmüþtür (" ").';
-$strStatement = 'Ýfadeler';
+$strStatCheckTime = 'Son kontrol';
+$strStatCreateTime = 'Oluþturulma';
+$strStatUpdateTime = 'Son güncellenme';
+$strStatement = 'Durum';
+$strStatus = 'Durum';
$strStrucCSV = 'CSV verisi';
$strStrucData = 'Yapý ve Veri';
-$strStrucDrop = '\'Drop table\' ekle';
+$strStrucDrop = 'DROP TABLE ekle';
$strStrucExcelCSV = 'MS Excel verisi için CSV';
$strStrucOnly = 'Sadece yapý';
-$strStructPropose = 'Tablo yapýsýný ayarla(mysql,tablo yapýsýný optimize eder)';
+$strStructPropose = 'Tablo yapýsýný analiz et.';
$strStructure = 'Yapý';
$strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz baþarýyla çalýþtýrýlmýþtýr';
$strSum = 'toplam';
$strSwedish = 'Ýsveçce';
+$strSwitchToTable = 'Kopyalanmýþ tabloya geç';
-$strTable = 'Tablo';
+$strTable = 'Tablo:';
$strTableComments = 'Tablo yorumlarý';
$strTableEmpty = 'Tablo ismi boþ!';
$strTableHasBeenDropped = '%s tablosu kaldýrýlmýþtýr';
$strTableHasBeenEmptied = '%s tablosu boþaltýlmýþtýr';
-$strTableHasBeenFlushed = '%s tablosu başarıyla kapatılmıştır.';
+$strTableHasBeenFlushed = '%s tablosu baþarýyla kapatýlmýþtýr.';
$strTableMaintenance = 'Tablo bakýmý';
+$strTableOfContents = 'Ýçerik tablosu';
$strTableOptions = 'Tablo ayarlarý';
-$strTableStructure = 'Tablo için tablo yapýsý';
+$strTableStructure = 'Tablo yapýsý :';
$strTableType = 'Tablo tipi';
$strTables = '%s tablo';
+$strTblPrivileges = 'Tabloya özgü imtiyazlar';
$strTextAreaLength = 'Boyutu nedeniyle, bu alan düzenlenmeyebilir ';
+$strThai = 'Thai';
$strTheContent = 'Dosyanýzýn içeriði eklendi.';
$strTheContents = 'Dosyanýn içeriði tablonun içeriðini ayný birincil veya unique anahtar deðerli sütunlar için yer deðiþtirir..';
$strTheTerminator = 'Alan bitimini belirten iþaret.';
-$strToggleScratchboard = 'toggle scratchboard';
+$strThisHost = 'Bu host ';
+$strThisNotDirectory = 'Bu bir dizin deðildi';
+$strThreadSuccessfullyKilled = '%s iþlemi baþarýyla sonlandýrýldý.';
+$strTime = 'Zaman';
+$strToggleScratchboard = 'scratchboard\a geç';
$strTotal = 'toplam';
+$strTotalUC = 'Toplam';
+$strTraditionalChinese = 'Geleneksel Çince';
+$strTraffic = 'Yoðunluk';
+$strTransformation_image_jpeg__inline = 'Týklanabilir bir thumbnail gösterir; seçenekler: pixel olarak geniþlik,yükseklik (orijinal oran korunur)';
+$strTransformation_image_jpeg__link = 'Bu resime direkt bir link gösterir (direct blob yüklemesi...).';
+$strTransformation_image_png__inline = 'jpeg resmini gör: satýriçi';
+$strTransformation_text_plain__dateformat = 'Bir TIME, TIMESTAMP veya DATETIME alaný alýr ve varsayýlan tarih formatý bilgilerinizle onu yeniden biçimlendirir.Ýlk seçenek zamangösterimi(timestamp)\'ne eklenecek bir offset(saat olarak)\'tir.(Varsayýlan: 0).Ýkinci seçenek PHP\'nin strftime() fonksiyonu için uygun olan parametrelere göre farklý bir zamangösterimi(timestamp)\'dir.';
+$strTransformation_text_plain__external = 'Dýþ bir uygulama çalýþtýrýr ve alanverisini standart giriþ yoluyla besler.Uygulamanýn standart çýktýsý döner.Varsayýlan hoþ bir HTML çýktýsý veren Tidy(Düzenli)\'dir..Güvenlik nedeniyle libraries/transformations/text_plain__external.inc.php dosyasýný elle düzenlemeniz ve çalýþmasýna izin vereceðiniz araçlarý eklemeniz gerekir.Ýlk seçenek;çalýþtýrmak istediðiniz program sayýsý,ikinci seçenek ise program için gerekli olan parametrelerdir.Üçüncü parametre ,eðer 1\'e setlenmiþse htmlspecialchars() fonksiyonunu kullanarak çýktýyý dönüþtürecektir(Varsayýlan: 1).Dördüncü bir parametre ise ,eðer 1\'e setlenmiþse NOWRAP(kaydýrma yok) kodu tüm hücreye eklenecek ve bütün çýktý yeniden düzenlenmeden görünecektir.(Varsayýlan :1)';
+$strTransformation_text_plain__formatted = 'Alanýn orijinal biçimlendirmesini korur.Escaping(kaçýþ) yapýlmaz..';
+$strTransformation_text_plain__imagelink = 'Bir resim ve bir link gösterir,alan dosya ismini içerir;ilk seçenek "http://domain.com/" gibi bir yazým,ikinci seçenek pixel olarak geniþlik,üçüncüsü ise yüksekliktir.';
+$strTransformation_text_plain__link = 'Bir link ve dosya ismini içeren alaný gösterir;ilk seçenek "http://domain.com/" gibi bir gösterim,ikincisi ise link için bir baþlýktýr.';
+$strTransformation_text_plain__substr = 'Sadece yazýnýn bir kýsmýný gösterir. Ýlk seçenek metin çýktýnýzýn nerede olduðunu tanýmlamak için kullanýlacak bir offset\'tir. (varsayýlan: 0).Ýkinci seçenek ne kadar metinin geri döndürüldüðünü belirten bir offset\'tir.. Eðer boþsa, bütün kalan metin geri döndürülür.Üçüncü seçenek bir substring döndürüldüðünde hangi karakterlerin çýktýnýn sonuna ekleneceðini tanýmlar(Varsayýlan:...) .';
+$strTransformation_text_plain__unformatted = 'HTML kodunu bir bütün olarak göster.HTML biçimlendirme gösteriliyor.';
+$strTruncateQueries = 'Görülen sorgularý kýsalt';
$strTurkish = 'Türkçe';
$strType = 'Tip';
$strUkrainian = 'Ukraynaca';
$strUncheckAll = 'Hiçbirisini Seçme';
+$strUnicode = 'Unicode';
$strUnique = 'Unique';
+$strUnknown = 'bilinmeyen';
$strUnselectAll = 'Hiçbirisini seçme';
-$strUpdatePrivMessage = '%s için olan ayrýcalýklarý güncellediniz.';
+$strUpdComTab = 'Sütun_Yorumlarý tablosunun nasýl güncellendiðini öðrenmek istiyorsanýz Dökümanlara bakýnýz.';
+$strUpdatePrivMessage = '%s için olan imtiyazlarý güncellediniz.';
$strUpdateProfile = 'Profil güncelle:';
$strUpdateProfileMessage = 'Profil güncellendi.';
$strUpdateQuery = 'Sorguyu güncelle';
$strUsage = 'Kullaným';
$strUseBackquotes = 'Tablo ve alan isimleri için ters týrnak " ` " iþaretini kullan';
+$strUseHostTable = 'Host tablosunu kullan';
$strUseTables = 'Tablolarý kullan';
+$strUseTextField = 'Metin alanýný kullan';
$strUseThisValue = 'Bu deðeri kullan';
-$strUser = 'Kullanýcý:';
+$strUser = 'Kullanýcý';
+$strUserAlreadyExists = '%s kullanýcýsý zaten mevcut!';
$strUserEmpty = 'Kullanýcý ismi alaný doldurulmadý!';
$strUserName = 'Kullanýcý ismi';
+$strUserNotFound = 'Seçili kullanýcý imtiyaz tablosunda bulunamadý.';
+$strUserOverview = 'Kullanýcý gözlem';
$strUsers = 'Kullanýcýlar';
+$strUsersDeleted = 'Seçili kullanýcýlar baþarýyla silindi.';
+$strUsersHavingAccessToDb = '"%s" veritabanýna eriþimi olan kullanýcýlar';
$strValidateSQL = 'SQL\'i doðrula';
+$strValidatorError = 'SQL onaylayýcýsý baþlatýlamadý.%sdökümanlar%s\'da belirtildiði gibi,gerekli php uzantýlarýnýn yüklenip yüklenilmediðini kontrol ediniz.';
$strValue = 'Deðer';
-$strViewDump = 'Tablo\'nun döküm(þema)\'ünü göster';
-$strViewDumpDB = 'Veritabaný\'nýn döküm(þema)\'ünü göster';
-$strViewDumpDatabases = 'Veritabanlarýnýn þemalarýný (dump) gör';
+$strVar = 'Deðiþken';
+$strViewDump = 'Tablo gözlem þemasý';
+$strViewDumpDB = 'Veritabaný gözlem þemasý';
+$strViewDumpDatabases = 'Veritabanlarý gözlem þemasý';
+$strWebServerUploadDirectory = 'web-sunucu yükleme dizini';
+$strWebServerUploadDirectoryError = 'Yükleme iþi için belirttiðiniz dizine ulaþýlamýyor.';
$strWelcome = '%s \'e HOÞGELDÝNÝZ....';
+$strWestEuropean = 'Batý Avrupa';
+$strWildcard = 'joker';
$strWindowNotFound = 'Hedefteki tarayý penceresi güncellenemiyor...Baðlantýsý olan pencereyi kapattýnýz veya tarayýcýnýzýn güvenlik ayarlarý buna izin vermiyor';
-$strWithChecked = 'seçilileri:';
+$strWithChecked = 'Seçilileri:';
+$strWritingCommentNotPossible = 'Yorum yazýlmazý mümkün deðil.';
+$strWritingRelationNotPossible = 'Ýliþkinin yazýlmasý mümkün deðil.';
$strWrongUser = 'Hatalý kullanýcý/parola. Eriþim engellendi.';
+$strXML = 'XML';
+
$strYes = 'Evet';
+$strZeroRemovesTheLimit = 'Not: Bu seçeneklerin 0\'a ayarlanmasý sýnýrý kaldýrýr..';
$strZip = '"ziplenmiþ"';
// To translate
-$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
-$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
-$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
-$strAdministration = 'Administration'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strAutodetect = 'Autodetect'; //to translate
-$strAutomaticLayout = 'Automatic layout'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strBeginCut = 'BEGIN CUT'; //to translate
-$strBeginRaw = 'BEGIN RAW'; //to translate
-$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the $cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file to FALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
-
-$strCSVOptions = 'CSV options';//to translate
-$strCannotLogin = 'Cannot login to MySQL server'; //to translate
-$strCantLoad = 'cannot load %s extension, please check PHP Configuration'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strChangeCopyMode = 'Create a new user with the same privileges and ...'; //to translate
-$strChangeCopyModeCopy = '... keep the old one.'; //to translate
-$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; //to translate
-$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; //to translate
-$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; //to translate
-$strChangeCopyUser = 'Change Login Information / Copy User'; //to translate
-$strCharset = 'Charset'; //to translate
-$strCheckPrivs = 'Check Privileges'; //to translate
-$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
-$strColumnPrivileges = 'Column-specific privileges'; //to translate
-$strCommand = 'Command'; //to translate
-$strCompression = 'Compression'; //to translate
-$strConnections = 'Connections'; //to translate
-$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-
-$strDBComment = 'Database comment: ';//to translate
-$strDBGContext = 'Context'; //to translate
-$strDBGContextID = 'Context ID'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGMaxTimeMs = 'Max time, ms'; //to translate
-$strDBGMinTimeMs = 'Min time, ms'; //to translate
-$strDBGModule = 'Module'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
-$strDBGTotalTimeMs = 'Total time, ms'; //to translate
-$strDataDict = 'Data Dictionary'; //to translate
-$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
-$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
-$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
-$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
-$strDbPrivileges = 'Database-specific privileges'; //to translate
-$strDbSpecific = 'database-specific'; //to translate
-$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
-$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
-$strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; //to translate
-$strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; //to translate
-$strDeleting = 'Deleting %s'; //to translate
-$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
-$strDropUsersDb = 'Drop the databases that have the same names as the users.'; //to translate
-$strDumpComments = 'Include column comments as inline SQL-comments';//to translate
-
-$strEndCut = 'END CUT'; //to translate
-$strEndRaw = 'END RAW'; //to translate
-
-$strFailedAttempts = 'Failed attempts'; //to translate
-$strFileCouldNotBeRead = 'File could not be read'; //to translate
-$strFileNameTemplate = 'File name template';//to translate
-$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';//to translate
-$strFileNameTemplateRemember = 'remember template';//to translate
-$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
-
-$strGlobal = 'global'; //to translate
-$strGlobalPrivileges = 'Global privileges'; //to translate
-$strGlobalValue = 'Global value'; //to translate
-$strGrantOption = 'Grant'; //to translate
-$strGreek = 'Greek'; //to translate
-
-$strHebrew = 'Hebrew'; //to translate
-
-$strId = 'ID'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
-$strImportFiles = 'Import files'; //to translate
-$strImportFinished = 'Import finished'; //to translate
-$strInnodbStat = 'InnoDB Status'; //to translate
-$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
-
-$strJapanese = 'Japanese'; //to translate
-$strJumpToDB = 'Jump to database "%s".'; //to translate
-$strJustDelete = 'Just delete the users from the privilege tables.'; //to translate
-$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; //to translate
-
-$strKorean = 'Korean'; //to translate
-
-$strLaTeX = 'LaTeX'; //to translate
-$strLandscape = 'Landscape'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoginInformation = 'Login Information'; //to translate
-
-$strMIME_MIMEtype = 'MIME-type';//to translate
-$strMIME_available_mime = 'Available MIME-types';//to translate
-$strMIME_available_transform = 'Available transformations';//to translate
-$strMIME_description = 'Description';//to translate
-$strMIME_file = 'Filename';//to translate
-$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.';//to translate
-$strMIME_transformation = 'Browser transformation';//to translate
-$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s';//to translate
-$strMIME_transformation_options = 'Transformation options';//to translate
-$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate
-$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate
-$strMoreStatusVars = 'More status variables'; //to translate
-
-$strNoDatabasesSelected = 'No databases selected.'; //to translate
-$strNoOptions = 'This format has no options';//to translate
-$strNoUsersSelected = 'No users selected.'; //to translate
-$strNumTables = 'Tables'; //to translate
-
-$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
-$strPasswordChanged = 'The Password for %s was changed successfully.'; // to translate
-$strPdfNoTables = 'No tables'; //to translate
-$strPerHour = 'per hour'; //to translate
-$strPerMinute = 'per minute';//to translate
-$strPerSecond = 'per second';//to translate
-$strPortrait = 'Portrait'; //to translate
-$strPrint = 'Print'; //to translate
-$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
-$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
-$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
-$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
-$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
-$strPrivDescDelete = 'Allows deleting data.'; //to translate
-$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
-$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
-$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
-$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
-$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
-$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
-$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
-$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
-$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
-$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
-$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
-$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
-$strPrivDescReplClient = 'Gives the right to the user to ask where the slaves / masters are.'; //to translate
-$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
-$strPrivDescSelect = 'Allows reading data.'; //to translate
-$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
-$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
-$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
-$strPrivDescUpdate = 'Allows changing data.'; //to translate
-$strPrivDescUsage = 'No privileges.'; //to translate
-$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
-$strProcesslist = 'Process list'; //to translate
-$strPutColNames = 'Put fields names at first row'; //to translate
-
-$strQueryFrame = 'Query window';//to translate
-$strQueryFrameDebug = 'Debugging information';//to translate
-$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.';//to translate
-$strQuerySQLHistory = 'SQL-history';//to translate
-$strQueryTime = 'Query took %01.4f sec';//to translate
-$strQueryType = 'Query type'; //to translate
-
-$strReceived = 'Received'; //to translate
-$strRelationalSchema = 'Relational schema'; //to translate
-$strReloadingThePrivileges = 'Reloading the privileges'; //to translate
-$strRemoveSelectedUsers = 'Remove selected users'; //to translate
-$strResourceLimits = 'Resource limits'; //to translate
-$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; //to translate
-$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
-$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate
-$strRussian = 'Russian'; //to translate
-
-$strSQLOptions = 'SQL options';//to translate
-$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; //to translate
-$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; //to translate
-$strSQPBugInvalidIdentifer = 'Invalid Identifer'; //to translate
-$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
-$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
-$strSent = 'Sent'; //to translate
-$strServer = 'Server %s'; //to translate
-$strServerStatus = 'Runtime Information'; //to translate
-$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
-$strServerTabProcesslist = 'Processes'; //to translate
-$strServerTabVariables = 'Variables'; //to translate
-$strServerVars = 'Server variables and settings'; //to translate
-$strSessionValue = 'Session value'; //to translate
-$strShowDatadictAs = 'Data Dictionary Format'; //to translate
-$strShowFullQueries = 'Show Full Queries'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strStatCheckTime = 'Last check';//to translate
-$strStatCreateTime = 'Creation';//to translate
-$strStatUpdateTime = 'Last update';//to translate
-$strStatus = 'Status'; //to translate
-$strSwitchToTable = 'Switch to copied table'; //to translate
-
-$strTableOfContents = 'Table of contents'; //to translate
-$strTblPrivileges = 'Table-specific privileges'; //to translate
-$strThai = 'Thai'; //to translate
-$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
-$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
-$strTime = 'Time'; //to translate
-$strTotalUC = 'Total'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strTraffic = 'Traffic'; //to translate
-$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
-$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).';//to translate
-$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
-$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().';//to translate
-$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)';//to translate
-$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.';//to translate
-$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
-$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
-$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .';//to translate
-$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.';//to translate
-$strTruncateQueries = 'Truncate Shown Queries'; //to translate
-
-$strUnicode = 'Unicode'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
-$strUseHostTable = 'Use Host Table'; //to translate
-$strUseTextField = 'Use text field'; //to translate
-$strUserAlreadyExists = 'The user %s already exists!'; //to translate
-$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
-$strUserOverview = 'User overview'; //to translate
-$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
-$strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate
-
-$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; //to translate
-$strVar = 'Variable'; //to translate
-
-$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
-$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strWildcard = 'wildcard'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
-
-$strXML = 'XML';//to translate
-
-$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
+$strInternalRelations = 'Internal relations'; //to translate
+
$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
+$strLatexContent = 'Content of table __TABLE__';//to translate
+$strLatexContinued = '(continued)';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strLatexIncludeCaption = 'Include table caption';//to translate
+$strLatexLabel = 'Label key';//to translate
+$strLatexStructure = 'Structure of table __TABLE__';//to translate
+$strLogServer = 'Server'; //to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+
+$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+
+$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
+
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/turkish-utf-8.inc.php3 b/lang/turkish-utf-8.inc.php3
index efccd6c40..c020f7cb4 100644
--- a/lang/turkish-utf-8.inc.php3
+++ b/lang/turkish-utf-8.inc.php3
@@ -1,8 +1,15 @@
DROP DATABASE ekle';
$strAddIntoComments = 'Yorumlara ekle';
$strAddNewField = 'Yeni alan ekle';
-$strAddPriv = 'Yeni ayrıcalık ekle';
-$strAddPrivMessage = 'Yeni ayrıcalık eklediniz..';
-$strAddSearchConditions = 'Arama durumu ekle ("where" cümleciği için):';
-$strAddToIndex = '%s sütununu(sütunlarına) index ekle';
+$strAddPriv = 'Yeni imtiyaz ekle';
+$strAddPrivMessage = 'Yeni imtiyaz eklediniz..';
+$strAddPrivilegesOnDb = 'Bir sonraki veritabanı üzerinde imtiyaz ekle';
+$strAddPrivilegesOnTbl = 'Bir sonraki tablo üzerinde imtiyazlar ekle';
+$strAddSearchConditions = 'Arama durumu ekle ("where" komutu için):';
+$strAddToIndex = '%s indeks satırı ekle';
$strAddUser = 'Yeni kullanıcı ekle';
$strAddUserMessage = 'Yeni bir kullanıcı eklediniz.';
+$strAddedColumnComment = 'Sütun için eklenmiş yorum';
+$strAddedColumnRelation = 'Sütun için eklenmiş ilişki';
+$strAdministration = 'Yönetim';
$strAffectedRows = 'Etkilenen satırlar:';
-$strAfter = 'Sonuna %s';
-$strAfterInsertBack = 'Return';
-$strAfterInsertNewInsert = 'Yeni kayit ekle';
+$strAfter = '%s tablosundan sonra';
+$strAfterInsertBack = 'Önceki sayfaya geri dön';
+$strAfterInsertNewInsert = 'Başka yeni bir kayıt ekle';
$strAll = 'Tümü';
$strAllTableSameWidth = 'Bütün tabloları aynı genişlikte göster';
-$strAlterOrderBy = 'Tabloyu değiştir ve şuna göre sırala:';
-$strAnIndex = '%s üzerinde yeni bir index eklendi';
+$strAlterOrderBy = 'Tablo sıralamasını şuna göre değiştir';
+$strAnIndex = '%s üzerinde yeni bir indeks eklendi';
$strAnalyzeTable = 'Tabloyu analiz et';
$strAnd = 'Ve';
$strAny = 'Herhangi';
@@ -51,82 +69,131 @@ $strAnyDatabase = 'Herhangi veritabanı';
$strAnyHost = 'Herhangi sunucu';
$strAnyTable = 'Herhangi tablo';
$strAnyUser = 'Herhangi kullanıcı';
+$strArabic = 'Arapça';
+$strArmenian = 'Ermenice';
$strAscending = 'Artan';
-$strAtBeginningOfTable = 'Tablonun başında';
-$strAtEndOfTable = 'Tablonun sonunda';
+$strAtBeginningOfTable = 'Tablo başında';
+$strAtEndOfTable = 'Tablo sonunda';
$strAttr = 'Özellikler';
+$strAutodetect = 'Otomatik tanıma';
+$strAutomaticLayout = 'Otomatik düzen';
$strBack = 'Geri';
+$strBaltic = 'Baltık';
+$strBeginCut = 'BEGIN CUT';
+$strBeginRaw = 'BEGIN RAW';
$strBinary = 'Binari';
$strBinaryDoNotEdit = 'Binari - düzenlemeyiniz';
$strBookmarkDeleted = 'Bookmark silindi.';
$strBookmarkLabel = 'Etiket';
-$strBookmarkQuery = ' SQL-sorgusu';
-$strBookmarkThis = 'Bu SQL-sorgusunu iÅŸaretle';
+$strBookmarkQuery = ' SQL sorgusu';
+$strBookmarkThis = 'Bu SQL sorgusunu iÅŸaretle';
$strBookmarkView = 'Sadece gözat';
$strBrowse = 'Tara';
$strBrowseForeignValues = 'Foreign(yabancı) değerleri tara';
$strBulgarian = 'Bulgarca';
+$strBzError = 'phpMyAdmin dump dosyasını bu php versiyonundaki bozuk bir Bz2 uzantısı nedeniyle sıkıştırımadı. phpMyAdmin dizinindeki configurasyon dosyası içindeki $cfg[\'BZipDump\']
yönergesini FALSE
\'a değiştirmeniz gerekmektedir. Bz2 sıkıştırma özelliklerini kullanmak istiyorsanız ,bir sonraki php sürümüne güncelleme yapmanız gerekmektedir.php hata raporu %s\' e bakınız ';
$strBzip = '"bzipped"';
-$strCantLoadMySQL = 'mySQL uzantısını yükleyemiyor, lütfen PHP ayarlarını kontrol ediniz.';
+$strCSVOptions = 'CSV seçenekleri';
+$strCannotLogin = 'MySQL seçenekleri';
+$strCantLoad = '%s uzantısı yüklenemiyor, PHP konfigurasyon dosyasını kontrol ediniz.';
+$strCantLoadMySQL = 'MySQL uzantısını yükleyemiyor, lütfen PHP ayarlarını kontrol ediniz.';
$strCantLoadRecodeIconv = 'Karakter seti dönüşümü için gerekli olan Iconv veya recode uzantılarını yükleyenemiyor. Php\'nin bu uzantılara izin vermesini sağlayın veya phpMyAdmin içinde karakter dönüşümünü devre dışı bırakınız...';
-$strCantRenameIdxToPrimary = 'Index\'i PRIMARY olarak adlandırımazsınız!';
-$strCantUseRecodeIconv = 'Uzantı raporları yüklenmişken , ne iconv ne libinconv ne de recode_string fonksiyonu kullanılamaz. Php ayarlarınızı kontrol ediniz.';
+$strCantRenameIdxToPrimary = 'Indeks\'i PRIMARY olarak adlandırımazsınız!';
+$strCantUseRecodeIconv = 'Uzantı raporları yüklenmişken , ne iconv,ne libinconv,ne de recode_string fonksiyonu kullanılamaz. Php ayarlarınızı kontrol ediniz.';
$strCardinality = 'En önemli';
$strCarriage = 'Enter Karakteri: \\r';
$strCaseInsensitive = 'büyük küçük harf duyarsız';
$strCaseSensitive = 'büyük küçük harf duyarlı';
+$strCentralEuropean = 'Orta Avrupa';
$strChange = 'DeÄŸiÅŸtir';
+$strChangeCopyMode = 'Aynı imtiyazlarla yeni bir kullanıcı yarat ve :';
+$strChangeCopyModeCopy = 'eski kullanıcıyı muhafaza et.';
+$strChangeCopyModeDeleteAndReload = 'eski kullanıcıyı kullanıcı tablolarından sil ve sonra imtiyazları yeniden yükle.';
+$strChangeCopyModeJustDelete = 'eski kullanıcıyı kullanıcı tablolarından sil.';
+$strChangeCopyModeRevoke = 'eskiden kalan bütün aktif imtiyazları iptal et ve sil.';
+$strChangeCopyUser = 'Login bilgisini değiştir / Kullanıcı kopyala';
$strChangeDisplay = 'Görmek istediğiniz alanı seçiniz';
$strChangePassword = 'Åžifre DeÄŸiÅŸtir';
+$strCharset = 'Karakter seti';
$strCharsetOfFile = 'Dosyanın karakter seti:';
$strCharsets = 'Karakter setleri';
$strCharsetsAndCollations = 'Karakter setleri ve karşılaştırmalar';
$strCheckAll = 'Tümünü seç';
$strCheckDbPriv = 'Veritabanı önceliklerini kontrol et';
+$strCheckPrivs = 'İmtiyazları kontrol et';
+$strCheckPrivsLong = '"%s" veritabanı için imtiyazları kontrol et.';
$strCheckTable = 'Tabloyu kontrol et';
$strChoosePage = 'Lütfen düzenlemek istediğiniz sayfayı seçin';
$strColComFeat = 'Sütun yorumları gösteriliyor';
$strCollation = 'Karşılaştırma';
$strColumn = 'Sütun';
$strColumnNames = 'Sütun adları';
-$strComments = 'Yorumlar';
-$strCompleteInserts = 'Tamamlanmış eklemeler';
+$strColumnPrivileges = 'Sütuna özgü imtiyazlar';
+$strCommand = 'Komut';
+$strComments = 'Sütun yorum,ilişki ve MIME tiplerini içer.';
+$strCompleteInserts = 'Her INSERT komutunda sütun adlarını ekle';
+$strCompression = 'Sıkıştırma';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanızı okuyamadı.... Bu php yorumlama hatası bulduğu zaman veya dosyayı bulamadığı zaman meydana gelebilir.. Lütfen aşağıdaki linki kullanarak dosyayı direkt olarak çağırın ve aldığınız php hata mesajlarını okuyunuz.Çoğu durumda herhangi bir yerde tırnak veya noktalı virgül eksiktir Boş bir sayfayla karşılaşırsanız ,herşey yolunda demektir.';
$strConfigureTableCoord = ' Lütfen %s tablosu için koordinatları yapılandırınız';
$strConfirm = 'Aşağıdaki komutu uygulamak istediğinizden emin misiniz?';
-$strCookiesRequired = 'Cookieler açık olmalıdır.';
-$strCopyTable = 'Tabloyu (veritabanı. tablo) kopyala:';
+$strConnections = 'Bağlantılar';
+$strCookiesRequired = 'Cookieler açık olmalıdır.';
+$strCopyTable = 'Tabloyu (veritabanı. tablo) kopyala :';
$strCopyTableOK = '%s tablosu %s üzerine kopyalandı.';
$strCopyTableSameNames = 'Tabloyu aynısına kopyalayamıyor!';
+$strCouldNotKill = 'phpMyAdmin %s işlemini kapatamadı. Büyük ihtimalle daha önceden kapatılmış.';
$strCreate = 'Git';
-$strCreateIndex = '%s sütununda yeni bir index oluştur';
-$strCreateIndexTopic = 'Yeni bir index oluştur';
+$strCreateIndex = '%s. sütunda yeni bir indeks oluştur.';
+$strCreateIndexTopic = 'Yeni bir indeks oluÅŸtur';
$strCreateNewDatabase = 'Yeni veritabanı oluştur';
-$strCreateNewTable = '%s veritabanı üzerinde yeni bir tablo oluştur';
+$strCreateNewTable = '%s veritabanı üzerinde yeni bir tablo oluştur';
$strCreatePage = 'Yeni sayfa oluÅŸtur';
$strCreatePdfFeat = 'PDF\'lerin oluşturulması';
$strCriteria = 'Kriter';
$strCroatian = 'Hırvatça';
+$strCyrillic = 'Cyril';
$strCzech = 'Çekçe';
+$strDBComment = 'Veritabanı yorumu:';
+$strDBGContext = 'Kontekst';
+$strDBGContextID = 'Kontekst ID';
+$strDBGHits = 'GiriÅŸler(hit)';
+$strDBGLine = 'Satır';
+$strDBGMaxTimeMs = 'Max zaman, ms';
+$strDBGMinTimeMs = 'Min zaman, ms';
+$strDBGModule = 'Modül';
+$strDBGTimePerHitMs = 'Zaman/GiriÅŸ, ms';
+$strDBGTotalTimeMs = 'Toplam zaman, ms';
$strDanish = 'Danimarkaca';
$strData = 'Veri';
+$strDataDict = 'Veri sözlüğü';
$strDataOnly = 'Sadece veri';
$strDatabase = 'Veritabanı ';
-$strDatabaseExportOptions = 'Veritabanı export ayarları';
+$strDatabaseExportOptions = 'Veritabanı dönüşüm ayarları';
$strDatabaseHasBeenDropped = '%s veritabanı kaldırıldı.';
$strDatabaseNoTable = 'Bu veritabanı tablo içermiyor!';
$strDatabaseWildcard = 'Veritabanı (* izin verili):';
-$strDatabases = 'veritabanları';
+$strDatabases = 'Veritabanları';
+$strDatabasesDropped = '%s veritabanları başarıyla kaldırıldı.';
$strDatabasesStats = 'Veritabanı istatistikleri';
+$strDatabasesStatsDisable = 'İstatistikleri kapat';
+$strDatabasesStatsEnable = 'İstatistikleri aç';
+$strDatabasesStatsHeavyTraffic = 'Not: Burada veritabanı istatistiklerini açmak Web Sunucusu ile MySQL arasında yüksek trafiğe yol açabilir.';
+$strDbPrivileges = 'Veritabanına özgü imtiyazlar';
+$strDbSpecific = 'Veritabanına özgü';
$strDefault = 'Varsayılan';
+$strDefaultValueHelp = 'Varsayılan değerler için,tırnak işareti veya slash koymayarak ,lütfen tek bir değer giriniz:şu şekilde : a';
+$strDelOld = 'Şu anki sayfada kullanılmayan tablolara referanslar bulunuyor. Bu referansları silmek ister misiniz?';
$strDelete = 'Sil';
+$strDeleteAndFlush = 'Kullanıcıları sil ve sonra imtiyazları sil.';
+$strDeleteAndFlushDescr = 'Bu en temiz yoldur , fakat imtiyazları yeniden yüklemek zaman alabilir.';
$strDeleteFailed = 'Silme sırasında hata oluştu!';
$strDeleteUserMessage = '%s kullanıcısını sildiniz.';
$strDeleted = 'Satır silindi.';
$strDeletedRows = 'Silinen satırlar:';
+$strDeleting = '%s siliniyor';
$strDescending = 'Azalan';
$strDescription = 'Tanımlama';
$strDictionary = 'sözlük';
@@ -135,27 +202,32 @@ $strDisplay = 'Görüntüle';
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayOrder = 'Görünüm düzeni:';
$strDisplayPDF = 'PDF şemasını göster';
-$strDoAQuery = '"Örnekle sorgu" yap (joker: "%")';
+$strDoAQuery = ' "Örnekle sorgu" yap. (joker:%) ';
$strDoYouReally = 'Aşağıdaki komutu uygulamak istediğinizden emin misiniz? ';
-$strDocu = 'Yardım';
+$strDocu = 'Dökümantasyon';
$strDrop = 'Kaldır';
$strDropDB = 'Veritabanı\'nı kaldır %s';
+$strDropSelectedDatabases = 'Seçili veritabanlarını kaldır';
$strDropTable = 'Tablo\'yu kaldır';
+$strDropUsersDb = 'Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır.';
+$strDumpComments = ' Sütun yorumlarını SQL yorumları gibi içer';
$strDumpSaved = 'Dump dosyası %s dosyasına kaydedildi';
-$strDumpXRows = ' %s satırdan başlayarak %s a kadar çıktı üret.';
+$strDumpXRows = 'Satır sayısı : %s %s .satırdan başlayarak.';
$strDumpingData = 'Tablo döküm verisi';
-$strDynamic = 'dinamik';
+$strDynamic = 'deÄŸiÅŸken';
$strEdit = 'Düzenle';
$strEditPDFPages = ' PDF Sayfalarını düzenle';
$strEditPrivileges = 'Öncelikleri Düzenle';
$strEffective = 'Efektif';
$strEmpty = 'BoÅŸalt';
-$strEmptyResultSet = 'MySQL boş bir sonuc kümesi döndürdü ( sıfır satır).';
+$strEmptyResultSet = 'MySQL boş bir sonuç kümesi döndürdü ( sıfır satır).';
$strEnabled = 'Etkin';
$strEnd = 'Son';
+$strEndCut = 'END CUT';
+$strEndRaw = 'END RAW';
$strEnglish = 'İngilizce';
-$strEnglishPrivileges = ' Not: mySQL öncelik adları İngilizce olarak belirtilmiştir ';
+$strEnglishPrivileges = ' Not: MySQL imtiyaz adları İngilizce olarak belirtilmiştir ';
$strError = 'Hata';
$strEstonian = 'Estonyaca';
$strExcelOptions = 'Excel ayarları';
@@ -163,51 +235,70 @@ $strExecuteBookmarked = 'İşaretlenmiş sorguyu çalıştır';
$strExplain = 'SQL\'i açıkla';
$strExport = 'Dönüştür';
$strExportToXML = 'XML formatına dönüştür';
-$strExtendedInserts = 'GeniÅŸletilmiÅŸ eklemeler';
-$strExtra = 'Ayrıca';
+$strExtendedInserts = 'Tablo ismini ve INSERT deyimini sadece bir kez kullan';
+$strExtra = 'Ekstra';
+$strFailedAttempts = 'Başarısız denemeler';
$strField = 'Alan';
$strFieldHasBeenDropped = '%s alanı kaldırılmıştır';
-$strFields = 'Alanlar';
+$strFields = 'Alan Sayısı';
$strFieldsEmpty = ' Alan sayısı boş! ';
-$strFieldsEnclosedBy = 'Alan ayırıcı işaret';//it does not seem well but just works
-$strFieldsEscapedBy = 'Kaçış simgesi(özel işaretler için)';//it does not seem well but just works
-$strFieldsTerminatedBy = 'Alan bitirici iÅŸaret';//it does not stand seem but just works
+$strFieldsEnclosedBy = 'Kapatma karakteri';
+$strFieldsEscapedBy = 'Kaçış karakteri';
+$strFieldsTerminatedBy = 'Alan sonu karakteri';
$strFileAlreadyExists = '%s dosyası zaten serverda mevcut, dosya adını değiştirin veya üzerine yaz seçeneğini seçin! ';
-$strFixed = 'sabit';
-$strFlushTable = 'Tabloyu kapat("FLUSH")';
+$strFileCouldNotBeRead = 'Dosya okunamadı';
+$strFileNameTemplate = 'Dosya ismi ÅŸablonu';
+$strFileNameTemplateHelp = 'Veritabanı ismi için __DB__ , tablo ismi için __TABLE__ ve zaman bildirimi için %sherhangi bir strftime%s değeri kullanın,uzantı otomatik olarak eklenecek,herhangi diğer bir metin korunacaktır.';
+$strFileNameTemplateRemember = 'şablonu hatırla';
+$strFixed = 'Sabit';
+$strFlushPrivilegesNote = 'Not: phpMyAdmin kullanıcıların imtiyazlarını direkt olarak MySQL\'ün imtiyaz tablolarından alır.Bu tabloların içerikleri,eğer elle değişiklik yapılmışsa,sunucunun kullandığı imtiyazlardan farklı olabilir.Bu durumda,devam etmeden önce %simtiyazları yeniden yüklemeniz gerekir%s .';
+$strFlushTable = 'Tabloyu yeniden yükle';
$strFormEmpty = 'Form\'da eksik deÄŸer !';
$strFormat = 'Biçim';
$strFullText = 'Tüm metinler';
$strFunction = 'Fonksiyon';
-$strGenBy = 'OluÅŸturuldu->:';
+$strGenBy = 'üretildi:';
$strGenTime = 'Çıktı Tarihi';
$strGeneralRelationFeat = 'Genel ilişki özellikleri';
$strGerman = 'Almanca';
+$strGlobal = 'genel';
+$strGlobalPrivileges = 'Genel imtiyazlar';
+$strGlobalValue = 'Genel deÄŸer';
$strGo = 'Git';
+$strGrantOption = 'Hak';
$strGrants = 'Haklar';
+$strGreek = 'Yunanca';
$strGzip = '"gziplenmiÅŸ"';
$strHasBeenAltered = 'düzenlendi.';
$strHasBeenCreated = 'yaratıldı.';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
+$strHebrew = 'İbranice';
$strHome = 'Ana Sayfa';
$strHomepageOfficial = 'phpMyAdmin Web Sayfası';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Yükleme Sayfası';
-$strHost = 'Sunucu:';
+$strHost = 'Sunucu';
$strHostEmpty = 'Sunucu ismi alanı doldurulmadı!';
$strHungarian = 'Macarca';
+$strId = 'ID';
$strIdxFulltext = 'Tüm metinler';
$strIfYouWish = 'Eğer bir tablo\'nun sadece bazı sütunlarını yüklemek istiyorsanız,virgüllerle ayrılmış bir alan listesi belirtiniz.';
$strIgnore = 'Yoksay';
+$strIgnoringFile = '%s dosyasını yoksayıyor';
+$strImportDocSQL = 'docSQL dosyalarını dönüştür ';
+$strImportFiles = 'Dosyaları dönüştür';
+$strImportFinished = 'Dönüştürme bitti';
$strInUse = 'kullanımda';
-$strIndex = 'Index';
-$strIndexHasBeenDropped = '%s index\'i silindi.';
-$strIndexName = 'Index ismi :';
-$strIndexType = 'Index tipi :';
-$strIndexes = 'Index\'ler';
+$strIndex = 'İndeks';
+$strIndexHasBeenDropped = '%s indeks\'i silindi.';
+$strIndexName = 'İndeks ismi :';
+$strIndexType = 'İndeks tipi :';
+$strIndexes = 'İndeksler';
+$strInnodbStat = 'InnoDB durumu';
+$strInsecureMySQL = 'Konfigurasyon dosyanız (şifresiz root) varsayılan MySQL imtiyaz dosyasıyla aynen uyuşan ayarlar içeriyor.MySQL sunucunuz bu varsayılan ayarlarla çalışıyor,dışardan girişe açık,ve bu güvenlik açığını hemen düzeltmeniz gerekmektedir.';
$strInsert = 'Ekle';
$strInsertAsNewRow = 'Yeni bir satır olarak ekle';
$strInsertNewRow = 'Yeni satır ekle';
@@ -217,32 +308,55 @@ $strInsertedRows = 'Eklenen satırlar:';
$strInstructions = 'Talimatlar';
$strInvalidName = '"%s" sözcüğü kullanılamayan sözcük.Veritabanı/tablo/alan ismi olarak kullanamassınız, you can\'t use it as a database/table/field name.';
+$strJapanese = 'Japonca';
+$strJumpToDB = '"%s" veritabanına git.';
+$strJustDelete = 'Kullanıcıları imtiyaz tablolarından sil .';
+$strJustDeleteDescr = '"silinmiş" kullanıcılar ,imtiyazlar yeniden yüklenmedikçe ,hala sunucuya normaldeki gibi erişilebilecek ';
+
$strKeepPass = 'Åžifreyi deÄŸiÅŸtirme';
$strKeyname = 'Anahtar ismi';
$strKill = 'Kapat';
+$strKorean = 'Korece';
+$strLaTeX = 'LaTeX';
$strLaTeXOptions = 'LaTeX seçenekleri';
+$strLandscape = 'Peyzaj';
$strLength = 'Boyut';
$strLengthSet = 'Boyut/DeÄŸerler*';
-$strLimitNumRows = 'Sayfa başına kayıt sayısı';
+$strLimitNumRows = 'Sayfa başına kayıt sayısı :';
$strLineFeed = 'Satır: \\n';
$strLines = 'Satırlar';
$strLinesTerminatedBy = 'Satır sonu';
$strLinkNotFound = 'Link bulunamadı';
$strLinksTo = 'Linkler->';
$strLithuanian = 'Litvanyaca';
-$strLocalhost = 'Local';
+$strLoadExplanation = 'En iyi yöntem varsayılan olarak işaratlenmiş,fakat hata olursa değiştirebilirsiniz.';
+$strLoadMethod = 'YÜKLEME yöntemi';
+$strLocalhost = 'Lokal';
$strLocationTextfile = 'Dosyadan yükle';
-$strLogPassword = 'Şifre:';
-$strLogUsername = 'Kullanıcı Adı:';
+$strLogPassword = 'Åžifre:';
+$strLogUsername = 'Kullanıcı Adı:';
$strLogin = 'Login';
+$strLoginInformation = 'Login bilgisi';
$strLogout = 'Çıkış';
+$strMIME_MIMEtype = 'MIME-tip';
+$strMIME_available_mime = 'Uygun MIME-tipleri';
+$strMIME_available_transform = 'Uygun dönüşümler';
+$strMIME_description = 'Tanımlama';
+$strMIME_file = 'Dosya ismi';
+$strMIME_nodescription = 'Bu dönüşüm için uygun bilgi bulunmamaktadır. Lütfen yazara %s ne yapar diye sorun';
+$strMIME_transformation = 'Tarayıcı dönüşümü';
+$strMIME_transformation_note = 'Uygun dönüşüm seçeneklerinin listesi ve onların MIME-tip dönüşümleri için, %sdönüşüm tanımlamarı%s\'na tıklayın';
+$strMIME_transformation_options = 'Dönüşüm seçenekleri';
+$strMIME_transformation_options_note = 'Lütfen dönüşüm seçenekleri için değerleri bu şekili kullanarak giriniz: \'a\',\'b\',\'c\'... Backslash ("\") veya tek tırnak ("\'") kullamanız gerekiyorsa, şu şekilde kullanın : \'\\\\xyz\' veya \'a\\\'b\').';
+$strMIME_without = 'İtalik olarak yazılmış MIME-tipleri ayrı bir dönüşüm fonksiyonuna sahip değildir.';
$strMissingBracket = 'Parantez eksik';
$strModifications = 'DeÄŸiÅŸiklikler kaydedildi';
$strModify = 'DeÄŸiÅŸtir';
-$strModifyIndexTopic = 'Index düzenle';
-$strMoveTable = 'Tabloyu (veritabanı. tablo) taşı:';
+$strModifyIndexTopic = 'Indeks düzenle';
+$strMoreStatusVars = 'DiÄŸer durum deÄŸiÅŸkenleri:';
+$strMoveTable = 'Tabloyu (veritabanı. tablo) taşı :';
$strMoveTableOK = '%s tablosu %s üzerine taşındı.';
$strMoveTableSameNames = 'Tabloyu aynısına taşıyamıyor!';
$strMultilingual = 'çoklu dil';
@@ -259,476 +373,361 @@ $strName = 'İsim';
$strNext = 'Sonraki';
$strNo = 'Hayır';
$strNoDatabases = 'Veritabanı yok';
+$strNoDatabasesSelected = 'Veritabanı seçilmedi.';
$strNoDescription = 'Tanımlama yok';
$strNoDropDatabases = '"DROP DATABASE" cümlesi burada kullanılamaz.';
$strNoExplain = 'SQL açıklamasını yapma';
-$strNoFrames = 'phpMyAdmin frame destekli bir tarayıcı ile daha iyi çalışmaktadır...';
-$strNoIndex = 'Index tanımlanmadı!';
-$strNoIndexPartsDefined = 'Index kısmı tanımlanmadı!';
+$strNoFrames = 'phpMyAdmin frame destekli bir tarayıcı ile daha iyi çalışmaktadır...';
+$strNoIndex = 'Indeks tanımlanmadı!';
+$strNoIndexPartsDefined = 'Indeks kısmı tanımlanmadı!';
$strNoModification = 'DeÄŸiÅŸiklik yok';
+$strNoOptions = 'Bu düzenin seçeği yok';
$strNoPassword = 'Åžifre yok';
$strNoPermission = 'Web sunucusu %s dosyasını kaydetmek için izne sahip değil.';
$strNoPhp = ' PHP kodsuz';
-$strNoPrivileges = 'Ayrıcalık yok';
+$strNoPrivileges = 'İmtiyaz yok';
$strNoQuery = 'SQL sorgusu yok!';
$strNoRights = 'Burada bulunmak için yeterli haklara sahip değilsiniz!';
$strNoSpace = '%s dosyasını kaydetmek için yeterli alan yok.';
$strNoTablesFound = 'Veritabanı\'nda tablo bulunamadı.';
$strNoUsersFound = 'Kullanıcı(lar) bulunamadı.';
+$strNoUsersSelected = 'Kullanıcı seçilmedi.';
$strNoValidateSQL = 'SQL doğrulamasını yapma';
$strNone = 'Hiçbiri';
-$strNotNumber = 'Bu bir sayı değil!';
+$strNotNumber = 'Lütfen bir sayı giriniz!';
$strNotOK = 'Tamam deÄŸil';
$strNotSet = '%s tablosu bulunamadı veya %s içinde tanımlanmadı';
$strNotValidNumber = ' geçerli bir satır sayısı değil!';
$strNull = 'BoÅŸ';
-$strNumSearchResultsInTable = '%s eşleşim : %s tablosu içinde';
+$strNumSearchResultsInTable = '%s ( %s tablosu içinde aramanıza uyan kayıt sayısı ) ';
$strNumSearchResultsTotal = 'Toplam: %s eÅŸleÅŸim';
+$strNumTables = 'Tablolar';
$strOK = 'Tamam';
-$strOftenQuotation = 'Sık kullanılan aktarma işaretleri.SEÇİME BAĞLI,sadece char ve varchar alanlarının "enclosed-by" karakteri ile çevreneleceği anlamına gelir..';
+$strOftenQuotation = 'Sık kullanılan aktarma işaretleri.SEÇİME BAĞLI,sadece char ve varchar alanlarının kapatma karakteri ile çevreleneceği anlamına gelir..';
$strOperations = 'İşlemler';
$strOptimizeTable = 'Tabloyu optimize et';
$strOptionalControls = 'Özel karakterleri yazmak ve okumak için kontroller.Opsiyonel';
$strOptionally = 'Seçime Bağlı';
$strOptions = 'Seçenekler';
$strOr = 'veya';
-$strOverhead = 'Kullanılamayan Veri';
+$strOverhead = 'Kullanılamayan Veri';
$strOverwriteExisting = 'Mevcut dosyaların üzerine yaz!';
+$strPHP40203 = ' Ciddi bir multi-byte strings (mbstring) hatasına sahip olan PHP 4.2.3 kullanıyorsunuz,. PHP hata raporu 19404\' e bakınız. Bu sürümün phpMyAdmin\'le kullanılması önerilmez.';
$strPHPVersion = 'PHP Sürümü';
$strPageNumber = 'Sayfa numarası:';
$strPaperSize = 'Kağıt boyu';
-$strPartialText = 'Bölümsel Metinler';
+$strPartialText = 'Kısmi Metinler';
$strPassword = 'Åžifre';
+$strPasswordChanged = '%s için şifre başarıyla değiştirildi.';
$strPasswordEmpty = 'Şifre alanı doldurulmadı!';
$strPasswordNotSame = 'Girilen şifreler aynı değil!';
$strPdfDbSchema = ' "%s" veritabanının şeması - Sayfa %s';
$strPdfInvalidPageNum = 'Tanımlanmamış PDF sayfa numarası!';
$strPdfInvalidTblName = ' "%s" tablosu bulunamıyor !';
+$strPdfNoTables = 'Tablo yok';
+$strPerHour = 'saat başına';
+$strPerMinute = 'dakika başına';
+$strPerSecond = 'saniye başına';
$strPhoneBook = 'telefon defteri';
$strPhp = 'PHP kodu oluÅŸtur';
$strPmaDocumentation = 'phpMyAdmin yardım';
$strPmaUriError = '$cfg[\'PmaAbsoluteUri\'] \' nin değeri konfigurasyon dosyasının içinde verilmelidir!';
+$strPortrait = 'Portre';
$strPos1 = 'Başlangıç';
$strPrevious = 'Önceki';
$strPrimary = 'Birincil';
$strPrimaryKey = 'Birincil anahtar';
$strPrimaryKeyHasBeenDropped = 'Birincil anahtar silindi';
-$strPrimaryKeyName = 'PRIMARY KEY TEK olmalıdır!';
-$strPrimaryKeyWarning = '("PRIMARY" sadece bir anahtarın ismi olmalıdır! )';
+$strPrimaryKeyName = 'PRIMARY KEY TEK olmalıdır!';
+$strPrimaryKeyWarning = '# PRIMARY sadece birincil bir anahtarın ismi olmalıdır! ';
+$strPrint = 'Yazdır';
$strPrintView = 'Yazıcı görüntüsü';
-$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
-$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
-$strPrivDescMaxUpdates = 'Limits the number of commands that change any table or database the user may execute per hour.';
-$strPrivileges = 'Öncelikler';
+$strPrivDescAllPrivileges = 'GRANT hariç tüm imtiyazları içerir.';
+$strPrivDescAlter = 'Varolan tablonun yapısının değiştirilmesine izin verir.';
+$strPrivDescCreateDb = 'Yeni veritabanları ve tabloların oluşturulmasına izin verir.';
+$strPrivDescCreateTbl = 'Yeni tabloların oluşturulmasına izin verir.';
+$strPrivDescCreateTmpTable = 'Geçici tablolara oluşturulmasına izin verir.';
+$strPrivDescDelete = 'Veri silinmesine izin verir.';
+$strPrivDescDropDb = 'Veritabanları ve tabloların kaldırılmasına izin verir.';
+$strPrivDescDropTbl = 'Tabloların kaldırılmasına izin verir.';
+$strPrivDescExecute = 'Kaydedilmiş yordamların çalıştırılmasına izin verir.; Bu MySQL sürümünde etkisi yoktur.';
+$strPrivDescFile = 'Data import ve export\'una izin verir.';
+$strPrivDescGrant = 'İmtiyaz tablolarını yeniden yüklemeden yeni kullanıcı ve imtiyaz eklenmesine izin verir.';
+$strPrivDescIndex = 'İndekslerin yaratılmasına ve kaldırılmasına izin verir.';
+$strPrivDescInsert = 'Verinin eklenmesine ve yer deÄŸiÅŸtirilmesine izin verir.';
+$strPrivDescLockTables = 'Geçerli işlem için tabloların kilitlenmesine izin verir.';
+$strPrivDescMaxConnections = 'Kullanıcının saat başına açabileceği bağlantıyı sınırlar.';
+$strPrivDescMaxQuestions = 'Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar.';
+$strPrivDescMaxUpdates = 'Kullanıcının,saat başına çalıştırabileceği,herhangi bir tablo veya veritabanı değiştiren komut sayısını sınırlar.';
+$strPrivDescProcess3 = 'Diğer kullanıcıların işlemlerinin kapatılmasına izin verir.';
+$strPrivDescProcess4 = 'İşlem listesindeki bütün sorguların görüntülenmesine izin verir.';
+$strPrivDescReferences = 'Bu MySQL sürümünde etkisi yoktur.';
+$strPrivDescReload = 'Sunucu ayarlarının yeniden yüklenmesine ve flush\'a izin ver.(hafıza çıktısı)';
+$strPrivDescReplClient = 'Slave ve Master\'ların nerede olduğunu sorma hakkı verir.';
+$strPrivDescReplSlave = 'Kopya slave\'ler için zorunlu.';
+$strPrivDescSelect = 'Veri okunmasına izin ver.';
+$strPrivDescShowDb = 'Bütün veritabanları listesine erişim verir.';
+$strPrivDescShutdown = 'Sunucunun kapatılmasına izin ver.';
+$strPrivDescSuper = 'Maksimum bağlantı sayısı aşılsa bile bağlanmasına izin ver;Genel(global) değişkenleri setlemek veya diğer kullanıcıların işlemlerini sonlandırmak gibi bir çok yönetim işlemi için gereklidir.';
+$strPrivDescUpdate = 'Veri deÄŸiÅŸtirilmesine izin ver.';
+$strPrivDescUsage = 'İmtiyaz yok.';
+$strPrivileges = 'İmtiyazlar';
+$strPrivilegesReloaded = 'Ayrıcalıklar başarıyla yüklendi.';
+$strProcesslist = 'İşlem listesi';
$strProperties = 'Özellikler';
+$strPutColNames = 'İlk satırda alan isimlerini koy';
$strQBE = ' Sorgula';
$strQBEDel = 'Del';
$strQBEIns = 'Ins';
-$strQueryOnDb = 'Veritabanı üzerinde SQL-sorgusu %s :';
-$strQueryStatistics = 'Query statistics : Since its startup, %s queries have been sent to the server.';
+$strQueryFrame = 'Sorgu penceresi';
+$strQueryFrameDebug = 'Debug bilgisi';
+$strQueryFrameDebugBox = 'Sorgu formu için aktif değişkenler :\nDB: %s\nTablo: %s\nSunucu: %s\n\nSorgu formu için geçerli değişkenler:\nDB: %s\nTablo: %s\nSunucu: %s\n\nAçacak konumu: %s\nFrameset konumu: %s.';
+$strQueryOnDb = '%s veritabanında SQL sorgusu :';
+$strQuerySQLHistory = 'SQL geçmişi';
+$strQueryStatistics = 'Sorgu istatistikleri : Başlangıçtan bu yana sunucuya %s sorgu gönderildi.';
+$strQueryTime = 'Sorgu %01.4f san sürdü';
+$strQueryType = 'Sorgu ÅŸekli';
$strQueryWindowLock = 'Pencere dışından bu sorgunun üzerine yazma';
$strReType = 'Yeniden gir';
+$strReceived = 'Alındı';
$strRecords = 'Kayıtlar';
$strReferentialIntegrity = 'Referans bütünlüğünü kontrol et.';
-$strRelationNotWorking = 'Bağlı tablolarla çalışmada kullanılan ekstra özellikler deaktif edildi...Niçin olduğunu öğrenmek için %sburaya%s tıklayınız...';
+$strRelationNotWorking = 'Bağlı tablolarla çalışmada kullanılan ekstra özellikler kapatıldı...Niçin olduğunu öğrenmek için %sburaya%s tıklayınız...';
$strRelationView = 'İlişki görünümü';
+$strRelationalSchema = 'İlişki şeması';
$strRelations = 'İlişkiler';
$strReloadFailed = 'MySQL yeniden yüklenmesi gerçekleştirilemedi.';
-$strReloadMySQL = 'MySQL\'i yeniden yükle';
+$strReloadMySQL = 'MySQL\' i yeniden yükle';
+$strReloadingThePrivileges = 'İmtiyazları yeniden yüklüyor';
$strRememberReload = 'Server\'ı yeniden yüklemeyi unutmayınız.';
+$strRemoveSelectedUsers = 'Seçili kullanıcıları kaldır';
$strRenameTable = 'Tablonun ismini ÅŸuna deÄŸiÅŸtir';
$strRenameTableOK = '%s tablosu %s olarak yeniden adlandırıldı';
$strRepairTable = 'Tablo\'yu onar';
$strReplace = 'YerdeÄŸiÅŸtir';
-$strReplaceNULLBy = 'NULL u yerdeÄŸiÅŸtir';
+$strReplaceNULLBy = 'NULL \' u bununla yerdeÄŸiÅŸtir';
$strReplaceTable = 'Tablo verisini bir dosyadaki ile deÄŸiÅŸtir';
$strReset = 'Sıfırla';
+$strResourceLimits = 'Kaynak sınırları';
$strRevoke = 'Geçersiz kıl';
+$strRevokeAndDelete = 'Kullanıcılardaki tüm etkin imtiyazları geçersiz kıl ve sonra sil..';
+$strRevokeAndDeleteDescr = 'Kullanıcılar yeniden yüklenene kadar hala KULLANIM ayrıcalığına sahip olacaklar.';
$strRevokeGrant = 'Hak geçersiz kıl';
-$strRevokeGrantMessage = '%s için Grant önceliğini kaldırdınız';
-$strRevokeMessage = '%s\'in önceliklerini kaldırdınız';
-$strRevokePriv = 'Ayrıcalıkları geçersiz kıl';
+$strRevokeGrantMessage = '%s için Grant önceliğini kaldırdınız';
+$strRevokeMessage = '%s\'in önceliklerini kaldırdınız';
+$strRevokePriv = 'İmtiyazları geçersiz kıl';
$strRowLength = 'Satır boyu';
$strRowSize = ' Satır boyutu ';
-$strRows = 'Satır Sayısı';
-$strRowsFrom = '(kayıt)başlayacağı kayıt :';
+$strRows = 'Satır';
+$strRowsFrom = 'kayıt : Başlayacağı kayıt :';
+$strRowsModeFlippedHorizontal = 'yatay (döndürülmüş başlıklar)';
$strRowsModeHorizontal = 'yatay';
-$strRowsModeOptions = '%s modunda ve %s hücre sonra başlığı tekrarla';
+$strRowsModeOptions = '%s olarak göster ve %s hücre sonra başlığı tekrarla.';
$strRowsModeVertical = 'dikey';
$strRowsStatistic = 'Satır istatistiği';
$strRunQuery = 'Sorguyu çalıştır';
-$strRunSQLQuery = '%s veritabanı üzerinde sorgu/sorgular çalıştır';
-$strRunning = ': %s üzerinde çalışıyor...';
+$strRunSQLQuery = '%s veritabanı üzerinde sorgu çalıştır';
+$strRunning = '# %s üzerinde çalışıyor...';
+$strRussian = 'Rusça';
-$strSQL = 'SQL';
-$strSQLQuery = 'SQL-sorgusu';
+$strSQL = 'SQL sorgusu';
+$strSQLOptions = 'SQL seçenekleri';
+$strSQLParserBugMessage = 'SQL yorumlayıcısında bir hata bulma ihtimaliniz var.Lütfen sorgunuzu dikkatli bir şekilde gözden geçiriniz,ve tırnaklar doğru ve yanlış yazılmamış kontrol ediniz.Diğer olası hata nedenleri metin alanına alabileceği boyuttan daha büyük bir dosya yüklüyor olma ihtimalinizdir.Sorgunuzu MySQL komut satırı arayüzünde de deneyebilirsiniz..MySQL sunucu hata çıktısı,var ise,hatayı manızda size yardımcı olabilir.Hala sorunlarınız varsa veya komut satırı arayüzü çalışırken,yorumlayıcı hata veriyorsa,lütfen SQL sorgu girişinizi hata yaratan tek bir sorguya indirgeyin,ve aşağıdaki CUT bölümü veri yığını ile birlikte hata raporunu bildiriniz:';
+$strSQLParserUserError = 'SQL sorgunuzda bir hata varmış gibi gözüküyor.MySQL sunucu hata çıktısı,var ise,hatayı bulmanızda size yardımcı olabilir.';
+$strSQLQuery = 'SQL sorgusu';
$strSQLResult = 'SQL sonucu';
+$strSQPBugInvalidIdentifer = 'Geçersiz tanımlayıcı';
+$strSQPBugUnknownPunctuation = 'Bilinmeyen noktalama iÅŸareti';
$strSave = 'Kaydet';
$strSaveOnServer = 'Sunucuda %s dizininin içinde kaydet';
$strScaleFactorSmall = 'Çarpan faktörü sayfadaki şema için çok küçük';
$strSearch = 'Ara';
$strSearchFormTitle = 'Veritabanında ara';
-$strSearchInTables = 'Tablo(lar) içinde:';
-$strSearchNeedle = 'Aranacak kelime veya deÄŸerler (joker: "%"):';
+$strSearchInTables = 'Tablo içinde ara :';
+$strSearchNeedle = 'Aranacak kelime veya deÄŸerler ( joker: "%" ):';
$strSearchOption1 = 'kelimelerin en azından biri';
$strSearchOption2 = 'bütün kelimeler';
$strSearchOption3 = 'tam eÅŸleÅŸim';
$strSearchOption4 = 'normal deyim gibi';
$strSearchResultsFor = ' "%s" %s için arama sonuçları:';
-$strSearchType = 'Bul:';
+$strSearchType = 'BUL :';
$strSecretRequired = 'Ayar dosyası için gizli bir şifre gerekiyor (blowfish_secret).';
$strSelect = 'Seç';
-$strSelectADb = ' Lütfen bir veritabanı seçiniz';
+$strSelectADb = ' Lütfen bir veritabanı seçiniz';
$strSelectAll = 'Tümünü seç';
-$strSelectFields = 'Alan seç (en az bir):';
+$strSelectFields = 'Alan seç (en az bir)';
$strSelectNumRows = 'sorgu içerisinde';
$strSelectTables = 'Tabloları seç';
$strSend = 'Dosya olarak kaydet';
+$strSent = 'Gönderildi';
+$strServer = '%s sunucusu';
$strServerChoice = 'Server seçimi';
-$strServerTrafficNotes = 'Server traffic : These tables show the network traffic statistics of this MySQL server since its startup.';
+$strServerStatus = 'Çalışma bilgisi';
+$strServerStatusUptime = 'Bu MySQL sunucusunun çalışma süresi : %s Başlama Zamanı: %s ';
+$strServerTabProcesslist = 'İşlemler';
+$strServerTabVariables = 'DeÄŸiÅŸkenler';
+$strServerTrafficNotes = 'Sunucu Yoğunluğu : Bu tablolar başlama zamanından bu yana MySQL sunucusunun network yoğunluğunu gösterir.';
+$strServerVars = 'Sunucu değişkenleri ve ayarları';
$strServerVersion = 'Server sürümü';
+$strSessionValue = 'Oturum deÄŸeri';
$strSetEnumVal = 'Eğer alan tipi "enum" veya "set" ise , lütfen verileri şu formata göre giriniz: \'a\',\'b\',\'c\'... Eğer bu değerler arasına backslash ("\") veya tek tırnak koymanız gerekirse ("\'"),bunun için backslash kullanın (mesela \'\\\\xyz\' veya \'a\\\'b\').';
-$strShow = 'Göster:';
+$strShow = 'Göster';
$strShowAll = 'Tümünü göster';
$strShowColor = 'Rengi göster';
$strShowCols = 'Bütün sütunları göster';
+$strShowDatadictAs = 'Veri sözlüğü formatı';
+$strShowFullQueries = 'Sorguların tümünü göster';
$strShowGrid = 'Izgarayı göster';
$strShowPHPInfo = 'PHP bilgisini göster';
-$strShowTableDimension = 'Tabloların boyutlarını göster';
+$strShowTableDimension = 'Tabloların';
$strShowTables = 'Tabloları göster';
-$strShowThisQuery = ' Bu sorguyu burda yine göster ';
-$strShowingRecords = 'Kayıtları gösteriyor';
-$strSingly = '(birer birer)';
+$strShowThisQuery = 'Sorguyu burada yine göster.';
+$strShowingRecords = 'Kayıtları gösteriyor...';
+$strSimplifiedChinese = 'Basitleştirilmiş Çince';
+$strSingly = '( birer birer )';
$strSize = 'Boyut';
$strSort = 'Sırala';
$strSpaceUsage = 'Kullanılan alan';
$strSplitWordsWithSpace = 'Kelimeler bir boşluk karakteriyle bölünmüştür (" ").';
-$strStatement = 'İfadeler';
+$strStatCheckTime = 'Son kontrol';
+$strStatCreateTime = 'OluÅŸturulma';
+$strStatUpdateTime = 'Son güncellenme';
+$strStatement = 'Durum';
+$strStatus = 'Durum';
$strStrucCSV = 'CSV verisi';
$strStrucData = 'Yapı ve Veri';
-$strStrucDrop = '\'Drop table\' ekle';
+$strStrucDrop = 'DROP TABLE ekle';
$strStrucExcelCSV = 'MS Excel verisi için CSV';
$strStrucOnly = 'Sadece yapı';
-$strStructPropose = 'Tablo yapısını ayarla(mysql,tablo yapısını optimize eder)';
+$strStructPropose = 'Tablo yapısını analiz et.';
$strStructure = 'Yapı';
$strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz başarıyla çalıştırılmıştır';
$strSum = 'toplam';
$strSwedish = 'İsveçce';
+$strSwitchToTable = 'Kopyalanmış tabloya geç';
-$strTable = 'Tablo';
+$strTable = 'Tablo:';
$strTableComments = 'Tablo yorumları';
$strTableEmpty = 'Tablo ismi boÅŸ!';
$strTableHasBeenDropped = '%s tablosu kaldırılmıştır';
$strTableHasBeenEmptied = '%s tablosu boşaltılmıştır';
-$strTableHasBeenFlushed = '%s tablosu başarıyla kapatılmıştır.';
+$strTableHasBeenFlushed = '%s tablosu başarıyla kapatılmıştır.';
$strTableMaintenance = 'Tablo bakımı';
+$strTableOfContents = 'İçerik tablosu';
$strTableOptions = 'Tablo ayarları';
-$strTableStructure = 'Tablo için tablo yapısı';
+$strTableStructure = 'Tablo yapısı :';
$strTableType = 'Tablo tipi';
$strTables = '%s tablo';
+$strTblPrivileges = 'Tabloya özgü imtiyazlar';
$strTextAreaLength = 'Boyutu nedeniyle, bu alan düzenlenmeyebilir ';
+$strThai = 'Thai';
$strTheContent = 'Dosyanızın içeriği eklendi.';
$strTheContents = 'Dosyanın içeriği tablonun içeriğini aynı birincil veya unique anahtar değerli sütunlar için yer değiştirir..';
$strTheTerminator = 'Alan bitimini belirten iÅŸaret.';
-$strToggleScratchboard = 'toggle scratchboard';
+$strThisHost = 'Bu host ';
+$strThisNotDirectory = 'Bu bir dizin deÄŸildi';
+$strThreadSuccessfullyKilled = '%s işlemi başarıyla sonlandırıldı.';
+$strTime = 'Zaman';
+$strToggleScratchboard = 'scratchboard\a geç';
$strTotal = 'toplam';
+$strTotalUC = 'Toplam';
+$strTraditionalChinese = 'Geleneksel Çince';
+$strTraffic = 'YoÄŸunluk';
+$strTransformation_image_jpeg__inline = 'Tıklanabilir bir thumbnail gösterir; seçenekler: pixel olarak genişlik,yükseklik (orijinal oran korunur)';
+$strTransformation_image_jpeg__link = 'Bu resime direkt bir link gösterir (direct blob yüklemesi...).';
+$strTransformation_image_png__inline = 'jpeg resmini gör: satıriçi';
+$strTransformation_text_plain__dateformat = 'Bir TIME, TIMESTAMP veya DATETIME alanı alır ve varsayılan tarih formatı bilgilerinizle onu yeniden biçimlendirir.İlk seçenek zamangösterimi(timestamp)\'ne eklenecek bir offset(saat olarak)\'tir.(Varsayılan: 0).İkinci seçenek PHP\'nin strftime() fonksiyonu için uygun olan parametrelere göre farklı bir zamangösterimi(timestamp)\'dir.';
+$strTransformation_text_plain__external = 'Dış bir uygulama çalıştırır ve alanverisini standart giriş yoluyla besler.Uygulamanın standart çıktısı döner.Varsayılan hoş bir HTML çıktısı veren Tidy(Düzenli)\'dir..Güvenlik nedeniyle libraries/transformations/text_plain__external.inc.php dosyasını elle düzenlemeniz ve çalışmasına izin vereceğiniz araçları eklemeniz gerekir.İlk seçenek;çalıştırmak istediğiniz program sayısı,ikinci seçenek ise program için gerekli olan parametrelerdir.Üçüncü parametre ,eğer 1\'e setlenmişse htmlspecialchars() fonksiyonunu kullanarak çıktıyı dönüştürecektir(Varsayılan: 1).Dördüncü bir parametre ise ,eğer 1\'e setlenmişse NOWRAP(kaydırma yok) kodu tüm hücreye eklenecek ve bütün çıktı yeniden düzenlenmeden görünecektir.(Varsayılan :1)';
+$strTransformation_text_plain__formatted = 'Alanın orijinal biçimlendirmesini korur.Escaping(kaçış) yapılmaz..';
+$strTransformation_text_plain__imagelink = 'Bir resim ve bir link gösterir,alan dosya ismini içerir;ilk seçenek "http://domain.com/" gibi bir yazım,ikinci seçenek pixel olarak genişlik,üçüncüsü ise yüksekliktir.';
+$strTransformation_text_plain__link = 'Bir link ve dosya ismini içeren alanı gösterir;ilk seçenek "http://domain.com/" gibi bir gösterim,ikincisi ise link için bir başlıktır.';
+$strTransformation_text_plain__substr = 'Sadece yazının bir kısmını gösterir. İlk seçenek metin çıktınızın nerede olduğunu tanımlamak için kullanılacak bir offset\'tir. (varsayılan: 0).İkinci seçenek ne kadar metinin geri döndürüldüğünü belirten bir offset\'tir.. Eğer boşsa, bütün kalan metin geri döndürülür.Üçüncü seçenek bir substring döndürüldüğünde hangi karakterlerin çıktının sonuna ekleneceğini tanımlar(Varsayılan:...) .';
+$strTransformation_text_plain__unformatted = 'HTML kodunu bir bütün olarak göster.HTML biçimlendirme gösteriliyor.';
+$strTruncateQueries = 'Görülen sorguları kısalt';
$strTurkish = 'Türkçe';
$strType = 'Tip';
$strUkrainian = 'Ukraynaca';
$strUncheckAll = 'Hiçbirisini Seçme';
+$strUnicode = 'Unicode';
$strUnique = 'Unique';
+$strUnknown = 'bilinmeyen';
$strUnselectAll = 'Hiçbirisini seçme';
-$strUpdatePrivMessage = '%s için olan ayrıcalıkları güncellediniz.';
+$strUpdComTab = 'Sütun_Yorumları tablosunun nasıl güncellendiğini öğrenmek istiyorsanız Dökümanlara bakınız.';
+$strUpdatePrivMessage = '%s için olan imtiyazları güncellediniz.';
$strUpdateProfile = 'Profil güncelle:';
$strUpdateProfileMessage = 'Profil güncellendi.';
$strUpdateQuery = 'Sorguyu güncelle';
$strUsage = 'Kullanım';
$strUseBackquotes = 'Tablo ve alan isimleri için ters tırnak " ` " işaretini kullan';
+$strUseHostTable = 'Host tablosunu kullan';
$strUseTables = 'Tabloları kullan';
+$strUseTextField = 'Metin alanını kullan';
$strUseThisValue = 'Bu deÄŸeri kullan';
-$strUser = 'Kullanıcı:';
+$strUser = 'Kullanıcı';
+$strUserAlreadyExists = '%s kullanıcısı zaten mevcut!';
$strUserEmpty = 'Kullanıcı ismi alanı doldurulmadı!';
$strUserName = 'Kullanıcı ismi';
+$strUserNotFound = 'Seçili kullanıcı imtiyaz tablosunda bulunamadı.';
+$strUserOverview = 'Kullanıcı gözlem';
$strUsers = 'Kullanıcılar';
+$strUsersDeleted = 'Seçili kullanıcılar başarıyla silindi.';
+$strUsersHavingAccessToDb = '"%s" veritabanına erişimi olan kullanıcılar';
$strValidateSQL = 'SQL\'i doÄŸrula';
+$strValidatorError = 'SQL onaylayıcısı başlatılamadı.%sdökümanlar%s\'da belirtildiği gibi,gerekli php uzantılarının yüklenip yüklenilmediğini kontrol ediniz.';
$strValue = 'DeÄŸer';
-$strViewDump = 'Tablo\'nun döküm(şema)\'ünü göster';
-$strViewDumpDB = 'Veritabanı\'nın döküm(şema)\'ünü göster';
-$strViewDumpDatabases = 'Veritabanlarının şemalarını (dump) gör';
+$strVar = 'DeÄŸiÅŸken';
+$strViewDump = 'Tablo gözlem şeması';
+$strViewDumpDB = 'Veritabanı gözlem şeması';
+$strViewDumpDatabases = 'Veritabanları gözlem şeması';
+$strWebServerUploadDirectory = 'web-sunucu yükleme dizini';
+$strWebServerUploadDirectoryError = 'Yükleme işi için belirttiğiniz dizine ulaşılamıyor.';
$strWelcome = '%s \'e HOŞGELDİNİZ....';
+$strWestEuropean = 'Batı Avrupa';
+$strWildcard = 'joker';
$strWindowNotFound = 'Hedefteki tarayı penceresi güncellenemiyor...Bağlantısı olan pencereyi kapattınız veya tarayıcınızın güvenlik ayarları buna izin vermiyor';
-$strWithChecked = 'seçilileri:';
+$strWithChecked = 'Seçilileri:';
+$strWritingCommentNotPossible = 'Yorum yazılmazı mümkün değil.';
+$strWritingRelationNotPossible = 'İlişkinin yazılması mümkün değil.';
$strWrongUser = 'Hatalı kullanıcı/parola. Erişim engellendi.';
+$strXML = 'XML';
+
$strYes = 'Evet';
+$strZeroRemovesTheLimit = 'Not: Bu seçeneklerin 0\'a ayarlanması sınırı kaldırır..';
$strZip = '"ziplenmiÅŸ"';
// To translate
-$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
-$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
-$strAddAutoIncrement = 'Add AUTO_INCREMENT value'; //to translate
-$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
-$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
-$strAdministration = 'Administration'; //to translate
-$strArabic = 'Arabic'; //to translate
-$strArmenian = 'Armenian'; //to translate
-$strAutodetect = 'Autodetect'; //to translate
-$strAutomaticLayout = 'Automatic layout'; //to translate
-$strBaltic = 'Baltic'; //to translate
-$strBeginCut = 'BEGIN CUT'; //to translate
-$strBeginRaw = 'BEGIN RAW'; //to translate
-$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the $cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file to FALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
-
-$strCSVOptions = 'CSV options';//to translate
-$strCannotLogin = 'Cannot login to MySQL server'; //to translate
-$strCantLoad = 'cannot load %s extension, please check PHP Configuration'; //to translate
-$strCentralEuropean = 'Central European'; //to translate
-$strChangeCopyMode = 'Create a new user with the same privileges and ...'; //to translate
-$strChangeCopyModeCopy = '... keep the old one.'; //to translate
-$strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; //to translate
-$strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; //to translate
-$strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; //to translate
-$strChangeCopyUser = 'Change Login Information / Copy User'; //to translate
-$strCharset = 'Charset'; //to translate
-$strCheckPrivs = 'Check Privileges'; //to translate
-$strCheckPrivsLong = 'Check privileges for database "%s".'; //to translate
-$strColumnPrivileges = 'Column-specific privileges'; //to translate
-$strCommand = 'Command'; //to translate
-$strCompression = 'Compression'; //to translate
-$strConnections = 'Connections'; //to translate
-$strCouldNotKill = 'phpMyAdmin was unable to kill thread %s. It probably has already been closed.'; //to translate
-$strCyrillic = 'Cyrillic'; //to translate
-
-$strDBComment = 'Database comment: ';//to translate
-$strDBGContext = 'Context'; //to translate
-$strDBGContextID = 'Context ID'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGMaxTimeMs = 'Max time, ms'; //to translate
-$strDBGMinTimeMs = 'Min time, ms'; //to translate
-$strDBGModule = 'Module'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
-$strDBGTotalTimeMs = 'Total time, ms'; //to translate
-$strDataDict = 'Data Dictionary'; //to translate
-$strDatabasesDropped = '%s databases have been dropped successfully.'; //to translate
-$strDatabasesStatsDisable = 'Disable Statistics'; //to translate
-$strDatabasesStatsEnable = 'Enable Statistics'; //to translate
-$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; //to translate
-$strDbPrivileges = 'Database-specific privileges'; //to translate
-$strDbSpecific = 'database-specific'; //to translate
-$strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; //to translate
-$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; //to translate
-$strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; //to translate
-$strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; //to translate
-$strDeleting = 'Deleting %s'; //to translate
-$strDropSelectedDatabases = 'Drop Selected Databases'; //to translate
-$strDropUsersDb = 'Drop the databases that have the same names as the users.'; //to translate
-$strDumpComments = 'Include column comments as inline SQL-comments';//to translate
-
-$strEndCut = 'END CUT'; //to translate
-$strEndRaw = 'END RAW'; //to translate
-
-$strFailedAttempts = 'Failed attempts'; //to translate
-$strFileCouldNotBeRead = 'File could not be read'; //to translate
-$strFileNameTemplate = 'File name template';//to translate
-$strFileNameTemplateHelp = 'Use __DB__ for database name, __TABLE__ for table name and %sany strftime%s options for time specification, extension will be automagically added. Any other text will be preserved.';//to translate
-$strFileNameTemplateRemember = 'remember template';//to translate
-$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
-
-$strGlobal = 'global'; //to translate
-$strGlobalPrivileges = 'Global privileges'; //to translate
-$strGlobalValue = 'Global value'; //to translate
-$strGrantOption = 'Grant'; //to translate
-$strGreek = 'Greek'; //to translate
-
-$strHebrew = 'Hebrew'; //to translate
-
-$strId = 'ID'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
-$strImportFiles = 'Import files'; //to translate
-$strImportFinished = 'Import finished'; //to translate
-$strInnodbStat = 'InnoDB Status'; //to translate
-$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
-
-$strJapanese = 'Japanese'; //to translate
-$strJumpToDB = 'Jump to database "%s".'; //to translate
-$strJustDelete = 'Just delete the users from the privilege tables.'; //to translate
-$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; //to translate
-
-$strKorean = 'Korean'; //to translate
-
-$strLaTeX = 'LaTeX'; //to translate
-$strLandscape = 'Landscape'; //to translate
-$strLoadExplanation = 'The best method is checked by default, but you can change if it fails.'; //to translate
-$strLoadMethod = 'LOAD method'; //to translate
-$strLoginInformation = 'Login Information'; //to translate
-
-$strMIME_MIMEtype = 'MIME-type';//to translate
-$strMIME_available_mime = 'Available MIME-types';//to translate
-$strMIME_available_transform = 'Available transformations';//to translate
-$strMIME_description = 'Description';//to translate
-$strMIME_file = 'Filename';//to translate
-$strMIME_nodescription = 'No Description is available for this transformation. Please ask the author, what %s does.';//to translate
-$strMIME_transformation = 'Browser transformation';//to translate
-$strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s';//to translate
-$strMIME_transformation_options = 'Transformation options';//to translate
-$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'... If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate
-$strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate
-$strMoreStatusVars = 'More status variables'; //to translate
-
-$strNoDatabasesSelected = 'No databases selected.'; //to translate
-$strNoOptions = 'This format has no options';//to translate
-$strNoUsersSelected = 'No users selected.'; //to translate
-$strNumTables = 'Tables'; //to translate
-
-$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; //to translate
-$strPasswordChanged = 'The Password for %s was changed successfully.'; // to translate
-$strPdfNoTables = 'No tables'; //to translate
-$strPerHour = 'per hour'; //to translate
-$strPerMinute = 'per minute';//to translate
-$strPerSecond = 'per second';//to translate
-$strPortrait = 'Portrait'; //to translate
-$strPrint = 'Print'; //to translate
-$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
-$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
-$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
-$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
-$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
-$strPrivDescDelete = 'Allows deleting data.'; //to translate
-$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
-$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
-$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
-$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
-$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
-$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
-$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
-$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
-$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
-$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
-$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
-$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
-$strPrivDescReplClient = 'Gives the right to the user to ask where the slaves / masters are.'; //to translate
-$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
-$strPrivDescSelect = 'Allows reading data.'; //to translate
-$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
-$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
-$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
-$strPrivDescUpdate = 'Allows changing data.'; //to translate
-$strPrivDescUsage = 'No privileges.'; //to translate
-$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
-$strProcesslist = 'Process list'; //to translate
-$strPutColNames = 'Put fields names at first row'; //to translate
-
-$strQueryFrame = 'Query window';//to translate
-$strQueryFrameDebug = 'Debugging information';//to translate
-$strQueryFrameDebugBox = 'Active variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nCurrent variables for the query form:\nDB: %s\nTable: %s\nServer: %s\n\nOpener location: %s\nFrameset location: %s.';//to translate
-$strQuerySQLHistory = 'SQL-history';//to translate
-$strQueryTime = 'Query took %01.4f sec';//to translate
-$strQueryType = 'Query type'; //to translate
-
-$strReceived = 'Received'; //to translate
-$strRelationalSchema = 'Relational schema'; //to translate
-$strReloadingThePrivileges = 'Reloading the privileges'; //to translate
-$strRemoveSelectedUsers = 'Remove selected users'; //to translate
-$strResourceLimits = 'Resource limits'; //to translate
-$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; //to translate
-$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
-$strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate
-$strRussian = 'Russian'; //to translate
-
-$strSQLOptions = 'SQL options';//to translate
-$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; //to translate
-$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; //to translate
-$strSQPBugInvalidIdentifer = 'Invalid Identifer'; //to translate
-$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
-$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
-$strSent = 'Sent'; //to translate
-$strServer = 'Server %s'; //to translate
-$strServerStatus = 'Runtime Information'; //to translate
-$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
-$strServerTabProcesslist = 'Processes'; //to translate
-$strServerTabVariables = 'Variables'; //to translate
-$strServerVars = 'Server variables and settings'; //to translate
-$strSessionValue = 'Session value'; //to translate
-$strShowDatadictAs = 'Data Dictionary Format'; //to translate
-$strShowFullQueries = 'Show Full Queries'; //to translate
-$strSimplifiedChinese = 'Simplified Chinese'; //to translate
-$strStatCheckTime = 'Last check';//to translate
-$strStatCreateTime = 'Creation';//to translate
-$strStatUpdateTime = 'Last update';//to translate
-$strStatus = 'Status'; //to translate
-$strSwitchToTable = 'Switch to copied table'; //to translate
-
-$strTableOfContents = 'Table of contents'; //to translate
-$strTblPrivileges = 'Table-specific privileges'; //to translate
-$strThai = 'Thai'; //to translate
-$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
-$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
-$strTime = 'Time'; //to translate
-$strTotalUC = 'Total'; //to translate
-$strTraditionalChinese = 'Traditional Chinese'; //to translate
-$strTraffic = 'Traffic'; //to translate
-$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
-$strTransformation_image_jpeg__link = 'Displays a link to this image (direct blob download, i.e.).';//to translate
-$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
-$strTransformation_text_plain__dateformat = 'Takes a TIME, TIMESTAMP or DATETIME field and formats it using your local dateformat. First option is the offset (in hours) which will be added to the timestamp (Default: 0). Second option is a different dateformat according to the parameters available for PHPs strftime().';//to translate
-$strTransformation_text_plain__external = 'LINUX ONLY: Launches an external application and feeds the fielddata via standard input. Returns standard output of the application. Default is Tidy, to pretty print HTML code. For security reasons, you have to manually edit the file libraries/transformations/text_plain__external.inc.php and insert the tools you allow to be run. The first option is then the number of the program you want to use and the second option are the parameters for the program. The third parameter, if set to 1 will convert the output using htmlspecialchars() (Default is 1). A fourth parameter, if set to 1 will put a NOWRAP to the content cell so that the whole output will be shown without reformatting (Default 1)';//to translate
-$strTransformation_text_plain__formatted = 'Preserves original formatting of the field. No Escaping is done.';//to translate
-$strTransformation_text_plain__imagelink = 'Displays an image and a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is the width in pixels, third is the height.'; //to translate
-$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
-$strTransformation_text_plain__substr = 'Only shows part of a string. First option is an offset to define where the output of your text starts (Default 0). Second option is an offset how much text is returned. If empty, returns all the remaining text. The third option defines which chars will be appended to the output when a substring is returned (Default: ...) .';//to translate
-$strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entities. No HTML formatting is shown.';//to translate
-$strTruncateQueries = 'Truncate Shown Queries'; //to translate
-
-$strUnicode = 'Unicode'; //to translate
-$strUnknown = 'unknown'; //to translate
-$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
-$strUseHostTable = 'Use Host Table'; //to translate
-$strUseTextField = 'Use text field'; //to translate
-$strUserAlreadyExists = 'The user %s already exists!'; //to translate
-$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
-$strUserOverview = 'User overview'; //to translate
-$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
-$strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate
-
-$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; //to translate
-$strVar = 'Variable'; //to translate
-
-$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
-$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
-$strWestEuropean = 'West European'; //to translate
-$strWildcard = 'wildcard'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
-
-$strXML = 'XML';//to translate
-
-$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
-$strInternalRelations = 'Internal relations'; //to translate
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; //to translate
-$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
-$strLatexStructure = 'Structure of table __TABLE__';//to translate
-$strLatexContinued = '(continued)';//to translate
-$strLatexContent = 'Content of table __TABLE__';//to translate
-$strLatexIncludeCaption = 'Include table caption';//to translate
+$strInternalRelations = 'Internal relations'; //to translate
+
$strLatexCaption = 'Table caption';//to translate
-$strLatexLabel = 'Label key';//to translate
+$strLatexContent = 'Content of table __TABLE__';//to translate
+$strLatexContinued = '(continued)';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
+$strLatexIncludeCaption = 'Include table caption';//to translate
+$strLatexLabel = 'Label key';//to translate
+$strLatexStructure = 'Structure of table __TABLE__';//to translate
+$strLogServer = 'Server'; //to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+
+$strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+
+$strUpgradeMySQL = 'You should upgrade to MySQL %s or later.'; //to translate
+
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/ukrainian-utf-8.inc.php3 b/lang/ukrainian-utf-8.inc.php3
index 236d717be..166e3aa4a 100644
--- a/lang/ukrainian-utf-8.inc.php3
+++ b/lang/ukrainian-utf-8.inc.php3
@@ -710,4 +710,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/lang/ukrainian-windows-1251.inc.php3 b/lang/ukrainian-windows-1251.inc.php3
index 95165b29f..f02119643 100644
--- a/lang/ukrainian-windows-1251.inc.php3
+++ b/lang/ukrainian-windows-1251.inc.php3
@@ -709,4 +709,10 @@ $strLatexLabel = 'Label key';//to translate
$strLatexContinuedCaption = 'Continued table caption';//to translate
$strPrintViewFull = 'Print view (with full texts)'; //to translate
+$strLogServer = 'Server'; //to translate
+$strSortByKey = 'Sort by key'; //to translate
+$strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
+$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
+$strConstraintsForTable = 'Constraints for table'; //to translate
+$strBookmarkOptions = 'Bookmark options'; //to translate
?>
diff --git a/ldi_check.php3 b/ldi_check.php3
index 95d9ebaef..49a8d2e8d 100755
--- a/ldi_check.php3
+++ b/ldi_check.php3
@@ -51,6 +51,9 @@ if (isset($btnLDI) && isset($local_textfile) && $local_textfile != '') {
}
} // end if
+ if (substr($cfg['UploadDir'], -1) != '/') {
+ $cfg['UploadDir'] .= '/';
+ }
$textfile = $DOCUMENT_ROOT . dirname($PHP_SELF) . '/' . eregi_replace('^./', '', $cfg['UploadDir']) . eregi_replace('\.\.*', '.', $local_textfile);
if (file_exists($textfile)) {
$open_basedir = '';
diff --git a/ldi_table.php3 b/ldi_table.php3
index 4a305f5fe..fab780329 100755
--- a/ldi_table.php3
+++ b/ldi_table.php3
@@ -34,8 +34,10 @@ require('./tbl_properties_table_info.php3');
1) {
$eval_string .= '$tablestack[\'' . implode('\'][\'', $_table) . '\'][\'pma_list_item\'][] = \'' . str_replace('\'', '\\\'', $list_item) . '\';';
eval($eval_string);
} else {
- $tablestack['__protected__']['pma_name'][] = $table;
- $tablestack['__protected__']['pma_list_item'][] = $list_item;
+ $tablestack['']['pma_name'][] = $table;
+ $tablestack['']['pma_list_item'][] = $list_item;
}
} else {
- $tablestack['__protected__']['pma_name'][] = $table;
- $tablestack['__protected__']['pma_list_item'][] = $list_item;
+ $tablestack['']['pma_name'][] = $table;
+ $tablestack['']['pma_list_item'][] = $list_item;
}
} // end for $t (tables list)
@@ -725,12 +725,12 @@ else if ($num_dbs == 1) {
$eval_string .= '$tablestack[\'' . implode('\'][\'', $_table) . '\'][\'pma_list_item\'][] = \'' . $list_item . '\';';
eval($eval_string);
} else {
- $tablestack['__protected__']['pma_name'][] = $table;
- $tablestack['__protected__']['pma_list_item'][] = $list_item;
+ $tablestack['']['pma_name'][] = $table;
+ $tablestack['']['pma_list_item'][] = $list_item;
}
} else {
- $tablestack['__protected__']['pma_name'][] = $table;
- $tablestack['__protected__']['pma_list_item'][] = $list_item;
+ $tablestack['']['pma_name'][] = $table;
+ $tablestack['']['pma_list_item'][] = $list_item;
}
}
} // end for $j (tables list)
diff --git a/libraries/auth/cookie.auth.lib.php3 b/libraries/auth/cookie.auth.lib.php3
index 68f0b47c8..d2f52edc4 100644
--- a/libraries/auth/cookie.auth.lib.php3
+++ b/libraries/auth/cookie.auth.lib.php3
@@ -153,13 +153,14 @@ function PMA_blowfish_decrypt($data, $secret) {
global $right_font_family, $font_size, $font_bigger;
global $cfg, $available_languages;
global $lang, $server, $convcharset;
- global $conn_error;
+ global $conn_error;
global $HTTP_COOKIE_VARS;
// Tries to get the username from cookie whatever are the values of the
// 'register_globals' and the 'variables_order' directives if last login
// should be recalled, else skip the IE autocomplete feature.
if ($cfg['LoginCookieRecall']) {
+ // username
if (!empty($GLOBALS['pma_cookie_username'])) {
$default_user = $GLOBALS['pma_cookie_username'];
}
@@ -172,6 +173,21 @@ function PMA_blowfish_decrypt($data, $secret) {
if (isset($default_user) && get_magic_quotes_gpc()) {
$default_user = stripslashes($default_user);
}
+
+ // server name
+ if (!empty($GLOBALS['pma_cookie_servername'])) {
+ $default_server = $GLOBALS['pma_cookie_servername'];
+ }
+ else if (!empty($_COOKIE) && isset($_COOKIE['pma_cookie_servername'])) {
+ $default_server = $_COOKIE['pma_cookie_servername'];
+ }
+ else if (!empty($HTTP_COOKIE_VARS) && isset($HTTP_COOKIE_VARS['pma_cookie_servername'])) {
+ $default_server = $HTTP_COOKIE_VARS['pma_cookie_servername'];
+ }
+ if (isset($default_server) && get_magic_quotes_gpc()) {
+ $default_server = stripslashes($default_server);
+ }
+
$autocomplete = '';
}
else {
@@ -264,6 +280,14 @@ input.textfield {font-family: ; font-size:
>