diff --git a/ChangeLog b/ChangeLog
index 315ab197d..0b6c41f0d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,132 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL$
+2006-11-17 Michal Čihař ' . $line . ' ' . $GLOBALS['strAddedColumnComment'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . ' ' . $GLOBALS['strWritingCommentNotPossible'] . ' ' . $GLOBALS['strAddedColumnRelation'] . ' ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . ' to ' . htmlspecialchars($inf[2]) . ' ' . $GLOBALS['strWritingRelationNotPossible'] . ' ' . sprintf($GLOBALS['strImportSuccessfullyFinished'], count($lines)) . ' ' . $GLOBALS['strFileCouldNotBeRead'] . ' ' . sprintf($GLOBALS['strIgnoringFile'], ' ' . htmlspecialchars($file)) . ' ' . sprintf($GLOBALS['strIgnoringFile'], ' ' . '...') . ' ' . $GLOBALS['strFileCouldNotBeRead'] . ' Working on file ' . $filename . ' ' .$docpath . ': ' . $strThisNotDirectory . " ' . $line . '
+
+ To allow the usage of this functionality:
+
+
+
@@ -1605,15 +1628,6 @@ ALTER TABLE `pma_column_comments`
alternatives.
- 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.
-
@@ -2855,6 +2869,10 @@ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
Known limitations
@@ -4024,6 +4042,9 @@ CREDITS, in chronological order
* interface improvements
* various bugfixes
+- Ivan A Kirillov
+ * new relations Designer
+
And also to the following people who have contributed minor changes,
enhancements, bugfixes or support for a new language since version 2.1.0:
diff --git a/README b/README
index f29f54b3e..4946e458b 100644
--- a/README
+++ b/README
@@ -11,10 +11,10 @@ phpMyAdmin - Readme
Copyright (C) 1998-2000 Tobias Ratschiller Starting Import
';
- $docpath = $cfg['docSQLDir'] . PMA_securePath($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 '' . $strError . '
'
- . sprintf($strRelationNotWorking,
- '',
- '')
- . '' . $strError . '
';
+ } else {
+ echo '' . "\n"
- .'
';
-}
-
/**
* Displays the footer
*/
diff --git a/error.php b/error.php
index fc8cbfa16..a4f18fd0e 100644
--- a/error.php
+++ b/error.php
@@ -14,7 +14,8 @@ require_once('./libraries/sanitizing.lib.php');
/* Get variables */
$lang = isset( $_REQUEST['lang'] ) ? htmlspecialchars($_REQUEST['lang']) : 'en';
$dir = isset( $_REQUEST['dir'] ) ? htmlspecialchars($_REQUEST['dir']) : 'ltr';
-$charset = isset( $_REQUEST['charset'] ) ? htmlspecialchars($_REQUEST['charset']) : 'utf-8';
+// force utf-8 to avoid XSS with crafted URL and utf-7 in charset parameter
+$charset = 'utf-8';
$type = isset( $_REQUEST['type'] ) ? htmlspecialchars($_REQUEST['type']) : 'error';
header('Content-Type: text/html; charset=' . $charset);
diff --git a/export.php b/export.php
index b887b2b19..4b7602bca 100644
--- a/export.php
+++ b/export.php
@@ -46,6 +46,12 @@ if ($export_type == 'server') {
$err_url = 'server_export.php?' . PMA_generate_common_url();
} elseif ($export_type == 'database' && isset($db) && strlen($db)) {
$err_url = 'db_export.php?' . PMA_generate_common_url($db);
+ // Check if we have something to export
+ if (isset($table_select)) {
+ $tables = $table_select;
+ } else {
+ $tables = array();
+ }
} elseif ($export_type == 'table' && isset($db) && strlen($db) && isset($table) && strlen($table)) {
$err_url = 'tbl_export.php?' . PMA_generate_common_url($db, $table);
} else {
@@ -226,17 +232,17 @@ if ($asfile) {
$pma_uri_parts = parse_url($cfg['PmaAbsoluteUri']);
if ($export_type == 'server') {
if (isset($remember_template)) {
- setcookie('pma_server_filename_template', $filename_template, 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_setCookie('pma_server_filename_template', $filename_template);
}
$filename = str_replace('__SERVER__', $GLOBALS['cfg']['Server']['host'], strftime($filename_template));
} elseif ($export_type == 'database') {
if (isset($remember_template)) {
- setcookie('pma_db_filename_template', $filename_template, 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_setCookie('pma_db_filename_template', $filename_template);
}
$filename = str_replace('__DB__', $db, str_replace('__SERVER__', $GLOBALS['cfg']['Server']['host'], strftime($filename_template)));
} else {
if (isset($remember_template)) {
- setcookie('pma_table_filename_template', $filename_template, 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_setCookie('pma_table_filename_template', $filename_template);
}
$filename = str_replace('__TABLE__', $table, str_replace('__DB__', $db, str_replace('__SERVER__', $GLOBALS['cfg']['Server']['host'], strftime($filename_template))));
}
@@ -337,13 +343,7 @@ if (!$save_on_server) {
}
} else {
// HTML
- // Check if we have something to export
if ($export_type == 'database') {
- if (isset($table_select)) {
- $tables = $table_select;
- } else {
- $tables = array();
- }
$num_tables = count($tables);
if ($num_tables == 0) {
$message = $strNoTablesFound;
@@ -450,11 +450,6 @@ if ($export_type == 'server') {
if (!PMA_exportDBHeader($db)) {
break;
}
-
- //if (isset($table_select)) {
- // $tmp_select = implode($table_select, '|');
- // $tmp_select = '|' . $tmp_select . '|';
- //}
$i = 0;
$views = array();
// $tables contains the choices from the user (via $table_select)
diff --git a/import.php b/import.php
index 953d2701d..bcb613f18 100644
--- a/import.php
+++ b/import.php
@@ -157,6 +157,12 @@ if (!empty($id_bookmark)) {
}
} // end bookmarks reading
+// Do no run query if we show PHP code
+if (isset($GLOBALS['show_as_php'])) {
+ $run_query = FALSE;
+ $go_sql = TRUE;
+}
+
// Store the query as a bookmark before executing it if bookmarklabel was given
if (!empty($bkm_label) && !empty($import_text)) {
require_once('./libraries/bookmark.lib.php');
@@ -391,14 +397,10 @@ if ($timeout_passed) {
// in case of a query typed in the query window
require_once('./libraries/parse_analyze.lib.php');
-// Display back import page
-require_once('./libraries/header.inc.php');
-
// There was an error?
if (isset($my_die)) {
foreach ($my_die AS $key => $die) {
PMA_mysqlDie($die['error'], $die['sql'], '', $err_url, $error);
- echo '';
- }
- echo $strImportDocSQL . '
';
}
}
diff --git a/lang/afrikaans-iso-8859-1.inc.php b/lang/afrikaans-iso-8859-1.inc.php
index 34e1d4062..702117c38 100644
--- a/lang/afrikaans-iso-8859-1.inc.php
+++ b/lang/afrikaans-iso-8859-1.inc.php
@@ -381,13 +381,10 @@ $strZip = '"ge-zip"';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -485,15 +482,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -566,8 +554,6 @@ $strIcelandic = 'Icelandic'; //to translate
$strId = 'ID'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -929,7 +915,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
@@ -988,8 +973,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1023,4 +1006,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php
index 6922c714d..bab43a54f 100644
--- a/lang/afrikaans-utf-8.inc.php
+++ b/lang/afrikaans-utf-8.inc.php
@@ -382,13 +382,10 @@ $strZip = '"ge-zip"';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -486,15 +483,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -567,8 +555,6 @@ $strIcelandic = 'Icelandic'; //to translate
$strId = 'ID'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -930,7 +916,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
@@ -989,8 +974,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1024,4 +1007,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/albanian-iso-8859-1.inc.php b/lang/albanian-iso-8859-1.inc.php
index 6d7212028..9b76fc201 100644
--- a/lang/albanian-iso-8859-1.inc.php
+++ b/lang/albanian-iso-8859-1.inc.php
@@ -22,7 +22,6 @@ $timespanfmt = '%s dit
$strAbortedClients = 'Dshtoi';
-$strAbsolutePathToDocSqlDir = 'Ju lutem, shkruani pozicionin absolut n webserver pr tek directory e docSQL';
$strAccessDeniedExplanation = 'phpMyAdmin u prpoq t lidhet me server-in MySQL, dhe server-i refuzoi lidhjen. Kontrollo emrin e host, prdoruesin dhe fjalkalimin tek file config.inc.php dhe sigurohu q korrispondojn me informacionet q ju ka dhn administratori i serverit MySQL.';
$strAccessDenied = 'Hyrja nuk u pranua';
$strAction = 'Veprimi';
@@ -30,8 +29,6 @@ $strAddAutoIncrement = 'Shto vler
$strAddConstraints = 'Shto kushte';
$strAddDeleteColumn = 'Shto/Fshi fushn';
$strAddDeleteRow = 'Shto/Fshi kriterin';
-$strAddedColumnComment = 'Komenti u shtua n kollon';
-$strAddedColumnRelation = 'Relacioni u shtua pr kollonn';
$strAddHeaderComment = 'Shto nj koment t personalizuar n header (\\n ndrpret rreshtin)';
$strAddIntoComments = 'Shto tek komentet';
$strAddNewField = 'Shto nj fush t re';
@@ -164,15 +161,6 @@ $strDataDict = 'Data Dictionary';
$strDataOnly = 'Vetm t dhna';
$strData = 'T dhna';
$strDBComment = 'Komenti pr Databazn: ';
-$strDBGContextID = 'ID e kontekstit';
-$strDBGContext = 'Konteksti';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Rreshti';
-$strDBGMaxTimeMs = 'Koha maksimum, ms';
-$strDBGMinTimeMs = 'Koha minimum, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Koha/Hit, ms';
-$strDBGTotalTimeMs = 'Koha gjithsej, ms';
$strDbPrivileges = 'T drejta specifike t databazs';
$strDBRename = 'Ndysho emrin e databazs n';
$strDbSpecific = 'specifik i databazs';
@@ -278,8 +266,6 @@ $strId = 'ID';
$strIdxFulltext = 'Teksti komplet';
$strIgnoreInserts = 'Prdor shprfill shtimet';
$strIgnore = 'Shprfill';
-$strIgnoringFile = 'File %s u shprfill';
-$strImportDocSQL = 'Importo files docSQL';
$strImportFiles = 'Importo files';
$strIndexes = 'Tregues';
$strIndexHasBeenDropped = 'Treguesi %s u eleminua';
@@ -611,7 +597,6 @@ $strTextAreaLength = ' P
$strThai = 'Thai';
$strTheme = 'Tema / Stili';
$strThisHost = 'Kt Host';
-$strThisNotDirectory = 'Kjo nuk sht nj directory';
$strThreadSuccessfullyKilled = 'Thread %s u prfundua me sukses.';
$strTime = 'Koha';
$strToggleScratchboard = '(\')aktivo scratchboard';
@@ -674,8 +659,6 @@ $strWestEuropean = 'Europa Per
$strWildcard = 'wildcard';
$strWindowNotFound = 'Dritarja e destinimit t browser nuk mund t rifreskohet. Ka mundsi t keni mbyllur dritaren nn apo q browser-i juaj sht duke bllokuar rifreskimet ndrmjet browser-ve pr shkak t ndonj mase sigurie';
$strWithChecked = 'N.q.s. t zgjedhur:';
-$strWritingCommentNotPossible = 'I pamundur shkrimi i komentit';
-$strWritingRelationNotPossible = 'I pamundur shkrimi i relacionit';
$strWrongUser = 'Emr prdoruesi apo fjalkalim i gabuar. Ndalohet hyrja.';
$strXML = 'XML';
@@ -1022,4 +1005,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php
index 2cb522db4..8aa4c640f 100644
--- a/lang/albanian-utf-8.inc.php
+++ b/lang/albanian-utf-8.inc.php
@@ -23,7 +23,6 @@ $timespanfmt = '%s ditë, %s orë, %s minuta dhe %s sekonda';
$strAbortedClients = 'Dështoi';
-$strAbsolutePathToDocSqlDir = 'Ju lutem, shkruani pozicionin absolut në webserver për tek directory e docSQL';
$strAccessDeniedExplanation = 'phpMyAdmin u përpoq të lidhet me server-in MySQL, dhe server-i refuzoi lidhjen. Kontrollo emrin e host, përdoruesin dhe fjalëkalimin tek file config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka dhënë administratori i serverit MySQL.';
$strAccessDenied = 'Hyrja nuk u pranua';
$strAction = 'Veprimi';
@@ -31,8 +30,6 @@ $strAddAutoIncrement = 'Shto vlerë AUTO_INCREMENT';
$strAddConstraints = 'Shto kushte';
$strAddDeleteColumn = 'Shto/Fshi fushën';
$strAddDeleteRow = 'Shto/Fshi kriterin';
-$strAddedColumnComment = 'Komenti u shtua në kollonë';
-$strAddedColumnRelation = 'Relacioni u shtua për kollonën';
$strAddHeaderComment = 'Shto një koment të personalizuar në header (\\n ndërpret rreshtin)';
$strAddIntoComments = 'Shto tek komentet';
$strAddNewField = 'Shto një fushë të re';
@@ -165,15 +162,6 @@ $strDataDict = 'Data Dictionary';
$strDataOnly = 'Vetëm të dhëna';
$strData = 'Të dhëna';
$strDBComment = 'Komenti për Databazën: ';
-$strDBGContextID = 'ID e kontekstit';
-$strDBGContext = 'Konteksti';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Rreshti';
-$strDBGMaxTimeMs = 'Koha maksimum, ms';
-$strDBGMinTimeMs = 'Koha minimum, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Koha/Hit, ms';
-$strDBGTotalTimeMs = 'Koha gjithsej, ms';
$strDbPrivileges = 'Të drejta specifike të databazës';
$strDBRename = 'Ndysho emrin e databazës në';
$strDbSpecific = 'specifik i databazës';
@@ -279,8 +267,6 @@ $strId = 'ID';
$strIdxFulltext = 'Teksti komplet';
$strIgnoreInserts = 'Përdor shpërfill shtimet';
$strIgnore = 'Shpërfill';
-$strIgnoringFile = 'File %s u shpërfill';
-$strImportDocSQL = 'Importo files docSQL';
$strImportFiles = 'Importo files';
$strIndexes = 'Tregues';
$strIndexHasBeenDropped = 'Treguesi %s u eleminua';
@@ -612,7 +598,6 @@ $strTextAreaLength = ' Për shkak të gjatësisë saj,
kjo fushë nuk mund
$strThai = 'Thai';
$strTheme = 'Tema / Stili';
$strThisHost = 'Këtë Host';
-$strThisNotDirectory = 'Kjo nuk është një directory';
$strThreadSuccessfullyKilled = 'Thread %s u përfundua me sukses.';
$strTime = 'Koha';
$strToggleScratchboard = '(ç\')aktivo scratchboard';
@@ -675,8 +660,6 @@ $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ë zgjedhur:';
-$strWritingCommentNotPossible = 'I pamundur shkrimi i komentit';
-$strWritingRelationNotPossible = 'I pamundur shkrimi i relacionit';
$strWrongUser = 'Emër përdoruesi apo fjalëkalim i gabuar. Ndalohet hyrja.';
$strXML = 'XML';
@@ -1023,4 +1006,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php
index 2dc7df6d7..f55895f23 100644
--- a/lang/arabic-utf-8.inc.php
+++ b/lang/arabic-utf-8.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%d %B %Y الساعة %H:%M';
$timespanfmt = '%s يوم، %s ساعة، %s دقيقة و%s ثانية';
$strAbortedClients = 'ألغي';
-$strAbsolutePathToDocSqlDir = 'الرجاء كتابة المسار المطلق على خادم الشبكة إلى دليل docSQL';
$strAccessDeniedExplanation = 'حاول phpMyAdmin الاتصال بخادم MySQL، ورفض الخادم الاتصال. عليك أن تتحقق من المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL.';
$strAccessDenied = 'غير مسموح';
$strAction = 'العملية';
@@ -33,8 +32,6 @@ $strAddAutoIncrement = 'أضف قيمة AUTO_INCREMENT';
$strAddConstraints = 'أضف قيوداً';
$strAddDeleteColumn = 'إضافه/حذف عمود حقل';
$strAddDeleteRow = 'إضافه/حذف صف سجل';
-$strAddedColumnComment = 'تم إضافة التعليق للعمود';
-$strAddedColumnRelation = 'تم إضافة العلاقة للعمود';
$strAddIntoComments = 'أضف إلى الملاحظات';
$strAddNewField = 'إضافة حقل جديد';
$strAddPrivilegesOnDb = 'إضافة الصلاحيات على قاعدة البيانات التالية';
@@ -160,15 +157,6 @@ $strDataDict = 'قاموس البيانات';
$strDataOnly = 'بيانات فقط';
$strData = 'بيانات';
$strDBComment = 'ملاحظة قاعدة البيانات: ';
-$strDBGContextID = 'رقم السياق';
-$strDBGContext = 'السياق';
-$strDBGHits = 'استخدامات';
-$strDBGLine = 'سطر';
-$strDBGMaxTimeMs = 'أقصى وقت، مث';
-$strDBGMinTimeMs = 'أقل وقت، مث';
-$strDBGModule = 'وِحْدة';
-$strDBGTimePerHitMs = 'وقت/استخدام، مث';
-$strDBGTotalTimeMs = 'الوقت الكلي، مث';
$strDbPrivileges = 'صلاحيات خاصة بقاعدة البيانات';
$strDbSpecific = 'خاص بقاعدة بيانات';
$strDefaultValueHelp = 'للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام التنسيق: a';
@@ -265,8 +253,6 @@ $strHungarian = 'الهنغارية';
$strIdxFulltext = 'النص كاملاً';
$strId = 'رقم';
$strIgnore = 'تجاهل';
-$strIgnoringFile = 'تجاهل الملف %s';
-$strImportDocSQL = 'استيراد ملفات docSQL';
$strImportFiles = 'استورد الملفات';
$strIndexes = 'فهارس';
$strIndexHasBeenDropped = 'فهرسه محذوفه %s';
@@ -580,7 +566,6 @@ $strTblPrivileges = 'صلاحيات خاصة بالجدول';
$strTextAreaLength = ' بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير ';
$strThai = 'التايلندية';
$strThisHost = 'هذا المضيف';
-$strThisNotDirectory = 'لم يكن هذا دليلاً';
$strThreadSuccessfullyKilled = 'تم إيقاف العمليّة %s بنجاح.';
$strTime = 'وقت';
$strToggleScratchboard = 'toggle scratchboard';
@@ -641,8 +626,6 @@ $strWestEuropean = 'أوروبا الغربية';
$strWildcard = 'حرف شامل';
$strWindowNotFound = 'لم يمكن تحديث نافذة المتصفح المستهدفة. يبدو أنك أغلقت الرئيسية أو أن مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان.';
$strWithChecked = ': على المحدد';
-$strWritingCommentNotPossible = 'كتابة التعليق غير ممكن';
-$strWritingRelationNotPossible = 'كتابة العلاقة غير ممكنة';
$strWrongUser = 'خطأ إسم المستخدم/كلمة السر. الدخول ممنوع.';
$strXML = 'XML';
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/arabic-windows-1256.inc.php b/lang/arabic-windows-1256.inc.php
index 50a10d391..2c3ac1560 100644
--- a/lang/arabic-windows-1256.inc.php
+++ b/lang/arabic-windows-1256.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%d %B %Y
$timespanfmt = '%s %s ɡ %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL';
$strAccessDenied = ' ';
$strAccessDeniedExplanation = ' phpMyAdmin MySQL . ݡ config.inc.php MySQL.';
$strAction = '';
@@ -32,8 +31,6 @@ $strAddAutoIncrement = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddIntoComments = ' ';
$strAddNewField = ' ';
$strAddPrivilegesOnDb = ' ';
@@ -159,15 +156,6 @@ $strDatabasesStatsHeavyTraffic = '
$strDataDict = ' ';
$strDataOnly = ' ';
$strDBComment = ' : ';
-$strDBGContext = '';
-$strDBGContextID = ' ';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = ' ʡ ';
-$strDBGMinTimeMs = ' ʡ ';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/ ';
-$strDBGTotalTimeMs = ' ';
$strDbPrivileges = ' ';
$strDbSpecific = ' ';
$strDefault = '';
@@ -264,8 +252,6 @@ $strHungarian = '
$strId = '';
$strIdxFulltext = ' ';
$strIgnore = '';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL';
$strImportFiles = ' ';
$strIndex = '';
$strIndexes = '';
@@ -579,7 +565,6 @@ $strTblPrivileges = '
$strTextAreaLength = ' ,
';
$strThai = '';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strTime = '';
$strToggleScratchboard = 'toggle scratchboard';
@@ -640,8 +625,6 @@ $strWestEuropean = '
$strWildcard = ' ';
$strWindowNotFound = ' . .';
$strWithChecked = ': ';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' / . .';
$strXML = 'XML';
@@ -1024,4 +1007,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/azerbaijani-iso-8859-9.inc.php b/lang/azerbaijani-iso-8859-9.inc.php
index b67ffc5ea..72707cfe7 100644
--- a/lang/azerbaijani-iso-8859-9.inc.php
+++ b/lang/azerbaijani-iso-8859-9.inc.php
@@ -19,14 +19,11 @@ $datefmt = '%d %B, %Y saat %H:%M';
$timespanfmt = '%s gn, %s saat, %s deqiqe ve %s saniye';
$strAbortedClients = 'Dayandrlm Elaqeler';
-$strAbsolutePathToDocSqlDir = 'Xahi edirik, docSQL direktoriyasna webserver-deki mtleq yolu (absolute path) gsterin.';
$strAccessDenied = 'Giri Tesdiq Edilmedi';
$strAction = 'Fealiyyetler';
$strAddAutoIncrement = 'AUTO_INCREMENT deyeri elave et';
$strAddDeleteColumn = 'Sahe Stunlarn Elave Et/Sil';
$strAddDeleteRow = 'Kriteria Setirlerini Elave Et/Sil';
-$strAddedColumnComment = 'Bu stun n qsa izahat elave edildi';
-$strAddedColumnRelation = 'Stun n elaqe elave edildi';
$strAddHeaderComment = 'Bala xlase me\'lumat elave et (\\n yeni setire keir)';
$strAddIntoComments = 'Xlaseye elave et';
$strAddNewField = 'Yeni sahe elave et';
@@ -143,15 +140,6 @@ $strDataDict = 'Me\'lumat l
$strData = 'Me\'lumat';
$strDataOnly = 'Sadece me\'lumat';
$strDBComment = 'Baza qsa izahat: ';
-$strDBGContextID = 'Kontekst Nmresi';
-$strDBGContext = 'Metn (kontekst)';
-$strDBGHits = 'Hit-ler';
-$strDBGLine = 'Setr';
-$strDBGMaxTimeMs = 'Min. mddet, ms';
-$strDBGMinTimeMs = 'Maks. mddet, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vaxt/Hit, ms';
-$strDBGTotalTimeMs = 'Toplam mddet, ms';
$strDbPrivileges = 'Me\'lumat Bazasna Mexsus Selahiyyetler';
$strDbSpecific = 'bazayaxas';
$strDefault = 'Balanc deyeri';
@@ -253,8 +241,6 @@ $strHungarian = 'Macar Dili';
$strId = 'Nmre';
$strIdxFulltext = 'Tam metn (Fulltext)';
$strIgnore = 'Diqqete Alma';
-$strIgnoringFile = '%s Diqqete Almama (Ignore) fayl';
-$strImportDocSQL = 'docSQL Fayllarn mport Et';
$strImportFiles = 'Fayllar import et';
$strIndexes = 'Indeksler';
$strIndexHasBeenDropped = '%s indeksi lev edildi';
@@ -557,7 +543,6 @@ $strTableStructure = 'Table structure for table';
$strTblPrivileges = 'Cedvelexas selahiyyetler';
$strTextAreaLength = ' Uzun olduuna gre,
bu sahedeki me\'lumatlar deyidirilmeye biler ';
$strThisHost = 'Bu Host';
-$strThisNotDirectory = 'Bu direktoriya deyildi';
$strThreadSuccessfullyKilled = 'Thread %s uurla sndrld (killed).';
$strTime = 'Mddet';
$strTotal = 'cemi';
@@ -612,8 +597,6 @@ $strWelcome = '%s - e Xo
$strWestEuropean = 'Qerbi Avropa';
$strWildcard = 'xsusi iare';
$strWithChecked = 'Seilenleri:';
-$strWritingCommentNotPossible = 'Qsa izahat yazl mmkn deyil';
-$strWritingRelationNotPossible = 'Elaqe yazl mmkn deyil';
$strWrongUser = 'Yanl istifadei ad ve ya parol. Giri tesdiq edilmedi.';
$strXML = 'XML';
@@ -1019,4 +1002,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php
index e67f5d534..e8d235d50 100644
--- a/lang/azerbaijani-utf-8.inc.php
+++ b/lang/azerbaijani-utf-8.inc.php
@@ -20,14 +20,11 @@ $datefmt = '%d %B, %Y saat %H:%M';
$timespanfmt = '%s gün, %s saat, %s deqiqe ve %s saniye';
$strAbortedClients = 'Dayandırılmış Elaqeler';
-$strAbsolutePathToDocSqlDir = 'Xahiş edirik, docSQL direktoriyasına webserver-deki mütleq yolu (absolute path) gösterin.';
$strAccessDenied = 'Giriş Tesdiq Edilmedi';
$strAction = 'Fealiyyetler';
$strAddAutoIncrement = 'AUTO_INCREMENT deyeri elave et';
$strAddDeleteColumn = 'Sahe Sütunlarını Elave Et/Sil';
$strAddDeleteRow = 'Kriteria Setirlerini Elave Et/Sil';
-$strAddedColumnComment = 'Bu sütun üçün qısa izahat elave edildi';
-$strAddedColumnRelation = 'Sütun üçün elaqe elave edildi';
$strAddHeaderComment = 'Başlığa xülase me\'lumatı elave et (\\n yeni setire keçir)';
$strAddIntoComments = 'Xülaseye elave et';
$strAddNewField = 'Yeni sahe elave et';
@@ -144,15 +141,6 @@ $strDataDict = 'Me\'lumat lüğeti';
$strData = 'Me\'lumat';
$strDataOnly = 'Sadece me\'lumat';
$strDBComment = 'Baza qısa izahatı: ';
-$strDBGContextID = 'Kontekst Nömresi';
-$strDBGContext = 'Metn (kontekst)';
-$strDBGHits = 'Hit-ler';
-$strDBGLine = 'Setr';
-$strDBGMaxTimeMs = 'Min. müddet, ms';
-$strDBGMinTimeMs = 'Maks. müddet, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vaxt/Hit, ms';
-$strDBGTotalTimeMs = 'Toplam müddet, ms';
$strDbPrivileges = 'Me\'lumat Bazasına Mexsus Selahiyyetler';
$strDbSpecific = 'bazayaxas';
$strDefault = 'Başlanğıc deyeri';
@@ -254,8 +242,6 @@ $strHungarian = 'Macar Dili';
$strId = 'Nömre';
$strIdxFulltext = 'Tam metn (Fulltext)';
$strIgnore = 'Diqqete Alma';
-$strIgnoringFile = '%s Diqqete Almama (Ignore) faylı';
-$strImportDocSQL = 'docSQL Fayllarını İmport Et';
$strImportFiles = 'Faylları import et';
$strIndexes = 'Indeksler';
$strIndexHasBeenDropped = '%s indeksi leğv edildi';
@@ -558,7 +544,6 @@ $strTableStructure = 'Table structure for table';
$strTblPrivileges = 'Cedvelexas selahiyyetler';
$strTextAreaLength = ' Uzun olduğuna göre,
bu sahedeki me\'lumatlar deyişdirilmeye biler ';
$strThisHost = 'Bu Host';
-$strThisNotDirectory = 'Bu direktoriya deyildi';
$strThreadSuccessfullyKilled = 'Thread %s uğurla söndürüldü (killed).';
$strTime = 'Müddet';
$strTotal = 'cemi';
@@ -613,8 +598,6 @@ $strWelcome = '%s - e Xoş Gelmişsiniz!';
$strWestEuropean = 'Qerbi Avropa';
$strWildcard = 'xüsusi işare';
$strWithChecked = 'Seçilenleri:';
-$strWritingCommentNotPossible = 'Qısa izahat yazılışı mümkün deyil';
-$strWritingRelationNotPossible = 'Elaqe yazılışı mümkün deyil';
$strWrongUser = 'Yanlış istifadeçi adı ve ya parol. Giriş tesdiq edilmedi.';
$strXML = 'XML';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/basque-iso-8859-1.inc.php b/lang/basque-iso-8859-1.inc.php
index 32041f63b..ebeb59382 100644
--- a/lang/basque-iso-8859-1.inc.php
+++ b/lang/basque-iso-8859-1.inc.php
@@ -16,7 +16,6 @@ $datefmt = '%Y-%m-%d, %H:%M:%S';
$timespanfmt = '%s egun, %s ordu, %s minutu eta %s segundu';
$strAbortedClients = 'Deuseztatua';
-$strAbsolutePathToDocSqlDir = 'Mesedez, docSQL direktorioaren zerbitzariko helbide absolutoa idatzi';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL zerbitzariarekin konektatzen saiatu zen, eta zerbitzariak konexioa ukatu zuen. Config.inc.php fitxategian host-a, erabiltzaile-izena eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu.';
$strAccessDenied = 'Sarbidea ukatua';
$strAction = 'Ekintza';
@@ -24,8 +23,6 @@ $strAddAutoIncrement = 'Gehitu AUTO_INCREMENT balioa';
$strAddConstraints = 'Murrizketak gehitu';
$strAddDeleteColumn = 'Gehitu/ezabatu irizpide-zutabea';
$strAddDeleteRow = 'Gehitu/ezabatu irizpide-errenkada';
-$strAddedColumnComment = 'Zutabearentzako iruzkin bat gehitu da';
-$strAddedColumnRelation = 'Zutabearentzako erlazio bat gehitu da';
$strAddIntoComments = 'Iruzkinetan gehitu';
$strAddNewField = 'Eremu berria gehitu';
$strAddPrivilegesOnDb = 'Pribilegioak gehitu datu-base honetan';
@@ -150,15 +147,6 @@ $strData = 'Datuak';
$strDataDict = 'Datu-hiztegia';
$strDataOnly = 'Datuak soilik';
$strDBComment = 'Datu-basearen iruzkina: ';
-$strDBGContextID = 'Testuinguruaren IDa';
-$strDBGContext = 'Testuingurua';
-$strDBGHits = 'Atzialdiak';
-$strDBGLine = 'Lerroa';
-$strDBGMaxTimeMs = 'Denbora Min , ms';
-$strDBGMinTimeMs = 'Denbora Max, ms';
-$strDBGModule = 'Modulua';
-$strDBGTimePerHitMs = 'Denbora/Atzialdi, ms';
-$strDBGTotalTimeMs = 'Denbora orokorra, ms';
$strDbPrivileges = 'Datu-basearen pribilegio espezifikoak';
$strDbSpecific = 'Datubasearentzat espezifikoa';
$strDefault = 'Lehenetsia';
@@ -255,8 +243,6 @@ $strHungarian = 'Hungariera';
$strId = 'ID';
$strIdxFulltext = 'Testu osoa';
$strIgnore = 'Ezikusi';
-$strIgnoringFile = '%s fitxategia ezikusten';
-$strImportDocSQL = 'docSQL Fitxategiak inportatu';
$strImportFiles = 'Fitxategiak inportatu';
$strIndexes = 'Indizeak';
$strIndexHasBeenDropped = '%s indizea ezabatu da';
@@ -565,7 +551,6 @@ $strTblPrivileges = 'Taularen pribilegio espezifikoak';
$strTextAreaLength = ' Bere luzeragatik,
eremu hau ez da editagarria ';
$strThai = 'Thailandiarra';
$strThisHost = 'Host hau';
-$strThisNotDirectory = 'Hau ez zen direktorio bat';
$strThreadSuccessfullyKilled = '%s haria arrakastaz ezabatu da.';
$strTime = 'Denbora';
$strToggleScratchboard = 'Aldatu "scratchboard"-a';
@@ -626,8 +611,6 @@ $strWestEuropean = 'Mendebaldeko europearra';
$strWildcard = 'komodina';
$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';
$strWithChecked = 'Ikurdunak:';
-$strWritingCommentNotPossible = 'Ezin izan da iruzkina idatzi';
-$strWritingRelationNotPossible = 'Ezin izan da erlazioa idatzi';
$strWrongUser = 'Erabiltzaile-izena/pasahitza okerra. Atzipena ukatuta.';
$strXML = 'XML';
@@ -1016,4 +999,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php
index 60cb3ba25..17983104c 100644
--- a/lang/basque-utf-8.inc.php
+++ b/lang/basque-utf-8.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%Y-%m-%d, %H:%M:%S';
$timespanfmt = '%s egun, %s ordu, %s minutu eta %s segundu';
$strAbortedClients = 'Deuseztatua';
-$strAbsolutePathToDocSqlDir = 'Mesedez, docSQL direktorioaren zerbitzariko helbide absolutoa idatzi';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL zerbitzariarekin konektatzen saiatu zen, eta zerbitzariak konexioa ukatu zuen. Config.inc.php fitxategian host-a, erabiltzaile-izena eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu.';
$strAccessDenied = 'Sarbidea ukatua';
$strAction = 'Ekintza';
@@ -25,8 +24,6 @@ $strAddAutoIncrement = 'Gehitu AUTO_INCREMENT balioa';
$strAddConstraints = 'Murrizketak gehitu';
$strAddDeleteColumn = 'Gehitu/ezabatu irizpide-zutabea';
$strAddDeleteRow = 'Gehitu/ezabatu irizpide-errenkada';
-$strAddedColumnComment = 'Zutabearentzako iruzkin bat gehitu da';
-$strAddedColumnRelation = 'Zutabearentzako erlazio bat gehitu da';
$strAddIntoComments = 'Iruzkinetan gehitu';
$strAddNewField = 'Eremu berria gehitu';
$strAddPrivilegesOnDb = 'Pribilegioak gehitu datu-base honetan';
@@ -151,15 +148,6 @@ $strData = 'Datuak';
$strDataDict = 'Datu-hiztegia';
$strDataOnly = 'Datuak soilik';
$strDBComment = 'Datu-basearen iruzkina: ';
-$strDBGContextID = 'Testuinguruaren IDa';
-$strDBGContext = 'Testuingurua';
-$strDBGHits = 'Atzialdiak';
-$strDBGLine = 'Lerroa';
-$strDBGMaxTimeMs = 'Denbora Min , ms';
-$strDBGMinTimeMs = 'Denbora Max, ms';
-$strDBGModule = 'Modulua';
-$strDBGTimePerHitMs = 'Denbora/Atzialdi, ms';
-$strDBGTotalTimeMs = 'Denbora orokorra, ms';
$strDbPrivileges = 'Datu-basearen pribilegio espezifikoak';
$strDbSpecific = 'Datubasearentzat espezifikoa';
$strDefault = 'Lehenetsia';
@@ -256,8 +244,6 @@ $strHungarian = 'Hungariera';
$strId = 'ID';
$strIdxFulltext = 'Testu osoa';
$strIgnore = 'Ezikusi';
-$strIgnoringFile = '%s fitxategia ezikusten';
-$strImportDocSQL = 'docSQL Fitxategiak inportatu';
$strImportFiles = 'Fitxategiak inportatu';
$strIndexes = 'Indizeak';
$strIndexHasBeenDropped = '%s indizea ezabatu da';
@@ -566,7 +552,6 @@ $strTblPrivileges = 'Taularen pribilegio espezifikoak';
$strTextAreaLength = ' Bere luzeragatik,
eremu hau ez da editagarria ';
$strThai = 'Thailandiarra';
$strThisHost = 'Host hau';
-$strThisNotDirectory = 'Hau ez zen direktorio bat';
$strThreadSuccessfullyKilled = '%s haria arrakastaz ezabatu da.';
$strTime = 'Denbora';
$strToggleScratchboard = 'Aldatu "scratchboard"-a';
@@ -627,8 +612,6 @@ $strWestEuropean = 'Mendebaldeko europearra';
$strWildcard = 'komodina';
$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';
$strWithChecked = 'Ikurdunak:';
-$strWritingCommentNotPossible = 'Ezin izan da iruzkina idatzi';
-$strWritingRelationNotPossible = 'Ezin izan da erlazioa idatzi';
$strWrongUser = 'Erabiltzaile-izena/pasahitza okerra. Atzipena ukatuta.';
$strXML = 'XML';
@@ -1017,4 +1000,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/belarusian_cyrillic-utf-8.inc.php b/lang/belarusian_cyrillic-utf-8.inc.php
index 3799e7a46..7b321cde2 100644
--- a/lang/belarusian_cyrillic-utf-8.inc.php
+++ b/lang/belarusian_cyrillic-utf-8.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў';
$strAbortedClients = 'Спынена';
-$strAbsolutePathToDocSqlDir = 'Калі ласка, пазначце поўны шлях на вэб-сэрвэры да тэчкі docSQL';
$strAccessDeniedCreateConfig = 'Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin паспрабаваў падлучыцца да сэрвэра MySQL, але сэрвэр адхіліў злучэньне. Праверце імя хосту, карыстальніка і пароль у config.inc.php і ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-сэрвэра.';
$strAccessDenied = 'У доступе адмоўлена';
@@ -34,8 +33,6 @@ $strAddClause = 'Дадаць %s';
$strAddConstraints = 'Дадаць абмежаваньні';
$strAddDeleteColumn = 'Дадаць/выдаліць калёнку крытэру';
$strAddDeleteRow = 'Дадаць/выдаліць радок крытэру';
-$strAddedColumnComment = 'Даданы камэнтар да калёнкі';
-$strAddedColumnRelation = 'Даданая сувязь для калёнкі';
$strAddFields = 'Дадаць новыя палі';
$strAddHeaderComment = 'Дадаць прыватны камэнтар у загаловак (\\n падзяляе радкі)';
$strAddIntoComments = 'Дадаць у камэнтары';
@@ -207,15 +204,6 @@ $strDataOnly = 'Толькі дадзеныя';
$strDataPages = 'Старонак з дадзенымі';
$strDBComment = 'Камэнтар да базы дадзеных: ';
$strDBCopy = 'Капіяваць базу дадзеных у';
-$strDBGContext = 'Кантэкст';
-$strDBGContextID = 'Кантэкст ID';
-$strDBGHits = 'Зваротаў';
-$strDBGLine = 'Радок';
-$strDBGMaxTimeMs = 'Максымальны час, мс';
-$strDBGMinTimeMs = 'Мінімальны час, мс';
-$strDBGModule = 'Модуль';
-$strDBGTimePerHitMs = 'Час/Зварот, мс';
-$strDBGTotalTimeMs = 'Агульны час, мс';
$strDbPrivileges = 'Спэцыфічныя прывілеі базы дадзеных';
$strDBRename = 'Перайменаваць базу дадзеных у';
$strDbSpecific = 'спэцыфічны для базы дадзеных';
@@ -352,9 +340,7 @@ $strIdxFulltext = 'Поўнатэкстэкставае';
$strIgnore = 'Ігнараваць';
$strIgnoreDuplicates = 'Ігнараваць радкі, якія паўтараюцца';
$strIgnoreInserts = 'Выкарыстоўваць устаўкі ігнараваньняў';
-$strIgnoringFile = 'Файл %s праігнараваны';
$strImport = 'Імрарт';
-$strImportDocSQL = 'Імпартаваць файлы docSQL';
$strImportFiles = 'Імпартаваць файлы';
$strImportFormat = 'Фармат імпартаванага файла';
$strImportSuccessfullyFinished = 'Імпартраваньне пасьпяхова завершанае, выканана %d запытаў.';
@@ -906,7 +892,6 @@ $strThemeNoValidImgPath = 'Дапушчальны шлях да малюнкаў
$strTheme = 'Тэма / Стыль';
$strThemePathNotFound = 'Ня знойдзены шлях да тэмы %s!';
$strThisHost = 'Гэты хост';
-$strThisNotDirectory = 'Гэта ня тэчка';
$strThreads = 'Патокі';
$strThreadSuccessfullyKilled = 'Паток %s быў пасьпяхова спынены.';
$strTime = 'Час';
@@ -986,8 +971,6 @@ $strWildcard = 'шаблён';
$strWindowNotFound = 'Немагчыма абнавіць мэтавае акно браўзэра. Магчыма, вы закрылі бацькоўскае акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне міжваконных ўзаемадзеяньняў';
$strWithChecked = 'З адзначанымі:';
$strWriteRequests = 'Запытаў запісу';
-$strWritingCommentNotPossible = 'Немагчыма дадаць камэнтар';
-$strWritingRelationNotPossible = 'Немагчыма дадаць сувязь';
$strWrongUser = 'Няправільны лагін/пароль. У доступе адмоўлена.';
$strXMLOptions = 'Опцыі XML';
@@ -1000,4 +983,38 @@ $strZip = 'архіваваны ў zip';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/belarusian_cyrillic-windows-1251.inc.php b/lang/belarusian_cyrillic-windows-1251.inc.php
index 6d17a525c..559275a70 100644
--- a/lang/belarusian_cyrillic-windows-1251.inc.php
+++ b/lang/belarusian_cyrillic-windows-1251.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' , - docSQL';
$strAccessDeniedCreateConfig = ', , . , %1$s %2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL, 볢 . , config.inc.php , , MySQL-.';
$strAccessDenied = ' ';
@@ -33,8 +32,6 @@ $strAddClause = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' ';
$strAddHeaderComment = ' (\\n )';
$strAddIntoComments = ' ';
@@ -206,15 +203,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContext = '';
-$strDBGContextID = ' ID';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = ' , ';
-$strDBGMinTimeMs = '̳ , ';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/, ';
-$strDBGTotalTimeMs = ' , ';
$strDbPrivileges = ' ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -351,9 +339,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' , ';
$strIgnoreInserts = ' ';
-$strIgnoringFile = ' %s ';
$strImport = '';
-$strImportDocSQL = ' docSQL';
$strImportFiles = ' ';
$strImportFormat = ' ';
$strImportSuccessfullyFinished = ' , %d .';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = '
$strTheme = ' / ';
$strThemePathNotFound = ' %s!';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreads = '';
$strThreadSuccessfullyKilled = ' %s .';
$strTime = '';
@@ -985,8 +970,6 @@ $strWildcard = '
$strWindowNotFound = ' . , ';
$strWithChecked = ' :';
$strWriteRequests = ' ';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXMLOptions = ' XML';
@@ -999,4 +982,38 @@ $strZip = '
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/belarusian_latin-utf-8.inc.php b/lang/belarusian_latin-utf-8.inc.php
index 817f0af3a..1274cdbcd 100644
--- a/lang/belarusian_latin-utf-8.inc.php
+++ b/lang/belarusian_latin-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ';
$strAbortedClients = 'Spyniena';
-$strAbsolutePathToDocSqlDir = 'Kali łaska, paznačcie poŭny šlach na veb-servery da tečki docSQL';
$strAccessDeniedCreateConfig = 'Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin pasprabavaŭ padłučycca da servera MySQL, ale server adchiliŭ złučeńnie. Praviercie imia chostu, karystalnika i parol u config.inc.php i ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar MySQL-servera.';
$strAccessDenied = 'U dostupie admoŭlena';
@@ -33,8 +32,6 @@ $strAddClause = 'Dadać %s';
$strAddConstraints = 'Dadać abmiežavańni';
$strAddDeleteColumn = 'Dadać/vydalić kalonku kryteru';
$strAddDeleteRow = 'Dadać/vydalić radok kryteru';
-$strAddedColumnComment = 'Dadany kamentar da kalonki';
-$strAddedColumnRelation = 'Dadanaja suviaź dla kalonki';
$strAddFields = 'Dadać novyja pali';
$strAddHeaderComment = 'Dadać pryvatny kamentar u zahałovak (\\n padzialaje radki)';
$strAddIntoComments = 'Dadać u kamentary';
@@ -206,15 +203,6 @@ $strDataOnly = 'Tolki dadzienyja';
$strDataPages = 'Staronak z dadzienymi';
$strDBComment = 'Kamentar da bazy dadzienych: ';
$strDBCopy = 'Kapijavać bazu dadzienych u';
-$strDBGContextID = 'Kantekst ID';
-$strDBGContext = 'Kantekst';
-$strDBGHits = 'Zvarotaŭ';
-$strDBGLine = 'Radok';
-$strDBGMaxTimeMs = 'Maksymalny čas, ms';
-$strDBGMinTimeMs = 'Minimalny čas, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Čas/Zvarot, ms';
-$strDBGTotalTimeMs = 'Ahulny čas, ms';
$strDbPrivileges = 'Specyfičnyja pryvilei bazy dadzienych';
$strDBRename = 'Pierajmienavać bazu dadzienych u';
$strDbSpecific = 'specyfičny dla bazy dadzienych';
@@ -351,8 +339,6 @@ $strIdxFulltext = 'Poŭnatekstekstavaje';
$strIgnoreDuplicates = 'Ihnaravać radki, jakija paŭtarajucca';
$strIgnore = 'Ihnaravać';
$strIgnoreInserts = 'Vykarystoŭvać ustaŭki ihnaravańniaŭ';
-$strIgnoringFile = 'Fajł %s praihnaravany';
-$strImportDocSQL = 'Impartavać fajły docSQL';
$strImportFiles = 'Impartavać fajły';
$strImportFormat = 'Farmat impartavanaha fajła';
$strImport = 'Imrart';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = 'Dapuščalny šlach da malunkaŭ temy %s nia znojdzie
$strThemePathNotFound = 'Nia znojdzieny šlach da temy %s!';
$strTheme = 'Tema / Styl';
$strThisHost = 'Hety chost';
-$strThisNotDirectory = 'Heta nia tečka';
$strThreads = 'Patoki';
$strThreadSuccessfullyKilled = 'Patok %s byŭ paśpiachova spynieny.';
$strTime = 'Čas';
@@ -985,8 +970,6 @@ $strWildcard = 'šablon';
$strWindowNotFound = 'Niemahčyma abnavić metavaje akno braŭzera. Mahčyma, vy zakryli baćkoŭskaje akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie mižvakonnych ŭzajemadziejańniaŭ';
$strWithChecked = 'Z adznačanymi:';
$strWriteRequests = 'Zapytaŭ zapisu';
-$strWritingCommentNotPossible = 'Niemahčyma dadać kamentar';
-$strWritingRelationNotPossible = 'Niemahčyma dadać suviaź';
$strWrongUser = 'Niapravilny łahin/parol. U dostupie admoŭlena.';
$strXMLOptions = 'Opcyi XML';
@@ -999,4 +982,38 @@ $strZip = 'archivavany ŭ zip';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php
index a4cde9d91..3f7ca944d 100644
--- a/lang/bosnian-utf-8.inc.php
+++ b/lang/bosnian-utf-8.inc.php
@@ -23,15 +23,12 @@ $datefmt = '%d. %B %Y. u %H:%M';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direkcije docSQL na veb serveru';
$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.';
$strAccessDenied = 'Ulaz nije dozvoljen';
$strAction = 'Akcija';
$strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrijednost';
$strAddDeleteColumn = 'Dodaj/obriši kolonu';
$strAddDeleteRow = 'Dodaj/obriši polje za kriterij';
-$strAddedColumnComment = 'Dodan je komentar koloni';
-$strAddedColumnRelation = 'Dodana je relacija koloni';
$strAddIntoComments = 'Dodaj u komentare';
$strAddNewField = 'Dodaj novo polje';
$strAddPrivilegesOnDb = 'Dodaj privilegije na slijedećoj bazi';
@@ -152,15 +149,6 @@ $strDataDict = 'Rečnik podataka';
$strDataOnly = 'Samo podaci';
$strData = 'Podaci';
$strDBComment = 'Komentar baze:';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pogodaka';
-$strDBGLine = 'Linija';
-$strDBGMaxTimeMs = 'Max vrijeme, ms';
-$strDBGMinTimeMs = 'Min vrijeme, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vrijeme/pogodak, ms';
-$strDBGTotalTimeMs = 'Ukupno vrijeme, ms';
$strDbPrivileges = 'Privilegije vezane za bazu';
$strDbSpecific = 'Specifično za bazu';
$strDefault = 'Podrazumjevano';
@@ -255,8 +243,6 @@ $strHungarian = 'Mađarski';
$strId = 'ID';
$strIdxFulltext = 'Tekst ključ';
$strIgnore = 'Ignoriši';
-$strIgnoringFile = 'Ignorišem fajl %s';
-$strImportDocSQL = 'Uvoz docSQL fajlova';
$strImportFiles = 'Uvoz fajlova';
$strIndexes = 'Ključevi';
$strIndexHasBeenDropped = 'Ključ %s je obrisan';
@@ -557,7 +543,6 @@ $strTblPrivileges = 'Privilegije vezane za tabele';
$strTextAreaLength = 'Zbog njehove veličine, polje
možda nećete moći da izmenite';
$strThai = 'Tajlandski ';
$strThisHost = 'Ovaj server';
-$strThisNotDirectory = 'Ovo nije direktorijum';
$strThreadSuccessfullyKilled = 'Proces %s je uspješno prekinut.';
$strTime = 'Vrijeme';
$strToggleScratchboard = 'Uključuje/isključuje scratchboard';
@@ -617,8 +602,6 @@ $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';
@@ -1023,4 +1006,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/bosnian-windows-1250.inc.php b/lang/bosnian-windows-1250.inc.php
index 21f47d056..0ba86225a 100644
--- a/lang/bosnian-windows-1250.inc.php
+++ b/lang/bosnian-windows-1250.inc.php
@@ -22,15 +22,12 @@ $datefmt = '%d. %B %Y. u %H:%M';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direkcije docSQL na veb serveru';
$strAccessDeniedExplanation = 'phpMyAdmin je pokuao da se povee na MySQL server, ali je server odbio povezivanje. Provjerite naziv hosta, korisniko ime i lozinku u config.inc.php i uvjerite se da odgovaraju podacima koje ste dobili od administratora MySQL servera.';
$strAccessDenied = 'Ulaz nije dozvoljen';
$strAction = 'Akcija';
$strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrijednost';
$strAddDeleteColumn = 'Dodaj/obrii kolonu';
$strAddDeleteRow = 'Dodaj/obrii polje za kriterij';
-$strAddedColumnComment = 'Dodan je komentar koloni';
-$strAddedColumnRelation = 'Dodana je relacija koloni';
$strAddIntoComments = 'Dodaj u komentare';
$strAddNewField = 'Dodaj novo polje';
$strAddPrivilegesOnDb = 'Dodaj privilegije na slijedeoj bazi';
@@ -151,15 +148,6 @@ $strDataDict = 'Re
$strDataOnly = 'Samo podaci';
$strData = 'Podaci';
$strDBComment = 'Komentar baze:';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pogodaka';
-$strDBGLine = 'Linija';
-$strDBGMaxTimeMs = 'Max vrijeme, ms';
-$strDBGMinTimeMs = 'Min vrijeme, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vrijeme/pogodak, ms';
-$strDBGTotalTimeMs = 'Ukupno vrijeme, ms';
$strDbPrivileges = 'Privilegije vezane za bazu';
$strDbSpecific = 'Specifino za bazu';
$strDefault = 'Podrazumjevano';
@@ -254,8 +242,6 @@ $strHungarian = 'Ma
$strId = 'ID';
$strIdxFulltext = 'Tekst klju';
$strIgnore = 'Ignorii';
-$strIgnoringFile = 'Ignoriem fajl %s';
-$strImportDocSQL = 'Uvoz docSQL fajlova';
$strImportFiles = 'Uvoz fajlova';
$strIndexes = 'Kljuevi';
$strIndexHasBeenDropped = 'Klju %s je obrisan';
@@ -556,7 +542,6 @@ $strTblPrivileges = 'Privilegije vezane za tabele';
$strTextAreaLength = 'Zbog njehove veliine, polje
moda neete moi da izmenite';
$strThai = 'Tajlandski ';
$strThisHost = 'Ovaj server';
-$strThisNotDirectory = 'Ovo nije direktorijum';
$strThreadSuccessfullyKilled = 'Proces %s je uspjeno prekinut.';
$strTime = 'Vrijeme';
$strToggleScratchboard = 'Ukljuuje/iskljuuje scratchboard';
@@ -616,8 +601,6 @@ $strWestEuropean = 'Zapadnoevropski';
$strWildcard = 'Doker';
$strWindowNotFound = 'Odredinji prozor pretraivaa nije mogao da bude auriran. Moda ste zatvorili matini prozor, ili va preraiva onemoguava auriranje meu prozorima zbog sigurnosnih podeavanja';
$strWithChecked = 'Oznaeno:';
-$strWritingCommentNotPossible = 'Pisanje komentara nije mogue';
-$strWritingRelationNotPossible = 'Upisivanje relacije nije mogue';
$strWrongUser = 'Pogreno korisniko ime/lozinka. Ulaz nije dozvoljen.';
$strXML = 'XML';
@@ -1022,4 +1005,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php b/lang/brazilian_portuguese-iso-8859-1.inc.php
index 752b5e016..16101302b 100644
--- a/lang/brazilian_portuguese-iso-8859-1.inc.php
+++ b/lang/brazilian_portuguese-iso-8859-1.inc.php
@@ -26,7 +26,6 @@ $datefmt = '%B %d, %Y as %I:%M %p';
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Digite o caminho absoluto do diretrio docSQL do servidor Web';
$strAccessDenied = 'Acesso negado';
$strAccessDeniedCreateConfig = 'A provvel razo para isso que voc no criou o arquivo de configurao. Voc deve usar o %1$ssetup script%2$s para criar um.';
$strAccessDeniedExplanation = 'phpMyAdmin tentou se conectar no servidor MySQL e a conxo foi recusada. Voc deve checar o host, nome de usurio e senha no config.inc.php e se certificar que correspondam com as informaes fornecidas pelo administrador do servidor MySQL.';
@@ -36,8 +35,6 @@ $strAddClause = 'Adicionar %s';
$strAddConstraints = 'Adicionar restries';
$strAddDeleteColumn = 'Adicionar/Remover colunas';
$strAddDeleteRow = 'Adicionar/Remover condies de busca';
-$strAddedColumnComment = 'Adicionado comentrio para a coluna';
-$strAddedColumnRelation = 'Adicionada relao para a coluna';
$strAddFields = 'Adicionar %s campo(s)';
$strAddHeaderComment = 'Adicionar comentrio pessoal no cabealho (\\n quebra linhas)';
$strAddIntoComments = 'Adicionar nos comentrios';
@@ -209,15 +206,6 @@ $strDataOnly = 'Dados apenas';
$strDataPages = 'Pginas contendo dados';
$strDBComment = 'Comentrio do Banco de Dados: ';
$strDBCopy = 'Copiar Banco de Dados para';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID do contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linha';
-$strDBGMaxTimeMs = 'Tempo mx, ms';
-$strDBGMinTimeMs = 'Tempo min, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilgios especficos do Banco de Dados';
$strDBRename = 'Renomear Banco de Dados para';
$strDbSpecific = 'Especfico do Banco de Dados';
@@ -354,8 +342,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignorar linhas duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar inseres ignoradas';
-$strIgnoringFile = 'Ignorar arquivo %s';
-$strImportDocSQL = 'Importar arquivos docSQL';
$strImportFiles = 'Importar arquivos';
$strImportFormat = 'Formato do arquivo importado';
$strImport = 'Importar';
@@ -908,7 +894,6 @@ $strThemeNoValidImgPath = 'Encontrado caminho inv
$strThemePathNotFound = 'Encontrado caminho invlido para o tema %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Esse Host';
-$strThisNotDirectory = 'Isso no um diretrio';
$strThreads = 'Processos';
$strThreadSuccessfullyKilled = 'Processo %s foi morto com sucesso.';
$strTimeoutInfo = 'Importao anterior passou do tempo limite, depois de reenviar, ir continuar na posio %d.';
@@ -988,8 +973,6 @@ $strWildcard = 'coringa';
$strWindowNotFound = 'A janela alvo do navegador no pode ser atualizada. Talvez voc tenha fechado a janela alvo ou o seu navegador tenha bloqueado a comunicao entre janelas nas configuraes de segurana.';
$strWithChecked = 'Com marcados:';
$strWriteRequests = 'Escrita requisitada';
-$strWritingCommentNotPossible = 'No foi possvel escrever o comentrio';
-$strWritingRelationNotPossible = 'No foi possvel escrever a relao';
$strWrongUser = 'Usurio ou senha incorreta. Acesso negado.';
$strXMLOptions = 'Opes XML';
@@ -1002,4 +985,38 @@ $strZip = '"compactado com zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php
index 2511c486c..7a7a7e720 100644
--- a/lang/brazilian_portuguese-utf-8.inc.php
+++ b/lang/brazilian_portuguese-utf-8.inc.php
@@ -27,7 +27,6 @@ $datefmt = '%B %d, %Y as %I:%M %p';
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Digite o caminho absoluto do diretório docSQL do servidor Web';
$strAccessDenied = 'Acesso negado';
$strAccessDeniedCreateConfig = 'A provável razão para isso é que você não criou o arquivo de configuração. Você deve usar o %1$ssetup script%2$s para criar um.';
$strAccessDeniedExplanation = 'phpMyAdmin tentou se conectar no servidor MySQL e a conxão foi recusada. Você deve checar o host, nome de usuário e senha no config.inc.php e se certificar que correspondam com as informações fornecidas pelo administrador do servidor MySQL.';
@@ -37,8 +36,6 @@ $strAddClause = 'Adicionar %s';
$strAddConstraints = 'Adicionar restrições';
$strAddDeleteColumn = 'Adicionar/Remover colunas';
$strAddDeleteRow = 'Adicionar/Remover condições de busca';
-$strAddedColumnComment = 'Adicionado comentário para a coluna';
-$strAddedColumnRelation = 'Adicionada relação para a coluna';
$strAddFields = 'Adicionar %s campo(s)';
$strAddHeaderComment = 'Adicionar comentário pessoal no cabeçalho (\\n quebra linhas)';
$strAddIntoComments = 'Adicionar nos comentários';
@@ -210,15 +207,6 @@ $strDataOnly = 'Dados apenas';
$strDataPages = 'Páginas contendo dados';
$strDBComment = 'Comentário do Banco de Dados: ';
$strDBCopy = 'Copiar Banco de Dados para';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID do contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linha';
-$strDBGMaxTimeMs = 'Tempo máx, ms';
-$strDBGMinTimeMs = 'Tempo min, ms';
-$strDBGModule = 'Módulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilégios específicos do Banco de Dados';
$strDBRename = 'Renomear Banco de Dados para';
$strDbSpecific = 'Específico do Banco de Dados';
@@ -355,8 +343,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignorar linhas duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar inserções ignoradas';
-$strIgnoringFile = 'Ignorar arquivo %s';
-$strImportDocSQL = 'Importar arquivos docSQL';
$strImportFiles = 'Importar arquivos';
$strImportFormat = 'Formato do arquivo importado';
$strImport = 'Importar';
@@ -909,7 +895,6 @@ $strThemeNoValidImgPath = 'Encontrado caminho inválido para imagens para o tema
$strThemePathNotFound = 'Encontrado caminho inválido para o tema %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Esse Host';
-$strThisNotDirectory = 'Isso não é um diretório';
$strThreads = 'Processos';
$strThreadSuccessfullyKilled = 'Processo %s foi morto com sucesso.';
$strTimeoutInfo = 'Importação anterior passou do tempo limite, depois de reenviar, irá continuar na posição %d.';
@@ -989,8 +974,6 @@ $strWildcard = 'coringa';
$strWindowNotFound = 'A janela alvo do navegador não pode ser atualizada. Talvez você tenha fechado a janela alvo ou o seu navegador tenha bloqueado a comunicação entre janelas nas configurações de segurança.';
$strWithChecked = 'Com marcados:';
$strWriteRequests = 'Escrita requisitada';
-$strWritingCommentNotPossible = 'Não foi possível escrever o comentário';
-$strWritingRelationNotPossible = 'Não foi possível escrever a relação';
$strWrongUser = 'Usuário ou senha incorreta. Acesso negado.';
$strXMLOptions = 'Opções XML';
@@ -1003,4 +986,38 @@ $strZip = '"compactado com zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/bulgarian-koi8-r.inc.php b/lang/bulgarian-koi8-r.inc.php
index 465f49ee3..df09f0e78 100644
--- a/lang/bulgarian-koi8-r.inc.php
+++ b/lang/bulgarian-koi8-r.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%e %B %Y
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL ';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL , . , config.inc.php , MySQL .';
$strAccessDenied = ' ';
$strAction = '';
@@ -31,8 +30,6 @@ $strAddClause = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ()';
$strAddHeaderComment = ' (\\n )';
$strAddIntoComments = ' ';
@@ -184,15 +181,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContextID = ' ID';
-$strDBGContext = '';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = '. , ms';
-$strDBGMinTimeMs = '. , ms';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/, ms';
-$strDBGTotalTimeMs = ' , ms';
$strDbPrivileges = ' ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -319,8 +307,6 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' ';
$strIgnoreInserts = ' INSERT IGNORE';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strImportFormat = ' ';
$strImport = '';
@@ -723,7 +709,6 @@ $strThemeNoValidImgPath = '
$strTheme = ' / ';
$strThemePathNotFound = ' %s!';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strThreads = '';
$strTime = '';
@@ -795,8 +780,6 @@ $strWestEuropean = '
$strWildcard = ' ';
$strWindowNotFound = ' . ';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXMLOptions = 'XML ';
@@ -1019,4 +1002,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php
index c3505b757..dddab48e1 100644
--- a/lang/bulgarian-utf-8.inc.php
+++ b/lang/bulgarian-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%e %B %Y в %H:%M';
$timespanfmt = '%s дена, %s часа, %s минути и %s секунди';
$strAbortedClients = 'Прекъснати';
-$strAbsolutePathToDocSqlDir = 'Моля въведете абсолютния път на уеб сървъра до docSQL директорията';
$strAccessDeniedExplanation = 'phpMyAdmin направи опит да се свърже към MySQL сървъра, но сървъра отхвърли конекцията. Трябва да проверите хоста, потребителското име и паролата в config.inc.php файла и да се уверите, че те отговарят на информацията предоставена от администратора на MySQL сървъра.';
$strAccessDenied = 'Отказан достъп';
$strAction = 'Действие';
@@ -32,8 +31,6 @@ $strAddClause = 'Добавяне на %s';
$strAddConstraints = 'Добавяне на ограничение';
$strAddDeleteColumn = 'Добави/изтрий колона по критерий';
$strAddDeleteRow = 'Добави/изтрий ред по критерий';
-$strAddedColumnComment = 'Добавен коментар към колона';
-$strAddedColumnRelation = 'Добавена релациа към колона';
$strAddFields = 'Добавяне на %s поле(та)';
$strAddHeaderComment = 'Добавяне на коментар в хедъра (\\n нов ред)';
$strAddIntoComments = 'Добавяне в коментарите';
@@ -185,15 +182,6 @@ $strDataOnly = 'Само данните';
$strDataPages = 'Страници съдържащи данни';
$strDBComment = 'Коментар към базата от данни: ';
$strDBCopy = 'Копиране на базата от данни в';
-$strDBGContextID = 'Контекстно ID';
-$strDBGContext = 'Контекст';
-$strDBGHits = 'Попадения';
-$strDBGLine = 'Линия';
-$strDBGMaxTimeMs = 'Макс. време, ms';
-$strDBGMinTimeMs = 'Мин. време, ms';
-$strDBGModule = 'Модул';
-$strDBGTimePerHitMs = 'Време/Попадение, ms';
-$strDBGTotalTimeMs = 'Общо време, ms';
$strDbPrivileges = 'Привилегии специфични за базата от данни';
$strDBRename = 'Преименуване на базата от данни на';
$strDbSpecific = 'специфични за базата от данни';
@@ -320,8 +308,6 @@ $strIdxFulltext = 'Пълнотекстово';
$strIgnore = 'Игнориране';
$strIgnoreDuplicates = 'Игнориране на дублиращите се редове';
$strIgnoreInserts = 'Използване на INSERT IGNORE';
-$strIgnoringFile = 'Игнориране на файл %s';
-$strImportDocSQL = 'Импортирай docSQL файловете';
$strImportFiles = 'Импортиране на файлове';
$strImportFormat = 'Формат на импортирания файл';
$strImport = 'Импортиране';
@@ -724,7 +710,6 @@ $strThemeNoValidImgPath = 'Не е открит валиден път на те
$strTheme = 'Тема / Стил';
$strThemePathNotFound = 'Не е открит пътя на тема %s!';
$strThisHost = 'Този Хост';
-$strThisNotDirectory = 'Това не беше директория';
$strThreadSuccessfullyKilled = 'Нишка %s беше успешно отстранена.';
$strThreads = 'Нишки';
$strTime = 'Време';
@@ -796,8 +781,6 @@ $strWestEuropean = 'Западно-европейски';
$strWildcard = 'знак за заместване';
$strWindowNotFound = 'Прозореца на браузъра не може да бъде обновен. Може би сте затворили отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от един прозорец в друг от съображения за сигурност';
$strWithChecked = 'Когато има отметка:';
-$strWritingCommentNotPossible = 'Записа на коментар не е възможен';
-$strWritingRelationNotPossible = 'Записа на релацията не е възможен';
$strWrongUser = 'Грешно име/парола. Достъп отказан.';
$strXMLOptions = 'XML опции';
@@ -1020,4 +1003,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/bulgarian-windows-1251.inc.php b/lang/bulgarian-windows-1251.inc.php
index 7cd0bdbc4..a54f85cd3 100644
--- a/lang/bulgarian-windows-1251.inc.php
+++ b/lang/bulgarian-windows-1251.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%e %B %Y
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL ';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL , . , config.inc.php , MySQL .';
$strAccessDenied = ' ';
$strAction = '';
@@ -31,8 +30,6 @@ $strAddClause = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ()';
$strAddHeaderComment = ' (\\n )';
$strAddIntoComments = ' ';
@@ -184,15 +181,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContextID = ' ID';
-$strDBGContext = '';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = '. , ms';
-$strDBGMinTimeMs = '. , ms';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/, ms';
-$strDBGTotalTimeMs = ' , ms';
$strDbPrivileges = ' ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -319,8 +307,6 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' ';
$strIgnoreInserts = ' INSERT IGNORE';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strImportFormat = ' ';
$strImport = '';
@@ -723,7 +709,6 @@ $strThemeNoValidImgPath = '
$strTheme = ' / ';
$strThemePathNotFound = ' %s!';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strThreads = '';
$strTime = '';
@@ -795,8 +780,6 @@ $strWestEuropean = '
$strWildcard = ' ';
$strWindowNotFound = ' . ';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXMLOptions = 'XML ';
@@ -1019,4 +1002,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/catalan-iso-8859-1.inc.php b/lang/catalan-iso-8859-1.inc.php
index 2382c59d6..ac857dbe2 100644
--- a/lang/catalan-iso-8859-1.inc.php
+++ b/lang/catalan-iso-8859-1.inc.php
@@ -16,7 +16,6 @@ $month = array('Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'O
$datefmt = '%d-%m-%Y a les %H:%M:%S';
$strAbortedClients = 'Avortat';
-$strAbsolutePathToDocSqlDir = 'S\'ha d\'entrar el cam absolut en el servidor web per el directori de docSQL';
$strAccessDenied = 'Accs denegat';
$strAccessDeniedCreateConfig = 'La ra ms probable d\'aix s que no heu creat l\'arxiu de configuraci. Podriau voler utilitzar %1$ssetup script%2$s per crear-ne un.';
$strAccessDeniedExplanation = 'phpMyAdmin ha intentat connectar amb el servidor de MySQL, pero el servidor ha rebutjat la connexi. Comprova el host, el num d\' usuari i la contrasenya a l\'arxiu config.inc.php i mira que es correspongui amb la informaci facilitada per l\' administrador del servidor de MySQL.';
@@ -26,8 +25,6 @@ $strAddClause = 'Afegir %s';
$strAddConstraints = 'Afegir restriccions';
$strAddDeleteColumn = 'Afegir/esborrar Camps de Columna';
$strAddDeleteRow = 'Afegir/esborrar fila de criteri';
-$strAddedColumnComment = 'Afegit comentari per la columna';
-$strAddedColumnRelation = 'Afegida relaci per la columna';
$strAddFields = 'Afegir %s camp(s)';
$strAddHeaderComment = 'Afegir comentari personalitzat a la capalera (\\n divideix linies)';
$strAddIntoComments = 'Afegir en comentaris';
@@ -199,15 +196,6 @@ $strDataOnly = 'Nom
$strDataPages = 'Pgines contenint dades';
$strDBComment = 'Comentaris de la Base de Dades: ';
$strDBCopy = 'Copiar base de dades a';
-$strDBGContext = 'Contexte';
-$strDBGContextID = 'ID de contexte';
-$strDBGHits = 'Accessos';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Temps max, ms';
-$strDBGMinTimeMs = 'Temps min, ms';
-$strDBGModule = 'Mdul';
-$strDBGTimePerHitMs = 'Temps/Accs, ms';
-$strDBGTotalTimeMs = 'Temps total, ms';
$strDbPrivileges = 'Permissos especifics de Base de dades';
$strDBRename = 'Reanomenar base de dades a';
$strDbSpecific = 'especfic de la base de dades';
@@ -344,8 +332,6 @@ $strIdxFulltext = 'Text sencer';
$strIgnoreDuplicates = 'Ignorar files duplicades';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilitzar "ignore inserts"';
-$strIgnoringFile = 'Ignorant arxiu %s';
-$strImportDocSQL = 'Importa Arxius docSQL';
$strImportFiles = 'Importar arxius';
$strImportFormat = 'Format de l\'arxiu importat';
$strImport = 'Importar';
@@ -898,7 +884,6 @@ $strThemeNoValidImgPath = 'El cam
$strThemePathNotFound = 'No s\'ha trobat el cam de les imatges del tema %s!';
$strTheme = 'Tema / Estil';
$strThisHost = 'Aquest Host';
-$strThisNotDirectory = 'Aix no s un directori';
$strThreads = 'Fils';
$strThreadSuccessfullyKilled = 'Fil %s cancel.lat correctament.';
$strTimeoutInfo = 'La darrera importaci ha esgotat el temps, desprs de reenviar continuar des de la posici %d.';
@@ -978,8 +963,6 @@ $strWildcard = 'comodins';
$strWindowNotFound = 'La finestra dest del navegador no s\'ha pogut actualitzar. Potser has tancat la finestra "pare" o b el teu navegador bloqueja actualitzacions entre finestres per la teva configuraci de seguretat';
$strWithChecked = 'Amb marca:';
$strWriteRequests = 'Peticions d\'escriptura';
-$strWritingCommentNotPossible = 'No es pot desar aquest comentari';
-$strWritingRelationNotPossible = 'No es pot desar aquesta relaci';
$strWrongUser = 'Usuari i/o clau erronis. Accs denegat.';
$strXMLOptions = 'Opcions XML';
@@ -992,4 +975,38 @@ $strZip = '"comprimit amb zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php
index 45d619238..9d31d6c0c 100644
--- a/lang/catalan-utf-8.inc.php
+++ b/lang/catalan-utf-8.inc.php
@@ -17,7 +17,6 @@ $month = array('Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'O
$datefmt = '%d-%m-%Y a les %H:%M:%S';
$strAbortedClients = 'Avortat';
-$strAbsolutePathToDocSqlDir = 'S\'ha d\'entrar el camí absolut en el servidor web per el directori de docSQL';
$strAccessDenied = 'Accés denegat';
$strAccessDeniedCreateConfig = 'La raó més probable d\'aixó és que no heu creat l\'arxiu de configuració. Podriau voler utilitzar %1$ssetup script%2$s per crear-ne un.';
$strAccessDeniedExplanation = 'phpMyAdmin ha intentat connectar amb el servidor de MySQL, pero el servidor ha rebutjat la connexió. Comprova el host, el num d\' usuari i la contrasenya a l\'arxiu config.inc.php i mira que es correspongui amb la informació facilitada per l\' administrador del servidor de MySQL.';
@@ -27,8 +26,6 @@ $strAddClause = 'Afegir %s';
$strAddConstraints = 'Afegir restriccions';
$strAddDeleteColumn = 'Afegir/esborrar Camps de Columna';
$strAddDeleteRow = 'Afegir/esborrar fila de criteri';
-$strAddedColumnComment = 'Afegit comentari per la columna';
-$strAddedColumnRelation = 'Afegida relació per la columna';
$strAddFields = 'Afegir %s camp(s)';
$strAddHeaderComment = 'Afegir comentari personalitzat a la capçalera (\\n divideix linies)';
$strAddIntoComments = 'Afegir en comentaris';
@@ -200,15 +197,6 @@ $strDataOnly = 'Només dades';
$strDataPages = 'Pàgines contenint dades';
$strDBComment = 'Comentaris de la Base de Dades: ';
$strDBCopy = 'Copiar base de dades a';
-$strDBGContext = 'Contexte';
-$strDBGContextID = 'ID de contexte';
-$strDBGHits = 'Accessos';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Temps max, ms';
-$strDBGMinTimeMs = 'Temps min, ms';
-$strDBGModule = 'Módul';
-$strDBGTimePerHitMs = 'Temps/Accés, ms';
-$strDBGTotalTimeMs = 'Temps total, ms';
$strDbPrivileges = 'Permissos especifics de Base de dades';
$strDBRename = 'Reanomenar base de dades a';
$strDbSpecific = 'específic de la base de dades';
@@ -345,8 +333,6 @@ $strIdxFulltext = 'Text sencer';
$strIgnoreDuplicates = 'Ignorar files duplicades';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilitzar "ignore inserts"';
-$strIgnoringFile = 'Ignorant arxiu %s';
-$strImportDocSQL = 'Importa Arxius docSQL';
$strImportFiles = 'Importar arxius';
$strImportFormat = 'Format de l\'arxiu importat';
$strImport = 'Importar';
@@ -899,7 +885,6 @@ $strThemeNoValidImgPath = 'El camí de les imatges del tema %s és incorrecte!';
$strThemePathNotFound = 'No s\'ha trobat el camí de les imatges del tema %s!';
$strTheme = 'Tema / Estil';
$strThisHost = 'Aquest Host';
-$strThisNotDirectory = 'Aixó no és un directori';
$strThreads = 'Fils';
$strThreadSuccessfullyKilled = 'Fil %s cancel.lat correctament.';
$strTimeoutInfo = 'La darrera importació ha esgotat el temps, després de reenviar continuarà des de la posició %d.';
@@ -979,8 +964,6 @@ $strWildcard = 'comodins';
$strWindowNotFound = 'La finestra destí del navegador no s\'ha pogut actualitzar. Potser has tancat la finestra "pare" o bé el teu navegador bloqueja actualitzacions entre finestres per la teva configuració de seguretat';
$strWithChecked = 'Amb marca:';
$strWriteRequests = 'Peticions d\'escriptura';
-$strWritingCommentNotPossible = 'No es pot desar aquest comentari';
-$strWritingRelationNotPossible = 'No es pot desar aquesta relació';
$strWrongUser = 'Usuari i/o clau erronis. Accés denegat.';
$strXMLOptions = 'Opcions XML';
@@ -993,4 +976,38 @@ $strZip = '"comprimit amb zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/chinese_simplified-gb2312.inc.php b/lang/chinese_simplified-gb2312.inc.php
index a3ec16829..b54d31192 100644
--- a/lang/chinese_simplified-gb2312.inc.php
+++ b/lang/chinese_simplified-gb2312.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%Y
$timespanfmt = '%s %s Сʱ%s %s ';
$strAbortedClients = 'ֹ';
-$strAbsolutePathToDocSqlDir = ' docSQL Ŀ¼վľ·';
$strAccessDenied = 'ʱܾ';
$strAccessDeniedExplanation = 'phpMyAdmin ͼӵ MySQL ܾӡӦü config.inc.php еû룬ȷЩϢ MySQL ĹԱϢһ¡';
$strAction = '';
@@ -32,8 +31,6 @@ $strAddAutoIncrement = '
$strAddConstraints = 'ǿ';
$strAddDeleteColumn = '/ɾֶ';
$strAddDeleteRow = '/ɾ';
-$strAddedColumnComment = 'ע';
-$strAddedColumnRelation = 'йϵ';
$strAddFields = ' %s ֶ';
$strAddHeaderComment = 'ڱһƵע (\\n и)';
$strAddIntoComments = 'ӽע';
@@ -179,15 +176,6 @@ $strDataDict = '
$strDataOnly = 'ֻ';
$strDBComment = 'ݿעͣ';
$strDBCopy = 'ݿ';
-$strDBGContext = '';
-$strDBGContextID = ' ID';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = 'ʱ䣬';
-$strDBGMinTimeMs = 'Сʱ䣬';
-$strDBGModule = 'ģ';
-$strDBGTimePerHitMs = 'ʱ/Σ';
-$strDBGTotalTimeMs = 'ܼʱ䣬';
$strDbPrivileges = 'ݿָȨ';
$strDBRename = 'ݿΪ ';
$strDbSpecific = 'ݿָ';
@@ -294,8 +282,6 @@ $strId = 'ID'; // use eng
$strIdxFulltext = 'ȫ';
$strIgnore = '';
$strIgnoreInserts = 'Բ';
-$strIgnoringFile = 'ļ %s';
-$strImportDocSQL = ' docSQL ĵ';
$strImportFiles = 'ļ';
$strIndex = '';
$strIndexes = '';
@@ -639,7 +625,6 @@ $strTextAreaLength = '
$strThai = '̩';
$strTheme = ' / ';
$strThisHost = '';
-$strThisNotDirectory = 'ⲢһĿ¼';
$strThreadSuccessfullyKilled = '߳ %s ѳɹɱ';
$strTime = 'ʱ';
$strToggleScratchboard = 'лΰ';
@@ -703,8 +688,6 @@ $strWestEuropean = '
$strWildcard = 'ͨ';
$strWindowNotFound = 'Ŀڲɸ¡Ѿر˸ڻİȫ˸´ڡ';
$strWithChecked = 'ѡ';
-$strWritingCommentNotPossible = 'дע';
-$strWritingRelationNotPossible = 'дϵ';
$strWrongUser = 'û/ʱܾ';
$strXML = 'XML'; //USE ENG
@@ -1024,4 +1007,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php
index 0adb2ff0b..64c800b39 100644
--- a/lang/chinese_simplified-utf-8.inc.php
+++ b/lang/chinese_simplified-utf-8.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%Y 年 %m 月 %d 日 %H:%M';
$timespanfmt = '%s 天 %s 小时,%s 分 %s 秒';
$strAbortedClients = '中止';
-$strAbsolutePathToDocSqlDir = '请输入 docSQL 目录在网站服务器的绝对路径';
$strAccessDenied = '访问被拒绝';
$strAccessDeniedExplanation = 'phpMyAdmin 试图连接到 MySQL 服务器,但服务器拒绝连接。您应该检查 config.inc.php 中的主机、用户名和密码,并且确定这些信息与 MySQL 服务器的管理员所给出的信息一致。';
$strAction = '操作';
@@ -33,8 +32,6 @@ $strAddAutoIncrement = '添加 AUTO_INCREMENT 值';
$strAddConstraints = '强制添加';
$strAddDeleteColumn = '添加/删除字段列';
$strAddDeleteRow = '添加/删除条件行';
-$strAddedColumnComment = '已添加列注释';
-$strAddedColumnRelation = '已添加列关系';
$strAddFields = '添加 %s 字段';
$strAddHeaderComment = '在标题中增加一个定制的注释 (\\n 行隔离符)';
$strAddIntoComments = '添加进注释';
@@ -180,15 +177,6 @@ $strDataDict = '数据字典';
$strDataOnly = '只有数据';
$strDBComment = '数据库注释:';
$strDBCopy = '复制数据库到';
-$strDBGContext = '上下文';
-$strDBGContextID = '上下文 ID';
-$strDBGHits = '次数';
-$strDBGLine = '行';
-$strDBGMaxTimeMs = '最大时间,毫秒';
-$strDBGMinTimeMs = '最小时间,毫秒';
-$strDBGModule = '模块';
-$strDBGTimePerHitMs = '时间/次,毫秒';
-$strDBGTotalTimeMs = '总计时间,毫秒';
$strDbPrivileges = '按数据库指定权限';
$strDBRename = '重新命名数据库为 ';
$strDbSpecific = '按数据库指定';
@@ -295,8 +283,6 @@ $strId = 'ID'; // use eng
$strIdxFulltext = '全文搜索';
$strIgnore = '忽略';
$strIgnoreInserts = '忽略插入';
-$strIgnoringFile = '忽略文件 %s';
-$strImportDocSQL = '导入 docSQL 文档';
$strImportFiles = '导入文件';
$strIndex = '索引';
$strIndexes = '索引';
@@ -640,7 +626,6 @@ $strTextAreaLength = ' 由于长度限制
此字段可能无法编辑 ';
$strThai = '泰语';
$strTheme = '主题 / 风格';
$strThisHost = '此主机';
-$strThisNotDirectory = '这并不是一个目录';
$strThreadSuccessfullyKilled = '线程 %s 已成功杀死。';
$strTime = '时间';
$strToggleScratchboard = '切换刮板';
@@ -704,8 +689,6 @@ $strWestEuropean = '西欧';
$strWildcard = '通配符';
$strWindowNotFound = '目标浏览窗口不可更新。可能你已经关闭了父窗口或者您浏览器的安全设置阻断了更新窗口。';
$strWithChecked = '选中项:';
-$strWritingCommentNotPossible = '不能写注释';
-$strWritingRelationNotPossible = '不能写关系';
$strWrongUser = '用户名/密码错误,访问被拒绝。';
$strXML = 'XML'; //USE ENG
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/chinese_traditional-big5.inc.php b/lang/chinese_traditional-big5.inc.php
index ea9e73c0d..5aa674c89 100644
--- a/lang/chinese_traditional-big5.inc.php
+++ b/lang/chinese_traditional-big5.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%B %d, %Y, %I:%M %p';
$timespanfmt = '%s , %s p, %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = 'пJ docSQL ؿA|';
$strAccessDenied = 'ڵs';
$strAccessDeniedCreateConfig = 'iAإ߳]w. AiQΦ %1$sw˵{%2$s إ߳]w.';
$strAccessDeniedExplanation = 'phpMyAdmin ճsu MySQL A, AڵFsu. z config.inc.php ˬdDW, nJW٤αKXνTOoǸƬOPtκzHҴѪ MySQL AƬۦP';
@@ -33,8 +32,6 @@ $strAddAutoIncrement = "
$strAddConstraints = '[J';
$strAddDeleteColumn = 'sW/ ';
$strAddDeleteRow = 'sW/ zC';
-$strAddedColumnComment = 'HU[JѤr';
-$strAddedColumnRelation = 'HU[Jp';
$strAddFields = 'sW %s ';
$strAddHeaderComment = 'D[JӤH (\\n }s)';
$strAddIntoComments = '[JѤr';
@@ -200,15 +197,6 @@ $strDataOnly = '
$strDataPages = ']tƭ';
$strDBComment = 'ƮwѤr: ';
$strDBCopy = 'ƻsƮw';
-$strDBGContext = ' (Context)';
-$strDBGContextID = ' (Context) ID';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = '̤jɶ, ms';
-$strDBGMinTimeMs = '̤pɶ, ms';
-$strDBGModule = 'Ҳ';
-$strDBGTimePerHitMs = 'ɶ/, ms';
-$strDBGTotalTimeMs = '`ɶ, ms';
$strDbPrivileges = 'wƮwv';
$strDBRename = 'ƮwW٨';
$strDbSpecific = 'wƮw';
@@ -339,9 +327,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = 'LЦC';
$strIgnoreInserts = 'ϥΩ[J (insert)';
-$strIgnoringFile = 'ɮ %s';
$strImport = 'J';
-$strImportDocSQL = 'Ū docSQL ɮ';
$strImportFiles = 'Jɮ';
$strImportFormat = 'Jɮ榡';
$strImportSuccessfullyFinished = 'J\, @ %d yykw.';
@@ -775,7 +761,6 @@ $strThemeNotFound = '
$strThemeNoValidImgPath = '䤣GDD %s ]wϹ|!';
$strThemePathNotFound = '䤣GDD %s ]w|!';
$strThisHost = 'wD';
-$strThisNotDirectory = 'oäO@ӥؿ';
$strThreads = 'u{';
$strThreadSuccessfullyKilled = 'O %s w\.';
$strTime = 'ɶ';
@@ -850,8 +835,6 @@ $strWildcard = '
$strWindowNotFound = 'ئaLks. iAwΧAsw]wҰʤFLks';
$strWithChecked = 'ܪƪG';
$strWriteRequests = 'gJnD';
-$strWritingCommentNotPossible = 'LkxsѤr';
-$strWritingRelationNotPossible = 'Lkxsp';
$strWrongUser = '~ϥΪ̦W٩αKXAڵs';
$strXML = 'XML'; //USE ENG
@@ -1003,4 +986,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php
index 8b887422d..1e35e34fe 100644
--- a/lang/chinese_traditional-utf-8.inc.php
+++ b/lang/chinese_traditional-utf-8.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%B %d, %Y, %I:%M %p';
$timespanfmt = '%s 日, %s 小時, %s 分鐘 %s 秒';
$strAbortedClients = '取消';
-$strAbsolutePathToDocSqlDir = '請輸入 docSQL 目錄於網頁伺服器的絕對路徑';
$strAccessDenied = '拒絕存取';
$strAccessDeniedCreateConfig = '有可能你未建立設定檔. 你可利用此 %1$s安裝程序%2$s 建立設定檔.';
$strAccessDeniedExplanation = 'phpMyAdmin 嘗試連線到 MySQL 伺服器, 但伺服器拒絕了連線. 您應於 config.inc.php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 MySQL 伺服器資料相同';
@@ -34,8 +33,6 @@ $strAddAutoIncrement = "新增 AUTO_INCREMENT 數值";
$strAddConstraints = '加入限制';
$strAddDeleteColumn = '新增/減少 選擇欄';
$strAddDeleteRow = '新增/減少 篩選列';
-$strAddedColumnComment = '於以下欄位加入註解文字';
-$strAddedColumnRelation = '於以下欄位加入關聯';
$strAddFields = '新增 %s 個欄位';
$strAddHeaderComment = '於標題加入個人註解 (\\n 開新行)';
$strAddIntoComments = '加入註解文字';
@@ -201,15 +198,6 @@ $strDataOnly = '只有資料';
$strDataPages = '包含資料頁';
$strDBComment = '資料庫註解文字: ';
$strDBCopy = '複製資料庫到';
-$strDBGContext = '本文 (Context)';
-$strDBGContextID = '本文 (Context) ID';
-$strDBGHits = '次數';
-$strDBGLine = '行';
-$strDBGMaxTimeMs = '最大時間, ms';
-$strDBGMinTimeMs = '最小時間, ms';
-$strDBGModule = '模組';
-$strDBGTimePerHitMs = '時間/次, ms';
-$strDBGTotalTimeMs = '總時間, ms';
$strDbPrivileges = '指定資料庫權限';
$strDBRename = '更改資料庫名稱到';
$strDbSpecific = '指定資料庫';
@@ -340,9 +328,7 @@ $strIdxFulltext = '全文檢索';
$strIgnore = '忽略';
$strIgnoreDuplicates = '略過重覆列';
$strIgnoreInserts = '使用忽略加入 (insert)';
-$strIgnoringFile = '忽略檔案 %s';
$strImport = '載入';
-$strImportDocSQL = '讀取 docSQL 檔案';
$strImportFiles = '輸入檔案';
$strImportFormat = '載入檔案格式';
$strImportSuccessfullyFinished = '載入成功, 共 %d 句語法已執行.';
@@ -776,7 +762,6 @@ $strThemeNotFound = '找不到佈景主題 %s !';
$strThemeNoValidImgPath = '找不到佈景主題 %s 設定圖像之路徑!';
$strThemePathNotFound = '找不到佈景主題 %s 之設定路徑!';
$strThisHost = '指定主機';
-$strThisNotDirectory = '這並不是一個目錄';
$strThreads = '線程';
$strThreadSuccessfullyKilled = '指令 %s 已成功中止.';
$strTime = '時間';
@@ -851,8 +836,6 @@ $strWildcard = '萬用字元';
$strWindowNotFound = '目地的視窗無法更新. 可能你已關閉此視窗或你的瀏覽器於安全設定內啟動了無法跨視窗更新';
$strWithChecked = '選擇的資料表:';
$strWriteRequests = '寫入要求';
-$strWritingCommentNotPossible = '無法儲存註解文字';
-$strWritingRelationNotPossible = '無法儲存關聯';
$strWrongUser = '錯誤的使用者名稱或密碼,拒絕存取';
$strXML = 'XML'; //USE ENG
@@ -1004,4 +987,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/croatian-iso-8859-2.inc.php b/lang/croatian-iso-8859-2.inc.php
index 22ba177e7..d5b795c69 100644
--- a/lang/croatian-iso-8859-2.inc.php
+++ b/lang/croatian-iso-8859-2.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%B %d, %Y u %I:%M %p';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekunda';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite apsolutnu putanju na web-posluitelju do docSQL mape';
$strAccessDeniedCreateConfig = 'Vjerojatan razlog je nepostojea konfiguracijska datoteka. Za izradu moete upotrijebiti naredbu %1$ssetup script%2$s';
$strAccessDeniedExplanation = 'phpMyAdmin pokuao je uspostaviti vezu s MySQL posluiteljem, ali je posluitelj odbio povezivanje. U datoteci config.inc.php provjerite naziv raunala, korisniko ime i lozinku, te provjerite da se odgovaraju podacima koje vam je dao administrator MySQL posluitelja.';
$strAccessDenied = 'Pristup odbijen';
@@ -31,8 +30,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj prisile';
$strAddDeleteColumn = 'Dodaj/Izbrii stupce polja';
$strAddDeleteRow = 'Dodaj/Izbrii redak kriterija';
-$strAddedColumnComment = 'Dodani komentar za stupac';
-$strAddedColumnRelation = 'Dodana relacija za stupac';
$strAddFields = 'Dodaj %s polja';
$strAddHeaderComment = 'Dodaj prilagoeni komentar u zaglavlje ("\\n" razdvaja retke)';
$strAddIntoComments = 'Dodaj u komentare';
@@ -204,15 +201,6 @@ $strDataPages = 'Stranice koje sadr
$strData = 'Podaci';
$strDBComment = 'Komentar baze podataka: ';
$strDBCopy = 'Kopiraj bazu podataka u';
-$strDBGContextID = 'ID konteksta';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pronalaenja';
-$strDBGLine = 'Redak';
-$strDBGMaxTimeMs = 'Najdulje vrijeme (ms)';
-$strDBGMinTimeMs = 'Najkrae vrijeme (ms)';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vrijeme/Pronalaenje (ms)';
-$strDBGTotalTimeMs = 'Ukupno vrijeme (ms)';
$strDbPrivileges = 'Privilegije specifine za bazu podataka';
$strDBRename = 'Preimenuj bazu podataka u';
$strDbSpecific = 'specifino za bazu podataka';
@@ -349,8 +337,6 @@ $strIdxFulltext = 'Puni tekst';
$strIgnoreDuplicates = 'Ignoriraj istovjetne redove';
$strIgnore = 'Ignoriraj';
$strIgnoreInserts = 'Upotrijebi ignoriranje umetaka';
-$strIgnoringFile = 'Ignoriranje datoteke %s';
-$strImportDocSQL = 'Uvezi docSQL datoteke';
$strImportFiles = 'Uvezi datoteke';
$strImportFormat = 'Oblikovanje uvezene datoteke';
$strImportSuccessfullyFinished = 'Uvoz je uspjeno dovren. Izvreno upita: %d .';
@@ -903,7 +889,6 @@ $strThemeNoValidImgPath = 'Valjana putanja slika za temu %s nije prona
$strThemePathNotFound = 'Za temu %s nije pronaena putanje tema!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Ovo raunalo';
-$strThisNotDirectory = 'Ovo nije bila mapa';
$strThreads = 'Grane';
$strThreadSuccessfullyKilled = 'Grana %s uspjeno je prekinuta.';
$strTimeoutInfo = 'Vrijeme prethodnog uvoza je isteklo. Nakon ponovno podnoenja bit e nastavljeno od poloaja %d.';
@@ -983,8 +968,6 @@ $strWildcard = 'd
$strWindowNotFound = 'Ciljani prozor preglednika nije bilo mogue osvjeiti. Moda ste zatvorili nadreeni prozor ili su postavke sigurnosti vaeg preglednika konfigurirane za blokiranje auriranja preko vie prozora.';
$strWithChecked = 'S odabirom:';
$strWriteRequests = 'Zahtjevi zapisivanja';
-$strWritingCommentNotPossible = 'Zapisivanje komentara nije mogue';
-$strWritingRelationNotPossible = 'Zapisivanje relacija nije mogue';
$strWrongUser = 'Pogreno korisniko ime ili lozinka. Pristup odbijen.';
$strXMLOptions = 'XML opcije';
@@ -997,4 +980,38 @@ $strZip = '"zipano"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php
index 236ccadf8..9d0b4a70f 100644
--- a/lang/croatian-utf-8.inc.php
+++ b/lang/croatian-utf-8.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%B %d, %Y u %I:%M %p';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekunda';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite apsolutnu putanju na web-poslužitelju do docSQL mape';
$strAccessDeniedCreateConfig = 'Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete upotrijebiti naredbu %1$ssetup script%2$s';
$strAccessDeniedExplanation = 'phpMyAdmin pokušao je uspostaviti vezu s MySQL poslužiteljem, ali je poslužitelj odbio povezivanje. U datoteci config.inc.php provjerite naziv računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima koje vam je dao administrator MySQL poslužitelja.';
$strAccessDenied = 'Pristup odbijen';
@@ -32,8 +31,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj prisile';
$strAddDeleteColumn = 'Dodaj/Izbriši stupce polja';
$strAddDeleteRow = 'Dodaj/Izbriši redak kriterija';
-$strAddedColumnComment = 'Dodani komentar za stupac';
-$strAddedColumnRelation = 'Dodana relacija za stupac';
$strAddFields = 'Dodaj %s polja';
$strAddHeaderComment = 'Dodaj prilagođeni komentar u zaglavlje ("\\n" razdvaja retke)';
$strAddIntoComments = 'Dodaj u komentare';
@@ -205,15 +202,6 @@ $strDataPages = 'Stranice koje sadrže podatke';
$strData = 'Podaci';
$strDBComment = 'Komentar baze podataka: ';
$strDBCopy = 'Kopiraj bazu podataka u';
-$strDBGContextID = 'ID konteksta';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pronalaženja';
-$strDBGLine = 'Redak';
-$strDBGMaxTimeMs = 'Najdulje vrijeme (ms)';
-$strDBGMinTimeMs = 'Najkraće vrijeme (ms)';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vrijeme/Pronalaženje (ms)';
-$strDBGTotalTimeMs = 'Ukupno vrijeme (ms)';
$strDbPrivileges = 'Privilegije specifične za bazu podataka';
$strDBRename = 'Preimenuj bazu podataka u';
$strDbSpecific = 'specifično za bazu podataka';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Puni tekst';
$strIgnoreDuplicates = 'Ignoriraj istovjetne redove';
$strIgnore = 'Ignoriraj';
$strIgnoreInserts = 'Upotrijebi ignoriranje umetaka';
-$strIgnoringFile = 'Ignoriranje datoteke %s';
-$strImportDocSQL = 'Uvezi docSQL datoteke';
$strImportFiles = 'Uvezi datoteke';
$strImportFormat = 'Oblikovanje uvezene datoteke';
$strImportSuccessfullyFinished = 'Uvoz je uspješno dovršen. Izvršeno upita: %d .';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Valjana putanja slika za temu %s nije pronađena!';
$strThemePathNotFound = 'Za temu %s nije pronađena putanje tema!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Ovo računalo';
-$strThisNotDirectory = 'Ovo nije bila mapa';
$strThreads = 'Grane';
$strThreadSuccessfullyKilled = 'Grana %s uspješno je prekinuta.';
$strTimeoutInfo = 'Vrijeme prethodnog uvoza je isteklo. Nakon ponovno podnošenja bit će nastavljeno od položaja %d.';
@@ -984,8 +969,6 @@ $strWildcard = 'džoker';
$strWindowNotFound = 'Ciljani prozor preglednika nije bilo moguće osvježiti. Možda ste zatvorili nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane za blokiranje ažuriranja preko više prozora.';
$strWithChecked = 'S odabirom:';
$strWriteRequests = 'Zahtjevi zapisivanja';
-$strWritingCommentNotPossible = 'Zapisivanje komentara nije moguće';
-$strWritingRelationNotPossible = 'Zapisivanje relacija nije moguće';
$strWrongUser = 'Pogrešno korisničko ime ili lozinka. Pristup odbijen.';
$strXMLOptions = 'XML opcije';
@@ -998,4 +981,38 @@ $strZip = '"zipano"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/croatian-windows-1250.inc.php b/lang/croatian-windows-1250.inc.php
index c0183b668..4fffa7942 100644
--- a/lang/croatian-windows-1250.inc.php
+++ b/lang/croatian-windows-1250.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%B %d, %Y u %I:%M %p';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekunda';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite apsolutnu putanju na web-posluitelju do docSQL mape';
$strAccessDeniedCreateConfig = 'Vjerojatan razlog je nepostojea konfiguracijska datoteka. Za izradu moete upotrijebiti naredbu %1$ssetup script%2$s';
$strAccessDeniedExplanation = 'phpMyAdmin pokuao je uspostaviti vezu s MySQL posluiteljem, ali je posluitelj odbio povezivanje. U datoteci config.inc.php provjerite naziv raunala, korisniko ime i lozinku, te provjerite da se odgovaraju podacima koje vam je dao administrator MySQL posluitelja.';
$strAccessDenied = 'Pristup odbijen';
@@ -31,8 +30,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj prisile';
$strAddDeleteColumn = 'Dodaj/Izbrii stupce polja';
$strAddDeleteRow = 'Dodaj/Izbrii redak kriterija';
-$strAddedColumnComment = 'Dodani komentar za stupac';
-$strAddedColumnRelation = 'Dodana relacija za stupac';
$strAddFields = 'Dodaj %s polja';
$strAddHeaderComment = 'Dodaj prilagoeni komentar u zaglavlje ("\\n" razdvaja retke)';
$strAddIntoComments = 'Dodaj u komentare';
@@ -204,15 +201,6 @@ $strDataPages = 'Stranice koje sadr
$strData = 'Podaci';
$strDBComment = 'Komentar baze podataka: ';
$strDBCopy = 'Kopiraj bazu podataka u';
-$strDBGContextID = 'ID konteksta';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pronalaenja';
-$strDBGLine = 'Redak';
-$strDBGMaxTimeMs = 'Najdulje vrijeme (ms)';
-$strDBGMinTimeMs = 'Najkrae vrijeme (ms)';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vrijeme/Pronalaenje (ms)';
-$strDBGTotalTimeMs = 'Ukupno vrijeme (ms)';
$strDbPrivileges = 'Privilegije specifine za bazu podataka';
$strDBRename = 'Preimenuj bazu podataka u';
$strDbSpecific = 'specifino za bazu podataka';
@@ -349,8 +337,6 @@ $strIdxFulltext = 'Puni tekst';
$strIgnoreDuplicates = 'Ignoriraj istovjetne redove';
$strIgnore = 'Ignoriraj';
$strIgnoreInserts = 'Upotrijebi ignoriranje umetaka';
-$strIgnoringFile = 'Ignoriranje datoteke %s';
-$strImportDocSQL = 'Uvezi docSQL datoteke';
$strImportFiles = 'Uvezi datoteke';
$strImportFormat = 'Oblikovanje uvezene datoteke';
$strImportSuccessfullyFinished = 'Uvoz je uspjeno dovren. Izvreno upita: %d .';
@@ -903,7 +889,6 @@ $strThemeNoValidImgPath = 'Valjana putanja slika za temu %s nije prona
$strThemePathNotFound = 'Za temu %s nije pronaena putanje tema!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Ovo raunalo';
-$strThisNotDirectory = 'Ovo nije bila mapa';
$strThreads = 'Grane';
$strThreadSuccessfullyKilled = 'Grana %s uspjeno je prekinuta.';
$strTimeoutInfo = 'Vrijeme prethodnog uvoza je isteklo. Nakon ponovno podnoenja bit e nastavljeno od poloaja %d.';
@@ -983,8 +968,6 @@ $strWildcard = 'd
$strWindowNotFound = 'Ciljani prozor preglednika nije bilo mogue osvjeiti. Moda ste zatvorili nadreeni prozor ili su postavke sigurnosti vaeg preglednika konfigurirane za blokiranje auriranja preko vie prozora.';
$strWithChecked = 'S odabirom:';
$strWriteRequests = 'Zahtjevi zapisivanja';
-$strWritingCommentNotPossible = 'Zapisivanje komentara nije mogue';
-$strWritingRelationNotPossible = 'Zapisivanje relacija nije mogue';
$strWrongUser = 'Pogreno korisniko ime ili lozinka. Pristup odbijen.';
$strXMLOptions = 'XML opcije';
@@ -997,4 +980,38 @@ $strZip = '"zipano"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/czech-iso-8859-2.inc.php b/lang/czech-iso-8859-2.inc.php
index 1730cce0c..38bc6b534 100644
--- a/lang/czech-iso-8859-2.inc.php
+++ b/lang/czech-iso-8859-2.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%a %d. %b %Y, %H:%M';
$timespanfmt = '%s dn, %s hodin, %s minut a %s sekund';
$strAbortedClients = 'Peruen';
-$strAbsolutePathToDocSqlDir = 'docSQL adres';
$strAccessDeniedCreateConfig = 'Pravdpodobn pina je, e nemte vytvoen konfiguran soubor. Pro jeho vytvoen by se vm mohl hodit %1$snastavovac skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.';
$strAccessDenied = 'Pstup odepen';
@@ -32,8 +31,6 @@ $strAddClause = 'P
$strAddConstraints = 'Pidat integritn omezen';
$strAddDeleteColumn = 'Pidat nebo odebrat sloupec';
$strAddDeleteRow = 'Pidat nebo odebrat dek';
-$strAddedColumnComment = 'Pidn koment ke sloupci';
-$strAddedColumnRelation = 'Pidna relace pro sloupec';
$strAddFields = 'Pidat %s sloupc';
$strAddHeaderComment = 'Pidat vlastn koment do hlaviky (\\n oddluje dky)';
$strAddIntoComments = 'Do koment pidat';
@@ -55,9 +52,11 @@ $strAllowInterrupt = 'Povolit p
$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku';
$strAll = 'Vechno';
$strAlterOrderBy = 'Zmnit poad tabulky podle';
+$strAlwaysShowLinks = 'Vdy zobrazovat spoje';
$strAnalyzeTable = 'Analyzovat tabulku';
$strAnd = 'a';
$strAndThen = 'a pot';
+$strAngularLinks = 'Pravohl spoje';
$strAnIndex = 'K tabulce %s byl pidn index';
$strAnyHost = 'Jakkoliv pota';
$strAny = 'Jakkoliv';
@@ -172,6 +171,8 @@ $strCreateNewDatabase = 'Vytvo
$strCreateNewTable = 'Vytvoit novou tabulku v databzi %s';
$strCreatePage = 'Vytvoit novou strnku';
$strCreatePdfFeat = 'Vytven PDF';
+$strCreateRelation = 'Vytvoit relaci';
+$strCreateTable = 'Vytvoit tabulku';
$strCreateUserDatabase = 'Databze pro uivatele';
$strCreateUserDatabaseName = 'Vytvoit databzi stejnho jmna a pidlit vechna oprvnn';
$strCreateUserDatabaseNone = 'dn';
@@ -205,15 +206,7 @@ $strDataOnly = ' Jen data';
$strDataPages = 'Strnek obshahujcch data';
$strDBComment = 'Koment k databzi: ';
$strDBCopy = 'Zkoprovat databzi na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zsah';
-$strDBGLine = 'dka';
-$strDBGMaxTimeMs = 'Min. as, ms';
-$strDBGMinTimeMs = 'Max. as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zsah, ms';
-$strDBGTotalTimeMs = 'Celkov as, ms';
+$strDbIsEmpty = 'Databze se zd bt przdn!';
$strDbPrivileges = 'Oprvnn pro jednotliv databze';
$strDBRename = 'Pejmenovat databzi na';
$strDbSpecific = 'zvisl na databzi';
@@ -233,14 +226,19 @@ $strDelimiter = 'Odd
$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?';
$strDescending = 'Sestupn';
$strDescription = 'Popis';
+$strDesigner = 'Nvrh';
$strDictionary = 'slovnk';
+$strDirectLinks = 'Pm spoje';
$strDirtyPages = 'Zmnnch strnek';
$strDisabled = 'Vypnuto';
$strDisableForeignChecks = 'Vypnout kontrolu cizch kl';
+$strDisableForFasterScrolling = 'Vypnte pro rychlej posun';
$strDisplayFeat = 'Zobrazen funkc';
$strDisplayOrder = 'Seadit podle:';
$strDisplayPDF = 'Zobrazit jako schma v PDF';
$strDoAQuery = 'Provst „dotaz podle pkladu“ (zstupn znak: „%“)';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'Nastaven pro DocSQL';
$strDocu = 'Dokumentace';
$strDoYouReally = 'Opravdu si pejete vykonat pkaz';
$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!';
@@ -279,6 +277,7 @@ $strExcelOptions = 'Nastaven
$strExecuteBookmarked = 'Spustit oblben dotaz';
$strExplain = 'Vysvtlit dotaz';
$strExport = 'Export';
+$strExportImportToScale = 'Exportovat/Importovat v mtku';
$strExportMustBeFile = 'Zvolen export mus bt uloen do souboru!';
$strExtendedInserts = 'Rozen inserty';
$strExtra = 'Extra';
@@ -334,6 +333,9 @@ $strHasBeenCreated = 'byla vytvo
$strHaveToShow = 'Muste zvolit alespo jeden sloupec, kter chcete zobrazit.';
$strHebrew = 'Hebrejtina';
$strHexForBinary = 'Binrn pole vypisovat estnctkov';
+$strHideShowAll = 'Skrt/Zobrazit ve';
+$strHideShowNoRelation = 'Skrt/Zobrazit tabulky bez relac';
+$strHide = 'Skrt';
$strHome = 'Hlavn strana';
$strHomepageOfficial = 'Oficiln strnka phpMyAdmina';
$strHostEmpty = 'Jmno potae je przdn!';
@@ -350,8 +352,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignorovat duplicitn dky';
$strIgnore = 'Ignorovat';
$strIgnoreInserts = 'Pout IGNORE';
-$strIgnoringFile = 'Ignoruji soubor %s';
-$strImportDocSQL = 'Importovat soubory docSQL';
+$strImportExportCoords = 'Import/Export souadnic pro PDF schma';
$strImportFiles = 'Importovat soubory';
$strImportFormat = 'Formt importovanho souboru';
$strImport = 'Import';
@@ -373,6 +374,7 @@ $strInnoDBDataFilePath = 'Soubor s daty';
$strInnoDBDataHomeDirDesc = 'Spolen st cesty pro vechny soubory obsahujc data InnoDB.';
$strInnoDBDataHomeDir = 'Domovsk adres pro data';
$strInnoDBPages = 'strnek';
+$strInnoDBRelationAdded = 'Vytvoena relace InnoDB';
$strInnodbStat = 'Stav InnoDB';
$strInsecureMySQL = 'Mte standardn nastaven hesla uivatele root v MySQL. Doporuujeme zmnit toto nastaven a tm podstatn zvit bezpenost vaeho serveru.';
$strInsertAsNewRow = 'Vloit jako nov dek';
@@ -380,6 +382,7 @@ $strInsertedRowId = 'Id vlo
$strInsertedRows = 'Vloeno dk:';
$strInsert = 'Vloit';
$strInternalNotNecessary = '* Intern relace nen potebn, pokud ji relace existuje v InnoDB.';
+$strInternalRelationAdded = 'Intern relace vytvoena';
$strInternalRelations = 'Intern relace';
$strInUse = 'prv se pouv';
$strInvalidAuthMethod = 'V konfiguraci mte patnou autentizan metodu:';
@@ -462,6 +465,7 @@ $strMIME_without = 'MIME typy zobrazen
$strModifications = 'Zmny byly uloeny';
$strModifyIndexTopic = 'Upravit index';
$strModify = 'pravy';
+$strMoveMenu = 'Pesun menu';
$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.';
$strMoveTable = 'Pesunout tabulku do (databze.tabulka):';
$strMoveTableSameNames = 'Nelze pesunout tabulku na sebe samu!';
@@ -516,10 +520,12 @@ $strNoThemeSupport = 'Nen
$strNotNumber = 'Nebylo zadno slo!';
$strNotOK = 'nen v podku';
$strNotSet = '%s tabulka nenalezena nebo nen nastavena v %s';
+$strNotThePrimaryKey = 'Toto nen primrn kl!';
$strNoUsersFound = 'dn uivatel nenalezen.';
$strNoValidateSQL = 'Bez kontroly SQL';
$strNull = 'Nulov';
$strNumberOfFields = 'Poet sloupc';
+$strNumberOfTables = 'Poet tabulek';
$strNumSearchResultsInTable = '%s odpovdajc(ch) zznam() v tabulce %s';
$strNumSearchResultsTotal = 'Celkem: %s odpovdajc(ch) zznam()';
$strNumTables = 'Tabulek';
@@ -561,7 +567,7 @@ $strPersian = 'Per
$strPhoneBook = 'adres';
$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
-$strPhp = 'Zobrazit PHP kd';
+$strPhp = 'Vytvoit PHP kd';
$strPmaDocumentation = 'Dokumentace phpMyAdmina';
$strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUS bt nastaven v konfiguranm souboru!';
$strPmaWiki = 'wiki phpMyAdmina';
@@ -635,16 +641,19 @@ $strQueryWindowLock = 'Nep
$strReadRequests = 'Poadavk na zpis';
$strReceived = 'Pijato';
+$strRecommended = 'doporuen';
$strRecords = 'Zznam';
$strReferentialIntegrity = 'Zkontrolovat integritu odkaz:';
$strRefresh = 'Obnovit';
$strRelationalSchema = 'Relan schma';
+$strRelationDeleted = 'Relace smazna';
$strRelationNotWorking = 'Nkter z rozench funkc phpMyAdmina nelze pouvat. %sZde%s zjistte pro.';
$strRelationsForTable = 'RELACE PRO TABULKU';
$strRelations = 'Relace';
$strRelationView = 'Zobrazit relace';
$strReloadingThePrivileges = 'Znovunatm oprvnn';
$strReloadPrivileges = 'Znovunast oprvnn';
+$strReload = 'Znovu nast';
$strRemoveSelectedUsers = 'Odstranit vybran uivatele';
$strRenameDatabaseOK = 'Databze %s byla pejmenovna na %s';
$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s';
@@ -677,6 +686,7 @@ $strRunSQLQuery = 'Spustit SQL dotaz(y) na datab
$strRussian = 'Rutina';
$strSaveOnServer = 'Uloit na serveru v adresi %s';
+$strSavePosition = 'Uloit rozmstn';
$strSave = 'Ulo';
$strScaleFactorSmall = 'Mtko je pli mal, aby se schma velo na jednu strnku';
$strSearchFormTitle = 'Vyhledvn v databzi';
@@ -694,7 +704,9 @@ $strSelectADb = 'Pros
$strSelectAll = 'Vybrat ve';
$strSelectBinaryLog = 'Zvolte binrn log pro zobrazen';
$strSelectFields = 'Zvolte sloupec (alespo jeden):';
+$strSelectForeignKey = 'Zvolte ciz kl';
$strSelectNumRows = 'v dotazu';
+$strSelectReferencedKey = 'Zvolte odkazovan kl';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Do souboru';
$strSent = 'Odeslno';
@@ -716,8 +728,11 @@ $strShowColor = 'Barevn
$strShowDatadictAs = 'Formt datovho slovnku';
$strShowFullQueries = 'Zobrazit cel dotazy';
$strShowGrid = 'Zobrazit mku';
+$strShowHideLeftMenu = 'Zobrazit/Skrt lev menu';
$strShowingBookmark = 'Zobrazuji oblben dotaz';
+$strShowingPhp = 'Zobrazuji jako PHP kd';
$strShowingRecords = 'Zobrazeny zznamy';
+$strShowingSQL = 'Zobrazuji SQL dotaz';
$strShowOpenTables = 'Zobrazit oteven tabulky';
$strShowPHPInfo = 'Zobrazit informace o PHP';
$strShowSlaveHosts = 'Zobrazit podzen servery';
@@ -839,6 +854,7 @@ $strSize = 'Velikost';
$strSkipQueries = 'Poet zznam (dotaz) od zatku, kter se maj peskoit';
$strSlovak = 'Sloventina';
$strSlovenian = 'Slovintina';
+$strSmallBigAll = 'Ve mal/velk';
$strSocketProblem = '(nebo nen spvn nastaven lokln socket MySQL serveru)';
$strSortByKey = 'Setdit podle kle';
$strSorting = 'azen';
@@ -887,7 +903,9 @@ $strTableEmpty = 'Jm
$strTableHasBeenDropped = 'Tabulka %s byla odstranna';
$strTableHasBeenEmptied = 'Tabulka %s byla vyprzdnna';
$strTableHasBeenFlushed = 'Vyrovnvac pam pro tabulku %s byla vyprzdnna';
+$strTableIsEmpty = 'Tabulka se zd bt przdn!';
$strTableMaintenance = ' drba tabulky ';
+$strTableName = 'Jmno tabulky';
$strTableOfContents = 'Obsah';
$strTableOptions = 'Parametry tabulky';
$strTables = '%s tabulek';
@@ -905,14 +923,15 @@ $strThemeNoValidImgPath = 'Nebyla nalezena platn
$strThemePathNotFound = 'Nebyla nalezena platn cesta k vzhledu %s!';
$strTheme = 'Vzhled';
$strThisHost = 'Tento pota';
-$strThisNotDirectory = 'Nebyl zadn adres';
$strThreads = 'Poet vlken';
$strThreadSuccessfullyKilled = 'Vlkno %s bylo spn zabito.';
$strTime = 'as';
$strTimeoutInfo = 'Pedchoz mport vyerpal veker as, po dalm odesln bude import pokraovat od pozize %d.';
$strTimeoutNothingParsed = 'Bohuel bhem poslednho pokusu nebyla dn data natena. Toto obvykle znamen, e phpMyAdmin nebude schopen nast tento soubor, pokud nezvte asov limity v PHP.';
$strTimeoutPassed = 'Limit pro bh importu vyprel, prosm odelete formul znovu se stejnm souborem a import bude pokraovat.';
+$strToFromPage = 'do/ze strnky';
$strToggleScratchboard = 'Zobrazit grafick nvrh';
+$strToSelectRelation = 'Pro vbr relace kliknte :';
$strTotal = 'celkem';
$strTotalUC = 'Celkem';
$strTraditionalChinese = 'Tradin ntina';
@@ -986,8 +1005,6 @@ $strWildcard = 'maska';
$strWindowNotFound = 'Clov okno prohlee nemohlo bt aktualizovno. Mon jste zavel rodiovsk okno, nebo prohle blokuje operace mezi okny z dvodu bezpenostnch nastaven.';
$strWithChecked = 'Zakrtnut:';
$strWriteRequests = 'Poadavk na ten';
-$strWritingCommentNotPossible = 'Nelze zapsat koment';
-$strWritingRelationNotPossible = 'Nelze zapsat relaci';
$strWrongUser = 'patn uivatelsk jmno nebo heslo. Pstup odepen.';
$strXMLOptions = 'Nastaven exportu do XML';
diff --git a/lang/czech-utf-8.inc.php b/lang/czech-utf-8.inc.php
index fe2958144..69ff9a723 100644
--- a/lang/czech-utf-8.inc.php
+++ b/lang/czech-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%a %d. %b %Y, %H:%M';
$timespanfmt = '%s dnů, %s hodin, %s minut a %s sekund';
$strAbortedClients = 'Přerušené';
-$strAbsolutePathToDocSqlDir = 'docSQL adresář';
$strAccessDeniedCreateConfig = 'Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho vytvoření by se vám mohl hodit %1$snastavovací skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin se pokusil připojit k MySQL serveru, a ten odmítl připojení. Zkontrolujte jméno serveru, uživatelské jméno a heslo v souboru config.inc.php a ujistěte se, že jsou totožné s těmi, které máte od administrátora MySQL serveru.';
$strAccessDenied = 'Přístup odepřen';
@@ -33,8 +32,6 @@ $strAddClause = 'Přidat %s';
$strAddConstraints = 'Přidat integritní omezení';
$strAddDeleteColumn = 'Přidat nebo odebrat sloupec';
$strAddDeleteRow = 'Přidat nebo odebrat řádek';
-$strAddedColumnComment = 'Přidán komentář ke sloupci';
-$strAddedColumnRelation = 'Přidána relace pro sloupec';
$strAddFields = 'Přidat %s sloupců';
$strAddHeaderComment = 'Přidat vlastní komentář do hlavičky (\\n odděluje řádky)';
$strAddIntoComments = 'Do komentářů přidat';
@@ -56,9 +53,11 @@ $strAllowInterrupt = 'Povolit přerušení importu v případě že skript
$strAllTableSameWidth = 'Použít pro všechny tabulky stejnou šířku';
$strAll = 'Všechno';
$strAlterOrderBy = 'Změnit pořadí tabulky podle';
+$strAlwaysShowLinks = 'Vždy zobrazovat spoje';
$strAnalyzeTable = 'Analyzovat tabulku';
$strAnd = 'a';
$strAndThen = 'a poté';
+$strAngularLinks = 'Pravoúhlé spoje';
$strAnIndex = 'K tabulce %s byl přidán index';
$strAnyHost = 'Jakýkoliv počítač';
$strAny = 'Jakýkoliv';
@@ -173,6 +172,8 @@ $strCreateNewDatabase = 'Vytvořit novou databázi';
$strCreateNewTable = 'Vytvořit novou tabulku v databázi %s';
$strCreatePage = 'Vytvořit novou stránku';
$strCreatePdfFeat = 'Vytváření PDF';
+$strCreateRelation = 'Vytvořit relaci';
+$strCreateTable = 'Vytvořit tabulku';
$strCreateUserDatabase = 'Databáze pro uživatele';
$strCreateUserDatabaseName = 'Vytvořit databázi stejného jména a přidělit všechna oprávnění';
$strCreateUserDatabaseNone = 'Žádná';
@@ -206,15 +207,7 @@ $strDataOnly = ' Jen data';
$strDataPages = 'Stránek obshahujících data';
$strDBComment = 'Komentář k databázi: ';
$strDBCopy = 'Zkopírovat databázi na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zásahů';
-$strDBGLine = 'Řádka';
-$strDBGMaxTimeMs = 'Min. čas, ms';
-$strDBGMinTimeMs = 'Max. čas, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Čas/Zásah, ms';
-$strDBGTotalTimeMs = 'Celkový čas, ms';
+$strDbIsEmpty = 'Databáze se zdá být prázdná!';
$strDbPrivileges = 'Oprávnění pro jednotlivé databáze';
$strDBRename = 'Přejmenovat databázi na';
$strDbSpecific = 'závislé na databázi';
@@ -234,14 +227,19 @@ $strDelimiter = 'Oddělovač';
$strDelOld = 'Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete odstranit tyto odkazy?';
$strDescending = 'Sestupně';
$strDescription = 'Popis';
+$strDesigner = 'Návrhář';
$strDictionary = 'slovník';
+$strDirectLinks = 'Přímé spoje';
$strDirtyPages = 'Změněných stránek';
$strDisabled = 'Vypnuto';
$strDisableForeignChecks = 'Vypnout kontrolu cizích klíčů';
+$strDisableForFasterScrolling = 'Vypněte pro rychlejší posun';
$strDisplayFeat = 'Zobrazení funkcí';
$strDisplayOrder = 'Seřadit podle:';
$strDisplayPDF = 'Zobrazit jako schéma v PDF';
$strDoAQuery = 'Provést „dotaz podle příkladu“ (zástupný znak: „%“)';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'Nastavení pro DocSQL';
$strDocu = 'Dokumentace';
$strDoYouReally = 'Opravdu si přejete vykonat příkaz';
$strDropDatabaseStrongWarning = 'Chystáte se ZRUŠIT celou databázi!';
@@ -280,6 +278,7 @@ $strExcelOptions = 'Nastavení exportu do Excelu';
$strExecuteBookmarked = 'Spustit oblíbený dotaz';
$strExplain = 'Vysvětlit dotaz';
$strExport = 'Export';
+$strExportImportToScale = 'Exportovat/Importovat v měřítku';
$strExportMustBeFile = 'Zvolený export musí být uložen do souboru!';
$strExtendedInserts = 'Rozšířené inserty';
$strExtra = 'Extra';
@@ -335,6 +334,9 @@ $strHasBeenCreated = 'byla vytvořena.';
$strHaveToShow = 'Musíte zvolit alespoň jeden sloupec, který chcete zobrazit.';
$strHebrew = 'Hebrejština';
$strHexForBinary = 'Binární pole vypisovat šestnáctkově';
+$strHideShowAll = 'Skrýt/Zobrazit vše';
+$strHideShowNoRelation = 'Skrýt/Zobrazit tabulky bez relací';
+$strHide = 'Skrýt';
$strHome = 'Hlavní strana';
$strHomepageOfficial = 'Oficiální stránka phpMyAdmina';
$strHostEmpty = 'Jméno počítače je prázdné!';
@@ -351,8 +353,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignorovat duplicitní řádky';
$strIgnore = 'Ignorovat';
$strIgnoreInserts = 'Použít IGNORE';
-$strIgnoringFile = 'Ignoruji soubor %s';
-$strImportDocSQL = 'Importovat soubory docSQL';
+$strImportExportCoords = 'Import/Export souřadnic pro PDF schéma';
$strImportFiles = 'Importovat soubory';
$strImportFormat = 'Formát importovaného souboru';
$strImport = 'Import';
@@ -374,6 +375,7 @@ $strInnoDBDataFilePath = 'Soubor s daty';
$strInnoDBDataHomeDirDesc = 'Společná část cesty pro všechny soubory obsahující data InnoDB.';
$strInnoDBDataHomeDir = 'Domovský adresář pro data';
$strInnoDBPages = 'stránek';
+$strInnoDBRelationAdded = 'Vytvořena relace InnoDB';
$strInnodbStat = 'Stav InnoDB';
$strInsecureMySQL = 'Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit toto nastavení a tím podstatně zvýšit bezpečnost vašeho serveru.';
$strInsertAsNewRow = 'Vložit jako nový řádek';
@@ -381,6 +383,7 @@ $strInsertedRowId = 'Id vloženého řádku:';
$strInsertedRows = 'Vloženo řádků:';
$strInsert = 'Vložit';
$strInternalNotNecessary = '* Interní relace není potřebná, pokud již relace existuje v InnoDB.';
+$strInternalRelationAdded = 'Interní relace vytvořena';
$strInternalRelations = 'Interní relace';
$strInUse = 'právě se používá';
$strInvalidAuthMethod = 'V konfiguraci máte špatnou autentizační metodu:';
@@ -463,6 +466,7 @@ $strMIME_without = 'MIME typy zobrazené kurzívou nemají vlastní transformač
$strModifications = 'Změny byly uloženy';
$strModifyIndexTopic = 'Upravit index';
$strModify = 'Úpravy';
+$strMoveMenu = 'Přesun menu';
$strMoveTableOK = 'Tabulka %s byla přesunuta do %s.';
$strMoveTable = 'Přesunout tabulku do (databáze.tabulka):';
$strMoveTableSameNames = 'Nelze přesunout tabulku na sebe samu!';
@@ -517,10 +521,12 @@ $strNoThemeSupport = 'Není podporována změna tématu, zkontrolujte nastavení
$strNotNumber = 'Nebylo zadáno číslo!';
$strNotOK = 'není v pořádku';
$strNotSet = '%s tabulka nenalezena nebo není nastavena v %s';
+$strNotThePrimaryKey = 'Toto není primární klíč!';
$strNoUsersFound = 'Žádný uživatel nenalezen.';
$strNoValidateSQL = 'Bez kontroly SQL';
$strNull = 'Nulový';
$strNumberOfFields = 'Počet sloupců';
+$strNumberOfTables = 'Počet tabulek';
$strNumSearchResultsInTable = '%s odpovídající(ch) záznam(ů) v tabulce %s';
$strNumSearchResultsTotal = 'Celkem: %s odpovídající(ch) záznam(ů)';
$strNumTables = 'Tabulek';
@@ -562,7 +568,7 @@ $strPersian = 'Perština';
$strPhoneBook = 'adresář';
$strPHP40203 = 'Používáte PHP 4.2.3, které má závažnou chybu při práci s vícebajtovými znaky (mbstring), jedná se o chybu PHP číslo 19404. Nedoporučujeme používat tuto verzi PHP s phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
-$strPhp = 'Zobrazit PHP kód';
+$strPhp = 'Vytvořit PHP kód';
$strPmaDocumentation = 'Dokumentace phpMyAdmina';
$strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUSÍ být nastaven v konfiguračním souboru!';
$strPmaWiki = 'wiki phpMyAdmina';
@@ -636,16 +642,19 @@ $strQueryWindowLock = 'Nepřepisovat tento dotaz z hlavního okna';
$strReadRequests = 'Požadavků na zápis';
$strReceived = 'Přijato';
+$strRecommended = 'doporučené';
$strRecords = 'Záznamů';
$strReferentialIntegrity = 'Zkontrolovat integritu odkazů:';
$strRefresh = 'Obnovit';
$strRelationalSchema = 'Relační schéma';
+$strRelationDeleted = 'Relace smazána';
$strRelationNotWorking = 'Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte proč.';
$strRelationsForTable = 'RELACE PRO TABULKU';
$strRelations = 'Relace';
$strRelationView = 'Zobrazit relace';
$strReloadingThePrivileges = 'Znovunačítám oprávnění';
$strReloadPrivileges = 'Znovunačíst oprávnění';
+$strReload = 'Znovu načíst';
$strRemoveSelectedUsers = 'Odstranit vybrané uživatele';
$strRenameDatabaseOK = 'Databáze %s byla přejmenována na %s';
$strRenameTableOK = 'Tabulka %s byla přejmenována na %s';
@@ -678,6 +687,7 @@ $strRunSQLQuery = 'Spustit SQL dotaz(y) na databázi %s';
$strRussian = 'Ruština';
$strSaveOnServer = 'Uložit na serveru v adresáři %s';
+$strSavePosition = 'Uložit rozmístění';
$strSave = 'Ulož';
$strScaleFactorSmall = 'Měřítko je příliš malé, aby se schéma vešlo na jednu stránku';
$strSearchFormTitle = 'Vyhledávání v databázi';
@@ -695,7 +705,9 @@ $strSelectADb = 'Prosím vyberte databázi';
$strSelectAll = 'Vybrat vše';
$strSelectBinaryLog = 'Zvolte binární log pro zobrazení';
$strSelectFields = 'Zvolte sloupec (alespoň jeden):';
+$strSelectForeignKey = 'Zvolte cizí klíč';
$strSelectNumRows = 'v dotazu';
+$strSelectReferencedKey = 'Zvolte odkazovaný klíč';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Do souboru';
$strSent = 'Odesláno';
@@ -717,8 +729,11 @@ $strShowColor = 'Barevné šipky';
$strShowDatadictAs = 'Formát datového slovníku';
$strShowFullQueries = 'Zobrazit celé dotazy';
$strShowGrid = 'Zobrazit mřížku';
+$strShowHideLeftMenu = 'Zobrazit/Skrýt levé menu';
$strShowingBookmark = 'Zobrazuji oblíbený dotaz';
+$strShowingPhp = 'Zobrazuji jako PHP kód';
$strShowingRecords = 'Zobrazeny záznamy';
+$strShowingSQL = 'Zobrazuji SQL dotaz';
$strShowOpenTables = 'Zobrazit otevřené tabulky';
$strShowPHPInfo = 'Zobrazit informace o PHP';
$strShowSlaveHosts = 'Zobrazit podřízené servery';
@@ -840,6 +855,7 @@ $strSize = 'Velikost';
$strSkipQueries = 'Počet záznamů (dotazů) od začátku, které se mají přeskočit';
$strSlovak = 'Slovenština';
$strSlovenian = 'Slovinština';
+$strSmallBigAll = 'Vše malé/velké';
$strSocketProblem = '(nebo není spávně nastaven lokální socket MySQL serveru)';
$strSortByKey = 'Setřídit podle klíče';
$strSorting = 'Řazení';
@@ -888,7 +904,9 @@ $strTableEmpty = 'Jméno tabulky je prázdné!';
$strTableHasBeenDropped = 'Tabulka %s byla odstraněna';
$strTableHasBeenEmptied = 'Tabulka %s byla vyprázdněna';
$strTableHasBeenFlushed = 'Vyrovnávací paměť pro tabulku %s byla vyprázdněna';
+$strTableIsEmpty = 'Tabulka se zdá být prázdná!';
$strTableMaintenance = ' Údržba tabulky ';
+$strTableName = 'Jméno tabulky';
$strTableOfContents = 'Obsah';
$strTableOptions = 'Parametry tabulky';
$strTables = '%s tabulek';
@@ -906,14 +924,15 @@ $strThemeNoValidImgPath = 'Nebyla nalezena platná cesta k obrázkům pro vzhled
$strThemePathNotFound = 'Nebyla nalezena platná cesta k vzhledu %s!';
$strTheme = 'Vzhled';
$strThisHost = 'Tento počítač';
-$strThisNotDirectory = 'Nebyl zadán adresář';
$strThreads = 'Počet vláken';
$strThreadSuccessfullyKilled = 'Vlákno %s bylo úspěšně zabito.';
$strTime = 'Čas';
$strTimeoutInfo = 'Předchozí ímport vyčerpal veškerý čas, po dalším odeslání bude import pokračovat od pozize %d.';
$strTimeoutNothingParsed = 'Bohužel během posledního pokusu nebyla žádná data načtena. Toto obvykle znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte časové limity v PHP.';
$strTimeoutPassed = 'Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným souborem a import bude pokračovat.';
+$strToFromPage = 'do/ze stránky';
$strToggleScratchboard = 'Zobrazit grafický návrh';
+$strToSelectRelation = 'Pro výběr relace klikněte :';
$strTotal = 'celkem';
$strTotalUC = 'Celkem';
$strTraditionalChinese = 'Tradiční čínština';
@@ -987,8 +1006,6 @@ $strWildcard = 'maska';
$strWindowNotFound = 'Cílové okno prohlížeče nemohlo být aktualizováno. Možná jste zavřel rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu bezpečnostních nastavení.';
$strWithChecked = 'Zaškrtnuté:';
$strWriteRequests = 'Požadavků na čtení';
-$strWritingCommentNotPossible = 'Nelze zapsat komentář';
-$strWritingRelationNotPossible = 'Nelze zapsat relaci';
$strWrongUser = 'Špatné uživatelské jméno nebo heslo. Přístup odepřen.';
$strXMLOptions = 'Nastavení exportu do XML';
diff --git a/lang/czech-windows-1250.inc.php b/lang/czech-windows-1250.inc.php
index 21889bbf9..949cc1196 100644
--- a/lang/czech-windows-1250.inc.php
+++ b/lang/czech-windows-1250.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%a %d. %b %Y, %H:%M';
$timespanfmt = '%s dn, %s hodin, %s minut a %s sekund';
$strAbortedClients = 'Peruen';
-$strAbsolutePathToDocSqlDir = 'docSQL adres';
$strAccessDeniedCreateConfig = 'Pravdpodobn pina je, e nemte vytvoen konfiguran soubor. Pro jeho vytvoen by se vm mohl hodit %1$snastavovac skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.';
$strAccessDenied = 'Pstup odepen';
@@ -32,8 +31,6 @@ $strAddClause = 'P
$strAddConstraints = 'Pidat integritn omezen';
$strAddDeleteColumn = 'Pidat nebo odebrat sloupec';
$strAddDeleteRow = 'Pidat nebo odebrat dek';
-$strAddedColumnComment = 'Pidn koment ke sloupci';
-$strAddedColumnRelation = 'Pidna relace pro sloupec';
$strAddFields = 'Pidat %s sloupc';
$strAddHeaderComment = 'Pidat vlastn koment do hlaviky (\\n oddluje dky)';
$strAddIntoComments = 'Do koment pidat';
@@ -55,9 +52,11 @@ $strAllowInterrupt = 'Povolit p
$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku';
$strAll = 'Vechno';
$strAlterOrderBy = 'Zmnit poad tabulky podle';
+$strAlwaysShowLinks = 'Vdy zobrazovat spoje';
$strAnalyzeTable = 'Analyzovat tabulku';
$strAnd = 'a';
$strAndThen = 'a pot';
+$strAngularLinks = 'Pravohl spoje';
$strAnIndex = 'K tabulce %s byl pidn index';
$strAnyHost = 'Jakkoliv pota';
$strAny = 'Jakkoliv';
@@ -172,6 +171,8 @@ $strCreateNewDatabase = 'Vytvo
$strCreateNewTable = 'Vytvoit novou tabulku v databzi %s';
$strCreatePage = 'Vytvoit novou strnku';
$strCreatePdfFeat = 'Vytven PDF';
+$strCreateRelation = 'Vytvoit relaci';
+$strCreateTable = 'Vytvoit tabulku';
$strCreateUserDatabase = 'Databze pro uivatele';
$strCreateUserDatabaseName = 'Vytvoit databzi stejnho jmna a pidlit vechna oprvnn';
$strCreateUserDatabaseNone = 'dn';
@@ -205,15 +206,7 @@ $strDataOnly = ' Jen data';
$strDataPages = 'Strnek obshahujcch data';
$strDBComment = 'Koment k databzi: ';
$strDBCopy = 'Zkoprovat databzi na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zsah';
-$strDBGLine = 'dka';
-$strDBGMaxTimeMs = 'Min. as, ms';
-$strDBGMinTimeMs = 'Max. as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zsah, ms';
-$strDBGTotalTimeMs = 'Celkov as, ms';
+$strDbIsEmpty = 'Databze se zd bt przdn!';
$strDbPrivileges = 'Oprvnn pro jednotliv databze';
$strDBRename = 'Pejmenovat databzi na';
$strDbSpecific = 'zvisl na databzi';
@@ -233,14 +226,19 @@ $strDelimiter = 'Odd
$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?';
$strDescending = 'Sestupn';
$strDescription = 'Popis';
+$strDesigner = 'Nvrh';
$strDictionary = 'slovnk';
+$strDirectLinks = 'Pm spoje';
$strDirtyPages = 'Zmnnch strnek';
$strDisabled = 'Vypnuto';
$strDisableForeignChecks = 'Vypnout kontrolu cizch kl';
+$strDisableForFasterScrolling = 'Vypnte pro rychlej posun';
$strDisplayFeat = 'Zobrazen funkc';
$strDisplayOrder = 'Seadit podle:';
$strDisplayPDF = 'Zobrazit jako schma v PDF';
$strDoAQuery = 'Provst „dotaz podle pkladu“ (zstupn znak: „%“)';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'Nastaven pro DocSQL';
$strDocu = 'Dokumentace';
$strDoYouReally = 'Opravdu si pejete vykonat pkaz';
$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!';
@@ -279,6 +277,7 @@ $strExcelOptions = 'Nastaven
$strExecuteBookmarked = 'Spustit oblben dotaz';
$strExplain = 'Vysvtlit dotaz';
$strExport = 'Export';
+$strExportImportToScale = 'Exportovat/Importovat v mtku';
$strExportMustBeFile = 'Zvolen export mus bt uloen do souboru!';
$strExtendedInserts = 'Rozen inserty';
$strExtra = 'Extra';
@@ -334,6 +333,9 @@ $strHasBeenCreated = 'byla vytvo
$strHaveToShow = 'Muste zvolit alespo jeden sloupec, kter chcete zobrazit.';
$strHebrew = 'Hebrejtina';
$strHexForBinary = 'Binrn pole vypisovat estnctkov';
+$strHideShowAll = 'Skrt/Zobrazit ve';
+$strHideShowNoRelation = 'Skrt/Zobrazit tabulky bez relac';
+$strHide = 'Skrt';
$strHome = 'Hlavn strana';
$strHomepageOfficial = 'Oficiln strnka phpMyAdmina';
$strHostEmpty = 'Jmno potae je przdn!';
@@ -350,8 +352,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignorovat duplicitn dky';
$strIgnore = 'Ignorovat';
$strIgnoreInserts = 'Pout IGNORE';
-$strIgnoringFile = 'Ignoruji soubor %s';
-$strImportDocSQL = 'Importovat soubory docSQL';
+$strImportExportCoords = 'Import/Export souadnic pro PDF schma';
$strImportFiles = 'Importovat soubory';
$strImportFormat = 'Formt importovanho souboru';
$strImport = 'Import';
@@ -373,6 +374,7 @@ $strInnoDBDataFilePath = 'Soubor s daty';
$strInnoDBDataHomeDirDesc = 'Spolen st cesty pro vechny soubory obsahujc data InnoDB.';
$strInnoDBDataHomeDir = 'Domovsk adres pro data';
$strInnoDBPages = 'strnek';
+$strInnoDBRelationAdded = 'Vytvoena relace InnoDB';
$strInnodbStat = 'Stav InnoDB';
$strInsecureMySQL = 'Mte standardn nastaven hesla uivatele root v MySQL. Doporuujeme zmnit toto nastaven a tm podstatn zvit bezpenost vaeho serveru.';
$strInsertAsNewRow = 'Vloit jako nov dek';
@@ -380,6 +382,7 @@ $strInsertedRowId = 'Id vlo
$strInsertedRows = 'Vloeno dk:';
$strInsert = 'Vloit';
$strInternalNotNecessary = '* Intern relace nen potebn, pokud ji relace existuje v InnoDB.';
+$strInternalRelationAdded = 'Intern relace vytvoena';
$strInternalRelations = 'Intern relace';
$strInUse = 'prv se pouv';
$strInvalidAuthMethod = 'V konfiguraci mte patnou autentizan metodu:';
@@ -462,6 +465,7 @@ $strMIME_without = 'MIME typy zobrazen
$strModifications = 'Zmny byly uloeny';
$strModifyIndexTopic = 'Upravit index';
$strModify = 'pravy';
+$strMoveMenu = 'Pesun menu';
$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.';
$strMoveTable = 'Pesunout tabulku do (databze.tabulka):';
$strMoveTableSameNames = 'Nelze pesunout tabulku na sebe samu!';
@@ -516,10 +520,12 @@ $strNoThemeSupport = 'Nen
$strNotNumber = 'Nebylo zadno slo!';
$strNotOK = 'nen v podku';
$strNotSet = '%s tabulka nenalezena nebo nen nastavena v %s';
+$strNotThePrimaryKey = 'Toto nen primrn kl!';
$strNoUsersFound = 'dn uivatel nenalezen.';
$strNoValidateSQL = 'Bez kontroly SQL';
$strNull = 'Nulov';
$strNumberOfFields = 'Poet sloupc';
+$strNumberOfTables = 'Poet tabulek';
$strNumSearchResultsInTable = '%s odpovdajc(ch) zznam() v tabulce %s';
$strNumSearchResultsTotal = 'Celkem: %s odpovdajc(ch) zznam()';
$strNumTables = 'Tabulek';
@@ -561,7 +567,7 @@ $strPersian = 'Per
$strPhoneBook = 'adres';
$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.';
$strPHPVersion = 'Verze PHP';
-$strPhp = 'Zobrazit PHP kd';
+$strPhp = 'Vytvoit PHP kd';
$strPmaDocumentation = 'Dokumentace phpMyAdmina';
$strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUS bt nastaven v konfiguranm souboru!';
$strPmaWiki = 'wiki phpMyAdmina';
@@ -635,16 +641,19 @@ $strQueryWindowLock = 'Nep
$strReadRequests = 'Poadavk na zpis';
$strReceived = 'Pijato';
+$strRecommended = 'doporuen';
$strRecords = 'Zznam';
$strReferentialIntegrity = 'Zkontrolovat integritu odkaz:';
$strRefresh = 'Obnovit';
$strRelationalSchema = 'Relan schma';
+$strRelationDeleted = 'Relace smazna';
$strRelationNotWorking = 'Nkter z rozench funkc phpMyAdmina nelze pouvat. %sZde%s zjistte pro.';
$strRelationsForTable = 'RELACE PRO TABULKU';
$strRelations = 'Relace';
$strRelationView = 'Zobrazit relace';
$strReloadingThePrivileges = 'Znovunatm oprvnn';
$strReloadPrivileges = 'Znovunast oprvnn';
+$strReload = 'Znovu nast';
$strRemoveSelectedUsers = 'Odstranit vybran uivatele';
$strRenameDatabaseOK = 'Databze %s byla pejmenovna na %s';
$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s';
@@ -677,6 +686,7 @@ $strRunSQLQuery = 'Spustit SQL dotaz(y) na datab
$strRussian = 'Rutina';
$strSaveOnServer = 'Uloit na serveru v adresi %s';
+$strSavePosition = 'Uloit rozmstn';
$strSave = 'Ulo';
$strScaleFactorSmall = 'Mtko je pli mal, aby se schma velo na jednu strnku';
$strSearchFormTitle = 'Vyhledvn v databzi';
@@ -694,7 +704,9 @@ $strSelectADb = 'Pros
$strSelectAll = 'Vybrat ve';
$strSelectBinaryLog = 'Zvolte binrn log pro zobrazen';
$strSelectFields = 'Zvolte sloupec (alespo jeden):';
+$strSelectForeignKey = 'Zvolte ciz kl';
$strSelectNumRows = 'v dotazu';
+$strSelectReferencedKey = 'Zvolte odkazovan kl';
$strSelectTables = 'Vybrat tabulky';
$strSend = 'Do souboru';
$strSent = 'Odeslno';
@@ -716,8 +728,11 @@ $strShowColor = 'Barevn
$strShowDatadictAs = 'Formt datovho slovnku';
$strShowFullQueries = 'Zobrazit cel dotazy';
$strShowGrid = 'Zobrazit mku';
+$strShowHideLeftMenu = 'Zobrazit/Skrt lev menu';
$strShowingBookmark = 'Zobrazuji oblben dotaz';
+$strShowingPhp = 'Zobrazuji jako PHP kd';
$strShowingRecords = 'Zobrazeny zznamy';
+$strShowingSQL = 'Zobrazuji SQL dotaz';
$strShowOpenTables = 'Zobrazit oteven tabulky';
$strShowPHPInfo = 'Zobrazit informace o PHP';
$strShowSlaveHosts = 'Zobrazit podzen servery';
@@ -839,6 +854,7 @@ $strSize = 'Velikost';
$strSkipQueries = 'Poet zznam (dotaz) od zatku, kter se maj peskoit';
$strSlovak = 'Sloventina';
$strSlovenian = 'Slovintina';
+$strSmallBigAll = 'Ve mal/velk';
$strSocketProblem = '(nebo nen spvn nastaven lokln socket MySQL serveru)';
$strSortByKey = 'Setdit podle kle';
$strSorting = 'azen';
@@ -887,7 +903,9 @@ $strTableEmpty = 'Jm
$strTableHasBeenDropped = 'Tabulka %s byla odstranna';
$strTableHasBeenEmptied = 'Tabulka %s byla vyprzdnna';
$strTableHasBeenFlushed = 'Vyrovnvac pam pro tabulku %s byla vyprzdnna';
+$strTableIsEmpty = 'Tabulka se zd bt przdn!';
$strTableMaintenance = ' drba tabulky ';
+$strTableName = 'Jmno tabulky';
$strTableOfContents = 'Obsah';
$strTableOptions = 'Parametry tabulky';
$strTables = '%s tabulek';
@@ -905,14 +923,15 @@ $strThemeNoValidImgPath = 'Nebyla nalezena platn
$strThemePathNotFound = 'Nebyla nalezena platn cesta k vzhledu %s!';
$strTheme = 'Vzhled';
$strThisHost = 'Tento pota';
-$strThisNotDirectory = 'Nebyl zadn adres';
$strThreads = 'Poet vlken';
$strThreadSuccessfullyKilled = 'Vlkno %s bylo spn zabito.';
$strTime = 'as';
$strTimeoutInfo = 'Pedchoz mport vyerpal veker as, po dalm odesln bude import pokraovat od pozize %d.';
$strTimeoutNothingParsed = 'Bohuel bhem poslednho pokusu nebyla dn data natena. Toto obvykle znamen, e phpMyAdmin nebude schopen nast tento soubor, pokud nezvte asov limity v PHP.';
$strTimeoutPassed = 'Limit pro bh importu vyprel, prosm odelete formul znovu se stejnm souborem a import bude pokraovat.';
+$strToFromPage = 'do/ze strnky';
$strToggleScratchboard = 'Zobrazit grafick nvrh';
+$strToSelectRelation = 'Pro vbr relace kliknte :';
$strTotal = 'celkem';
$strTotalUC = 'Celkem';
$strTraditionalChinese = 'Tradin ntina';
@@ -986,8 +1005,6 @@ $strWildcard = 'maska';
$strWindowNotFound = 'Clov okno prohlee nemohlo bt aktualizovno. Mon jste zavel rodiovsk okno, nebo prohle blokuje operace mezi okny z dvodu bezpenostnch nastaven.';
$strWithChecked = 'Zakrtnut:';
$strWriteRequests = 'Poadavk na ten';
-$strWritingCommentNotPossible = 'Nelze zapsat koment';
-$strWritingRelationNotPossible = 'Nelze zapsat relaci';
$strWrongUser = 'patn uivatelsk jmno nebo heslo. Pstup odepen.';
$strXMLOptions = 'Nastaven exportu do XML';
diff --git a/lang/danish-iso-8859-1.inc.php b/lang/danish-iso-8859-1.inc.php
index 23e241ea7..b4aede544 100644
--- a/lang/danish-iso-8859-1.inc.php
+++ b/lang/danish-iso-8859-1.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d/%m %Y kl. %H:%M:%S';
$timespanfmt = '%s dage, %s timer, %s minutter og %s sekunder';
$strAbortedClients = 'Afbrudt';
-$strAbsolutePathToDocSqlDir = 'Indtast venligst absolut sti p webserveren til docSQL mappen';
$strAccessDenied = 'Adgang Ngtet';
$strAccessDeniedCreateConfig = 'Sandsynlig rsag til dette er at du ikke har oprettet en konfigurationsfil. Du kan bruge %1$sopstningsscriptet%2$s til at oprette en.';
$strAccessDeniedExplanation = 'phpMyAdmin forsgte at forbinde til MySQL-serveren, og serveren afviste forbindelsen. Du br tjekke host, brugernavn og kodeord i config.inc.php og sikre dig at de svarer til den information du har fet af administratoren af MySQL-serveren.';
@@ -32,8 +31,6 @@ $strAddClause = 'Tilf
$strAddConstraints = 'Tilfj begrnsninger';
$strAddDeleteColumn = 'Tilfj/Slet felt-kolonne';
$strAddDeleteRow = 'Tilfj/Slet kriterie-rkke';
-$strAddedColumnComment = 'Tilfjet kommentar til kolonne';
-$strAddedColumnRelation = 'Tilfjet relation til kolonne';
$strAddFields = 'Tilfj %s felt(er)';
$strAddHeaderComment = 'Tilfj tilpassede kommentarer i headeren (\\n deler linjer)';
$strAddIntoComments = 'Tilfj til kommentarer';
@@ -205,15 +202,6 @@ $strDataOnly = 'Kun data';
$strDataPages = 'Sider der indeholder data';
$strDBComment = 'Databasekommentar: ';
$strDBCopy = 'Kopir database til';
-$strDBGContextID = 'Sammenhng-ID';
-$strDBGContext = 'Sammenhng';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linje';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/Hit, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Database-specifikke privilegier';
$strDBRename = 'Omdb database til';
$strDbSpecific = 'database-specifik';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Fuldtekst';
$strIgnoreDuplicates = 'Ignorr gentagne rkker';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Brug ignorr inserts';
-$strIgnoringFile = 'Ignorerer fil %s';
-$strImportDocSQL = 'Importer docSQL Filer';
$strImportFiles = 'Importr filer';
$strImportFormat = 'Format p importeret fil';
$strImport = 'Import';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Ingen gyldig billedsti for tema %s fundet!';
$strThemePathNotFound = 'Sti til tema ikke fundet for tema %s!';
$strTheme = 'Tema / Layout';
$strThisHost = 'Denne Host';
-$strThisNotDirectory = 'Dette var ikke en mappe';
$strThreads = 'Trde';
$strThreadSuccessfullyKilled = 'Trd %s blev stoppet.';
$strTimeoutInfo = 'Foregende import timede ud, efter genindsendelse vil fortstte fra position %d.';
@@ -984,8 +969,6 @@ $strWildcard = 'jokertegn';
$strWindowNotFound = 'Det angivne browservindue kunne ikke opdateres. Mske har du lukket det overliggende vindue eller din browser blokerer for tvr-vindue opdateringer i sikkerhedsindstillingerne';
$strWithChecked = 'Med det markerede:';
$strWriteRequests = 'Write-anmodninger';
-$strWritingCommentNotPossible = 'Skrivning af kommentar ikke muligt';
-$strWritingRelationNotPossible = 'Skrivning af relation ikke muligt';
$strWrongUser = 'Forkert brugernavn/kodeord. Adgang ngtet.';
$strXMLOptions = 'XML-indstillinger';
@@ -998,4 +981,38 @@ $strZip = '"zippet"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php
index aab9cecb5..6434528ed 100644
--- a/lang/danish-utf-8.inc.php
+++ b/lang/danish-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d/%m %Y kl. %H:%M:%S';
$timespanfmt = '%s dage, %s timer, %s minutter og %s sekunder';
$strAbortedClients = 'Afbrudt';
-$strAbsolutePathToDocSqlDir = 'Indtast venligst absolut sti på webserveren til docSQL mappen';
$strAccessDenied = 'Adgang Nægtet';
$strAccessDeniedCreateConfig = 'Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en.';
$strAccessDeniedExplanation = 'phpMyAdmin forsøgte at forbinde til MySQL-serveren, og serveren afviste forbindelsen. Du bør tjekke host, brugernavn og kodeord i config.inc.php og sikre dig at de svarer til den information du har fået af administratoren af MySQL-serveren.';
@@ -33,8 +32,6 @@ $strAddClause = 'Tilføj %s';
$strAddConstraints = 'Tilføj begrænsninger';
$strAddDeleteColumn = 'Tilføj/Slet felt-kolonne';
$strAddDeleteRow = 'Tilføj/Slet kriterie-række';
-$strAddedColumnComment = 'Tilføjet kommentar til kolonne';
-$strAddedColumnRelation = 'Tilføjet relation til kolonne';
$strAddFields = 'Tilføj %s felt(er)';
$strAddHeaderComment = 'Tilføj tilpassede kommentarer i headeren (\\n deler linjer)';
$strAddIntoComments = 'Tilføj til kommentarer';
@@ -206,15 +203,6 @@ $strDataOnly = 'Kun data';
$strDataPages = 'Sider der indeholder data';
$strDBComment = 'Databasekommentar: ';
$strDBCopy = 'Kopiér database til';
-$strDBGContextID = 'Sammenhæng-ID';
-$strDBGContext = 'Sammenhæng';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linje';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/Hit, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Database-specifikke privilegier';
$strDBRename = 'Omdøb database til';
$strDbSpecific = 'database-specifik';
@@ -351,8 +339,6 @@ $strIdxFulltext = 'Fuldtekst';
$strIgnoreDuplicates = 'Ignorér gentagne rækker';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Brug ignorér inserts';
-$strIgnoringFile = 'Ignorerer fil %s';
-$strImportDocSQL = 'Importer docSQL Filer';
$strImportFiles = 'Importér filer';
$strImportFormat = 'Format på importeret fil';
$strImport = 'Import';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = 'Ingen gyldig billedsti for tema %s fundet!';
$strThemePathNotFound = 'Sti til tema ikke fundet for tema %s!';
$strTheme = 'Tema / Layout';
$strThisHost = 'Denne Host';
-$strThisNotDirectory = 'Dette var ikke en mappe';
$strThreads = 'Tråde';
$strThreadSuccessfullyKilled = 'Tråd %s blev stoppet.';
$strTimeoutInfo = 'Foregående import timede ud, efter genindsendelse vil fortsætte fra position %d.';
@@ -985,8 +970,6 @@ $strWildcard = 'jokertegn';
$strWindowNotFound = 'Det angivne browservindue kunne ikke opdateres. Måske har du lukket det overliggende vindue eller din browser blokerer for tvær-vindue opdateringer i sikkerhedsindstillingerne';
$strWithChecked = 'Med det markerede:';
$strWriteRequests = 'Write-anmodninger';
-$strWritingCommentNotPossible = 'Skrivning af kommentar ikke muligt';
-$strWritingRelationNotPossible = 'Skrivning af relation ikke muligt';
$strWrongUser = 'Forkert brugernavn/kodeord. Adgang nægtet.';
$strXMLOptions = 'XML-indstillinger';
@@ -999,4 +982,38 @@ $strZip = '"zippet"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/dutch-iso-8859-1.inc.php b/lang/dutch-iso-8859-1.inc.php
index 96c714509..c4347bed1 100644
--- a/lang/dutch-iso-8859-1.inc.php
+++ b/lang/dutch-iso-8859-1.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d %B %Y om %H:%M';
$timespanfmt = '%s dagen, %s uren, %s minuten en %s seconden';
$strAbortedClients = 'Afgehaakte';
-$strAbsolutePathToDocSqlDir = 'Geef een absoluut pad op de webserver aan naar de docSQL directory';
$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.';
$strAccessDenied = 'Toegang geweigerd ';
$strAction = 'Actie';
@@ -28,8 +27,6 @@ $strAddAutoIncrement = 'Voeg AUTO_INCREMENT waarde toe';
$strAddConstraints = 'Voeg beperkingen toe';
$strAddDeleteColumn = 'Toevoegen/Verwijderen Veld Kolommen';
$strAddDeleteRow = 'Toevoegen/Verwijderen Criteria Rij';
-$strAddedColumnComment = 'Voeg commentaar toe aan de kolom';
-$strAddedColumnRelation = 'Voeg een relatie toe aan de kolom';
$strAddFields = 'Voeg %s veld(en) toe';
$strAddHeaderComment = 'Voeg een commentaar toe in de header (\\n om regels af te breken';
$strAddIntoComments = 'Voeg toe in commentaar';
@@ -175,15 +172,6 @@ $strDataDict = 'Data Woordenboek';
$strDataOnly = 'Alleen data';
$strDBComment = 'Database commentaar: ';
$strDBCopy = 'Kopieer database naar';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Regel';
-$strDBGMaxTimeMs = 'Max tijd, ms';
-$strDBGMinTimeMs = 'Min tijd, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Tijd/Hit, ms';
-$strDBGTotalTimeMs = 'Totaal tijd, ms';
$strDbPrivileges = 'Database-specifieke privileges';
$strDBRename = 'Hernoem database naar';
$strDbSpecific = 'database-specifiek';
@@ -290,8 +278,6 @@ $strId = 'ID';
$strIdxFulltext = 'Volledige tekst';
$strIgnoreInserts = 'Gebruik ignore inserts';
$strIgnore = 'Negeer';
-$strIgnoringFile = 'Negeer bestand %s';
-$strImportDocSQL = 'Importeer docSQL Bestanden';
$strImportFiles = 'Importeren bestanden';
$strIndexes = 'Indexen';
$strIndexHasBeenDropped = 'Index %s is vervallen';
@@ -346,7 +332,7 @@ $strLogin = 'Inloggen';
$strLogout = 'Uitloggen';
$strLogPassword = 'Wachtwoord:';
$strLogServer = 'Server';
-$strLogUsername = 'Gebruikers naam:';
+$strLogUsername = 'Gebruikersnaam:';
$strMaximumSize = 'Maximale grootte: %s%s';
$strMbExtensionMissing = 'De mbstring PHP extensie werd niet gevonden en u lijkt een multibyte charset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings niet correct splitsen wat tot onverwachte resultaten kan leiden.';
@@ -635,7 +621,6 @@ $strTextAreaLength = ' Vanwege z\'n lengte,
is dit veld misschien niet te
$strThai = 'Thais';
$strTheme = 'Thema / Stijl';
$strThisHost = 'Deze Host';
-$strThisNotDirectory = 'Dit was geen directory';
$strThreadSuccessfullyKilled = 'Thread %s is met succes afgesloten.';
$strTime = 'Tijd';
$strToggleScratchboard = 'toggle scratchboard';
@@ -699,8 +684,6 @@ $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';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/dutch-iso-8859-15.inc.php b/lang/dutch-iso-8859-15.inc.php
index 6834129e4..7fe8b4d53 100644
--- a/lang/dutch-iso-8859-15.inc.php
+++ b/lang/dutch-iso-8859-15.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d %B %Y om %H:%M';
$timespanfmt = '%s dagen, %s uren, %s minuten en %s seconden';
$strAbortedClients = 'Afgehaakte';
-$strAbsolutePathToDocSqlDir = 'Geef een absoluut pad op de webserver aan naar de docSQL directory';
$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.';
$strAccessDenied = 'Toegang geweigerd ';
$strAction = 'Actie';
@@ -28,8 +27,6 @@ $strAddAutoIncrement = 'Voeg AUTO_INCREMENT waarde toe';
$strAddConstraints = 'Voeg beperkingen toe';
$strAddDeleteColumn = 'Toevoegen/Verwijderen Veld Kolommen';
$strAddDeleteRow = 'Toevoegen/Verwijderen Criteria Rij';
-$strAddedColumnComment = 'Voeg commentaar toe aan de kolom';
-$strAddedColumnRelation = 'Voeg een relatie toe aan de kolom';
$strAddFields = 'Voeg %s veld(en) toe';
$strAddHeaderComment = 'Voeg een commentaar toe in de header (\\n om regels af te breken';
$strAddIntoComments = 'Voeg toe in commentaar';
@@ -175,15 +172,6 @@ $strDataDict = 'Data Woordenboek';
$strDataOnly = 'Alleen data';
$strDBComment = 'Database commentaar: ';
$strDBCopy = 'Kopieer database naar';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Regel';
-$strDBGMaxTimeMs = 'Max tijd, ms';
-$strDBGMinTimeMs = 'Min tijd, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Tijd/Hit, ms';
-$strDBGTotalTimeMs = 'Totaal tijd, ms';
$strDbPrivileges = 'Database-specifieke privileges';
$strDBRename = 'Hernoem database naar';
$strDbSpecific = 'database-specifiek';
@@ -290,8 +278,6 @@ $strId = 'ID';
$strIdxFulltext = 'Volledige tekst';
$strIgnoreInserts = 'Gebruik ignore inserts';
$strIgnore = 'Negeer';
-$strIgnoringFile = 'Negeer bestand %s';
-$strImportDocSQL = 'Importeer docSQL Bestanden';
$strImportFiles = 'Importeren bestanden';
$strIndexes = 'Indexen';
$strIndexHasBeenDropped = 'Index %s is vervallen';
@@ -346,7 +332,7 @@ $strLogin = 'Inloggen';
$strLogout = 'Uitloggen';
$strLogPassword = 'Wachtwoord:';
$strLogServer = 'Server';
-$strLogUsername = 'Gebruikers naam:';
+$strLogUsername = 'Gebruikersnaam:';
$strMaximumSize = 'Maximale grootte: %s%s';
$strMbExtensionMissing = 'De mbstring PHP extensie werd niet gevonden en u lijkt een multibyte charset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings niet correct splitsen wat tot onverwachte resultaten kan leiden.';
@@ -635,7 +621,6 @@ $strTextAreaLength = ' Vanwege z\'n lengte,
is dit veld misschien niet te
$strThai = 'Thais';
$strTheme = 'Thema / Stijl';
$strThisHost = 'Deze Host';
-$strThisNotDirectory = 'Dit was geen directory';
$strThreadSuccessfullyKilled = 'Thread %s is met succes afgesloten.';
$strTime = 'Tijd';
$strToggleScratchboard = 'toggle scratchboard';
@@ -699,8 +684,6 @@ $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';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php
index da5a3d26e..9e2a06359 100644
--- a/lang/dutch-utf-8.inc.php
+++ b/lang/dutch-utf-8.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d %B %Y om %H:%M';
$timespanfmt = '%s dagen, %s uren, %s minuten en %s seconden';
$strAbortedClients = 'Afgehaakte';
-$strAbsolutePathToDocSqlDir = 'Geef een absoluut pad op de webserver aan naar de docSQL directory';
$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.';
$strAccessDenied = 'Toegang geweigerd ';
$strAction = 'Actie';
@@ -29,8 +28,6 @@ $strAddAutoIncrement = 'Voeg AUTO_INCREMENT waarde toe';
$strAddConstraints = 'Voeg beperkingen toe';
$strAddDeleteColumn = 'Toevoegen/Verwijderen Veld Kolommen';
$strAddDeleteRow = 'Toevoegen/Verwijderen Criteria Rij';
-$strAddedColumnComment = 'Voeg commentaar toe aan de kolom';
-$strAddedColumnRelation = 'Voeg een relatie toe aan de kolom';
$strAddFields = 'Voeg %s veld(en) toe';
$strAddHeaderComment = 'Voeg een commentaar toe in de header (\\n om regels af te breken';
$strAddIntoComments = 'Voeg toe in commentaar';
@@ -176,15 +173,6 @@ $strDataDict = 'Data Woordenboek';
$strDataOnly = 'Alleen data';
$strDBComment = 'Database commentaar: ';
$strDBCopy = 'Kopieer database naar';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Regel';
-$strDBGMaxTimeMs = 'Max tijd, ms';
-$strDBGMinTimeMs = 'Min tijd, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Tijd/Hit, ms';
-$strDBGTotalTimeMs = 'Totaal tijd, ms';
$strDbPrivileges = 'Database-specifieke privileges';
$strDBRename = 'Hernoem database naar';
$strDbSpecific = 'database-specifiek';
@@ -291,8 +279,6 @@ $strId = 'ID';
$strIdxFulltext = 'Volledige tekst';
$strIgnoreInserts = 'Gebruik ignore inserts';
$strIgnore = 'Negeer';
-$strIgnoringFile = 'Negeer bestand %s';
-$strImportDocSQL = 'Importeer docSQL Bestanden';
$strImportFiles = 'Importeren bestanden';
$strIndexes = 'Indexen';
$strIndexHasBeenDropped = 'Index %s is vervallen';
@@ -347,7 +333,7 @@ $strLogin = 'Inloggen';
$strLogout = 'Uitloggen';
$strLogPassword = 'Wachtwoord:';
$strLogServer = 'Server';
-$strLogUsername = 'Gebruikers naam:';
+$strLogUsername = 'Gebruikersnaam:';
$strMaximumSize = 'Maximale grootte: %s%s';
$strMbExtensionMissing = 'De mbstring PHP extensie werd niet gevonden en u lijkt een multibyte charset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings niet correct splitsen wat tot onverwachte resultaten kan leiden.';
@@ -636,7 +622,6 @@ $strTextAreaLength = ' Vanwege z\'n lengte,
is dit veld misschien niet te
$strThai = 'Thais';
$strTheme = 'Thema / Stijl';
$strThisHost = 'Deze Host';
-$strThisNotDirectory = 'Dit was geen directory';
$strThreadSuccessfullyKilled = 'Thread %s is met succes afgesloten.';
$strTime = 'Tijd';
$strToggleScratchboard = 'toggle scratchboard';
@@ -700,8 +685,6 @@ $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';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/english-iso-8859-1.inc.php b/lang/english-iso-8859-1.inc.php
index 2733d1651..5e208e018 100644
--- a/lang/english-iso-8859-1.inc.php
+++ b/lang/english-iso-8859-1.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds';
$strAbortedClients = 'Aborted';
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on the web server to the docSQL directory';
$strAccessDenied = 'Access denied';
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.';
$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.';
@@ -32,8 +31,6 @@ $strAddClause = 'Add %s';
$strAddConstraints = 'Add constraints';
$strAddDeleteColumn = 'Add/Delete Field Columns';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'Added comment for column';
-$strAddedColumnRelation = 'Added relation for column';
$strAddFields = 'Add %s field(s)';
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)';
$strAddIntoComments = 'Add into comments';
@@ -55,9 +52,11 @@ $strAll = 'All';
$strAllowInterrupt = 'Allow interrupt of import in case script detects it is close to time limit. This might be good way to import large files, however it can break transactions.';
$strAllTableSameWidth = 'display all tables with same width?';
$strAlterOrderBy = 'Alter table order by';
+$strAlwaysShowLinks = 'Always show links';
$strAnalyzeTable = 'Analyze table';
$strAnd = 'And';
$strAndThen = 'and then';
+$strAngularLinks = 'Angular links';
$strAnIndex = 'An index has been added on %s';
$strAny = 'Any';
$strAnyHost = 'Any host';
@@ -173,6 +172,8 @@ $strCreateNewDatabase = 'Create new database';
$strCreateNewTable = 'Create new table on database %s';
$strCreatePage = 'Create a new page';
$strCreatePdfFeat = 'Creation of PDFs';
+$strCreateRelation = 'Create relation';
+$strCreateTable = 'Create table';
$strCreateUserDatabase = 'Database for user';
$strCreateUserDatabaseName = 'Create database with same name and grant all privileges';
$strCreateUserDatabaseNone = 'None';
@@ -205,15 +206,7 @@ $strDataOnly = 'Data only';
$strDataPages = 'Pages containing data';
$strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Line';
-$strDBGMaxTimeMs = 'Max time, ms';
-$strDBGMinTimeMs = 'Min time, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Time/Hit, ms';
-$strDBGTotalTimeMs = 'Total time, ms';
+$strDbIsEmpty = 'Database seems to be empty!';
$strDbPrivileges = 'Database-specific privileges';
$strDBRename = 'Rename database to';
$strDbSpecific = 'database-specific';
@@ -233,14 +226,19 @@ $strDelimiter = 'Delimiter';
$strDelOld = 'The current page has references to tables that no longer exist. Would you like to delete those references?';
$strDescending = 'Descending';
$strDescription = 'Description';
+$strDesigner = 'Designer';
$strDictionary = 'dictionary';
+$strDirectLinks = 'Direct links';
$strDirtyPages = 'Dirty pages';
$strDisabled = 'Disabled';
$strDisableForeignChecks = 'Disable foreign key checks';
+$strDisableForFasterScrolling = 'Disable for faster scrolling';
$strDisplayFeat = 'Display Features';
$strDisplayOrder = 'Display order:';
$strDisplayPDF = 'Display PDF schema';
$strDoAQuery = 'Do a "query by example" (wildcard: "%")';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'DocSQL options';
$strDocu = 'Documentation';
$strDoYouReally = 'Do you really want to ';
$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!';
@@ -279,6 +277,7 @@ $strExcelOptions = 'Excel options';
$strExecuteBookmarked = 'Execute bookmarked query';
$strExplain = 'Explain SQL';
$strExport = 'Export';
+$strExportImportToScale = 'Export/Import to scale';
$strExportMustBeFile = 'Selected export type has to be saved in file!';
$strExtendedInserts = 'Extended inserts';
$strExtra = 'Extra';
@@ -334,6 +333,9 @@ $strHasBeenCreated = 'has been created.';
$strHaveToShow = 'You have to choose at least one column to display';
$strHebrew = 'Hebrew';
$strHexForBinary = 'Use hexadecimal for binary fields';
+$strHide = 'Hide';
+$strHideShowAll = 'Hide/Show all';
+$strHideShowNoRelation = 'Hide/Show Tables with no relation';
$strHome = 'Home';
$strHomepageOfficial = 'Official phpMyAdmin Homepage';
$strHostEmpty = 'The host name is empty!';
@@ -350,8 +352,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignore duplicate rows';
$strIgnore = 'Ignore';
$strIgnoreInserts = 'Use ignore inserts';
-$strIgnoringFile = 'Ignoring file %s';
-$strImportDocSQL = 'Import docSQL Files';
+$strImportExportCoords = 'Import/Export coordinates for PDF schema';
$strImportFiles = 'Import files';
$strImportFormat = 'Format of imported file';
$strImport = 'Import';
@@ -373,6 +374,7 @@ $strInnoDBDataFilePath = 'Data files';
$strInnoDBDataHomeDir = 'Data home directory';
$strInnoDBDataHomeDirDesc = 'The common part of the directory path for all InnoDB data files.';
$strInnoDBPages = 'pages';
+$strInnoDBRelationAdded = 'InnoDB relation added';
$strInnodbStat = 'InnoDB Status';
$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.';
$strInsertAsNewRow = 'Insert as new row';
@@ -380,6 +382,7 @@ $strInsertedRowId = 'Inserted row id:';
$strInsertedRows = 'Inserted rows:';
$strInsert = 'Insert';
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
+$strInternalRelationAdded = 'Internal relation added';
$strInternalRelations = 'Internal relations';
$strInUse = 'in use';
$strInvalidAuthMethod = 'Invalid authentication method set in configuration:';
@@ -462,6 +465,7 @@ $strMIME_without = 'MIME types printed in italics do not have a separate transfo
$strModifications = 'Modifications have been saved';
$strModifyIndexTopic = 'Modify an index';
$strModify = 'Modify';
+$strMoveMenu = 'Move Menu';
$strMoveTable = 'Move table to (database.table):';
$strMoveTableOK = 'Table %s has been moved to %s.';
$strMoveTableSameNames = 'Can\'t move table to same one!';
@@ -516,10 +520,12 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
$strNotNumber = 'This is not a number!';
$strNotOK = 'not OK';
$strNotSet = '%s table not found or not set in %s';
+$strNotThePrimaryKey = 'This is not the primary key!';
$strNoUsersFound = 'No user(s) found.';
$strNoValidateSQL = 'Skip Validate SQL';
$strNull = 'Null';
$strNumberOfFields = 'Number of fields';
+$strNumberOfTables = 'Number of tables';
$strNumSearchResultsInTable = '%s match(es) inside table %s';
$strNumSearchResultsTotal = 'Total: %s match(es)';
$strNumTables = 'Tables';
@@ -635,16 +641,19 @@ $strQueryWindowLock = 'Do not overwrite this query from outside the window';
$strReadRequests = 'Read requests';
$strReceived = 'Received';
+$strRecommended = 'recommended';
$strRecords = 'Records';
$strReferentialIntegrity = 'Check referential integrity:';
$strRefresh = 'Refresh';
$strRelationalSchema = 'Relational schema';
+$strRelationDeleted = 'Relation deleted';
$strRelationNotWorking = 'The additional features for working with linked tables have been deactivated. To find out why click %shere%s.';
$strRelationsForTable = 'RELATIONS FOR TABLE';
$strRelations = 'Relations';
$strRelationView = 'Relation view';
$strReloadingThePrivileges = 'Reloading the privileges';
$strReloadPrivileges = 'Reload privileges';
+$strReload = 'Reload';
$strRemoveSelectedUsers = 'Remove selected users';
$strRenameDatabaseOK = 'Database %s has been renamed to %s';
$strRenameTableOK = 'Table %s has been renamed to %s';
@@ -677,6 +686,7 @@ $strRunSQLQuery = 'Run SQL query/queries on database %s';
$strRussian = 'Russian';
$strSaveOnServer = 'Save on server in %s directory';
+$strSavePosition = 'Save position';
$strSave = 'Save';
$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page';
$strSearchFormTitle = 'Search in database';
@@ -694,7 +704,9 @@ $strSelectADb = 'Please select a database';
$strSelectAll = 'Select All';
$strSelectBinaryLog = 'Select binary log to view';
$strSelectFields = 'Select fields (at least one):';
+$strSelectForeignKey = 'Select Foreign Key';
$strSelectNumRows = 'in query';
+$strSelectReferencedKey = 'Select referenced key';
$strSelectTables = 'Select Tables';
$strSend = 'Save as file';
$strSent = 'Sent';
@@ -716,8 +728,11 @@ $strShowColor = 'Show color';
$strShowDatadictAs = 'Data Dictionary Format';
$strShowFullQueries = 'Show Full Queries';
$strShowGrid = 'Show grid';
+$strShowHideLeftMenu = 'Show/Hide left menu';
$strShowingBookmark = 'Showing bookmark';
+$strShowingPhp = 'Showing as PHP code';
$strShowingRecords = 'Showing rows';
+$strShowingSQL = 'Showing SQL query';
$strShowOpenTables = 'Show open tables';
$strShowPHPInfo = 'Show PHP information';
$strShow = 'Show';
@@ -839,6 +854,7 @@ $strSize = 'Size';
$strSkipQueries = 'Number of records(queries) to skip from start';
$strSlovak = 'Slovak';
$strSlovenian = 'Slovenian';
+$strSmallBigAll = 'Small/Big All';
$strSocketProblem = '(or the local MySQL server\'s socket is not correctly configured)';
$strSortByKey = 'Sort by key';
$strSorting = 'Sorting';
@@ -887,7 +903,9 @@ $strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped';
$strTableHasBeenEmptied = 'Table %s has been emptied';
$strTableHasBeenFlushed = 'Table %s has been flushed';
+$strTableIsEmpty = 'Table seems to be empty!';
$strTableMaintenance = 'Table maintenance';
+$strTableName = 'Table name';
$strTableOfContents = 'Table of contents';
$strTableOptions = 'Table options';
$strTables = '%s table(s)';
@@ -905,14 +923,15 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!';
$strThemePathNotFound = 'Theme path not found for theme %s!';
$strTheme = 'Theme / Style';
$strThisHost = 'This Host';
-$strThisNotDirectory = 'This was not a directory';
$strThreads = 'Threads';
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.';
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.';
$strTimeoutPassed = 'Script timeout passed, if you want to finish import, please resubmit same file and import will resume.';
$strTime = 'Time';
+$strToFromPage = 'to/from page';
$strToggleScratchboard = 'Toggle scratchboard';
+$strToSelectRelation = 'To select relation, click :';
$strTotal = 'total';
$strTotalUC = 'Total';
$strTraditionalChinese = 'Traditional Chinese';
@@ -986,8 +1005,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window, or your browser\'s security settings are configured to block cross-window updates.';
$strWithChecked = 'With selected:';
$strWriteRequests = 'Write requests';
-$strWritingCommentNotPossible = 'Writing of comment not possible';
-$strWritingRelationNotPossible = 'Writing of relation not possible';
$strWrongUser = 'Wrong username/password. Access denied.';
$strXMLOptions = 'XML options';
diff --git a/lang/english-iso-8859-15.inc.php b/lang/english-iso-8859-15.inc.php
index 00465e03c..c356334b1 100644
--- a/lang/english-iso-8859-15.inc.php
+++ b/lang/english-iso-8859-15.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds';
$strAbortedClients = 'Aborted';
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on the web server to the docSQL directory';
$strAccessDenied = 'Access denied';
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.';
$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.';
@@ -32,8 +31,6 @@ $strAddClause = 'Add %s';
$strAddConstraints = 'Add constraints';
$strAddDeleteColumn = 'Add/Delete Field Columns';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'Added comment for column';
-$strAddedColumnRelation = 'Added relation for column';
$strAddFields = 'Add %s field(s)';
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)';
$strAddIntoComments = 'Add into comments';
@@ -55,9 +52,11 @@ $strAll = 'All';
$strAllowInterrupt = 'Allow interrupt of import in case script detects it is close to time limit. This might be good way to import large files, however it can break transactions.';
$strAllTableSameWidth = 'display all tables with same width?';
$strAlterOrderBy = 'Alter table order by';
+$strAlwaysShowLinks = 'Always show links';
$strAnalyzeTable = 'Analyze table';
$strAnd = 'And';
$strAndThen = 'and then';
+$strAngularLinks = 'Angular links';
$strAnIndex = 'An index has been added on %s';
$strAny = 'Any';
$strAnyHost = 'Any host';
@@ -173,6 +172,8 @@ $strCreateNewDatabase = 'Create new database';
$strCreateNewTable = 'Create new table on database %s';
$strCreatePage = 'Create a new page';
$strCreatePdfFeat = 'Creation of PDFs';
+$strCreateRelation = 'Create relation';
+$strCreateTable = 'Create table';
$strCreateUserDatabase = 'Database for user';
$strCreateUserDatabaseName = 'Create database with same name and grant all privileges';
$strCreateUserDatabaseNone = 'None';
@@ -205,15 +206,7 @@ $strDataOnly = 'Data only';
$strDataPages = 'Pages containing data';
$strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Line';
-$strDBGMaxTimeMs = 'Max time, ms';
-$strDBGMinTimeMs = 'Min time, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Time/Hit, ms';
-$strDBGTotalTimeMs = 'Total time, ms';
+$strDbIsEmpty = 'Database seems to be empty!';
$strDbPrivileges = 'Database-specific privileges';
$strDBRename = 'Rename database to';
$strDbSpecific = 'database-specific';
@@ -233,14 +226,19 @@ $strDelimiter = 'Delimiter';
$strDelOld = 'The current page has references to tables that no longer exist. Would you like to delete those references?';
$strDescending = 'Descending';
$strDescription = 'Description';
+$strDesigner = 'Designer';
$strDictionary = 'dictionary';
+$strDirectLinks = 'Direct links';
$strDirtyPages = 'Dirty pages';
$strDisabled = 'Disabled';
$strDisableForeignChecks = 'Disable foreign key checks';
+$strDisableForFasterScrolling = 'Disable for faster scrolling';
$strDisplayFeat = 'Display Features';
$strDisplayOrder = 'Display order:';
$strDisplayPDF = 'Display PDF schema';
$strDoAQuery = 'Do a "query by example" (wildcard: "%")';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'DocSQL options';
$strDocu = 'Documentation';
$strDoYouReally = 'Do you really want to ';
$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!';
@@ -279,6 +277,7 @@ $strExcelOptions = 'Excel options';
$strExecuteBookmarked = 'Execute bookmarked query';
$strExplain = 'Explain SQL';
$strExport = 'Export';
+$strExportImportToScale = 'Export/Import to scale';
$strExportMustBeFile = 'Selected export type has to be saved in file!';
$strExtendedInserts = 'Extended inserts';
$strExtra = 'Extra';
@@ -334,6 +333,9 @@ $strHasBeenCreated = 'has been created.';
$strHaveToShow = 'You have to choose at least one column to display';
$strHebrew = 'Hebrew';
$strHexForBinary = 'Use hexadecimal for binary fields';
+$strHide = 'Hide';
+$strHideShowAll = 'Hide/Show all';
+$strHideShowNoRelation = 'Hide/Show Tables with no relation';
$strHome = 'Home';
$strHomepageOfficial = 'Official phpMyAdmin Homepage';
$strHostEmpty = 'The host name is empty!';
@@ -350,8 +352,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignore duplicate rows';
$strIgnore = 'Ignore';
$strIgnoreInserts = 'Use ignore inserts';
-$strIgnoringFile = 'Ignoring file %s';
-$strImportDocSQL = 'Import docSQL Files';
+$strImportExportCoords = 'Import/Export coordinates for PDF schema';
$strImportFiles = 'Import files';
$strImportFormat = 'Format of imported file';
$strImport = 'Import';
@@ -373,6 +374,7 @@ $strInnoDBDataFilePath = 'Data files';
$strInnoDBDataHomeDir = 'Data home directory';
$strInnoDBDataHomeDirDesc = 'The common part of the directory path for all InnoDB data files.';
$strInnoDBPages = 'pages';
+$strInnoDBRelationAdded = 'InnoDB relation added';
$strInnodbStat = 'InnoDB Status';
$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.';
$strInsertAsNewRow = 'Insert as new row';
@@ -380,6 +382,7 @@ $strInsertedRowId = 'Inserted row id:';
$strInsertedRows = 'Inserted rows:';
$strInsert = 'Insert';
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
+$strInternalRelationAdded = 'Internal relation added';
$strInternalRelations = 'Internal relations';
$strInUse = 'in use';
$strInvalidAuthMethod = 'Invalid authentication method set in configuration:';
@@ -462,6 +465,7 @@ $strMIME_without = 'MIME types printed in italics do not have a separate transfo
$strModifications = 'Modifications have been saved';
$strModifyIndexTopic = 'Modify an index';
$strModify = 'Modify';
+$strMoveMenu = 'Move Menu';
$strMoveTable = 'Move table to (database.table):';
$strMoveTableOK = 'Table %s has been moved to %s.';
$strMoveTableSameNames = 'Can\'t move table to same one!';
@@ -516,10 +520,12 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
$strNotNumber = 'This is not a number!';
$strNotOK = 'not OK';
$strNotSet = '%s table not found or not set in %s';
+$strNotThePrimaryKey = 'This is not the primary key!';
$strNoUsersFound = 'No user(s) found.';
$strNoValidateSQL = 'Skip Validate SQL';
$strNull = 'Null';
$strNumberOfFields = 'Number of fields';
+$strNumberOfTables = 'Number of tables';
$strNumSearchResultsInTable = '%s match(es) inside table %s';
$strNumSearchResultsTotal = 'Total: %s match(es)';
$strNumTables = 'Tables';
@@ -635,16 +641,19 @@ $strQueryWindowLock = 'Do not overwrite this query from outside the window';
$strReadRequests = 'Read requests';
$strReceived = 'Received';
+$strRecommended = 'recommended';
$strRecords = 'Records';
$strReferentialIntegrity = 'Check referential integrity:';
$strRefresh = 'Refresh';
$strRelationalSchema = 'Relational schema';
+$strRelationDeleted = 'Relation deleted';
$strRelationNotWorking = 'The additional features for working with linked tables have been deactivated. To find out why click %shere%s.';
$strRelationsForTable = 'RELATIONS FOR TABLE';
$strRelations = 'Relations';
$strRelationView = 'Relation view';
$strReloadingThePrivileges = 'Reloading the privileges';
$strReloadPrivileges = 'Reload privileges';
+$strReload = 'Reload';
$strRemoveSelectedUsers = 'Remove selected users';
$strRenameDatabaseOK = 'Database %s has been renamed to %s';
$strRenameTableOK = 'Table %s has been renamed to %s';
@@ -677,6 +686,7 @@ $strRunSQLQuery = 'Run SQL query/queries on database %s';
$strRussian = 'Russian';
$strSaveOnServer = 'Save on server in %s directory';
+$strSavePosition = 'Save position';
$strSave = 'Save';
$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page';
$strSearchFormTitle = 'Search in database';
@@ -694,7 +704,9 @@ $strSelectADb = 'Please select a database';
$strSelectAll = 'Select All';
$strSelectBinaryLog = 'Select binary log to view';
$strSelectFields = 'Select fields (at least one):';
+$strSelectForeignKey = 'Select Foreign Key';
$strSelectNumRows = 'in query';
+$strSelectReferencedKey = 'Select referenced key';
$strSelectTables = 'Select Tables';
$strSend = 'Save as file';
$strSent = 'Sent';
@@ -716,8 +728,11 @@ $strShowColor = 'Show color';
$strShowDatadictAs = 'Data Dictionary Format';
$strShowFullQueries = 'Show Full Queries';
$strShowGrid = 'Show grid';
+$strShowHideLeftMenu = 'Show/Hide left menu';
$strShowingBookmark = 'Showing bookmark';
+$strShowingPhp = 'Showing as PHP code';
$strShowingRecords = 'Showing rows';
+$strShowingSQL = 'Showing SQL query';
$strShowOpenTables = 'Show open tables';
$strShowPHPInfo = 'Show PHP information';
$strShow = 'Show';
@@ -839,6 +854,7 @@ $strSize = 'Size';
$strSkipQueries = 'Number of records(queries) to skip from start';
$strSlovak = 'Slovak';
$strSlovenian = 'Slovenian';
+$strSmallBigAll = 'Small/Big All';
$strSocketProblem = '(or the local MySQL server\'s socket is not correctly configured)';
$strSortByKey = 'Sort by key';
$strSorting = 'Sorting';
@@ -887,7 +903,9 @@ $strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped';
$strTableHasBeenEmptied = 'Table %s has been emptied';
$strTableHasBeenFlushed = 'Table %s has been flushed';
+$strTableIsEmpty = 'Table seems to be empty!';
$strTableMaintenance = 'Table maintenance';
+$strTableName = 'Table name';
$strTableOfContents = 'Table of contents';
$strTableOptions = 'Table options';
$strTables = '%s table(s)';
@@ -905,14 +923,15 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!';
$strThemePathNotFound = 'Theme path not found for theme %s!';
$strTheme = 'Theme / Style';
$strThisHost = 'This Host';
-$strThisNotDirectory = 'This was not a directory';
$strThreads = 'Threads';
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.';
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.';
$strTimeoutPassed = 'Script timeout passed, if you want to finish import, please resubmit same file and import will resume.';
$strTime = 'Time';
+$strToFromPage = 'to/from page';
$strToggleScratchboard = 'Toggle scratchboard';
+$strToSelectRelation = 'To select relation, click :';
$strTotal = 'total';
$strTotalUC = 'Total';
$strTraditionalChinese = 'Traditional Chinese';
@@ -986,8 +1005,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window, or your browser\'s security settings are configured to block cross-window updates.';
$strWithChecked = 'With selected:';
$strWriteRequests = 'Write requests';
-$strWritingCommentNotPossible = 'Writing of comment not possible';
-$strWritingRelationNotPossible = 'Writing of relation not possible';
$strWrongUser = 'Wrong username/password. Access denied.';
$strXMLOptions = 'XML options';
diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php
index 77a3d0b87..c04bcf18d 100644
--- a/lang/english-utf-8.inc.php
+++ b/lang/english-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds';
$strAbortedClients = 'Aborted';
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on the web server to the docSQL directory';
$strAccessDenied = 'Access denied';
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.';
$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.';
@@ -33,8 +32,6 @@ $strAddClause = 'Add %s';
$strAddConstraints = 'Add constraints';
$strAddDeleteColumn = 'Add/Delete Field Columns';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'Added comment for column';
-$strAddedColumnRelation = 'Added relation for column';
$strAddFields = 'Add %s field(s)';
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)';
$strAddIntoComments = 'Add into comments';
@@ -56,9 +53,11 @@ $strAll = 'All';
$strAllowInterrupt = 'Allow interrupt of import in case script detects it is close to time limit. This might be good way to import large files, however it can break transactions.';
$strAllTableSameWidth = 'display all tables with same width?';
$strAlterOrderBy = 'Alter table order by';
+$strAlwaysShowLinks = 'Always show links';
$strAnalyzeTable = 'Analyze table';
$strAnd = 'And';
$strAndThen = 'and then';
+$strAngularLinks = 'Angular links';
$strAnIndex = 'An index has been added on %s';
$strAny = 'Any';
$strAnyHost = 'Any host';
@@ -174,6 +173,8 @@ $strCreateNewDatabase = 'Create new database';
$strCreateNewTable = 'Create new table on database %s';
$strCreatePage = 'Create a new page';
$strCreatePdfFeat = 'Creation of PDFs';
+$strCreateRelation = 'Create relation';
+$strCreateTable = 'Create table';
$strCreateUserDatabase = 'Database for user';
$strCreateUserDatabaseName = 'Create database with same name and grant all privileges';
$strCreateUserDatabaseNone = 'None';
@@ -206,15 +207,7 @@ $strDataOnly = 'Data only';
$strDataPages = 'Pages containing data';
$strDBComment = 'Database comment: ';
$strDBCopy = 'Copy database to';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Line';
-$strDBGMaxTimeMs = 'Max time, ms';
-$strDBGMinTimeMs = 'Min time, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Time/Hit, ms';
-$strDBGTotalTimeMs = 'Total time, ms';
+$strDbIsEmpty = 'Database seems to be empty!';
$strDbPrivileges = 'Database-specific privileges';
$strDBRename = 'Rename database to';
$strDbSpecific = 'database-specific';
@@ -234,14 +227,19 @@ $strDelimiter = 'Delimiter';
$strDelOld = 'The current page has references to tables that no longer exist. Would you like to delete those references?';
$strDescending = 'Descending';
$strDescription = 'Description';
+$strDesigner = 'Designer';
$strDictionary = 'dictionary';
+$strDirectLinks = 'Direct links';
$strDirtyPages = 'Dirty pages';
$strDisabled = 'Disabled';
$strDisableForeignChecks = 'Disable foreign key checks';
+$strDisableForFasterScrolling = 'Disable for faster scrolling';
$strDisplayFeat = 'Display Features';
$strDisplayOrder = 'Display order:';
$strDisplayPDF = 'Display PDF schema';
$strDoAQuery = 'Do a "query by example" (wildcard: "%")';
+$strDocSQL = 'DocSQL';
+$strDocSQLOptions = 'DocSQL options';
$strDocu = 'Documentation';
$strDoYouReally = 'Do you really want to ';
$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!';
@@ -280,6 +278,7 @@ $strExcelOptions = 'Excel options';
$strExecuteBookmarked = 'Execute bookmarked query';
$strExplain = 'Explain SQL';
$strExport = 'Export';
+$strExportImportToScale = 'Export/Import to scale';
$strExportMustBeFile = 'Selected export type has to be saved in file!';
$strExtendedInserts = 'Extended inserts';
$strExtra = 'Extra';
@@ -335,6 +334,9 @@ $strHasBeenCreated = 'has been created.';
$strHaveToShow = 'You have to choose at least one column to display';
$strHebrew = 'Hebrew';
$strHexForBinary = 'Use hexadecimal for binary fields';
+$strHide = 'Hide';
+$strHideShowAll = 'Hide/Show all';
+$strHideShowNoRelation = 'Hide/Show Tables with no relation';
$strHome = 'Home';
$strHomepageOfficial = 'Official phpMyAdmin Homepage';
$strHostEmpty = 'The host name is empty!';
@@ -351,8 +353,7 @@ $strIdxFulltext = 'Fulltext';
$strIgnoreDuplicates = 'Ignore duplicate rows';
$strIgnore = 'Ignore';
$strIgnoreInserts = 'Use ignore inserts';
-$strIgnoringFile = 'Ignoring file %s';
-$strImportDocSQL = 'Import docSQL Files';
+$strImportExportCoords = 'Import/Export coordinates for PDF schema';
$strImportFiles = 'Import files';
$strImportFormat = 'Format of imported file';
$strImport = 'Import';
@@ -374,6 +375,7 @@ $strInnoDBDataFilePath = 'Data files';
$strInnoDBDataHomeDir = 'Data home directory';
$strInnoDBDataHomeDirDesc = 'The common part of the directory path for all InnoDB data files.';
$strInnoDBPages = 'pages';
+$strInnoDBRelationAdded = 'InnoDB relation added';
$strInnodbStat = 'InnoDB Status';
$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.';
$strInsertAsNewRow = 'Insert as new row';
@@ -381,6 +383,7 @@ $strInsertedRowId = 'Inserted row id:';
$strInsertedRows = 'Inserted rows:';
$strInsert = 'Insert';
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
+$strInternalRelationAdded = 'Internal relation added';
$strInternalRelations = 'Internal relations';
$strInUse = 'in use';
$strInvalidAuthMethod = 'Invalid authentication method set in configuration:';
@@ -463,6 +466,7 @@ $strMIME_without = 'MIME types printed in italics do not have a separate transfo
$strModifications = 'Modifications have been saved';
$strModifyIndexTopic = 'Modify an index';
$strModify = 'Modify';
+$strMoveMenu = 'Move Menu';
$strMoveTable = 'Move table to (database.table):';
$strMoveTableOK = 'Table %s has been moved to %s.';
$strMoveTableSameNames = 'Can\'t move table to same one!';
@@ -517,10 +521,12 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
$strNotNumber = 'This is not a number!';
$strNotOK = 'not OK';
$strNotSet = '%s table not found or not set in %s';
+$strNotThePrimaryKey = 'This is not the primary key!';
$strNoUsersFound = 'No user(s) found.';
$strNoValidateSQL = 'Skip Validate SQL';
$strNull = 'Null';
$strNumberOfFields = 'Number of fields';
+$strNumberOfTables = 'Number of tables';
$strNumSearchResultsInTable = '%s match(es) inside table %s';
$strNumSearchResultsTotal = 'Total: %s match(es)';
$strNumTables = 'Tables';
@@ -636,16 +642,19 @@ $strQueryWindowLock = 'Do not overwrite this query from outside the window';
$strReadRequests = 'Read requests';
$strReceived = 'Received';
+$strRecommended = 'recommended';
$strRecords = 'Records';
$strReferentialIntegrity = 'Check referential integrity:';
$strRefresh = 'Refresh';
$strRelationalSchema = 'Relational schema';
+$strRelationDeleted = 'Relation deleted';
$strRelationNotWorking = 'The additional features for working with linked tables have been deactivated. To find out why click %shere%s.';
$strRelationsForTable = 'RELATIONS FOR TABLE';
$strRelations = 'Relations';
$strRelationView = 'Relation view';
$strReloadingThePrivileges = 'Reloading the privileges';
$strReloadPrivileges = 'Reload privileges';
+$strReload = 'Reload';
$strRemoveSelectedUsers = 'Remove selected users';
$strRenameDatabaseOK = 'Database %s has been renamed to %s';
$strRenameTableOK = 'Table %s has been renamed to %s';
@@ -678,6 +687,7 @@ $strRunSQLQuery = 'Run SQL query/queries on database %s';
$strRussian = 'Russian';
$strSaveOnServer = 'Save on server in %s directory';
+$strSavePosition = 'Save position';
$strSave = 'Save';
$strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page';
$strSearchFormTitle = 'Search in database';
@@ -695,7 +705,9 @@ $strSelectADb = 'Please select a database';
$strSelectAll = 'Select All';
$strSelectBinaryLog = 'Select binary log to view';
$strSelectFields = 'Select fields (at least one):';
+$strSelectForeignKey = 'Select Foreign Key';
$strSelectNumRows = 'in query';
+$strSelectReferencedKey = 'Select referenced key';
$strSelectTables = 'Select Tables';
$strSend = 'Save as file';
$strSent = 'Sent';
@@ -717,8 +729,11 @@ $strShowColor = 'Show color';
$strShowDatadictAs = 'Data Dictionary Format';
$strShowFullQueries = 'Show Full Queries';
$strShowGrid = 'Show grid';
+$strShowHideLeftMenu = 'Show/Hide left menu';
$strShowingBookmark = 'Showing bookmark';
+$strShowingPhp = 'Showing as PHP code';
$strShowingRecords = 'Showing rows';
+$strShowingSQL = 'Showing SQL query';
$strShowOpenTables = 'Show open tables';
$strShowPHPInfo = 'Show PHP information';
$strShow = 'Show';
@@ -840,6 +855,7 @@ $strSize = 'Size';
$strSkipQueries = 'Number of records(queries) to skip from start';
$strSlovak = 'Slovak';
$strSlovenian = 'Slovenian';
+$strSmallBigAll = 'Small/Big All';
$strSocketProblem = '(or the local MySQL server\'s socket is not correctly configured)';
$strSortByKey = 'Sort by key';
$strSorting = 'Sorting';
@@ -888,7 +904,9 @@ $strTableEmpty = 'The table name is empty!';
$strTableHasBeenDropped = 'Table %s has been dropped';
$strTableHasBeenEmptied = 'Table %s has been emptied';
$strTableHasBeenFlushed = 'Table %s has been flushed';
+$strTableIsEmpty = 'Table seems to be empty!';
$strTableMaintenance = 'Table maintenance';
+$strTableName = 'Table name';
$strTableOfContents = 'Table of contents';
$strTableOptions = 'Table options';
$strTables = '%s table(s)';
@@ -906,14 +924,15 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!';
$strThemePathNotFound = 'Theme path not found for theme %s!';
$strTheme = 'Theme / Style';
$strThisHost = 'This Host';
-$strThisNotDirectory = 'This was not a directory';
$strThreads = 'Threads';
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.';
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.';
$strTimeoutPassed = 'Script timeout passed, if you want to finish import, please resubmit same file and import will resume.';
$strTime = 'Time';
+$strToFromPage = 'to/from page';
$strToggleScratchboard = 'Toggle scratchboard';
+$strToSelectRelation = 'To select relation, click :';
$strTotal = 'total';
$strTotalUC = 'Total';
$strTraditionalChinese = 'Traditional Chinese';
@@ -987,8 +1006,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window, or your browser\'s security settings are configured to block cross-window updates.';
$strWithChecked = 'With selected:';
$strWriteRequests = 'Write requests';
-$strWritingCommentNotPossible = 'Writing of comment not possible';
-$strWritingRelationNotPossible = 'Writing of relation not possible';
$strWrongUser = 'Wrong username/password. Access denied.';
$strXMLOptions = 'XML options';
diff --git a/lang/estonian-iso-8859-1.inc.php b/lang/estonian-iso-8859-1.inc.php
index b38caeaa3..efcf018ec 100644
--- a/lang/estonian-iso-8859-1.inc.php
+++ b/lang/estonian-iso-8859-1.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d.%m.%Y kell %H:%M:%S';
$timespanfmt = '%s peva, %s tundi, %s minutit ja %s sekundit';
$strAbortedClients = 'Katkestatud';
-$strAbsolutePathToDocSqlDir = 'Palun sisestage absoluutne tee webiserveris docSQL kataloogini';
$strAccessDeniedCreateConfig = 'Arvatav phjus on te pole veel loonud seadete faili. Soovitavalt vid kasutada %1$ssetup script%2$s et seadistada.';
$strAccessDeniedExplanation = 'phpMyAdmin proovis henduda MySQL serveriga ja server lkkas henduse tagasi. Te peaksite kontrollima serverit, kasutajanime ja parooli config.inc.php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL serveri administraatori kest.';
$strAccessDenied = 'Ligips keelatud';
@@ -33,8 +32,6 @@ $strAddClause = 'Lisa %s';
$strAddConstraints = 'Lisa piirangud';
$strAddDeleteColumn = 'Lisa/Kustuta vlja veerud';
$strAddDeleteRow = 'Lisa/Kustuta kriteeriumirida';
-$strAddedColumnComment = 'Kommentaar lisatud vljale';
-$strAddedColumnRelation = 'Sltuvus lisatud vljale';
$strAddFields = 'Lisa %s vli(jad)';
$strAddHeaderComment = 'Lisa vaba kommentaar pisesse (\\n eraldab read)';
$strAddIntoComments = 'Lisa kommentaaridesse';
@@ -206,15 +203,6 @@ $strDataOnly = 'Ainult andmed';
$strDataPages = 'Lehed andmetega';
$strDBComment = 'Andmebaasi kommentaar: ';
$strDBCopy = 'Kopeeri andmebaas';
-$strDBGContextID = 'Sisu ID';
-$strDBGContext = 'Sisu';
-$strDBGHits = 'Vajutusi';
-$strDBGLine = 'Rida';
-$strDBGMaxTimeMs = 'Max aeg, ms';
-$strDBGMinTimeMs = 'Min aeg, ms';
-$strDBGModule = 'Moodul';
-$strDBGTimePerHitMs = 'Aeg/vajutus, ms';
-$strDBGTotalTimeMs = 'Koguaeg, ms';
$strDbPrivileges = 'Andmebaas-spetsiifilised privileegid';
$strDBRename = 'Nimeta andmebaas mber';
$strDbSpecific = 'andmebaasiphine';
@@ -351,8 +339,6 @@ $strIdxFulltext = 'T
$strIgnoreDuplicates = 'Ignoreeri korduvaid ridasid';
$strIgnore = 'Ignoreeri';
$strIgnoreInserts = 'Kasutaja ignoreeritavaid lisamisi';
-$strIgnoringFile = 'Jtan vahele faili %s';
-$strImportDocSQL = 'docSQL failide importimine';
$strImportFiles = 'Importige failid';
$strImportFormat = 'Imporditud faili formaat';
$strImport = 'Import';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Ei leia pildi kataloogi teemale %s!';
$strThemePathNotFound = 'Ei leia kataloogi teemale %s!';
$strTheme = 'Teema / Stiil';
$strThisHost = 'Antud host';
-$strThisNotDirectory = 'See ei olnud kataloog';
$strThreads = 'Limud';
$strThreadSuccessfullyKilled = 'Protsess %s katkestati edukalt.';
$strTime = 'Aeg';
@@ -984,8 +969,6 @@ $strWildcard = 'metam
$strWindowNotFound = 'Vajaliku sirvija akent ei suudetud uuendada. Vibolla Te olete peaakna sulgenud vi Teie sirvija ei luba akendevahelist suhtlist tnu turvaseadetele.';
$strWithChecked = 'Valitud:';
$strWriteRequests = 'Prdumised kirjutamiseks';
-$strWritingCommentNotPossible = 'Kommentaaride kirjutamine ei ole vimalik.';
-$strWritingRelationNotPossible = 'Sltuvuse kirjutamine ei ole vimalik';
$strWrongUser = 'Vale kasutajanimi/parool. Ligips keelatud.';
$strXMLOptions = 'XML seaded';
@@ -1002,4 +985,38 @@ $strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php
index 40440936a..4a843cf85 100644
--- a/lang/estonian-utf-8.inc.php
+++ b/lang/estonian-utf-8.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%d.%m.%Y kell %H:%M:%S';
$timespanfmt = '%s päeva, %s tundi, %s minutit ja %s sekundit';
$strAbortedClients = 'Katkestatud';
-$strAbsolutePathToDocSqlDir = 'Palun sisestage absoluutne tee webiserveris docSQL kataloogini';
$strAccessDeniedCreateConfig = 'Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid kasutada %1$ssetup script%2$s et seadistada.';
$strAccessDeniedExplanation = 'phpMyAdmin proovis ühenduda MySQL serveriga ja server lükkas ühenduse tagasi. Te peaksite kontrollima serverit, kasutajanime ja parooli config.inc.php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL serveri administraatori käest.';
$strAccessDenied = 'Ligipääs keelatud';
@@ -34,8 +33,6 @@ $strAddClause = 'Lisa %s';
$strAddConstraints = 'Lisa piirangud';
$strAddDeleteColumn = 'Lisa/Kustuta välja veerud';
$strAddDeleteRow = 'Lisa/Kustuta kriteeriumirida';
-$strAddedColumnComment = 'Kommentaar lisatud väljale';
-$strAddedColumnRelation = 'Sõltuvus lisatud väljale';
$strAddFields = 'Lisa %s väli(jad)';
$strAddHeaderComment = 'Lisa vaba kommentaar päisesse (\\n eraldab read)';
$strAddIntoComments = 'Lisa kommentaaridesse';
@@ -207,15 +204,6 @@ $strDataOnly = 'Ainult andmed';
$strDataPages = 'Lehed andmetega';
$strDBComment = 'Andmebaasi kommentaar: ';
$strDBCopy = 'Kopeeri andmebaas';
-$strDBGContextID = 'Sisu ID';
-$strDBGContext = 'Sisu';
-$strDBGHits = 'Vajutusi';
-$strDBGLine = 'Rida';
-$strDBGMaxTimeMs = 'Max aeg, ms';
-$strDBGMinTimeMs = 'Min aeg, ms';
-$strDBGModule = 'Moodul';
-$strDBGTimePerHitMs = 'Aeg/vajutus, ms';
-$strDBGTotalTimeMs = 'Koguaeg, ms';
$strDbPrivileges = 'Andmebaas-spetsiifilised privileegid';
$strDBRename = 'Nimeta andmebaas ümber';
$strDbSpecific = 'andmebaasipõhine';
@@ -352,8 +340,6 @@ $strIdxFulltext = 'Täistekst';
$strIgnoreDuplicates = 'Ignoreeri korduvaid ridasid';
$strIgnore = 'Ignoreeri';
$strIgnoreInserts = 'Kasutaja ignoreeritavaid lisamisi';
-$strIgnoringFile = 'Jätan vahele faili %s';
-$strImportDocSQL = 'docSQL failide importimine';
$strImportFiles = 'Importige failid';
$strImportFormat = 'Imporditud faili formaat';
$strImport = 'Import';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = 'Ei leia pildi kataloogi teemale %s!';
$strThemePathNotFound = 'Ei leia kataloogi teemale %s!';
$strTheme = 'Teema / Stiil';
$strThisHost = 'Antud host';
-$strThisNotDirectory = 'See ei olnud kataloog';
$strThreads = 'Lõimud';
$strThreadSuccessfullyKilled = 'Protsess %s katkestati edukalt.';
$strTime = 'Aeg';
@@ -985,8 +970,6 @@ $strWildcard = 'metamärk';
$strWindowNotFound = 'Vajaliku sirvija akent ei suudetud uuendada. Võibolla Te olete peaakna sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu turvaseadetele.';
$strWithChecked = 'Valitud:';
$strWriteRequests = 'Pöördumised kirjutamiseks';
-$strWritingCommentNotPossible = 'Kommentaaride kirjutamine ei ole võimalik.';
-$strWritingRelationNotPossible = 'Sõltuvuse kirjutamine ei ole võimalik';
$strWrongUser = 'Vale kasutajanimi/parool. Ligipääs keelatud.';
$strXMLOptions = 'XML seaded';
@@ -1003,4 +986,38 @@ $strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/finnish-iso-8859-1.inc.php b/lang/finnish-iso-8859-1.inc.php
index 50f7cf3bc..5fe9efdb3 100644
--- a/lang/finnish-iso-8859-1.inc.php
+++ b/lang/finnish-iso-8859-1.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d.%m.%Y klo %H:%M';
$timespanfmt = '%s piv, %s tuntia, %s minuuttia ja %s sekuntia';
$strAbortedClients = 'Keskeytetty';
-$strAbsolutePathToDocSqlDir = 'Anna tydellinen polku docSQL-hakemistoon Internet-palvelimella';
$strAccessDeniedCreateConfig = 'Todennkinen syy tlle on se, ettet ole luonut asetustiedostoa. Voit kytt %1$sasetusskripti%2$s asetustiedoston luomiseen.';
$strAccessDeniedExplanation = 'phpMyAdmin yritti saada yhteyden MySQL-palvelimeen, mutta se torjui yhteyden. Tarkista palvelin, kyttjnimi ja salasana config.inc.php-tiedostosta ja varmista, ett ne vastaavat MySQL-palvelimen jrjestelmnvalvojan antamia tietoja.';
$strAccessDenied = 'Psy kielletty';
@@ -32,8 +31,6 @@ $strAddClause = 'Lis
$strAddConstraints = 'Lis rajoitteet';
$strAddDeleteColumn = 'Lis/poista sarakkeita';
$strAddDeleteRow = 'Lis/poista hakuehtoja';
-$strAddedColumnComment = 'Listty kommentti sarakkeeseen';
-$strAddedColumnRelation = 'Listty relaatio sarakkeeseen';
$strAddFields = 'Lis %s kentt()';
$strAddHeaderComment = 'Lis oma kommentti otsikkoon (\\n on rivinvaihto)';
$strAddIntoComments = 'Lis kommentteihin';
@@ -205,15 +202,6 @@ $strDataOnly = 'Vain data';
$strDataPages = "Dataa sisltvt sivut";
$strDBComment = 'Tietokannan kommentti: ';
$strDBCopy = 'Luo tietokannasta toinen tietokanta nimell:';
-$strDBGContextID = 'Konteksti-ID';
-$strDBGContext = 'Konteksti';
-$strDBGHits = 'Osumat';
-$strDBGLine = 'Rivi';
-$strDBGMaxTimeMs = 'Maks. aika, ms';
-$strDBGMinTimeMs = 'Min. aika, ms';
-$strDBGModule = 'Moduuli';
-$strDBGTimePerHitMs = 'Aika/osuma, ms';
-$strDBGTotalTimeMs = 'Koko aika, ms';
$strDbPrivileges = 'Tietokantakohtaiset kyttoikeudet';
$strDBRename = 'Muuta tietokannan nimi';
$strDbSpecific = 'tietokantakohtainen';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Koko teksti';
$strIgnoreDuplicates = 'l vlit kaksinkertaisista riveist';
$strIgnoreInserts = 'Kyt IGNORE:a INSERT-komennoissa';
$strIgnore = 'Jt huomiotta';
-$strIgnoringFile = 'Jtetn tiedosto %s huolimatta';
-$strImportDocSQL = 'Tuo docSQL-tiedostoja';
$strImportFiles = 'Tuo tiedostoja';
$strImportFormat = 'Tuotavan tiedoston muoto';
$strImportSuccessfullyFinished = 'Tuonti onnistui, %d kysely suoritettu.';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Kelvollista polkua teemalle %s ei l
$strThemePathNotFound = 'Teeman %s polkua ei lydy!';
$strTheme = 'Teema/tyyli';
$strThisHost = 'Tm isnt';
-$strThisNotDirectory = 'Tm ei ole hakemisto';
$strThreads = 'Sikeet';
$strThreadSuccessfullyKilled = 'Sikeen %s (threadin) lopetus onnistui.';
$strTime = 'Aika';
@@ -984,8 +969,6 @@ $strWildcard = 'jokerimerkki';
$strWindowNotFound = 'Kohdeselainikkunaa ei voitu pivitt. Syyn voi olla se, ett olet sulkenut isntikkunan tai ett selaimesi tietoturva-asetukset estvt ikkunoiden vlisen pivittmisen.';
$strWithChecked = 'Valitut:';
$strWriteRequests = 'Kirjoituspyynnt';
-$strWritingCommentNotPossible = 'Kommentin kirjoittaminen ei ole mahdollista';
-$strWritingRelationNotPossible = 'Relaation kirjoittaminen ei ole mahdollista';
$strWrongUser = 'Vr kyttjtunnus tai salasana. Psy kielletty.';
$strXMLOptions = 'XML-valinnat';
@@ -998,4 +981,38 @@ $strZip = '"zip-pakattu"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/finnish-iso-8859-15.inc.php b/lang/finnish-iso-8859-15.inc.php
index d7ebb030a..f173ecf5e 100644
--- a/lang/finnish-iso-8859-15.inc.php
+++ b/lang/finnish-iso-8859-15.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d.%m.%Y klo %H:%M';
$timespanfmt = '%s piv, %s tuntia, %s minuuttia ja %s sekuntia';
$strAbortedClients = 'Keskeytetty';
-$strAbsolutePathToDocSqlDir = 'Anna tydellinen polku docSQL-hakemistoon Internet-palvelimella';
$strAccessDeniedCreateConfig = 'Todennkinen syy tlle on se, ettet ole luonut asetustiedostoa. Voit kytt %1$sasetusskripti%2$s asetustiedoston luomiseen.';
$strAccessDeniedExplanation = 'phpMyAdmin yritti saada yhteyden MySQL-palvelimeen, mutta se torjui yhteyden. Tarkista palvelin, kyttjnimi ja salasana config.inc.php-tiedostosta ja varmista, ett ne vastaavat MySQL-palvelimen jrjestelmnvalvojan antamia tietoja.';
$strAccessDenied = 'Psy kielletty';
@@ -32,8 +31,6 @@ $strAddClause = 'Lis
$strAddConstraints = 'Lis rajoitteet';
$strAddDeleteColumn = 'Lis/poista sarakkeita';
$strAddDeleteRow = 'Lis/poista hakuehtoja';
-$strAddedColumnComment = 'Listty kommentti sarakkeeseen';
-$strAddedColumnRelation = 'Listty relaatio sarakkeeseen';
$strAddFields = 'Lis %s kentt()';
$strAddHeaderComment = 'Lis oma kommentti otsikkoon (\\n on rivinvaihto)';
$strAddIntoComments = 'Lis kommentteihin';
@@ -205,15 +202,6 @@ $strDataOnly = 'Vain data';
$strDataPages = "Dataa sisltvt sivut";
$strDBComment = 'Tietokannan kommentti: ';
$strDBCopy = 'Luo tietokannasta toinen tietokanta nimell:';
-$strDBGContextID = 'Konteksti-ID';
-$strDBGContext = 'Konteksti';
-$strDBGHits = 'Osumat';
-$strDBGLine = 'Rivi';
-$strDBGMaxTimeMs = 'Maks. aika, ms';
-$strDBGMinTimeMs = 'Min. aika, ms';
-$strDBGModule = 'Moduuli';
-$strDBGTimePerHitMs = 'Aika/osuma, ms';
-$strDBGTotalTimeMs = 'Koko aika, ms';
$strDbPrivileges = 'Tietokantakohtaiset kyttoikeudet';
$strDBRename = 'Muuta tietokannan nimi';
$strDbSpecific = 'tietokantakohtainen';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Koko teksti';
$strIgnoreDuplicates = 'l vlit kaksinkertaisista riveist';
$strIgnoreInserts = 'Kyt IGNORE:a INSERT-komennoissa';
$strIgnore = 'Jt huomiotta';
-$strIgnoringFile = 'Jtetn tiedosto %s huolimatta';
-$strImportDocSQL = 'Tuo docSQL-tiedostoja';
$strImportFiles = 'Tuo tiedostoja';
$strImportFormat = 'Tuotavan tiedoston muoto';
$strImportSuccessfullyFinished = 'Tuonti onnistui, %d kysely suoritettu.';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Kelvollista polkua teemalle %s ei l
$strThemePathNotFound = 'Teeman %s polkua ei lydy!';
$strTheme = 'Teema/tyyli';
$strThisHost = 'Tm isnt';
-$strThisNotDirectory = 'Tm ei ole hakemisto';
$strThreads = 'Sikeet';
$strThreadSuccessfullyKilled = 'Sikeen %s (threadin) lopetus onnistui.';
$strTime = 'Aika';
@@ -984,8 +969,6 @@ $strWildcard = 'jokerimerkki';
$strWindowNotFound = 'Kohdeselainikkunaa ei voitu pivitt. Syyn voi olla se, ett olet sulkenut isntikkunan tai ett selaimesi tietoturva-asetukset estvt ikkunoiden vlisen pivittmisen.';
$strWithChecked = 'Valitut:';
$strWriteRequests = 'Kirjoituspyynnt';
-$strWritingCommentNotPossible = 'Kommentin kirjoittaminen ei ole mahdollista';
-$strWritingRelationNotPossible = 'Relaation kirjoittaminen ei ole mahdollista';
$strWrongUser = 'Vr kyttjtunnus tai salasana. Psy kielletty.';
$strXMLOptions = 'XML-valinnat';
@@ -998,4 +981,38 @@ $strZip = '"zip-pakattu"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php
index 71fd4c230..0df1631c3 100644
--- a/lang/finnish-utf-8.inc.php
+++ b/lang/finnish-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d.%m.%Y klo %H:%M';
$timespanfmt = '%s päivää, %s tuntia, %s minuuttia ja %s sekuntia';
$strAbortedClients = 'Keskeytetty';
-$strAbsolutePathToDocSqlDir = 'Anna täydellinen polku docSQL-hakemistoon Internet-palvelimella';
$strAccessDeniedCreateConfig = 'Todennäköinen syy tälle on se, ettet ole luonut asetustiedostoa. Voit käyttää %1$sasetusskriptiä%2$s asetustiedoston luomiseen.';
$strAccessDeniedExplanation = 'phpMyAdmin yritti saada yhteyden MySQL-palvelimeen, mutta se torjui yhteyden. Tarkista palvelin, käyttäjänimi ja salasana config.inc.php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen järjestelmänvalvojan antamia tietoja.';
$strAccessDenied = 'Pääsy kielletty';
@@ -33,8 +32,6 @@ $strAddClause = 'Lisää %s';
$strAddConstraints = 'Lisää rajoitteet';
$strAddDeleteColumn = 'Lisää/poista sarakkeita';
$strAddDeleteRow = 'Lisää/poista hakuehtoja';
-$strAddedColumnComment = 'Lisätty kommentti sarakkeeseen';
-$strAddedColumnRelation = 'Lisätty relaatio sarakkeeseen';
$strAddFields = 'Lisää %s kenttä(ä)';
$strAddHeaderComment = 'Lisää oma kommentti otsikkoon (\\n on rivinvaihto)';
$strAddIntoComments = 'Lisää kommentteihin';
@@ -206,15 +203,6 @@ $strDataOnly = 'Vain data';
$strDataPages = "Dataa sisältävät sivut";
$strDBComment = 'Tietokannan kommentti: ';
$strDBCopy = 'Luo tietokannasta toinen tietokanta nimellä:';
-$strDBGContextID = 'Konteksti-ID';
-$strDBGContext = 'Konteksti';
-$strDBGHits = 'Osumat';
-$strDBGLine = 'Rivi';
-$strDBGMaxTimeMs = 'Maks. aika, ms';
-$strDBGMinTimeMs = 'Min. aika, ms';
-$strDBGModule = 'Moduuli';
-$strDBGTimePerHitMs = 'Aika/osuma, ms';
-$strDBGTotalTimeMs = 'Koko aika, ms';
$strDbPrivileges = 'Tietokantakohtaiset käyttöoikeudet';
$strDBRename = 'Muuta tietokannan nimi';
$strDbSpecific = 'tietokantakohtainen';
@@ -351,8 +339,6 @@ $strIdxFulltext = 'Koko teksti';
$strIgnoreDuplicates = 'Älä välitä kaksinkertaisista riveistä';
$strIgnoreInserts = 'Käytä IGNORE:a INSERT-komennoissa';
$strIgnore = 'Jätä huomiotta';
-$strIgnoringFile = 'Jätetään tiedosto %s huolimatta';
-$strImportDocSQL = 'Tuo docSQL-tiedostoja';
$strImportFiles = 'Tuo tiedostoja';
$strImportFormat = 'Tuotavan tiedoston muoto';
$strImportSuccessfullyFinished = 'Tuonti onnistui, %d kyselyä suoritettu.';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = 'Kelvollista polkua teemalle %s ei löytynyt.';
$strThemePathNotFound = 'Teeman %s polkua ei löydy!';
$strTheme = 'Teema/tyyli';
$strThisHost = 'Tämä isäntä';
-$strThisNotDirectory = 'Tämä ei ole hakemisto';
$strThreads = 'Säikeet';
$strThreadSuccessfullyKilled = 'Säikeen %s (threadin) lopetus onnistui.';
$strTime = 'Aika';
@@ -985,8 +970,6 @@ $strWildcard = 'jokerimerkki';
$strWindowNotFound = 'Kohdeselainikkunaa ei voitu päivittää. Syynä voi olla se, että olet sulkenut isäntäikkunan tai että selaimesi tietoturva-asetukset estävät ikkunoiden välisen päivittämisen.';
$strWithChecked = 'Valitut:';
$strWriteRequests = 'Kirjoituspyynnöt';
-$strWritingCommentNotPossible = 'Kommentin kirjoittaminen ei ole mahdollista';
-$strWritingRelationNotPossible = 'Relaation kirjoittaminen ei ole mahdollista';
$strWrongUser = 'Väärä käyttäjätunnus tai salasana. Pääsy kielletty.';
$strXMLOptions = 'XML-valinnat';
@@ -999,4 +982,38 @@ $strZip = '"zip-pakattu"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/french-iso-8859-1.inc.php b/lang/french-iso-8859-1.inc.php
index 81de950eb..50ddcece3 100644
--- a/lang/french-iso-8859-1.inc.php
+++ b/lang/french-iso-8859-1.inc.php
@@ -19,7 +19,6 @@ $datefmt = '%A %d %B %Y
$timespanfmt = '%s jours, %s heures, %s minutes et %s secondes';
$strAbortedClients = 'Arrts prmaturs';
-$strAbsolutePathToDocSqlDir = 'Veuillez entrer le chemin absolu du rpertoire docSQL sur le serveur web';
$strAccessDenied = 'Accs refus';
$strAccessDeniedCreateConfig = 'La raison probable est que vous n\'avez pas cr de fichier de configuration. Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but.';
$strAccessDeniedExplanation = 'phpMyAdmin a tent de se connecter au serveur MySQL, et le serveur a rejet la connexion. Veuillez vrifier les valeurs de "host", "username" et "password" dans config.inc.php et vous assurer qu\'elles correspondent aux informations fournies par l\'administrateur du serveur MySQL.';
@@ -29,8 +28,6 @@ $strAddClause = 'Ajouter %s';
$strAddConstraints = 'Inclure les contraintes de cls trangres';
$strAddDeleteColumn = 'Ajouter/effacer x colonne(s)';
$strAddDeleteRow = 'Ajouter/effacer x ligne(s)';
-$strAddedColumnComment = 'Commentaire ajout pour la colonne';
-$strAddedColumnRelation = 'Relation ajoute pour la colonne';
$strAddFields = 'Ajouter %s champ(s)';
$strAddHeaderComment = 'Commentaires mis en en-tte (\\n spare les lignes)';
$strAddIntoComments = 'Inclure sous forme de commentaires';
@@ -202,15 +199,6 @@ $strDataOnly = 'Donn
$strDataPages = 'Pages contenant des donnes';
$strDBComment = 'Commentaire sur la base de donnes: ';
$strDBCopy = 'Copier la base de donnes vers';
-$strDBGContext = 'Contexte';
-$strDBGContextID = 'Identificateur de contexte';
-$strDBGHits = 'Occurences';
-$strDBGLine = 'Ligne';
-$strDBGMaxTimeMs = 'Dure maximum, ms';
-$strDBGMinTimeMs = 'Dure minimum, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Dure/Occurence, ms';
-$strDBGTotalTimeMs = 'Dure totale, ms';
$strDbPrivileges = 'Privilges spcifiques une base de donnes';
$strDBRename = 'Changer le nom de la base de donnes pour';
$strDbSpecific = 'spcifique cette base de donnes';
@@ -347,8 +335,6 @@ $strIdxFulltext = 'Texte entier';
$strIgnoreDuplicates = 'Ignorer les doublons';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Ignorer les erreurs de doublons (INSERT IGNORE)';
-$strIgnoringFile = 'Fichier %s ignor';
-$strImportDocSQL = 'Importer des fichiers docSQL';
$strImportFiles = 'Importe les fichiers';
$strImportFormat = 'Format du fichier d\'importation';
$strImport = 'Importer';
@@ -901,7 +887,6 @@ $strThemeNoValidImgPath = 'Chemin des images inexistant pour le th
$strThemePathNotFound = 'Chemin non trouv pour le thme %s!';
$strTheme = 'Thme / Style';
$strThisHost = 'Ce serveur';
-$strThisNotDirectory = 'Ceci n\'est pas un rpertoire';
$strThreads = 'Fils d\'excution';
$strThreadSuccessfullyKilled = 'Le processus %s a t limin.';
$strTime = 'Dure';
@@ -981,8 +966,6 @@ $strWildcard = 'passepartout';
$strWindowNotFound = 'La fentre principale n\'a pu tre mise jour. Il est possible que vous l\'ayiez ferme, ou encore que votre navigateur bloque les mises jour inter-fentres pour des raisons de scurit.';
$strWithChecked = 'Pour la slection :';
$strWriteRequests = 'Requtes d\'criture';
-$strWritingCommentNotPossible = 'Ajout de commentaire impossible';
-$strWritingRelationNotPossible = 'Ajout de relation impossible';
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accs refus';
$strXMLOptions = 'Options XML';
@@ -995,4 +978,38 @@ $strZip = '"zipp
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/french-iso-8859-15.inc.php b/lang/french-iso-8859-15.inc.php
index 05416ebe6..b163c5b64 100644
--- a/lang/french-iso-8859-15.inc.php
+++ b/lang/french-iso-8859-15.inc.php
@@ -19,7 +19,6 @@ $datefmt = '%A %d %B %Y
$timespanfmt = '%s jours, %s heures, %s minutes et %s secondes';
$strAbortedClients = 'Arrts prmaturs';
-$strAbsolutePathToDocSqlDir = 'Veuillez entrer le chemin absolu du rpertoire docSQL sur le serveur web';
$strAccessDenied = 'Accs refus';
$strAccessDeniedCreateConfig = 'La raison probable est que vous n\'avez pas cr de fichier de configuration. Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but.';
$strAccessDeniedExplanation = 'phpMyAdmin a tent de se connecter au serveur MySQL, et le serveur a rejet la connexion. Veuillez vrifier les valeurs de "host", "username" et "password" dans config.inc.php et vous assurer qu\'elles correspondent aux informations fournies par l\'administrateur du serveur MySQL.';
@@ -29,8 +28,6 @@ $strAddClause = 'Ajouter %s';
$strAddConstraints = 'Inclure les contraintes de cls trangres';
$strAddDeleteColumn = 'Ajouter/effacer x colonne(s)';
$strAddDeleteRow = 'Ajouter/effacer x ligne(s)';
-$strAddedColumnComment = 'Commentaire ajout pour la colonne';
-$strAddedColumnRelation = 'Relation ajoute pour la colonne';
$strAddFields = 'Ajouter %s champ(s)';
$strAddHeaderComment = 'Commentaires mis en en-tte (\\n spare les lignes)';
$strAddIntoComments = 'Inclure sous forme de commentaires';
@@ -202,15 +199,6 @@ $strDataOnly = 'Donn
$strDataPages = 'Pages contenant des donnes';
$strDBComment = 'Commentaire sur la base de donnes: ';
$strDBCopy = 'Copier la base de donnes vers';
-$strDBGContext = 'Contexte';
-$strDBGContextID = 'Identificateur de contexte';
-$strDBGHits = 'Occurences';
-$strDBGLine = 'Ligne';
-$strDBGMaxTimeMs = 'Dure maximum, ms';
-$strDBGMinTimeMs = 'Dure minimum, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Dure/Occurence, ms';
-$strDBGTotalTimeMs = 'Dure totale, ms';
$strDbPrivileges = 'Privilges spcifiques une base de donnes';
$strDBRename = 'Changer le nom de la base de donnes pour';
$strDbSpecific = 'spcifique cette base de donnes';
@@ -347,8 +335,6 @@ $strIdxFulltext = 'Texte entier';
$strIgnoreDuplicates = 'Ignorer les doublons';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Ignorer les erreurs de doublons (INSERT IGNORE)';
-$strIgnoringFile = 'Fichier %s ignor';
-$strImportDocSQL = 'Importer des fichiers docSQL';
$strImportFiles = 'Importe les fichiers';
$strImportFormat = 'Format du fichier d\'importation';
$strImport = 'Importer';
@@ -901,7 +887,6 @@ $strThemeNoValidImgPath = 'Chemin des images inexistant pour le th
$strThemePathNotFound = 'Chemin non trouv pour le thme %s!';
$strTheme = 'Thme / Style';
$strThisHost = 'Ce serveur';
-$strThisNotDirectory = 'Ceci n\'est pas un rpertoire';
$strThreads = 'Fils d\'excution';
$strThreadSuccessfullyKilled = 'Le processus %s a t limin.';
$strTime = 'Dure';
@@ -981,8 +966,6 @@ $strWildcard = 'passepartout';
$strWindowNotFound = 'La fentre principale n\'a pu tre mise jour. Il est possible que vous l\'ayiez ferme, ou encore que votre navigateur bloque les mises jour inter-fentres pour des raisons de scurit.';
$strWithChecked = 'Pour la slection :';
$strWriteRequests = 'Requtes d\'criture';
-$strWritingCommentNotPossible = 'Ajout de commentaire impossible';
-$strWritingRelationNotPossible = 'Ajout de relation impossible';
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accs refus';
$strXMLOptions = 'Options XML';
@@ -995,4 +978,38 @@ $strZip = '"zipp
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php
index 052a19f2b..649d5f576 100644
--- a/lang/french-utf-8.inc.php
+++ b/lang/french-utf-8.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%A %d %B %Y à %H:%M';
$timespanfmt = '%s jours, %s heures, %s minutes et %s secondes';
$strAbortedClients = 'Arrêts prématurés';
-$strAbsolutePathToDocSqlDir = 'Veuillez entrer le chemin absolu du répertoire docSQL sur le serveur web';
$strAccessDenied = 'Accès refusé';
$strAccessDeniedCreateConfig = 'La raison probable est que vous n\'avez pas créé de fichier de configuration. Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but.';
$strAccessDeniedExplanation = 'phpMyAdmin a tenté de se connecter au serveur MySQL, et le serveur a rejeté la connexion. Veuillez vérifier les valeurs de "host", "username" et "password" dans config.inc.php et vous assurer qu\'elles correspondent aux informations fournies par l\'administrateur du serveur MySQL.';
@@ -30,8 +29,6 @@ $strAddClause = 'Ajouter %s';
$strAddConstraints = 'Inclure les contraintes de clés étrangères';
$strAddDeleteColumn = 'Ajouter/effacer x colonne(s)';
$strAddDeleteRow = 'Ajouter/effacer x ligne(s)';
-$strAddedColumnComment = 'Commentaire ajouté pour la colonne';
-$strAddedColumnRelation = 'Relation ajoutée pour la colonne';
$strAddFields = 'Ajouter %s champ(s)';
$strAddHeaderComment = 'Commentaires mis en en-tête (\\n sépare les lignes)';
$strAddIntoComments = 'Inclure sous forme de commentaires';
@@ -203,15 +200,6 @@ $strDataOnly = 'Données seulement';
$strDataPages = 'Pages contenant des données';
$strDBComment = 'Commentaire sur la base de données: ';
$strDBCopy = 'Copier la base de données vers';
-$strDBGContext = 'Contexte';
-$strDBGContextID = 'Identificateur de contexte';
-$strDBGHits = 'Occurences';
-$strDBGLine = 'Ligne';
-$strDBGMaxTimeMs = 'Durée maximum, ms';
-$strDBGMinTimeMs = 'Durée minimum, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Durée/Occurence, ms';
-$strDBGTotalTimeMs = 'Durée totale, ms';
$strDbPrivileges = 'Privilèges spécifiques à une base de données';
$strDBRename = 'Changer le nom de la base de données pour';
$strDbSpecific = 'spécifique à cette base de données';
@@ -348,8 +336,6 @@ $strIdxFulltext = 'Texte entier';
$strIgnoreDuplicates = 'Ignorer les doublons';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Ignorer les erreurs de doublons (INSERT IGNORE)';
-$strIgnoringFile = 'Fichier %s ignoré';
-$strImportDocSQL = 'Importer des fichiers docSQL';
$strImportFiles = 'Importe les fichiers';
$strImportFormat = 'Format du fichier d\'importation';
$strImport = 'Importer';
@@ -902,7 +888,6 @@ $strThemeNoValidImgPath = 'Chemin des images inexistant pour le thème %s!';
$strThemePathNotFound = 'Chemin non trouvé pour le thème %s!';
$strTheme = 'Thème / Style';
$strThisHost = 'Ce serveur';
-$strThisNotDirectory = 'Ceci n\'est pas un répertoire';
$strThreads = 'Fils d\'exécution';
$strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.';
$strTime = 'Durée';
@@ -982,8 +967,6 @@ $strWildcard = 'passepartout';
$strWindowNotFound = 'La fenêtre principale n\'a pu être mise à jour. Il est possible que vous l\'ayiez fermée, ou encore que votre navigateur bloque les mises à jour inter-fenêtres pour des raisons de sécurité.';
$strWithChecked = 'Pour la sélection :';
$strWriteRequests = 'Requêtes d\'écriture';
-$strWritingCommentNotPossible = 'Ajout de commentaire impossible';
-$strWritingRelationNotPossible = 'Ajout de relation impossible';
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé';
$strXMLOptions = 'Options XML';
@@ -996,4 +979,38 @@ $strZip = '"zippé"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/galician-iso-8859-1.inc.php b/lang/galician-iso-8859-1.inc.php
index a6f91b07b..a94307a77 100644
--- a/lang/galician-iso-8859-1.inc.php
+++ b/lang/galician-iso-8859-1.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d de %B de %Y
$timespanfmt = '%s das, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Cancelado';
-$strAbsolutePathToDocSqlDir = 'Introduza a rota absoluta completa ao directorio docSQL no servidor';
$strAccessDenied = 'Acceso Negado';
$strAccessDeniedCreateConfig = 'Isto dbese, posibelmente, a que non creou un ficheiro de configuracin. Talvez queira utilizar %1$ssetup script%2$s para crear un.';
$strAccessDeniedExplanation = 'O phpMyAdmin tentouse conectar ao servidor de MySQL, mais o servidor rexeitou a conexin. Deber comprobar o nome do servidor, o nome de usuario e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden coa informacin proporcionada polo administrador do servidor do MySQL.';
@@ -31,8 +30,6 @@ $strAddClause = 'Engadir %s';
$strAddConstraints = 'Adicionar limitacins';
$strAddDeleteColumn = 'Adicionar/Eliminar columnas de campo';
$strAddDeleteRow = 'Adicionar/Eliminar filas de criterios';
-$strAddedColumnComment = 'Pxoselle un comentario columna';
-$strAddedColumnRelation = 'Adicionuselle unha relacin columna';
$strAddFields = 'Adicionar %s campo(s)';
$strAddHeaderComment = 'Adicionar un comentario proprio no cabezallo (\n lias diferentes)';
$strAddIntoComments = 'Engadir aos comentarios';
@@ -204,15 +201,6 @@ $strDataOnly = 'S
$strDataPages = 'Pxinas con datos';
$strDBComment = 'Comentario da base de datos: ';
$strDBCopy = 'Copiar a base de datos para';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID do contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Lia';
-$strDBGMaxTimeMs = 'Tempo mximo, ms';
-$strDBGMinTimeMs = 'Tempo mnimo, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilexios proprios de base de datos';
$strDBRename = 'Mudar o nome da base de datos para';
$strDbSpecific = 'especfico da base de datos';
@@ -348,8 +336,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignorar as fileiras duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar insercins ignoradas';
-$strIgnoringFile = 'A ignorar o ficheiro %s';
-$strImportDocSQL = 'Importar ficheiros de docSQL';
$strImportFiles = 'Importar ficheiros';
$strImportFormat = 'Formato do ficheiro importado';
$strImport = 'Importar';
@@ -901,7 +887,6 @@ $strThemeNoValidImgPath = 'Non hai unha rota v
$strThemePathNotFound = 'Non se atopou a rota do tema para o tema %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Este servidor';
-$strThisNotDirectory = 'Isto non era un directorio';
$strThreads = 'Fos';
$strThreadSuccessfullyKilled = 'Finalizouse o fo %s.';
$strTimeoutInfo = 'A importacin anterior excedeu do tempo permitido; unha vez reiniciada continuar desde a posicin %d.';
@@ -981,8 +966,6 @@ $strWildcard = 'comod
$strWindowNotFound = 'Non se puido modificar a xanela de destino do navegador. Talvez porque fechou a xanela da que depende ou porque o seu navegador est a bloquear as actualizacins entre xanelas xa que asi o pediu na configuracin de seguranza do navegador.';
$strWithChecked = 'Todos os marcados';
$strWriteRequests = 'Peticins de escrita';
-$strWritingCommentNotPossible = 'Non posbel escreber o comentario';
-$strWritingRelationNotPossible = 'Non posbel escreber a relacin';
$strWrongUser = 'Usuario ou contrasinal errado. Acceso negado.';
$strXMLOptions = 'opcins XML';
@@ -1001,4 +984,38 @@ $strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php
index 50fc32d9c..06e045bf6 100644
--- a/lang/galician-utf-8.inc.php
+++ b/lang/galician-utf-8.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d de %B de %Y ás %H:%M';
$timespanfmt = '%s días, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Cancelado';
-$strAbsolutePathToDocSqlDir = 'Introduza a rota absoluta completa ao directorio docSQL no servidor';
$strAccessDenied = 'Acceso Negado';
$strAccessDeniedCreateConfig = 'Isto débese, posibelmente, a que non creou un ficheiro de configuración. Talvez queira utilizar %1$ssetup script%2$s para crear un.';
$strAccessDeniedExplanation = 'O phpMyAdmin tentouse conectar ao servidor de MySQL, mais o servidor rexeitou a conexión. Deberá comprobar o nome do servidor, o nome de usuario e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden coa información proporcionada polo administrador do servidor do MySQL.';
@@ -32,8 +31,6 @@ $strAddClause = 'Engadir %s';
$strAddConstraints = 'Adicionar limitacións';
$strAddDeleteColumn = 'Adicionar/Eliminar columnas de campo';
$strAddDeleteRow = 'Adicionar/Eliminar filas de criterios';
-$strAddedColumnComment = 'Púxoselle un comentario á columna';
-$strAddedColumnRelation = 'Adicionóuselle unha relación á columna';
$strAddFields = 'Adicionar %s campo(s)';
$strAddHeaderComment = 'Adicionar un comentario proprio no cabezallo (\n liñas diferentes)';
$strAddIntoComments = 'Engadir aos comentarios';
@@ -205,15 +202,6 @@ $strDataOnly = 'Só os datos';
$strDataPages = 'Páxinas con datos';
$strDBComment = 'Comentario da base de datos: ';
$strDBCopy = 'Copiar a base de datos para';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID do contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Liña';
-$strDBGMaxTimeMs = 'Tempo máximo, ms';
-$strDBGMinTimeMs = 'Tempo mínimo, ms';
-$strDBGModule = 'Módulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilexios proprios de base de datos';
$strDBRename = 'Mudar o nome da base de datos para';
$strDbSpecific = 'específico da base de datos';
@@ -349,8 +337,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignorar as fileiras duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar insercións ignoradas';
-$strIgnoringFile = 'A ignorar o ficheiro %s';
-$strImportDocSQL = 'Importar ficheiros de docSQL';
$strImportFiles = 'Importar ficheiros';
$strImportFormat = 'Formato do ficheiro importado';
$strImport = 'Importar';
@@ -902,7 +888,6 @@ $strThemeNoValidImgPath = 'Non hai unha rota válida de imaxe para o tema %s!';
$strThemePathNotFound = 'Non se atopou a rota do tema para o tema %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Este servidor';
-$strThisNotDirectory = 'Isto non era un directorio';
$strThreads = 'Fíos';
$strThreadSuccessfullyKilled = 'Finalizouse o fío %s.';
$strTimeoutInfo = 'A importación anterior excedeu do tempo permitido; unha vez reiniciada continuará desde a posición %d.';
@@ -982,8 +967,6 @@ $strWildcard = 'comodín';
$strWindowNotFound = 'Non se puido modificar a xanela de destino do navegador. Talvez porque fechou a xanela da que depende ou porque o seu navegador está a bloquear as actualizacións entre xanelas xa que asi o pediu na configuración de seguranza do navegador.';
$strWithChecked = 'Todos os marcados';
$strWriteRequests = 'Peticións de escrita';
-$strWritingCommentNotPossible = 'Non é posíbel escreber o comentario';
-$strWritingRelationNotPossible = 'Non é posíbel escreber a relación';
$strWrongUser = 'Usuario ou contrasinal errado. Acceso negado.';
$strXMLOptions = 'opcións XML';
@@ -1002,4 +985,38 @@ $strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php
index f2ec72049..ba9bcf4cc 100644
--- a/lang/georgian-utf-8.inc.php
+++ b/lang/georgian-utf-8.inc.php
@@ -357,13 +357,10 @@ $strZip = '"zip-ში შეკუმშვა"';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -467,15 +464,6 @@ $strDataDict = 'Data Dictionary'; //to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -556,8 +544,6 @@ $strIcelandic = 'Icelandic'; //to translate
$strId = 'ID'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -930,7 +916,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
@@ -990,8 +975,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/german-iso-8859-1.inc.php b/lang/german-iso-8859-1.inc.php
index a11794557..0a295ddb7 100644
--- a/lang/german-iso-8859-1.inc.php
+++ b/lang/german-iso-8859-1.inc.php
@@ -26,7 +26,6 @@ $datefmt = '%d. %B %Y um %H:%M';
$timespanfmt = '%s Tage, %s Stunden, %s Minuten und %s Sekunden';
$strAbortedClients = 'Abgebrochen';
-$strAbsolutePathToDocSqlDir = 'Bitte geben Sie den vollstndigen Pfad auf dem Webserver zum docSQL-Verzeichnis ein.';
$strAccessDeniedCreateConfig = 'Eine mgliche Ursache wre, dass sie noch keine Konfigurationsdatei angelegt haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine solche zu erstellen.';
$strAccessDeniedExplanation = 'phpMyAdmin hat versucht eine Verbindung zum MySQL-Server aufzubauen, jedoch hat dieser die Verbindung zurckgewiesen. Sie sollten Ihre Einstellungen fr Host, Benutzername und Passwort in Ihrer config.inc.php berprfen und sich vergewissern, dass diese den Informationen, welche sie vom Administrator erhalten haben, entsprechen.';
$strAccessDenied = 'Zugriff verweigert.';
@@ -36,8 +35,6 @@ $strAddClause = 'F
$strAddConstraints = 'Constraints hinzufgen';
$strAddDeleteColumn = 'Spalten hinzufgen/entfernen';
$strAddDeleteRow = 'Zeilen hinzufgen/entfernen';
-$strAddedColumnComment = 'Spaltenkommentar wurde hinzugefgt';
-$strAddedColumnRelation = 'Spaltenbeziehung wurde hinzugefgt';
$strAddFields = '%s Felder hinzufgen';
$strAddHeaderComment = 'Individuelle Kommentare fr den Kopfbereich (\\n erzeugt einen Zeilenumbruch)';
$strAddIntoComments = 'In Kommentarbereich einbeziehen';
@@ -209,15 +206,6 @@ $strDataOnly = 'Nur Daten';
$strDataPages = 'Daten enthaltende Seiten';
$strDBComment = 'Datenbankkommentar: ';
$strDBCopy = 'Datenbank kopieren nach';
-$strDBGContextID = 'Kontext-ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Treffer';
-$strDBGLine = 'Zeile';
-$strDBGMaxTimeMs = 'Max. Zeit in ms';
-$strDBGMinTimeMs = 'Min. Zeit in ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Zeit/Treffer in ms';
-$strDBGTotalTimeMs = 'Gesamtzeit in ms';
$strDbPrivileges = 'Datenbankspezifische Rechte';
$strDBRename = 'Datenbank umbenennen in';
$strDbSpecific = 'datenbankspezifisch';
@@ -354,8 +342,6 @@ $strIdxFulltext = 'Volltext';
$strIgnoreDuplicates = 'Ignoriere doppelte Zeilen';
$strIgnore = 'Ignorieren';
$strIgnoreInserts = 'Fehlerbergehenden INSERT-Befehl verwenden';
-$strIgnoringFile = 'Die Datei %s wird ignoriert';
-$strImportDocSQL = 'docSQL-Dateien importieren';
$strImportFiles = 'Dateiimport';
$strImportFormat = 'Dateiformat';
$strImport = 'Importieren';
@@ -908,7 +894,6 @@ $strThemeNoValidImgPath = 'Keinen g
$strTheme = 'Oberflchendesign';
$strThemePathNotFound = 'Pfad fr das Oberflchendesign "%s" nicht gefunden!';
$strThisHost = 'Dieser Host';
-$strThisNotDirectory = 'Dies ist kein Verzeichnis';
$strThreads = 'Prozesse';
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
$strTime = 'Dauer';
@@ -988,8 +973,6 @@ $strWildcard = 'Platzhalter';
$strWindowNotFound = 'Das Ziel-Browserfenster konnte nicht aktualisiert werden. Mglicherweise wurde das Ursprungsfenster geschlossen oder der Browser verhindert den Zugriff aufgrund von Ihren Sicherheitseinstellungen.';
$strWithChecked = 'markierte:';
$strWriteRequests = 'Schreibanfragen';
-$strWritingCommentNotPossible = 'Es knnen keine Kommentare geschrieben werden';
-$strWritingRelationNotPossible = 'Es knnen keine Spaltenbeziehungen gespeichert werden.';
$strWrongUser = 'Falscher Benutzername/Passwort. Zugriff verweigert.';
$strXML = 'XML';
@@ -1001,4 +984,38 @@ $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr
$strZip = 'Zip-komprimiert';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/german-iso-8859-15.inc.php b/lang/german-iso-8859-15.inc.php
index c31917a41..53bf77eb8 100644
--- a/lang/german-iso-8859-15.inc.php
+++ b/lang/german-iso-8859-15.inc.php
@@ -26,7 +26,6 @@ $datefmt = '%d. %B %Y um %H:%M';
$timespanfmt = '%s Tage, %s Stunden, %s Minuten und %s Sekunden';
$strAbortedClients = 'Abgebrochen';
-$strAbsolutePathToDocSqlDir = 'Bitte geben Sie den vollstndigen Pfad auf dem Webserver zum docSQL-Verzeichnis ein.';
$strAccessDeniedCreateConfig = 'Eine mgliche Ursache wre, dass sie noch keine Konfigurationsdatei angelegt haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine solche zu erstellen.';
$strAccessDeniedExplanation = 'phpMyAdmin hat versucht eine Verbindung zum MySQL-Server aufzubauen, jedoch hat dieser die Verbindung zurckgewiesen. Sie sollten Ihre Einstellungen fr Host, Benutzername und Passwort in Ihrer config.inc.php berprfen und sich vergewissern, dass diese den Informationen, welche sie vom Administrator erhalten haben, entsprechen.';
$strAccessDenied = 'Zugriff verweigert.';
@@ -36,8 +35,6 @@ $strAddClause = 'F
$strAddConstraints = 'Constraints hinzufgen';
$strAddDeleteColumn = 'Spalten hinzufgen/entfernen';
$strAddDeleteRow = 'Zeilen hinzufgen/entfernen';
-$strAddedColumnComment = 'Spaltenkommentar wurde hinzugefgt';
-$strAddedColumnRelation = 'Spaltenbeziehung wurde hinzugefgt';
$strAddFields = '%s Felder hinzufgen';
$strAddHeaderComment = 'Individuelle Kommentare fr den Kopfbereich (\\n erzeugt einen Zeilenumbruch)';
$strAddIntoComments = 'In Kommentarbereich einbeziehen';
@@ -209,15 +206,6 @@ $strDataOnly = 'Nur Daten';
$strDataPages = 'Daten enthaltende Seiten';
$strDBComment = 'Datenbankkommentar: ';
$strDBCopy = 'Datenbank kopieren nach';
-$strDBGContextID = 'Kontext-ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Treffer';
-$strDBGLine = 'Zeile';
-$strDBGMaxTimeMs = 'Max. Zeit in ms';
-$strDBGMinTimeMs = 'Min. Zeit in ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Zeit/Treffer in ms';
-$strDBGTotalTimeMs = 'Gesamtzeit in ms';
$strDbPrivileges = 'Datenbankspezifische Rechte';
$strDBRename = 'Datenbank umbenennen in';
$strDbSpecific = 'datenbankspezifisch';
@@ -354,8 +342,6 @@ $strIdxFulltext = 'Volltext';
$strIgnoreDuplicates = 'Ignoriere doppelte Zeilen';
$strIgnore = 'Ignorieren';
$strIgnoreInserts = 'Fehlerbergehenden INSERT-Befehl verwenden';
-$strIgnoringFile = 'Die Datei %s wird ignoriert';
-$strImportDocSQL = 'docSQL-Dateien importieren';
$strImportFiles = 'Dateiimport';
$strImportFormat = 'Dateiformat';
$strImport = 'Importieren';
@@ -908,7 +894,6 @@ $strThemeNoValidImgPath = 'Keinen g
$strTheme = 'Oberflchendesign';
$strThemePathNotFound = 'Pfad fr das Oberflchendesign "%s" nicht gefunden!';
$strThisHost = 'Dieser Host';
-$strThisNotDirectory = 'Dies ist kein Verzeichnis';
$strThreads = 'Prozesse';
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
$strTime = 'Dauer';
@@ -988,8 +973,6 @@ $strWildcard = 'Platzhalter';
$strWindowNotFound = 'Das Ziel-Browserfenster konnte nicht aktualisiert werden. Mglicherweise wurde das Ursprungsfenster geschlossen oder der Browser verhindert den Zugriff aufgrund von Ihren Sicherheitseinstellungen.';
$strWithChecked = 'markierte:';
$strWriteRequests = 'Schreibanfragen';
-$strWritingCommentNotPossible = 'Es knnen keine Kommentare geschrieben werden';
-$strWritingRelationNotPossible = 'Es knnen keine Spaltenbeziehungen gespeichert werden.';
$strWrongUser = 'Falscher Benutzername/Passwort. Zugriff verweigert.';
$strXML = 'XML';
@@ -1001,4 +984,38 @@ $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr
$strZip = 'Zip-komprimiert';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php
index 960538d4f..09002f03c 100644
--- a/lang/german-utf-8.inc.php
+++ b/lang/german-utf-8.inc.php
@@ -27,7 +27,6 @@ $datefmt = '%d. %B %Y um %H:%M';
$timespanfmt = '%s Tage, %s Stunden, %s Minuten und %s Sekunden';
$strAbortedClients = 'Abgebrochen';
-$strAbsolutePathToDocSqlDir = 'Bitte geben Sie den vollständigen Pfad auf dem Webserver zum docSQL-Verzeichnis ein.';
$strAccessDeniedCreateConfig = 'Eine mögliche Ursache wäre, dass sie noch keine Konfigurationsdatei angelegt haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine solche zu erstellen.';
$strAccessDeniedExplanation = 'phpMyAdmin hat versucht eine Verbindung zum MySQL-Server aufzubauen, jedoch hat dieser die Verbindung zurückgewiesen. Sie sollten Ihre Einstellungen für Host, Benutzername und Passwort in Ihrer config.inc.php überprüfen und sich vergewissern, dass diese den Informationen, welche sie vom Administrator erhalten haben, entsprechen.';
$strAccessDenied = 'Zugriff verweigert.';
@@ -37,8 +36,6 @@ $strAddClause = 'Füge %s hinzu';
$strAddConstraints = 'Constraints hinzufügen';
$strAddDeleteColumn = 'Spalten hinzufügen/entfernen';
$strAddDeleteRow = 'Zeilen hinzufügen/entfernen';
-$strAddedColumnComment = 'Spaltenkommentar wurde hinzugefügt';
-$strAddedColumnRelation = 'Spaltenbeziehung wurde hinzugefügt';
$strAddFields = '%s Felder hinzufügen';
$strAddHeaderComment = 'Individuelle Kommentare für den Kopfbereich (\\n erzeugt einen Zeilenumbruch)';
$strAddIntoComments = 'In Kommentarbereich einbeziehen';
@@ -210,15 +207,6 @@ $strDataOnly = 'Nur Daten';
$strDataPages = 'Daten enthaltende Seiten';
$strDBComment = 'Datenbankkommentar: ';
$strDBCopy = 'Datenbank kopieren nach';
-$strDBGContextID = 'Kontext-ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Treffer';
-$strDBGLine = 'Zeile';
-$strDBGMaxTimeMs = 'Max. Zeit in ms';
-$strDBGMinTimeMs = 'Min. Zeit in ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Zeit/Treffer in ms';
-$strDBGTotalTimeMs = 'Gesamtzeit in ms';
$strDbPrivileges = 'Datenbankspezifische Rechte';
$strDBRename = 'Datenbank umbenennen in';
$strDbSpecific = 'datenbankspezifisch';
@@ -355,8 +343,6 @@ $strIdxFulltext = 'Volltext';
$strIgnoreDuplicates = 'Ignoriere doppelte Zeilen';
$strIgnore = 'Ignorieren';
$strIgnoreInserts = 'Fehlerübergehenden INSERT-Befehl verwenden';
-$strIgnoringFile = 'Die Datei %s wird ignoriert';
-$strImportDocSQL = 'docSQL-Dateien importieren';
$strImportFiles = 'Dateiimport';
$strImportFormat = 'Dateiformat';
$strImport = 'Importieren';
@@ -909,7 +895,6 @@ $strThemeNoValidImgPath = 'Keinen gültiges Pfad für Grafiken des Oberflächend
$strTheme = 'Oberflächendesign';
$strThemePathNotFound = 'Pfad für das Oberflächendesign "%s" nicht gefunden!';
$strThisHost = 'Dieser Host';
-$strThisNotDirectory = 'Dies ist kein Verzeichnis';
$strThreads = 'Prozesse';
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
$strTime = 'Dauer';
@@ -989,8 +974,6 @@ $strWildcard = 'Platzhalter';
$strWindowNotFound = 'Das Ziel-Browserfenster konnte nicht aktualisiert werden. Möglicherweise wurde das Ursprungsfenster geschlossen oder der Browser verhindert den Zugriff aufgrund von Ihren Sicherheitseinstellungen.';
$strWithChecked = 'markierte:';
$strWriteRequests = 'Schreibanfragen';
-$strWritingCommentNotPossible = 'Es können keine Kommentare geschrieben werden';
-$strWritingRelationNotPossible = 'Es können keine Spaltenbeziehungen gespeichert werden.';
$strWrongUser = 'Falscher Benutzername/Passwort. Zugriff verweigert.';
$strXML = 'XML';
@@ -1002,4 +985,38 @@ $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränku
$strZip = 'Zip-komprimiert';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/greek-iso-8859-7.inc.php b/lang/greek-iso-8859-7.inc.php
index 65e6f987d..44123a0fd 100644
--- a/lang/greek-iso-8859-7.inc.php
+++ b/lang/greek-iso-8859-7.inc.php
@@ -21,15 +21,12 @@ $datefmt = '%d %B %Y,
$timespanfmt = '%s , %s , %s and %s ';
$strAbortedClients = ' ';
-$strAbsolutePathToDocSqlDir = ' docSQL';
$strAccessDenied = '\' ';
$strAccessDeniedExplanation = ' phpMyAdmin MySQL . , config.inc.php MySQL.';
$strAction = '';
$strAddAutoIncrement = ' AUTO_INCREMENT';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddIntoComments = ' ';
$strAddNewField = ' ';
$strAddPrivilegesOnDb = ' ';
@@ -145,15 +142,6 @@ $strDatabasesStatsHeavyTraffic = '
$strDataDict = ' ';
$strDataOnly = ' ';
$strDBComment = ' : ';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = '';
-$strDBGMaxTimeMs = '. , ms';
-$strDBGMinTimeMs = '. , ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = '/Hit, ms';
-$strDBGTotalTimeMs = '. , ms';
$strDbPrivileges = ' ';
$strDbSpecific = ' ';
$strDefault = '';
@@ -248,8 +236,6 @@ $strHungarian = '
$strId = 'ID';
$strIdxFulltext = ' ';
$strIgnore = '';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL';
$strImportFiles = ' ';
$strIndex = '';
$strIndexes = '';
@@ -550,7 +536,6 @@ $strTblPrivileges = '
$strTextAreaLength = ' ,
';
$strThai = '';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strTime = '';
$strToggleScratchboard = '() ';
@@ -610,8 +595,6 @@ $strWestEuropean = '
$strWildcard = '';
$strWindowNotFound = ' target . parent .';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' / . \' .';
$strXML = 'XML';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php
index 7c8a8e8f0..dcef75d0d 100644
--- a/lang/greek-utf-8.inc.php
+++ b/lang/greek-utf-8.inc.php
@@ -22,15 +22,12 @@ $datefmt = '%d %B %Y, στις %I:%M %p';
$timespanfmt = '%s μέρες, %s ώρες, %s λεπτά and %s δευτερόλεπτα';
$strAbortedClients = 'Ακυρωμένες συνδέσεις';
-$strAbsolutePathToDocSqlDir = 'Παρακαλώ εισάγετε την απόλυτη διαδρομή στον διακομιστή για τον υποκατάλογο του docSQL';
$strAccessDeniedExplanation = 'Το phpMyAdmin προσπάθησε να συνδεθεί με τον διακομιστή MySQL αλλά ο διακομιστής απέριψε τη σύνδεση. Θα πρέπει να ελέγξετε την διεύθυνση, το όνομα χρήστη και τον κωδικό πρόσβασης στο αρχείο ρυθμίσεων config.inc.php και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο διαχειρηστής του διακομιστή MySQL.';
$strAccessDenied = '\'Αρνηση Πρόσβασης';
$strAction = 'Ενέργεια';
$strAddAutoIncrement = 'Προσθήκη τιμής AUTO_INCREMENT';
$strAddDeleteColumn = 'Προσθήκη/Αφαίρεση Στήλης Πεδίου';
$strAddDeleteRow = 'Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων';
-$strAddedColumnComment = 'Το σχόλιο της στήλης προστέθηκε';
-$strAddedColumnRelation = 'Η συσχέτιση της στήλης προστέθηκε';
$strAddIntoComments = 'Προσθήκη στα σχόλια';
$strAddNewField = 'Προσθήκη νέου Πεδίου';
$strAddPrivilegesOnDb = 'Προσθήκη προνομίων στην ακόλουθη βάση δεδομένων';
@@ -146,15 +143,6 @@ $strDataDict = 'Λεξικό δεδομένων';
$strDataOnly = 'Μόνο τα δεδομένα';
$strData = 'Δεδομένα';
$strDBComment = 'Σχόλιο βάσης: ';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Γραμμή';
-$strDBGMaxTimeMs = 'Μεγ. χρόνος, ms';
-$strDBGMinTimeMs = 'Ελαχ. χρόνος, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Χρόνος/Hit, ms';
-$strDBGTotalTimeMs = 'Συνολ. χρόνου, ms';
$strDbPrivileges = 'Προνόμια βάσης δεδομένων';
$strDbSpecific = 'Χρήστης Βάσης';
$strDefaultValueHelp = 'Για προκαθορισμένες τιμές, παρακαλώ εισάγετε μία τιμή, χωρίς χαρακτήρες διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a';
@@ -249,8 +237,6 @@ $strHungarian = 'Ουγγρικά';
$strId = 'ID';
$strIdxFulltext = 'Πλήρες κείμενο';
$strIgnore = 'Παράληψη';
-$strIgnoringFile = 'Παράκαμψη του αρχείου %s';
-$strImportDocSQL = 'Εισαγωγή αρχείων docSQL';
$strImportFiles = 'Εισαγωγή αρχείων';
$strIndexes = 'Ευρετήρια';
$strIndexHasBeenDropped = 'Το ευρετήριο %s διεγράφη';
@@ -551,7 +537,6 @@ $strTblPrivileges = 'Προνόμια πινάκων';
$strTextAreaLength = ' Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί ';
$strThai = 'Ταϋλανδικά';
$strThisHost = 'Αυτός ο διακομιστής';
-$strThisNotDirectory = 'Δεν ήταν φάκελος';
$strThreadSuccessfullyKilled = 'Η λειτουργία %s διεκόπη.';
$strTime = 'Χρόνος';
$strToggleScratchboard = '(Απ)ενεργοποίηση πίνακα σχεδιασμού';
@@ -611,8 +596,6 @@ $strWestEuropean = 'Δυτικής Ευρώπης';
$strWildcard = 'μπαλαντέρ';
$strWindowNotFound = 'Δεν ήταν δυνατό να ανανεωθεί το target παράθυρο του περιηγητή. Ίσως κλείσατε το parent παράθυρο ή ο περιηγητής σας δεν επιτρέπει τις ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας.';
$strWithChecked = 'Με τους επιλεγμένους:';
-$strWritingCommentNotPossible = 'Η εγγραφή του σχολίου δεν ήταν δυνατή';
-$strWritingRelationNotPossible = 'Η εγγραφή της σχέσης δεν ήταν δυνατή';
$strWrongUser = 'Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. \'Αρνηση πρόσβασης.';
$strXML = 'XML';
@@ -1022,4 +1005,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/hebrew-iso-8859-8-i.inc.php b/lang/hebrew-iso-8859-8-i.inc.php
index 095fcd52d..c1836c91c 100644
--- a/lang/hebrew-iso-8859-8-i.inc.php
+++ b/lang/hebrew-iso-8859-8-i.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s , %s , %s - %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL';
$strAccessDenied = ' ';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL, . , config.inc.php " MySQL.';
$strAction = '';
@@ -25,8 +24,6 @@ $strAddAutoIncrement = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ';
$strAddHeaderComment = ' (\\n )';
$strAddIntoComments = ' ';
@@ -174,15 +171,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = ' , ms';
-$strDBGMinTimeMs = ' , ms';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/, ms';
-$strDBGTotalTimeMs = '" , ms';
$strDbPrivileges = ' ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -300,8 +288,6 @@ $strId = '
$strIdxFulltext = 'Fulltext';
$strIgnore = '';
$strIgnoreInserts = ' ';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL';
$strImportFiles = ' ';
$strIndex = '';
$strIndexes = '';
@@ -592,7 +578,6 @@ $strTblPrivileges = '
$strTextAreaLength = ' ,
';
$strTheme = ' / ';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strTime = '';
$strTotal = '"';
$strTotalUC = '"';
@@ -637,8 +622,6 @@ $strWelcome = '
$strWildcard = ' ';
$strWithChecked = ' :';
$strWriteRequests = ' ';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' / . .';
$strXML = 'XML';
@@ -1016,4 +999,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php
index 03ecff89a..f6b5612fa 100644
--- a/lang/hebrew-utf-8.inc.php
+++ b/lang/hebrew-utf-8.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s ימים, %s שעות, %s דקות ו- %s שניות';
$strAbortedClients = 'בוטל';
-$strAbsolutePathToDocSqlDir = 'אנא הכנס את הנתיב המוחלט אל תיקיית docSQL';
$strAccessDeniedExplanation = 'phpMyAdmin ניסה לתקשר עם שרת MySQL, והשרת דחה את החיבור. אתה צריך לבדוק את כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע שקיבלת ע"י אחראי השרת של MySQL.';
$strAccessDenied = 'גישה נדתחה';
$strAction = 'פעולה';
@@ -26,8 +25,6 @@ $strAddAutoIncrement = 'הוספת ערך AUTO_INCREMENT (מספור אוטומ
$strAddConstraints = 'הוספת הגבלות';
$strAddDeleteColumn = 'הוספת/מחיקת עמודות שדה';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'נוספה הערה לעמודה';
-$strAddedColumnRelation = 'נוסף קשר לעמודה';
$strAddFields = 'הוספת %s תאים';
$strAddHeaderComment = 'הוספת הערה מותאמת אל פתיחה(\\n לשבירת שורות)';
$strAddIntoComments = 'הוספה אל הערות';
@@ -175,15 +172,6 @@ $strDataPages = 'דפים מכילים מידע';
$strData = 'נתונים';
$strDBComment = 'הערה על מאגר הנתונים: ';
$strDBCopy = 'העתקת מאגר נתונים אל';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'לחיצות';
-$strDBGLine = 'שורה';
-$strDBGMaxTimeMs = 'זמן מירבי, ms';
-$strDBGMinTimeMs = 'זמן מיזערי, ms';
-$strDBGModule = 'מודול';
-$strDBGTimePerHitMs = 'זמן/לחיצה, ms';
-$strDBGTotalTimeMs = 'סה"כ זמן, ms';
$strDbPrivileges = 'הרשאות ספציפיות למאגר נתונים';
$strDBRename = 'שינוי שם מאגר נתונים אל';
$strDbSpecific = 'ספציפי למאגר הנתונים';
@@ -301,8 +289,6 @@ $strIdxFulltext = 'Fulltext';
$strId = 'קוד זיהוי';
$strIgnoreInserts = 'השתמש בהעלמות מהכנסות';
$strIgnore = 'התעלמות';
-$strIgnoringFile = 'מתעלם מהקובץ %s';
-$strImportDocSQL = 'ייבוא קבצי docSQL';
$strImportFiles = 'קבצי ייבוא';
$strIndexes = 'אינדקסים';
$strIndexHasBeenDropped = 'אינדקס %s הוסר';
@@ -593,7 +579,6 @@ $strTblPrivileges = 'הרשאות ספציפיות-לטבלאות';
$strTextAreaLength = ' משום אורכם,
השדה הזה יכול להיות בלתי עריך ';
$strTheme = 'תבנית / סגנון';
$strThisHost = 'מארח זה';
-$strThisNotDirectory = 'זהו לא תיקייה';
$strTime = 'זמן';
$strTotalUC = 'סה"כ';
$strTotal = 'סה"כ';
@@ -638,8 +623,6 @@ $strWelcome = 'ברוך הבא אל %s';
$strWildcard = 'תו כללי';
$strWithChecked = 'עם הנבחרים:';
$strWriteRequests = 'בקשות כתיבה';
-$strWritingCommentNotPossible = 'כתיבת הערה לא אפשרית';
-$strWritingRelationNotPossible = 'כתיבה של יחס לא אפשרית';
$strWrongUser = 'שם משתמש/סיסמה שגויים. הגישה נדחתה.';
$strXML = 'XML';
@@ -1017,4 +1000,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php
index 04149337c..1eb0aa476 100644
--- a/lang/hindi-utf-8.inc.php
+++ b/lang/hindi-utf-8.inc.php
@@ -26,7 +26,6 @@ $timespanfmt = '%s days, %s hours, %s minutes and %s seconds';
$strAccessDenied = 'प्रवेश निषेध';
$strAction = ' कार्य';
-$strAddedColumnComment = 'कोलम पर टिप्पणि किया गया';
$strAddNewField = 'नया फील्ड जोडो';
$strAddPrivilegesOnDb = 'इन डाटाबेसों के लिये प्रिविलेज जोडिये';
$strAddPrivilegesOnTbl = 'इन टेबल के लिये प्रिविलेज जोडिये';
@@ -264,21 +263,18 @@ $strValue = 'मूल्य';
$strWelcome = ' %s मे स्वागत है';
$strWithChecked = 'चुने हुओं को:';
-$strWritingCommentNotPossible = 'टिप्पणि करना मुम्किन नहीं';
$strWrongUser = 'यूसरनेम/पासवर्ड गलत है। Access denied.';
$strYes = 'हाँ ';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -382,15 +378,6 @@ $strDatabaseExportOptions = 'Database export options';//to translate
$strDataDict = 'Data Dictionary'; //to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBCopy = 'Copy database to'; //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
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
@@ -483,8 +470,6 @@ $strIdxFulltext = 'Fulltext'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnore = 'Ignore'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -929,7 +914,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.'; //to translate
@@ -990,7 +974,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/hungarian-iso-8859-2.inc.php b/lang/hungarian-iso-8859-2.inc.php
index f73644f8f..d96516ea9 100644
--- a/lang/hungarian-iso-8859-2.inc.php
+++ b/lang/hungarian-iso-8859-2.inc.php
@@ -19,7 +19,6 @@ $datefmt = '%Y. %B %d. %H:%M';
$timespanfmt = '%s nap, %s ra, %s perc, %s msodperc';
$strAbortedClients = 'Megszaktva';
-$strAbsolutePathToDocSqlDir = 'rja be az abszolt elrsi utat a docSQL knyvtrhoz';
$strAccessDeniedExplanation = 'A phpMyAdmin megprblt csatlakozni a MySQL szerverhez, de a szerver elutastotta a kapcsolatot. Ellenőrizze a host, username s jelsz mezőket a config.inc.php fjlban, s bizonyosodjon meg rla, hogy ezek megfelelnek a MySQL szerver adminisztrtortl kapott informciknak.';
$strAccessDenied = 'Hozzfrs megtagadva';
$strAction = 'Parancs';
@@ -27,8 +26,6 @@ $strAddAutoIncrement = 'AUTO_INCREMENT
$strAddConstraints = 'Megszorts hozzadsa';
$strAddDeleteColumn = 'Mező Oszlopokat Hozzad/Trl';
$strAddDeleteRow = 'Kritrium Sort Hozzad/Trl';
-$strAddedColumnComment = 'Megjegyzs hozzfűzve az oszlophoz:';
-$strAddedColumnRelation = 'Kapcsolat hozzfűzve az oszlophoz:';
$strAddFields = '%s mező hozzadsa';
$strAddHeaderComment = 'Egyedi megjegyzs hozzadsa a fejlchez (\\n tri a sorokat)';
$strAddIntoComments = 'Hozzads a megjegyzshez';
@@ -186,15 +183,6 @@ $strDataOnly = 'Csak adatok';
$strDataPages = 'Adatokat tartalmaz lapok';
$strDBComment = 'Adatbzis megjegyzs: ';
$strDBCopy = 'Adatbzis msolsa ide';
-$strDBGContextID = 'Tartalom ID';
-$strDBGContext = 'Tartalom';
-$strDBGHits = 'Tallat';
-$strDBGLine = 'Vonal';
-$strDBGMaxTimeMs = 'Legnagyobb idő, ms';
-$strDBGMinTimeMs = 'Legkisebb idő, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Idő/Tallat, ms';
-$strDBGTotalTimeMs = 'sszes idő, ms';
$strDbPrivileges = 'Adatbzis-specifikus privilgiumok';
$strDBRename = 'Adatbzis tnevezse';
$strDbSpecific = 'adatbzis-specifikus';
@@ -316,8 +304,6 @@ $strId = 'ID';
$strIdxFulltext = 'Fulltext';
$strIgnore = 'Elutast';
$strIgnoreInserts = 'Mellőző beszrsok hasznlata';
-$strIgnoringFile = '%s fjl mellőzse';
-$strImportDocSQL = 'DocSQL fjlok importja';
$strImportFiles = 'Fjlok importja';
$strImportFormat = 'Importland fjl formtuma';
$strImport = 'Import';
@@ -728,7 +714,6 @@ $strTextAreaLength = ' Mivel ez a hossz,
ez a mező nem szerkeszthet
$strThai = 'Thai';
$strTheme = 'Tma / Stlus';
$strThisHost = 'Ez a gp';
-$strThisNotDirectory = 'Ez nem alknyvtr volt';
$strThreads = 'Szlak';
$strThreadSuccessfullyKilled = 'A %s. szlat sikerlt megszntetni.';
$strTime = 'Idő';
@@ -797,8 +782,6 @@ $strWildcard = 'helyettes
$strWindowNotFound = 'A cl bngszőablakot nem tudtam jratlteni. Taln a szlőablak be lett zrva, vagy a bngsző biztonsgi belltsa tiltja az ablakok kzti jratltst';
$strWithChecked = 'A kijelltekkel vgzendő művelet:';
$strWriteRequests = 'rsi krelmek';
-$strWritingCommentNotPossible = 'Megjegyzs rsa nem lehetsges';
-$strWritingRelationNotPossible = 'Kapcsolat rsa nem lehetsges';
$strWrongUser = 'Hibs felhasznli nv/jelsz. Hozzfrs megtagadva.';
$strXML = 'XML';
@@ -1016,4 +999,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php
index c5ef1f6d9..facd49d31 100644
--- a/lang/hungarian-utf-8.inc.php
+++ b/lang/hungarian-utf-8.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%Y. %B %d. %H:%M';
$timespanfmt = '%s nap, %s óra, %s perc, %s másodperc';
$strAbortedClients = 'Megszakítva';
-$strAbsolutePathToDocSqlDir = 'Írja be az abszolút elérési utat a docSQL könyvtárhoz';
$strAccessDeniedExplanation = 'A phpMyAdmin megpróbált csatlakozni a MySQL szerverhez, de a szerver elutasította a kapcsolatot. Ellenőrizze a host, username és jelszó mezőket a config.inc.php fájlban, és bizonyosodjon meg róla, hogy ezek megfelelnek a MySQL szerver adminisztrátorától kapott információknak.';
$strAccessDenied = 'Hozzáférés megtagadva';
$strAction = 'Parancs';
@@ -28,8 +27,6 @@ $strAddAutoIncrement = 'AUTO_INCREMENT érték hozzáadása';
$strAddConstraints = 'Megszorítás hozzáadása';
$strAddDeleteColumn = 'Mező Oszlopokat Hozzáad/Töröl';
$strAddDeleteRow = 'Kritérium Sort Hozzáad/Töröl';
-$strAddedColumnComment = 'Megjegyzés hozzáfűzve az oszlophoz:';
-$strAddedColumnRelation = 'Kapcsolat hozzáfűzve az oszlophoz:';
$strAddFields = '%s mező hozzáadása';
$strAddHeaderComment = 'Egyedi megjegyzés hozzáadása a fejléchez (\\n töri a sorokat)';
$strAddIntoComments = 'Hozzáadás a megjegyzéshez';
@@ -187,15 +184,6 @@ $strDataOnly = 'Csak adatok';
$strDataPages = 'Adatokat tartalmazó lapok';
$strDBComment = 'Adatbázis megjegyzés: ';
$strDBCopy = 'Adatbázis másolása ide';
-$strDBGContextID = 'Tartalom ID';
-$strDBGContext = 'Tartalom';
-$strDBGHits = 'Találat';
-$strDBGLine = 'Vonal';
-$strDBGMaxTimeMs = 'Legnagyobb idő, ms';
-$strDBGMinTimeMs = 'Legkisebb idő, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Idő/Találat, ms';
-$strDBGTotalTimeMs = 'Összes idő, ms';
$strDbPrivileges = 'Adatbázis-specifikus privilégiumok';
$strDBRename = 'Adatbázis átnevezése';
$strDbSpecific = 'adatbázis-specifikus';
@@ -317,8 +305,6 @@ $strId = 'ID';
$strIdxFulltext = 'Fulltext';
$strIgnore = 'Elutasít';
$strIgnoreInserts = 'Mellőző beszúrások használata';
-$strIgnoringFile = '%s fájl mellőzése';
-$strImportDocSQL = 'DocSQL fájlok importja';
$strImportFiles = 'Fájlok importja';
$strImportFormat = 'Importálandó fájl formátuma';
$strImport = 'Import';
@@ -729,7 +715,6 @@ $strTextAreaLength = ' Mivel ez a hossz,
ez a mező nem szerkeszthet
$strThai = 'Thai';
$strTheme = 'Téma / Stílus';
$strThisHost = 'Ez a gép';
-$strThisNotDirectory = 'Ez nem alkönyvtár volt';
$strThreads = 'Szálak';
$strThreadSuccessfullyKilled = 'A %s. szálat sikerült megszüntetni.';
$strTime = 'Idő';
@@ -798,8 +783,6 @@ $strWildcard = 'helyettesítő jel';
$strWindowNotFound = 'A cél böngészőablakot nem tudtam újratölteni. Talán a szülőablak be lett zárva, vagy a böngésző biztonsági beállítása tiltja az ablakok közti újratöltést';
$strWithChecked = 'A kijelöltekkel végzendő művelet:';
$strWriteRequests = 'Írási kérelmek';
-$strWritingCommentNotPossible = 'Megjegyzés írása nem lehetséges';
-$strWritingRelationNotPossible = 'Kapcsolat írása nem lehetséges';
$strWrongUser = 'Hibás felhasználói név/jelszó. Hozzáférés megtagadva.';
$strXML = 'XML';
@@ -1017,4 +1000,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/indonesian-iso-8859-1.inc.php b/lang/indonesian-iso-8859-1.inc.php
index c71483a09..34d815686 100644
--- a/lang/indonesian-iso-8859-1.inc.php
+++ b/lang/indonesian-iso-8859-1.inc.php
@@ -16,7 +16,6 @@ $datefmt = '%d. %B %Y jam %H:%M';
$timespanfmt = '%s hari, %s jam, %s menit dan %s detik';
$strAbortedClients = 'Pembatalan';
-$strAbsolutePathToDocSqlDir = 'Silakan menentukan Absolute Path pada webserver yang menunjuk ke direktori docSQL';
$strAccessDenied = 'Akses ditolak';
$strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Silakan periksa kembali nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberikan oleh administrator server MySQL.';
$strAction = 'Aksi';
@@ -24,8 +23,6 @@ $strAddAutoIncrement = 'Menambahkan nilai AUTO_INCREMENT';
$strAddConstraints = 'Menambahkan pembatas';
$strAddDeleteColumn = 'Menambahkan/Hapus kolom';
$strAddDeleteRow = 'Menambahkan/Hapus baris';
-$strAddedColumnComment = 'Komentar untuk kolum telah ditambahkan';
-$strAddedColumnRelation = 'Relasi untuk kolum telah ditambahkan';
$strAddFields = 'Menambahkan %s field(s)';
$strAddHeaderComment = 'Menambahkan komentar individual pada Header (\\n membelahkan garis)';
$strAddIntoComments = 'Penambahkan pada komentar:';
@@ -183,15 +180,6 @@ $strDataOnly = 'Data saja';
$strDataPages = 'Halaman yang berisi data';
$strDBComment = 'Komentar Database: ';
$strDBCopy = 'Salin database ke';
-$strDBGContextID = 'Susunan ID';
-$strDBGContext = 'Susunan';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Baris';
-$strDBGMaxTimeMs = 'Maks waktu, ms';
-$strDBGMinTimeMs = 'Min waktu, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Waktu/Hit, ms';
-$strDBGTotalTimeMs = 'Jumlah Waktu, ms';
$strDbPrivileges = 'Hak (privileges) khusus terhadap Database';
$strDBRename = 'Ubah nama database menjadi';
$strDbSpecific = 'database-spesifik';
@@ -311,8 +299,6 @@ $strId = 'ID';
$strIdxFulltext = 'Teks penuh';
$strIgnore = 'Abaikan';
$strIgnoreInserts = 'Gunakan perintah INSERT dengan mengabaikan kesalahan';
-$strIgnoringFile = 'Abaikan file %s';
-$strImportDocSQL = 'Impor file docSQL';
$strImportFiles = 'Impor file';
$strIndexes = 'Indeks';
$strIndexHasBeenDropped = 'Indeks %s telah dihapus';
@@ -694,7 +680,6 @@ $strTextAreaLength = ' Disebabkan ukuran panjangnya,
field ini tidak dapat
$strThai = 'Bahasa Thailand';
$strTheme = 'Desain Penampilan';
$strThisHost = 'Host yang ini';
-$strThisNotDirectory = 'Ini bukan direktori';
$strThreadSuccessfullyKilled = 'Sukses hentikan Thread %s.';
$strTime = 'Jangka Waktu';
$strToggleScratchboard = 'pindah buku catatan (Scratchboard)';
@@ -763,8 +748,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'Mengupdate jendela browser gagal. Ada kemungkinan Anda telah menutup jendela induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate dengan cara Cross-Window';
$strWithChecked = 'yang ditandai:';
$strWriteRequests = 'Permintaan penulisan';
-$strWritingCommentNotPossible = 'Penulisan komentar tidak dapat dilaksanakan';
-$strWritingRelationNotPossible = 'Penulisan relasi tidak dapat dilaksanakan';
$strWrongUser = 'Nama Pengguna/Kata Sandi salah. Akses ditolak.';
$strXML = 'XML';
@@ -1014,4 +997,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php
index 80cc694be..39112c6ae 100644
--- a/lang/indonesian-utf-8.inc.php
+++ b/lang/indonesian-utf-8.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%d. %B %Y jam %H:%M';
$timespanfmt = '%s hari, %s jam, %s menit dan %s detik';
$strAbortedClients = 'Pembatalan';
-$strAbsolutePathToDocSqlDir = 'Silakan menentukan Absolute Path pada webserver yang menunjuk ke direktori docSQL';
$strAccessDenied = 'Akses ditolak';
$strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Silakan periksa kembali nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberikan oleh administrator server MySQL.';
$strAction = 'Aksi';
@@ -25,8 +24,6 @@ $strAddAutoIncrement = 'Menambahkan nilai AUTO_INCREMENT';
$strAddConstraints = 'Menambahkan pembatas';
$strAddDeleteColumn = 'Menambahkan/Hapus kolom';
$strAddDeleteRow = 'Menambahkan/Hapus baris';
-$strAddedColumnComment = 'Komentar untuk kolum telah ditambahkan';
-$strAddedColumnRelation = 'Relasi untuk kolum telah ditambahkan';
$strAddFields = 'Menambahkan %s field(s)';
$strAddHeaderComment = 'Menambahkan komentar individual pada Header (\\n membelahkan garis)';
$strAddIntoComments = 'Penambahkan pada komentar:';
@@ -184,15 +181,6 @@ $strDataOnly = 'Data saja';
$strDataPages = 'Halaman yang berisi data';
$strDBComment = 'Komentar Database: ';
$strDBCopy = 'Salin database ke';
-$strDBGContextID = 'Susunan ID';
-$strDBGContext = 'Susunan';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Baris';
-$strDBGMaxTimeMs = 'Maks waktu, ms';
-$strDBGMinTimeMs = 'Min waktu, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Waktu/Hit, ms';
-$strDBGTotalTimeMs = 'Jumlah Waktu, ms';
$strDbPrivileges = 'Hak (privileges) khusus terhadap Database';
$strDBRename = 'Ubah nama database menjadi';
$strDbSpecific = 'database-spesifik';
@@ -312,8 +300,6 @@ $strId = 'ID';
$strIdxFulltext = 'Teks penuh';
$strIgnore = 'Abaikan';
$strIgnoreInserts = 'Gunakan perintah INSERT dengan mengabaikan kesalahan';
-$strIgnoringFile = 'Abaikan file %s';
-$strImportDocSQL = 'Impor file docSQL';
$strImportFiles = 'Impor file';
$strIndexes = 'Indeks';
$strIndexHasBeenDropped = 'Indeks %s telah dihapus';
@@ -695,7 +681,6 @@ $strTextAreaLength = ' Disebabkan ukuran panjangnya,
field ini tidak dapat
$strThai = 'Bahasa Thailand';
$strTheme = 'Desain Penampilan';
$strThisHost = 'Host yang ini';
-$strThisNotDirectory = 'Ini bukan direktori';
$strThreadSuccessfullyKilled = 'Sukses hentikan Thread %s.';
$strTime = 'Jangka Waktu';
$strToggleScratchboard = 'pindah buku catatan (Scratchboard)';
@@ -764,8 +749,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'Mengupdate jendela browser gagal. Ada kemungkinan Anda telah menutup jendela induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate dengan cara Cross-Window';
$strWithChecked = 'yang ditandai:';
$strWriteRequests = 'Permintaan penulisan';
-$strWritingCommentNotPossible = 'Penulisan komentar tidak dapat dilaksanakan';
-$strWritingRelationNotPossible = 'Penulisan relasi tidak dapat dilaksanakan';
$strWrongUser = 'Nama Pengguna/Kata Sandi salah. Akses ditolak.';
$strXML = 'XML';
@@ -1015,4 +998,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/italian-iso-8859-1.inc.php b/lang/italian-iso-8859-1.inc.php
index edae13e31..282600eb8 100644
--- a/lang/italian-iso-8859-1.inc.php
+++ b/lang/italian-iso-8859-1.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d %B, %Y at %I:%M %p'; //italian time
$timespanfmt = '%s giorni, %s ore, %s minuti e %s secondi';
$strAbortedClients = 'Fallito';
-$strAbsolutePathToDocSqlDir = 'Prego, immettere il path assoluto sul webserver della directory di docSQL';
$strAccessDenied = 'Accesso negato';
$strAccessDeniedCreateConfig = 'La ragione di questo che probabilmente non hai creato alcun file di configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno.';
$strAccessDeniedExplanation = 'phpMyAdmin ha provato a connettersi al server MySQL, e il server ha rifiutato la connessione. Si dovrebbe controllare il nome dell\'host, l\'username e la password nel file config.inc.php ed assicurarsi che corrispondano alle informazioni fornite dall\'amministratore del server MySQL.';
@@ -32,8 +31,6 @@ $strAddClause = 'Aggiungi %s';
$strAddConstraints = 'Aggiungi vincoli';
$strAddDeleteColumn = 'Aggiungi/Cancella campo';
$strAddDeleteRow = 'Aggiungi/Cancella criterio';
-$strAddedColumnComment = 'Agginto commento sulla colonna';
-$strAddedColumnRelation = 'Aggiunta Relazione per la colonna';
$strAddFields = 'Aggiungi %s campo(i)';
$strAddHeaderComment = 'Aggiunge un commento personalizzato all\'header (\\n per tornare a capo)';
$strAddIntoComments = 'Aggiungi nei commenti';
@@ -205,15 +202,6 @@ $strDataOnly = 'Solo dati';
$strDataPages = 'Pagine contenenti dati';
$strDBComment = 'Commento al Database: ';
$strDBCopy = 'Copia il Database in';
-$strDBGContext = 'Contesto';
-$strDBGContextID = 'ID del Contesto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linea';
-$strDBGMaxTimeMs = 'Tempo massimo, ms';
-$strDBGMinTimeMs = 'Tempo minimo, ms';
-$strDBGModule = 'Modulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo totale, ms';
$strDbPrivileges = 'Privilegi specifici al database';
$strDBRename = 'Rinomina il DataBase in';
$strDbSpecific = 'specifico del database';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Testo completo';
$strIgnoreDuplicates = 'Ignora le righe duplicate';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizza gli IGNORE INSERTS';
-$strIgnoringFile = 'File %s ignorato';
-$strImportDocSQL = 'Importa Files docSQL';
$strImportFiles = 'Importa files';
$strImportFormat = 'Formato del file importato';
$strImport = 'Importa';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Nessun percorso per le immagini per il tema %s trovat
$strThemePathNotFound = 'Percorso per il tema non trovato %s!';
$strTheme = 'Tema / Stile';
$strThisHost = 'Questo Host';
-$strThisNotDirectory = 'Questa non una directory';
$strThreads = 'Processi';
$strThreadSuccessfullyKilled = 'Il thread %s stato terminato con successo.';
$strTimeoutInfo = 'Una precedente importazione entrata in timeout, dopo un nuovo inoltro riprender dalla posizione: %d.';
@@ -984,8 +969,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'La finestra destinataria del browser non pu essere aggiornata. Pu darsi che sia stata chiusa la finestra madre o che il vostro browser stia bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di sicurezza';
$strWithChecked = 'Se selezionati:';
$strWriteRequests = 'Richieste di scrittura';
-$strWritingCommentNotPossible = 'Impossibile scrivere il commento';
-$strWritingRelationNotPossible = 'Impossibile scrivere la Relazione';
$strWrongUser = 'Nome utente o password errati. Accesso negato.';
$strXMLOptions = 'Opzioni XML';
@@ -998,4 +981,38 @@ $strZip = '"compresso con zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/italian-iso-8859-15.inc.php b/lang/italian-iso-8859-15.inc.php
index 5406cdd62..49784f99f 100644
--- a/lang/italian-iso-8859-15.inc.php
+++ b/lang/italian-iso-8859-15.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d %B, %Y at %I:%M %p'; //italian time
$timespanfmt = '%s giorni, %s ore, %s minuti e %s secondi';
$strAbortedClients = 'Fallito';
-$strAbsolutePathToDocSqlDir = 'Prego, immettere il path assoluto sul webserver della directory di docSQL';
$strAccessDenied = 'Accesso negato';
$strAccessDeniedCreateConfig = 'La ragione di questo che probabilmente non hai creato alcun file di configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno.';
$strAccessDeniedExplanation = 'phpMyAdmin ha provato a connettersi al server MySQL, e il server ha rifiutato la connessione. Si dovrebbe controllare il nome dell\'host, l\'username e la password nel file config.inc.php ed assicurarsi che corrispondano alle informazioni fornite dall\'amministratore del server MySQL.';
@@ -32,8 +31,6 @@ $strAddClause = 'Aggiungi %s';
$strAddConstraints = 'Aggiungi vincoli';
$strAddDeleteColumn = 'Aggiungi/Cancella campo';
$strAddDeleteRow = 'Aggiungi/Cancella criterio';
-$strAddedColumnComment = 'Agginto commento sulla colonna';
-$strAddedColumnRelation = 'Aggiunta Relazione per la colonna';
$strAddFields = 'Aggiungi %s campo(i)';
$strAddHeaderComment = 'Aggiunge un commento personalizzato all\'header (\\n per tornare a capo)';
$strAddIntoComments = 'Aggiungi nei commenti';
@@ -205,15 +202,6 @@ $strDataOnly = 'Solo dati';
$strDataPages = 'Pagine contenenti dati';
$strDBComment = 'Commento al Database: ';
$strDBCopy = 'Copia il Database in';
-$strDBGContext = 'Contesto';
-$strDBGContextID = 'ID del Contesto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linea';
-$strDBGMaxTimeMs = 'Tempo massimo, ms';
-$strDBGMinTimeMs = 'Tempo minimo, ms';
-$strDBGModule = 'Modulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo totale, ms';
$strDbPrivileges = 'Privilegi specifici al database';
$strDBRename = 'Rinomina il DataBase in';
$strDbSpecific = 'specifico del database';
@@ -350,8 +338,6 @@ $strIdxFulltext = 'Testo completo';
$strIgnoreDuplicates = 'Ignora le righe duplicate';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizza gli IGNORE INSERTS';
-$strIgnoringFile = 'File %s ignorato';
-$strImportDocSQL = 'Importa Files docSQL';
$strImportFiles = 'Importa files';
$strImportFormat = 'Formato del file importato';
$strImport = 'Importa';
@@ -904,7 +890,6 @@ $strThemeNoValidImgPath = 'Nessun percorso per le immagini per il tema %s trovat
$strThemePathNotFound = 'Percorso per il tema non trovato %s!';
$strTheme = 'Tema / Stile';
$strThisHost = 'Questo Host';
-$strThisNotDirectory = 'Questa non una directory';
$strThreads = 'Processi';
$strThreadSuccessfullyKilled = 'Il thread %s stato terminato con successo.';
$strTimeoutInfo = 'Una precedente importazione entrata in timeout, dopo un nuovo inoltro riprender dalla posizione: %d.';
@@ -984,8 +969,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'La finestra destinataria del browser non pu essere aggiornata. Pu darsi che sia stata chiusa la finestra madre o che il vostro browser stia bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di sicurezza';
$strWithChecked = 'Se selezionati:';
$strWriteRequests = 'Richieste di scrittura';
-$strWritingCommentNotPossible = 'Impossibile scrivere il commento';
-$strWritingRelationNotPossible = 'Impossibile scrivere la Relazione';
$strWrongUser = 'Nome utente o password errati. Accesso negato.';
$strXMLOptions = 'Opzioni XML';
@@ -998,4 +981,38 @@ $strZip = '"compresso con zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php
index ab497626e..195eb0104 100644
--- a/lang/italian-utf-8.inc.php
+++ b/lang/italian-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d %B, %Y at %I:%M %p'; //italian time
$timespanfmt = '%s giorni, %s ore, %s minuti e %s secondi';
$strAbortedClients = 'Fallito';
-$strAbsolutePathToDocSqlDir = 'Prego, immettere il path assoluto sul webserver della directory di docSQL';
$strAccessDenied = 'Accesso negato';
$strAccessDeniedCreateConfig = 'La ragione di questo è che probabilmente non hai creato alcun file di configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno.';
$strAccessDeniedExplanation = 'phpMyAdmin ha provato a connettersi al server MySQL, e il server ha rifiutato la connessione. Si dovrebbe controllare il nome dell\'host, l\'username e la password nel file config.inc.php ed assicurarsi che corrispondano alle informazioni fornite dall\'amministratore del server MySQL.';
@@ -33,8 +32,6 @@ $strAddClause = 'Aggiungi %s';
$strAddConstraints = 'Aggiungi vincoli';
$strAddDeleteColumn = 'Aggiungi/Cancella campo';
$strAddDeleteRow = 'Aggiungi/Cancella criterio';
-$strAddedColumnComment = 'Agginto commento sulla colonna';
-$strAddedColumnRelation = 'Aggiunta Relazione per la colonna';
$strAddFields = 'Aggiungi %s campo(i)';
$strAddHeaderComment = 'Aggiunge un commento personalizzato all\'header (\\n per tornare a capo)';
$strAddIntoComments = 'Aggiungi nei commenti';
@@ -206,15 +203,6 @@ $strDataOnly = 'Solo dati';
$strDataPages = 'Pagine contenenti dati';
$strDBComment = 'Commento al Database: ';
$strDBCopy = 'Copia il Database in';
-$strDBGContext = 'Contesto';
-$strDBGContextID = 'ID del Contesto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linea';
-$strDBGMaxTimeMs = 'Tempo massimo, ms';
-$strDBGMinTimeMs = 'Tempo minimo, ms';
-$strDBGModule = 'Modulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo totale, ms';
$strDbPrivileges = 'Privilegi specifici al database';
$strDBRename = 'Rinomina il DataBase in';
$strDbSpecific = 'specifico del database';
@@ -351,8 +339,6 @@ $strIdxFulltext = 'Testo completo';
$strIgnoreDuplicates = 'Ignora le righe duplicate';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizza gli IGNORE INSERTS';
-$strIgnoringFile = 'File %s ignorato';
-$strImportDocSQL = 'Importa Files docSQL';
$strImportFiles = 'Importa files';
$strImportFormat = 'Formato del file importato';
$strImport = 'Importa';
@@ -905,7 +891,6 @@ $strThemeNoValidImgPath = 'Nessun percorso per le immagini per il tema %s trovat
$strThemePathNotFound = 'Percorso per il tema non trovato %s!';
$strTheme = 'Tema / Stile';
$strThisHost = 'Questo Host';
-$strThisNotDirectory = 'Questa non è una directory';
$strThreads = 'Processi';
$strThreadSuccessfullyKilled = 'Il thread %s è stato terminato con successo.';
$strTimeoutInfo = 'Una precedente importazione è entrata in timeout, dopo un nuovo inoltro riprenderà dalla posizione: %d.';
@@ -985,8 +970,6 @@ $strWildcard = 'wildcard';
$strWindowNotFound = 'La finestra destinataria del browser non può essere aggiornata. Può darsi che sia stata chiusa la finestra madre o che il vostro browser stia bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di sicurezza';
$strWithChecked = 'Se selezionati:';
$strWriteRequests = 'Richieste di scrittura';
-$strWritingCommentNotPossible = 'Impossibile scrivere il commento';
-$strWritingRelationNotPossible = 'Impossibile scrivere la Relazione';
$strWrongUser = 'Nome utente o password errati. Accesso negato.';
$strXMLOptions = 'Opzioni XML';
@@ -999,4 +982,38 @@ $strZip = '"compresso con zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/japanese-euc.inc.php b/lang/japanese-euc.inc.php
index caa195204..3bab928e8 100644
--- a/lang/japanese-euc.inc.php
+++ b/lang/japanese-euc.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%Y ǯ %B %d
$timespanfmt = '%s %s %s ʬ %s ';
$strAbortedClients = 'Ǥޤ';
-$strAbsolutePathToDocSqlDir = 'docSQL ؤХѥꤷƤ';
$strAccessDenied = 'ϵݤޤ';
$strAccessDeniedCreateConfig = '餯ͳϡեƤʤǤ%1$såȥåץץ%2$s ѤƤҤȤĺ뤳ȤǤޤ';
$strAccessDeniedExplanation = 'MySQL Ф³褦Ȥޤ³䤵ޤconfig.inc.php Υۥȡ桼ӥѥɤMySQL ФδԤͿ줿Ȱפ뤫ǧƤ';
@@ -34,8 +33,6 @@ $strAddClause = '%s
$strAddConstraints = '¤ɲä';
$strAddDeleteColumn = 'եɲá';
$strAddDeleteRow = 'Ԥɲá';
-$strAddedColumnComment = 'Υɲäޤ';
-$strAddedColumnRelation = 'Υ졼ɲäޤ';
$strAddFields = '%s ĤΥեɤɲä';
$strAddHeaderComment = 'إåإॳȤɲ (\\n Dz)';
$strAddIntoComments = 'ɲå';
@@ -207,15 +204,6 @@ $strDataOnly = '
$strDataPages = 'ǡޤڡ';
$strDBComment = 'ǡ١Υ: ';
$strDBCopy = 'ǥǡ١ԡ';
-$strDBGContext = 'ƥ';
-$strDBGContextID = 'ƥID';
-$strDBGHits = 'ҥå';
-$strDBGLine = '';
-$strDBGMaxTimeMs = '(ߥ)';
-$strDBGMinTimeMs = 'Ǿ(ߥ)';
-$strDBGModule = '⥸塼';
-$strDBGTimePerHitMs = 'ҥåΨ(ߥ)';
-$strDBGTotalTimeMs = '(ߥ)';
$strDbPrivileges = 'ǡ١ ø';
$strDBRename = '˥ǡ١ѹ';
$strDbSpecific = 'ǡ١';
@@ -353,9 +341,7 @@ $strIdxFulltext = '
$strIgnore = '̵';
$strIgnoreDuplicates = 'Ԥʣ̵뤹';
$strIgnoreInserts = 'INSERT IGNOREѤ';
-$strIgnoringFile = 'ե̵ %s';
$strImport = 'ݡ';
-$strImportDocSQL = 'docSQL ե륤ݡ';
$strImportFiles = 'ݡȥե';
$strImportFormat = 'ݡȺѥեν';
$strImportSuccessfullyFinished = 'ݡȤޤ%d ĤξȲ¹Ԥޤ';
@@ -908,7 +894,6 @@ $strThemeNotFound = '
$strThemeNoValidImgPath = 'ơޡ%sѥĤޤ!';
$strThemePathNotFound = 'ơޡ%sΥơޥѥĤޤ!';
$strThisHost = 'Υۥ';
-$strThisNotDirectory = 'ϥǥ쥯ȥǤϤޤ';
$strThreads = 'å';
$strThreadSuccessfullyKilled = 'å %s Ͻλޤ';
$strTime = '';
@@ -988,8 +973,6 @@ $strWildcard = '
$strWindowNotFound = 'åȥ֥饦ɥ뤳ȤǤޤ餯ƥɥĤ뤤ϥ֥饦Υƥǡɥι֥åƤޤ';
$strWithChecked = 'åΤ:';
$strWriteRequests = 'ߥꥯȿ';
-$strWritingCommentNotPossible = 'ȤνߤͭǤϤޤ';
-$strWritingRelationNotPossible = '졼νߤͭǤϤޤ';
$strWrongUser = '桼ޤϥѥɤޤ
ϵݤޤ';
$strXkana = 'ѥʤѴ'; // convert to X208-kana
@@ -1003,4 +986,38 @@ $strZip = '"zip
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/japanese-sjis.inc.php b/lang/japanese-sjis.inc.php
index e8e170313..5993b4075 100644
--- a/lang/japanese-sjis.inc.php
+++ b/lang/japanese-sjis.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%Y
$timespanfmt = '%s %s %s %s b';
$strAbortedClients = 'f܂B';
-$strAbsolutePathToDocSqlDir = 'docSQL ւ̐pXݒ肵ĂB';
$strAccessDenied = 'ANZX͋ۂ܂B';
$strAccessDeniedCreateConfig = '炭̖̗ŔAݒt@C쐬ĂȂ߂łB%1$sZbgAbvXNvg%2$s gpĂЂƂ쐬邱Ƃł܂B';
$strAccessDeniedExplanation = 'MySQL T[oɐڑ悤Ƃ܂Aڑ₳܂Bconfig.inc.php ̒̃zXgA[UуpX[hMySQL T[o̊Ǘ҂^ꂽƈv邩mFĂB';
@@ -34,8 +33,6 @@ $strAddClause = '%s
$strAddConstraints = 'lj';
$strAddDeleteColumn = 'tB[hljE폜';
$strAddDeleteRow = 'sljE폜';
-$strAddedColumnComment = 'J̃Rglj܂B';
-$strAddedColumnRelation = 'J̃[Vlj܂B';
$strAddFields = '%s ̃tB[hlj';
$strAddHeaderComment = 'wb_[փJX^Rglj (\\n ʼns)';
$strAddIntoComments = 'ljRg';
@@ -142,7 +139,7 @@ $strCheckPrivs = '
$strCheckPrivsLong = 'f[^x[X "%s" ̓`FbNB';
$strCheckTable = 'e[u`FbN';
$strChoosePage = 'ҏWy[WIĂB';
-$strColComFeat = 'Rg\@\';
+$strColComFeat = 'Rg\@\\';
$strCollation = 'ƍ';
$strColumnNames = '(J)';
$strColumnPrivileges = 'Jw̓';
@@ -174,7 +171,7 @@ $strCreateIndexTopic = '
$strCreateNewDatabase = 'VKf[^x[X쐬';
$strCreateNewTable = 'f[^x[Xu%sɃe[uVK쐬';
$strCreatePage = 'VKy[W쐬';
-$strCreatePdfFeat = 'PDF 쐬@\';
+$strCreatePdfFeat = 'PDF 쐬@\\';
$strCreateUserDatabase = '[Upf[^x[X';
$strCreateUserDatabaseName = '̃f[^x[X쐬ĂׂĂ̓^܂';
$strCreateUserDatabaseNone = 'Ȃ';
@@ -207,15 +204,6 @@ $strDataOnly = '
$strDataPages = 'f[^܂ރy[W';
$strDBComment = 'f[^x[X̃Rg: ';
$strDBCopy = '̑OŃf[^x[XRs[';
-$strDBGContext = 'ReLXg';
-$strDBGContextID = 'ReLXgID';
-$strDBGHits = 'qbg';
-$strDBGLine = 's';
-$strDBGMaxTimeMs = 'ő厞(~b)';
-$strDBGMinTimeMs = 'ŏ(~b)';
-$strDBGModule = 'W[';
-$strDBGTimePerHitMs = 'qbg(~b)';
-$strDBGTotalTimeMs = 'v(~b)';
$strDbPrivileges = 'f[^x[X ';
$strDBRename = '̑OɃf[^x[XύX';
$strDbSpecific = 'f[^x[Xdl';
@@ -239,7 +227,7 @@ $strDictionary = '
$strDirtyPages = 'ȃy[W';
$strDisabled = '';
$strDisableForeignChecks = 'OL[̌ɂ';
-$strDisplayFeat = 'e[u\@\';
+$strDisplayFeat = 'e[u\@\\';
$strDisplayOrder = '\:';
$strDisplayPDF = 'PDF XL[}̕\';
$strDoAQuery = '"QUERY"s (ChJ[h: "%")';
@@ -317,7 +305,7 @@ $strFunction = '
$strFunctions = '';
$strGenBy = '';
-$strGeneralRelationFeat = '[V@\';
+$strGeneralRelationFeat = '[V@\\';
$strGenerate = '';
$strGeneratePassword = 'pX[h';
$strGenTime = '쐬̎';
@@ -353,9 +341,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = 's̕';
$strIgnoreInserts = 'uINSERT IGNOREgp';
-$strIgnoringFile = 't@C %s';
$strImport = 'C|[g';
-$strImportDocSQL = 'docSQL t@CC|[g';
$strImportFiles = 'C|[gt@C';
$strImportFormat = 'C|[gσt@C̏';
$strImportSuccessfullyFinished = 'C|[gɐ܂B%d ̏Ɖs܂B';
@@ -908,7 +894,6 @@ $strThemeNotFound = '
$strThemeNoValidImgPath = 'e[}u%sŐ摜pX܂!';
$strThemePathNotFound = 'e[}u%s̃e[}pX܂!';
$strThisHost = '̃zXg';
-$strThisNotDirectory = '̓fBNgł͂܂';
$strThreads = 'Xbh';
$strThreadSuccessfullyKilled = 'Xbh %s ͏I܂B';
$strTime = '';
@@ -988,8 +973,6 @@ $strWildcard = '
$strWindowNotFound = '^[QbguEUEBhEXV邱Ƃł܂B炭eEBhEA邢̓uEU[̃ZLeBݒŁANXEBhE̍XVubNĂ܂B';
$strWithChecked = '`FbN̂:';
$strWriteRequests = '݃NGXg';
-$strWritingCommentNotPossible = 'Rg݂̏Lł͂܂B';
-$strWritingRelationNotPossible = '[V݂̏Lł͂܂B';
$strWrongUser = '[U܂̓pX[h܂B
ANZX͋ۂ܂B';
$strXkana = 'SpJi֕ϊ'; // convert to X208-kana
@@ -1003,4 +986,38 @@ $strZip = '"zip
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php
index 0c98c3da1..ec1d9ab9e 100644
--- a/lang/japanese-utf-8.inc.php
+++ b/lang/japanese-utf-8.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%Y 年 %B %d 日 %H:%M';
$timespanfmt = '%s 日 %s 時間 %s 分 %s 秒';
$strAbortedClients = '中断しました。';
-$strAbsolutePathToDocSqlDir = 'docSQL への絶対パスを設定してください。';
$strAccessDenied = 'アクセスは拒否されました。';
$strAccessDeniedCreateConfig = '恐らくこの問題の理由は、設定ファイルを作成していないためです。%1$sセットアップスクリプト%2$s を使用してひとつ作成することができます。';
$strAccessDeniedExplanation = 'MySQL サーバに接続しようとしましたが、接続が拒絶されました。config.inc.php の中のホスト、ユーザおよびパスワードがMySQL サーバの管理者から与えられた情報と一致するか確認してください。';
@@ -34,8 +33,6 @@ $strAddClause = '%sを追加';
$strAddConstraints = '制限を追加する';
$strAddDeleteColumn = 'フィールド列を追加・削除する';
$strAddDeleteRow = '条件行を追加・削除する';
-$strAddedColumnComment = 'カラムのコメント追加されました。';
-$strAddedColumnRelation = 'カラムのリレーションが追加されました。';
$strAddFields = '%s 個のフィールドを追加する';
$strAddHeaderComment = 'ヘッダーへカスタムコメントを追加 (\\n で改行)';
$strAddIntoComments = '追加コメント';
@@ -207,15 +204,6 @@ $strDataOnly = 'データのみ';
$strDataPages = 'データを含むページ数';
$strDBComment = 'データベースのコメント: ';
$strDBCopy = 'この前でデータベースをコピーする';
-$strDBGContext = 'コンテキスト';
-$strDBGContextID = 'コンテキストID';
-$strDBGHits = 'ヒット';
-$strDBGLine = '行';
-$strDBGMaxTimeMs = '最大時間(ミリ秒)';
-$strDBGMinTimeMs = '最小時間(ミリ秒)';
-$strDBGModule = 'モジュール';
-$strDBGTimePerHitMs = 'ヒット率(ミリ秒)';
-$strDBGTotalTimeMs = '総計時間(ミリ秒)';
$strDbPrivileges = 'データベース特定 特権';
$strDBRename = 'この前にデータベースを変更する';
$strDbSpecific = 'データベース仕様';
@@ -353,9 +341,7 @@ $strIdxFulltext = '全文';
$strIgnore = '無視';
$strIgnoreDuplicates = '行の複製を無視する';
$strIgnoreInserts = '「INSERT IGNOREを使用する';
-$strIgnoringFile = 'ファイルを無視 %s';
$strImport = 'インポート';
-$strImportDocSQL = 'docSQL ファイルインポート';
$strImportFiles = 'インポートファイル';
$strImportFormat = 'インポート済ファイルの書式';
$strImportSuccessfullyFinished = 'インポートに成功しました。%d 個の照会を実行しました。';
@@ -908,7 +894,6 @@ $strThemeNotFound = 'テーマ「%sが見つかりません!';
$strThemeNoValidImgPath = 'テーマ「%sで正しい画像パスが見つかりません!';
$strThemePathNotFound = 'テーマ「%sのテーマパスが見つかりません!';
$strThisHost = 'このホスト';
-$strThisNotDirectory = 'これはディレクトリではありません';
$strThreads = 'スレッド';
$strThreadSuccessfullyKilled = 'スレッド %s は終了しました。';
$strTime = '時間';
@@ -988,8 +973,6 @@ $strWildcard = 'ワイルドカード';
$strWindowNotFound = 'ターゲットブラウザウィンドウを更新することができません。恐らく親ウィンドウを閉じたか、あるいはブラウザーのセキュリティ設定で、クロスウィンドウの更新をブロックしています。';
$strWithChecked = 'チェックしたものを:';
$strWriteRequests = '書き込みリクエスト数';
-$strWritingCommentNotPossible = 'コメントの書き込みが有効ではありません。';
-$strWritingRelationNotPossible = 'リレーションの書き込みが有効ではありません。';
$strWrongUser = 'ユーザまたはパスワードが正しくありません。
アクセスは拒否されました。';
$strXkana = '全角カナへ変換する'; // convert to X208-kana
@@ -1003,4 +986,38 @@ $strZip = '"zip 方式"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/korean-euc-kr.inc.php b/lang/korean-euc-kr.inc.php
index 3a124425f..d1b92102e 100644
--- a/lang/korean-euc-kr.inc.php
+++ b/lang/korean-euc-kr.inc.php
@@ -98,9 +98,6 @@ $strDatabasesStatsEnable = '
$strDatabasesStatsHeavyTraffic = ': ͺ̽ MySQL ̿ ū ϸ ݴϴ.';
$strDataDict = ' (ü )';
$strDataOnly = '';
-$strDBGMaxTimeMs = 'ִð, ms';
-$strDBGMinTimeMs = 'ּҽð, ms';
-$strDBGModule = '';
$strDbPrivileges = 'ͺ̽ ';
$strDefault = '⺻';
$strDefaultValueHelp = '⺻, ó ǥ ϳ ʽÿ. (: a)';
@@ -165,7 +162,6 @@ $strHost = 'ȣ
$strHostEmpty = 'ȣƮ ϴ!';
$strIgnore = 'Ignore';
-$strIgnoringFile = ' %s մϴ';
$strImportFiles = ' ';
$strIndex = 'ε';
$strIndexes = 'ε';
@@ -400,7 +396,6 @@ $strTables = '
$strTableStructure = '̺ ';
$strTblPrivileges = '̺ ';
$strTextAreaLength = ' ʵ ,
ʵ带 ϴ ';
-$strThisNotDirectory = '丮 ƴմϴ';
$strThreadSuccessfullyKilled = ' %s ϴ.';
$strTime = 'ð';
$strTotal = 'հ';
@@ -446,13 +441,10 @@ $strZip = 'zip
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -546,12 +538,6 @@ $strDatabaseNoTable = 'This database contains no table!';//to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //to translate
-$strDBGContext = 'Context'; //to translate
-$strDBGContextID = 'Context ID'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
-$strDBGTotalTimeMs = 'Total time, ms'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
@@ -624,7 +610,6 @@ $strId = 'ID'; //to translate
$strIdxFulltext = 'Fulltext'; // To translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
$strImportSuccessfullyFinished = 'Import has been successfully finished, %d queries executed.'; //to translate
@@ -986,8 +971,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1019,4 +1002,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php
index 41b799fe7..2fda86b47 100644
--- a/lang/korean-utf-8.inc.php
+++ b/lang/korean-utf-8.inc.php
@@ -99,9 +99,6 @@ $strDatabasesStatsEnable = '통계 보기';
$strDatabasesStatsHeavyTraffic = '주의: 데이터베이스 통계 보기는 웹서버와 MySQL 서버 사이에 큰 부하를 줍니다.';
$strDataDict = '데이터 사전 (전체 구조보기)';
$strDataOnly = '데이터만';
-$strDBGMaxTimeMs = '최대시간, ms';
-$strDBGMinTimeMs = '최소시간, ms';
-$strDBGModule = '모듈';
$strDbPrivileges = '데이터베이스에 관한 권한';
$strDefault = '기본값';
$strDefaultValueHelp = '기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)';
@@ -166,7 +163,6 @@ $strHost = '호스트';
$strHostEmpty = '호스트명이 없습니다!';
$strIgnore = 'Ignore';
-$strIgnoringFile = '파일 %s 을 무시합니다';
$strImportFiles = '파일 가져오기';
$strIndex = '인덱스';
$strIndexes = '인덱스';
@@ -401,7 +397,6 @@ $strTables = '테이블 %s 개';
$strTableStructure = '테이블 구조';
$strTblPrivileges = '테이블에 관한 권한';
$strTextAreaLength = ' 필드의 길이 때문에,
이 필드를 편집할 수 없습니다 ';
-$strThisNotDirectory = '디렉토리가 아닙니다';
$strThreadSuccessfullyKilled = '쓰레드 %s 를 죽였습니다.';
$strTime = '시간';
$strTotal = '합계';
@@ -447,13 +442,10 @@ $strZip = 'zip 압축';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -547,12 +539,6 @@ $strDatabaseNoTable = 'This database contains no table!';//to translate
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //to translate
-$strDBGContext = 'Context'; //to translate
-$strDBGContextID = 'Context ID'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
-$strDBGTotalTimeMs = 'Total time, ms'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
@@ -625,7 +611,6 @@ $strId = 'ID'; //to translate
$strIdxFulltext = 'Fulltext'; // To translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strImportDocSQL = 'Import docSQL Files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
$strImportSuccessfullyFinished = 'Import has been successfully finished, %d queries executed.'; //to translate
@@ -987,8 +972,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php
index 03011297f..7b02f2741 100644
--- a/lang/latvian-utf-8.inc.php
+++ b/lang/latvian-utf-8.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d.%m.%Y %H:%M';
$timespanfmt = '%s dienas, %s stundas, %s minūtes un %s sekundes';
$strAbortedClients = 'Pārtraukts';
-$strAbsolutePathToDocSqlDir = 'Lūdzu ievadiet absolūto ceļu līdz docSQL direktorijai uz servera';
$strAccessDeniedExplanation = 'phpMyAdmin mēģināja pieslēgties MySQL serverim, un serveris noraidīja pieslēgumu. Lūdzu pārbaudiet hostu, lietotājvārdu un paroli config.inc.php failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL servera administrators.';
$strAccessDenied = 'Pieeja aizliegta';
$strAction = 'Darbība';
@@ -30,8 +29,6 @@ $strAddAutoIncrement = 'Pievienot AUTO_INCREMENT vērtību';
$strAddConstraints = 'Pievienot ierobežojumus';
$strAddDeleteColumn = 'Pievienot/Dzēst laukus (kolonnas)';
$strAddDeleteRow = 'Pievienot/Dzēst ierakstu';
-$strAddedColumnComment = 'Pievienots komentārs kolonnai';
-$strAddedColumnRelation = 'Pievienota relācija kolonnai';
$strAddFields = 'Pievienot %s lauku(s)';
$strAddHeaderComment = 'Ievietot virsrakstā komentāru (\\n atdala rindas)';
$strAddIntoComments = 'Pievienot komentāros';
@@ -176,15 +173,6 @@ $strDataDict = 'Datu vārdnīca';
$strDataOnly = 'Tikai dati';
$strDBComment = 'Datubāzes komentārs: ';
$strDBCopy = 'Kopēt datubāzi uz';
-$strDBGContextID = 'Konteksta ID';
-$strDBGContext = 'Konteksts';
-$strDBGHits = 'Apmeklējumi';
-$strDBGLine = 'Līnija';
-$strDBGMaxTimeMs = 'Maks. laiks, ms';
-$strDBGMinTimeMs = 'Min. laiks, ms';
-$strDBGModule = 'Modulis';
-$strDBGTimePerHitMs = 'Viena apmeklējuma laiks, ms';
-$strDBGTotalTimeMs = 'Laiks kopā, ms';
$strDbPrivileges = 'Datubāžu specifiskās privilēģijas';
$strDBRename = 'Pārsaukt datubāzi par';
$strDbSpecific = 'datubāzei specifisks';
@@ -291,8 +279,6 @@ $strId = 'ID';
$strIdxFulltext = 'Pilni teksti';
$strIgnore = 'Ignorēt';
$strIgnoreInserts = 'Lietot IGNORE INSERTS';
-$strIgnoringFile = 'Ignorējam failu %s';
-$strImportDocSQL = 'Importēt docSQL failus';
$strImportFiles = 'Importēt failus';
$strIndexes = 'Indeksi';
$strIndexHasBeenDropped = 'Indekss %s tika izdzēsts';
@@ -634,7 +620,6 @@ $strTextAreaLength = ' Sava garuma dēļ,
šis lauks var būt nerediģēja
$strThai = 'Taizemiešu';
$strTheme = 'Tēma / Stils';
$strThisHost = 'Šis hosts';
-$strThisNotDirectory = 'Tā nebija direktorija';
$strThreadSuccessfullyKilled = 'Process %s tika veiksmīgi nogalināts.';
$strTime = 'Laiks';
$strToggleScratchboard = 'parādīt/noslēpt piezīmju tafeli';
@@ -698,8 +683,6 @@ $strWestEuropean = 'Rietumeiropas';
$strWildcard = 'aizstājējzīme';
$strWindowNotFound = 'Neizdevās atjaunot galveno pārlūkprogramas logu. Varbūt esat viņu aizvēruši, vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības iestādījumu dēļ.';
$strWithChecked = 'Ar iezīmēto:';
-$strWritingCommentNotPossible = 'Komentāra rakstīšana nav iespējama';
-$strWritingRelationNotPossible = 'Relācijas rakstīšana nav iespējama';
$strWrongUser = 'Kļūdains lietotājvārds/parole. Pieeja aizliegta.';
$strXML = 'XML';
@@ -1022,4 +1005,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/latvian-windows-1257.inc.php b/lang/latvian-windows-1257.inc.php
index f7a133e32..00a1fd993 100644
--- a/lang/latvian-windows-1257.inc.php
+++ b/lang/latvian-windows-1257.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d.%m.%Y %H:%M';
$timespanfmt = '%s dienas, %s stundas, %s mintes un %s sekundes';
$strAbortedClients = 'Prtraukts';
-$strAbsolutePathToDocSqlDir = 'Ldzu ievadiet absolto ceu ldz docSQL direktorijai uz servera';
$strAccessDeniedExplanation = 'phpMyAdmin minja pieslgties MySQL serverim, un serveris noraidja pieslgumu. Ldzu prbaudiet hostu, lietotjvrdu un paroli config.inc.php fail, un prliecinieties, ka tie atbilst informcijai, ko Jums deva MySQL servera administrators.';
$strAccessDenied = 'Pieeja aizliegta';
$strAction = 'Darbba';
@@ -29,8 +28,6 @@ $strAddAutoIncrement = 'Pievienot AUTO_INCREMENT v
$strAddConstraints = 'Pievienot ierobeojumus';
$strAddDeleteColumn = 'Pievienot/Dzst laukus (kolonnas)';
$strAddDeleteRow = 'Pievienot/Dzst ierakstu';
-$strAddedColumnComment = 'Pievienots komentrs kolonnai';
-$strAddedColumnRelation = 'Pievienota relcija kolonnai';
$strAddFields = 'Pievienot %s lauku(s)';
$strAddHeaderComment = 'Ievietot virsrakst komentru (\\n atdala rindas)';
$strAddIntoComments = 'Pievienot komentros';
@@ -175,15 +172,6 @@ $strDataDict = 'Datu v
$strDataOnly = 'Tikai dati';
$strDBComment = 'Datubzes komentrs: ';
$strDBCopy = 'Kopt datubzi uz';
-$strDBGContextID = 'Konteksta ID';
-$strDBGContext = 'Konteksts';
-$strDBGHits = 'Apmekljumi';
-$strDBGLine = 'Lnija';
-$strDBGMaxTimeMs = 'Maks. laiks, ms';
-$strDBGMinTimeMs = 'Min. laiks, ms';
-$strDBGModule = 'Modulis';
-$strDBGTimePerHitMs = 'Viena apmekljuma laiks, ms';
-$strDBGTotalTimeMs = 'Laiks kop, ms';
$strDbPrivileges = 'Datubu specifisks privilijas';
$strDBRename = 'Prsaukt datubzi par';
$strDbSpecific = 'datubzei specifisks';
@@ -290,8 +278,6 @@ $strId = 'ID';
$strIdxFulltext = 'Pilni teksti';
$strIgnore = 'Ignort';
$strIgnoreInserts = 'Lietot IGNORE INSERTS';
-$strIgnoringFile = 'Ignorjam failu %s';
-$strImportDocSQL = 'Importt docSQL failus';
$strImportFiles = 'Importt failus';
$strIndexes = 'Indeksi';
$strIndexHasBeenDropped = 'Indekss %s tika izdzsts';
@@ -633,7 +619,6 @@ $strTextAreaLength = ' Sava garuma d
$strThai = 'Taizemieu';
$strTheme = 'Tma / Stils';
$strThisHost = 'is hosts';
-$strThisNotDirectory = 'T nebija direktorija';
$strThreadSuccessfullyKilled = 'Process %s tika veiksmgi nogalints.';
$strTime = 'Laiks';
$strToggleScratchboard = 'pardt/noslpt piezmju tafeli';
@@ -697,8 +682,6 @@ $strWestEuropean = 'Rietumeiropas';
$strWildcard = 'aizstjjzme';
$strWindowNotFound = 'Neizdevs atjaunot galveno prlkprogramas logu. Varbt esat viu aizvrui, vai ar Jsu prlkprogramma bloe starplogu saskarsmi Jsu drobas iestdjumu d.';
$strWithChecked = 'Ar iezmto:';
-$strWritingCommentNotPossible = 'Komentra rakstana nav iespjama';
-$strWritingRelationNotPossible = 'Relcijas rakstana nav iespjama';
$strWrongUser = 'Kdains lietotjvrds/parole. Pieeja aizliegta.';
$strXML = 'XML';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php
index cead01dbf..7226f7d57 100644
--- a/lang/lithuanian-utf-8.inc.php
+++ b/lang/lithuanian-utf-8.inc.php
@@ -17,7 +17,6 @@ $datefmt = ' %Y m. %B %d d. %H:%M';
$timespanfmt = '%s d., %s val., %s min. ir %s s.';
$strAbortedClients = 'Atmestos jungtys';
-$strAbsolutePathToDocSqlDir = 'Prašome nurodyti absoliutų kelią iki docSQL katalogo darbinėje stotyje';
$strAccessDeniedExplanation = 'phpMyAdmin nepavyko prisijungti prie MySQL darbinės stoties (jungtis atmesta). Patikrinkite config.inc.php byloje nurodytus duomenis (darbinės stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie sutampa su duomenimis gautais iš darbinės stoties administratoriaus.';
$strAccessDenied = 'Jungtis neįmanoma';
$strAction = 'Valdymo veiksmai';
@@ -25,8 +24,6 @@ $strAddAutoIncrement = 'Pridėti AUTO_INCREMENT reikšmę';
$strAddConstraints = 'Pridėti apribojimą';
$strAddDeleteColumn = 'Įterpti/Trinti stulpelius';
$strAddDeleteRow = 'Įterpti/Trinti požymio eilutę(es)';
-$strAddedColumnComment = 'Pridėtas stulpelio komentaras';
-$strAddedColumnRelation = 'Pridėtas stulpelio sąryšis';
$strAddFields = 'Pridėti %s lauką(-us)';
$strAddHeaderComment = 'Įterpti savo komentarą į header sritį (eilučių skirtukas \\n )';
$strAddIntoComments = 'Pridėti į komentarus';
@@ -176,15 +173,6 @@ $strData = 'Duomenys';
$strDataOnly = 'Tik duomenys';
$strDBComment = 'Duombazės komantaras: ';
$strDBCopy = 'Kopijuoti duombazę į';
-$strDBGContextID = 'Konteksto ID';
-$strDBGContext = 'Kontekstas';
-$strDBGHits = 'Užklausos';
-$strDBGLine = 'Eilutė';
-$strDBGMaxTimeMs = 'Max laikas, ms';
-$strDBGMinTimeMs = 'Min laikas, ms';
-$strDBGModule = 'Modulis';
-$strDBGTimePerHitMs = 'Laikas/Užklausa, ms';
-$strDBGTotalTimeMs = 'Pilnas laikas, ms';
$strDbPrivileges = 'Specifinės duombazių privilegijos';
$strDBRename = 'Pervadinti duombazę į';
$strDbSpecific = 'priklausantis nuo duombazės tipo';
@@ -301,8 +289,6 @@ $strId = 'ID';
$strIdxFulltext = 'Fulltext';
$strIgnore = 'Ignoruoti';
$strIgnoreInserts = 'Ignoruoti INSERT užklausas.';
-$strIgnoringFile = 'Ignoruojama byla %s';
-$strImportDocSQL = 'Importuoti docSQL bylas';
$strImportFiles = 'Importuoti bylas';
$strIndexes = 'Indeksai';
$strIndexHasBeenDropped = 'Indeksas %s panaikintas';
@@ -664,7 +650,6 @@ $strTextAreaLength = ' Tai yra jo ilgis,
šis laukelis neredaguojamas ';
$strThai = 'Tailando';
$strTheme = 'Tema / Stilius';
$strThisHost = 'Dabartinis serveris';
-$strThisNotDirectory = 'Tai ne katalogas';
$strThreadSuccessfullyKilled = '%s buvo sėkmingai išjungtas.';
$strTime = 'Laikas';
$strToggleScratchboard = 'įjungti scratchboard';
@@ -732,8 +717,6 @@ $strWildcard = 'pakaitos simbolis';
$strWindowNotFound = 'Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo.';
$strWithChecked = 'Pasirinktas lenteles:';
$strWriteRequests = 'Write užklausos';
-$strWritingCommentNotPossible = 'Negalimas komentavimas';
-$strWritingRelationNotPossible = 'Negalimas sąryšis';
$strWrongUser = 'Neteisingas vartotojo vardas arba slaptažodis. Priėjimas uždraustas.';
$strXML = 'XML';
@@ -1015,4 +998,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/lithuanian-windows-1257.inc.php b/lang/lithuanian-windows-1257.inc.php
index 7943e7f34..3045d31a0 100644
--- a/lang/lithuanian-windows-1257.inc.php
+++ b/lang/lithuanian-windows-1257.inc.php
@@ -16,7 +16,6 @@ $datefmt = ' %Y m. %B %d d. %H:%M';
$timespanfmt = '%s d., %s val., %s min. ir %s s.';
$strAbortedClients = 'Atmestos jungtys';
-$strAbsolutePathToDocSqlDir = 'Praome nurodyti absoliut keli iki docSQL katalogo darbinje stotyje';
$strAccessDeniedExplanation = 'phpMyAdmin nepavyko prisijungti prie MySQL darbins stoties (jungtis atmesta). Patikrinkite config.inc.php byloje nurodytus duomenis (darbins stoties adres, prisijungimo vard ir slaptaod) ir sitikinkite ar jie sutampa su duomenimis gautais i darbins stoties administratoriaus.';
$strAccessDenied = 'Jungtis nemanoma';
$strAction = 'Valdymo veiksmai';
@@ -24,8 +23,6 @@ $strAddAutoIncrement = 'Prid
$strAddConstraints = 'Pridti apribojim';
$strAddDeleteColumn = 'terpti/Trinti stulpelius';
$strAddDeleteRow = 'terpti/Trinti poymio eilut(es)';
-$strAddedColumnComment = 'Pridtas stulpelio komentaras';
-$strAddedColumnRelation = 'Pridtas stulpelio sryis';
$strAddFields = 'Pridti %s lauk(-us)';
$strAddHeaderComment = 'terpti savo komentar header srit (eilui skirtukas \\n )';
$strAddIntoComments = 'Pridti komentarus';
@@ -175,15 +172,6 @@ $strData = 'Duomenys';
$strDataOnly = 'Tik duomenys';
$strDBComment = 'Duombazs komantaras: ';
$strDBCopy = 'Kopijuoti duombaz ';
-$strDBGContextID = 'Konteksto ID';
-$strDBGContext = 'Kontekstas';
-$strDBGHits = 'Uklausos';
-$strDBGLine = 'Eilut';
-$strDBGMaxTimeMs = 'Max laikas, ms';
-$strDBGMinTimeMs = 'Min laikas, ms';
-$strDBGModule = 'Modulis';
-$strDBGTimePerHitMs = 'Laikas/Uklausa, ms';
-$strDBGTotalTimeMs = 'Pilnas laikas, ms';
$strDbPrivileges = 'Specifins duombazi privilegijos';
$strDBRename = 'Pervadinti duombaz ';
$strDbSpecific = 'priklausantis nuo duombazs tipo';
@@ -300,8 +288,6 @@ $strId = 'ID';
$strIdxFulltext = 'Fulltext';
$strIgnore = 'Ignoruoti';
$strIgnoreInserts = 'Ignoruoti INSERT uklausas.';
-$strIgnoringFile = 'Ignoruojama byla %s';
-$strImportDocSQL = 'Importuoti docSQL bylas';
$strImportFiles = 'Importuoti bylas';
$strIndexes = 'Indeksai';
$strIndexHasBeenDropped = 'Indeksas %s panaikintas';
@@ -663,7 +649,6 @@ $strTextAreaLength = ' Tai yra jo ilgis,
$strThai = 'Tailando';
$strTheme = 'Tema / Stilius';
$strThisHost = 'Dabartinis serveris';
-$strThisNotDirectory = 'Tai ne katalogas';
$strThreadSuccessfullyKilled = '%s buvo skmingai ijungtas.';
$strTime = 'Laikas';
$strToggleScratchboard = 'jungti scratchboard';
@@ -731,8 +716,6 @@ $strWildcard = 'pakaitos simbolis';
$strWindowNotFound = 'Tikslo langas neatnaujintas. Galbt Js udarte pagrindin lang arba Js narykl blokuoja atnaujinimus tarp lang dl nustatyto saugumo.';
$strWithChecked = 'Pasirinktas lenteles:';
$strWriteRequests = 'Write uklausos';
-$strWritingCommentNotPossible = 'Negalimas komentavimas';
-$strWritingRelationNotPossible = 'Negalimas sryis';
$strWrongUser = 'Neteisingas vartotojo vardas arba slaptaodis. Prijimas udraustas.';
$strXML = 'XML';
@@ -1014,4 +997,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/malay-iso-8859-1.inc.php b/lang/malay-iso-8859-1.inc.php
index b1081e57c..734e799ee 100644
--- a/lang/malay-iso-8859-1.inc.php
+++ b/lang/malay-iso-8859-1.inc.php
@@ -186,7 +186,6 @@ $strHost = 'Hos';
$strId = 'ID';
$strIdxFulltext = 'Tekspenuh';
$strIgnore = 'Abai';
-$strImportDocSQL = 'Import Fail docSQL';
$strIndexes = 'Indeks';
$strIndexHasBeenDropped = 'Indeks %s telah digugurkan';
$strIndex = 'Indeks';
@@ -437,13 +436,10 @@ $strYes = 'Ya';
$strZip = '"zipped"';
// To translate:
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -534,15 +530,6 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -612,7 +599,6 @@ $strHungarian = 'Hungarian'; //to translate
$strIcelandic = 'Icelandic'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -950,7 +936,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.'; //to translate
@@ -1001,8 +986,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1036,4 +1019,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php
index 541b0b801..e92119941 100644
--- a/lang/malay-utf-8.inc.php
+++ b/lang/malay-utf-8.inc.php
@@ -187,7 +187,6 @@ $strHost = 'Hos';
$strId = 'ID';
$strIdxFulltext = 'Tekspenuh';
$strIgnore = 'Abai';
-$strImportDocSQL = 'Import Fail docSQL';
$strIndexes = 'Indeks';
$strIndexHasBeenDropped = 'Indeks %s telah digugurkan';
$strIndex = 'Indeks';
@@ -438,13 +437,10 @@ $strYes = 'Ya';
$strZip = '"zipped"';
// To translate:
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments';//to translate
@@ -535,15 +531,6 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: ';//to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -613,7 +600,6 @@ $strHungarian = 'Hungarian'; //to translate
$strIcelandic = 'Icelandic'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -951,7 +937,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
$strTimeoutNothingParsed = 'However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.'; //to translate
@@ -1002,8 +987,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML';//to translate
@@ -1037,4 +1020,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/mongolian-utf-8.inc.php b/lang/mongolian-utf-8.inc.php
index 0a5a373e0..67599ad7f 100644
--- a/lang/mongolian-utf-8.inc.php
+++ b/lang/mongolian-utf-8.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%Y оны %B сарын %d., %H:%M';
$timespanfmt = '%s өдөр, %s цаг, %s минут, %s секунд';
$strAbortedClients = 'Таслагдсан';
-$strAbsolutePathToDocSqlDir = 'Сервэр дэх docSQL-ын абсолют замыг оруулна уу';
$strAccessDeniedExplanation = 'phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга.';
$strAccessDenied = 'Хандах эрхгүй';
$strAction = 'Үйлдэл';
@@ -30,8 +29,6 @@ $strAddAutoIncrement = 'AUTO_INCREMENT утга нэмэх';
$strAddConstraints = 'Тогтмол нэмэх';
$strAddDeleteColumn = 'Багана нэмэх/устгах';
$strAddDeleteRow = 'Мөр Нэмэх/устгах';
-$strAddedColumnComment = 'Баганад тайлбар нэмэгдлээ';
-$strAddedColumnRelation = 'Баганад хамаарал нэмэгдлээ';
$strAddFields = '%s талбар(ууд) нэмэх';
$strAddHeaderComment = 'header-т тусгай тайлбар нэмэх (\\n –мөр шилжүүлнэ)';
$strAddIntoComments = 'Тайлбар нэмэх';
@@ -189,15 +186,6 @@ $strDataPages = 'Хуудсуудын агуулсан өгөгдөл';
$strData = 'Өгөгдөл';
$strDBComment = 'ӨС-ийн тайлбар: ';
$strDBCopy = 'Өгөгдлийн сан хуулах нь';
-$strDBGContextID = 'Хам ID';
-$strDBGContext = 'Хам';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Line';
-$strDBGMaxTimeMs = 'ХИ хугацаа, ms';
-$strDBGMinTimeMs = 'ХБ хугацаа, ms';
-$strDBGModule = 'Модуль';
-$strDBGTimePerHitMs = 'Time/Hit, ms';
-$strDBGTotalTimeMs = 'Нийт хугацаа, ms';
$strDbPrivileges = ' Онцгой эрх, өгөгдлийн сангийн эрх';
$strDBRename = 'Өгөгдлийн санг д.нэрлэх нь';
$strDbSpecific = 'Өгөгдлийн сангийн эрх';
@@ -317,8 +305,6 @@ $strId = 'ID';
$strIdxFulltext = 'Бүтэнбичвэр';
$strIgnoreInserts = 'Оруулалтыг үл тоох';
$strIgnore = 'Үл тоох';
-$strIgnoringFile = 'Файл %s-ыг үл тоох';
-$strImportDocSQL = 'docSQL файл оруулах';
$strImportFiles = 'Файл оруулах';
$strIndexes = 'Индексүүд';
$strIndexHasBeenDropped = 'Индекс %s нь устгагдсан';
@@ -700,7 +686,6 @@ $strTextAreaLength = ' Яагаад гэвэл урт нь их,
энэ т
$strThai = 'Таи';
$strTheme = 'Арьс / Загвар';
$strThisHost = 'Энэ хост';
-$strThisNotDirectory = 'Энэ хавтас биш байна';
$strThreadSuccessfullyKilled = 'Thread %s нь устгагдав.';
$strTime = 'Цаг';
$strToggleScratchboard = 'toggle scratchboard';
@@ -769,8 +754,6 @@ $strWildcard = 'загвар';
$strWindowNotFound = 'Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон';
$strWithChecked = 'Сонгогдсонтой:';
$strWriteRequests = 'Бичих гуйлт';
-$strWritingCommentNotPossible = 'Боломжгүй тайлбар бичиж байна';
-$strWritingRelationNotPossible = 'Боломжгүй хамаарал бичиж байна';
$strWrongUser = 'Нэвтрэгч/нууц үг буруу. Хандах боломжгүй';
$strXML = 'XML';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/norwegian-iso-8859-1.inc.php b/lang/norwegian-iso-8859-1.inc.php
index 415a00d70..0864647a3 100644
--- a/lang/norwegian-iso-8859-1.inc.php
+++ b/lang/norwegian-iso-8859-1.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d. %B, %Y klokka %H:%M %p';
$timespanfmt = '%s dager, %s timer, %s minutter og %s sekunder';
$strAbortedClients = 'Avbrutt';
-$strAbsolutePathToDocSqlDir = 'Vennligst skriv inn den absolutte stien p webtjeneren til docSQL katalogen';
$strAccessDeniedCreateConfig = 'En mulig rsak for dette er at du ikke opprettet konfigurasjonsfila. Du br kanskje bruke %1$ssetup script%2$s for opprette en.';
$strAccessDeniedExplanation = 'phpMyAdmin forskte koble til MySQL-serveren, og serveren avviste tilkoblingen. Du m kontrollere vert (host), brukernavn (username) og passord (password) i config.inc.php og sjekke at de tilsvarer den informasjonen du fikk fra MySQL-server administratoren.';
$strAccessDenied = 'Ingen tilgang';
@@ -30,8 +29,6 @@ $strAddClause = 'Legg til %s';
$strAddConstraints = 'Legg til begrensninger';
$strAddDeleteColumn = 'Legg til/Slett kolonne';
$strAddDeleteRow = 'Legg til/Slett kriterierad';
-$strAddedColumnComment = 'Lagt til kolonnekommentar';
-$strAddedColumnRelation = 'Lagt til relasjon for kolonne';
$strAddFields = 'Legg til %s felt(er)';
$strAddHeaderComment = 'Legg til egen kommentar i hodet (\\n lager linjeskift)';
$strAddIntoComments = 'Legg til i kommentarer';
@@ -203,15 +200,6 @@ $strDataOnly = 'Bare data';
$strDataPages = 'Sider som inneholder data';
$strDBComment = 'Database kommentar: ';
$strDBCopy = 'Kopier databasen til';
-$strDBGContextID = 'Sammenhengs-ID';
-$strDBGContext = 'Sammenheng';
-$strDBGHits = 'Treff';
-$strDBGLine = 'Linje';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/Treff, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Databasespesifikke privilegier';
$strDBRename = 'Endre databasens navn til';
$strDbSpecific = 'databasespesifikk';
@@ -348,8 +336,6 @@ $strIdxFulltext = 'Fulltekst';
$strIgnoreDuplicates = 'Ignorer dupliserte rader';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Bruk ignore inserts';
-$strIgnoringFile = 'Ignorerer fil %s';
-$strImportDocSQL = 'Importer docSQL-filer';
$strImportFiles = 'Importer filer';
$strImportFormat = 'Formatet til importert fil';
$strImport = 'Importer';
@@ -902,7 +888,6 @@ $strThemeNoValidImgPath = 'Ingen gyldig bildesti for stilen %s ble funnet!';
$strThemePathNotFound = 'Stilsti ble ikke funnet for stilen %s!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Denne vert';
-$strThisNotDirectory = 'Dette var ikke en katalog';
$strThreads = 'Trder';
$strThreadSuccessfullyKilled = 'Trd %s ble avsluttet med suksess.';
$strTimeoutInfo = 'Forrige import ble tidsavbrutt, vil fortsette fra posisjon %d etter gjenninnsending.';
@@ -982,8 +967,6 @@ $strWildcard = 'jokertegn';
$strWindowNotFound = 'Mlvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsrsaker.';
$strWithChecked = 'Med avkrysset:';
$strWriteRequests = 'Skriveforesprsler';
-$strWritingCommentNotPossible = 'Skriving av kommentar er ikke mulig';
-$strWritingRelationNotPossible = 'Skriving av relasjon er ikke mulig';
$strWrongUser = 'Ugyldig brukernavn/passord. Ingen tilgang.';
$strXMLOptions = 'XML innstillinger';
@@ -996,4 +979,38 @@ $strZip = 'Komprimert (zip)';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php
index cbbedc2ed..6ebd3e63f 100644
--- a/lang/norwegian-utf-8.inc.php
+++ b/lang/norwegian-utf-8.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d. %B, %Y klokka %H:%M %p';
$timespanfmt = '%s dager, %s timer, %s minutter og %s sekunder';
$strAbortedClients = 'Avbrutt';
-$strAbsolutePathToDocSqlDir = 'Vennligst skriv inn den absolutte stien på webtjeneren til docSQL katalogen';
$strAccessDeniedCreateConfig = 'En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør kanskje bruke %1$ssetup script%2$s for å opprette en.';
$strAccessDeniedExplanation = 'phpMyAdmin forsøkte å koble til MySQL-serveren, og serveren avviste tilkoblingen. Du må kontrollere vert (host), brukernavn (username) og passord (password) i config.inc.php og sjekke at de tilsvarer den informasjonen du fikk fra MySQL-server administratoren.';
$strAccessDenied = 'Ingen tilgang';
@@ -31,8 +30,6 @@ $strAddClause = 'Legg til %s';
$strAddConstraints = 'Legg til begrensninger';
$strAddDeleteColumn = 'Legg til/Slett kolonne';
$strAddDeleteRow = 'Legg til/Slett kriterierad';
-$strAddedColumnComment = 'Lagt til kolonnekommentar';
-$strAddedColumnRelation = 'Lagt til relasjon for kolonne';
$strAddFields = 'Legg til %s felt(er)';
$strAddHeaderComment = 'Legg til egen kommentar i hodet (\\n lager linjeskift)';
$strAddIntoComments = 'Legg til i kommentarer';
@@ -204,15 +201,6 @@ $strDataOnly = 'Bare data';
$strDataPages = 'Sider som inneholder data';
$strDBComment = 'Database kommentar: ';
$strDBCopy = 'Kopier databasen til';
-$strDBGContextID = 'Sammenhengs-ID';
-$strDBGContext = 'Sammenheng';
-$strDBGHits = 'Treff';
-$strDBGLine = 'Linje';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/Treff, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Databasespesifikke privilegier';
$strDBRename = 'Endre databasens navn til';
$strDbSpecific = 'databasespesifikk';
@@ -349,8 +337,6 @@ $strIdxFulltext = 'Fulltekst';
$strIgnoreDuplicates = 'Ignorer dupliserte rader';
$strIgnore = 'Ignorer';
$strIgnoreInserts = 'Bruk ignore inserts';
-$strIgnoringFile = 'Ignorerer fil %s';
-$strImportDocSQL = 'Importer docSQL-filer';
$strImportFiles = 'Importer filer';
$strImportFormat = 'Formatet til importert fil';
$strImport = 'Importer';
@@ -903,7 +889,6 @@ $strThemeNoValidImgPath = 'Ingen gyldig bildesti for stilen %s ble funnet!';
$strThemePathNotFound = 'Stilsti ble ikke funnet for stilen %s!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Denne vert';
-$strThisNotDirectory = 'Dette var ikke en katalog';
$strThreads = 'Tråder';
$strThreadSuccessfullyKilled = 'Tråd %s ble avsluttet med suksess.';
$strTimeoutInfo = 'Forrige import ble tidsavbrutt, vil fortsette fra posisjon %d etter gjenninnsending.';
@@ -983,8 +968,6 @@ $strWildcard = 'jokertegn';
$strWindowNotFound = 'Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker.';
$strWithChecked = 'Med avkrysset:';
$strWriteRequests = 'Skriveforespørsler';
-$strWritingCommentNotPossible = 'Skriving av kommentar er ikke mulig';
-$strWritingRelationNotPossible = 'Skriving av relasjon er ikke mulig';
$strWrongUser = 'Ugyldig brukernavn/passord. Ingen tilgang.';
$strXMLOptions = 'XML innstillinger';
@@ -997,4 +980,38 @@ $strZip = 'Komprimert (zip)';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php
index ef6c923aa..922541beb 100644
--- a/lang/persian-utf-8.inc.php
+++ b/lang/persian-utf-8.inc.php
@@ -152,7 +152,6 @@ $strHost = 'ميزبان';
$strIdxFulltext = 'كاملا متن';
$strIgnore = 'Ignore';
-$strImportDocSQL = 'وارد كردن پروندههاي docSQL';
$strIndexes = 'فهرستها';
$strIndexHasBeenDropped = 'فهرست %s حذف گرديد';
$strIndexName = 'اسم فهرست :';
@@ -348,13 +347,10 @@ $strZip = '"zipped"';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments'; //to translate
@@ -460,15 +456,6 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: '; //to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -542,7 +529,6 @@ $strIcelandic = 'Icelandic'; //to translate
$strId = 'ID'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -930,7 +916,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
@@ -987,8 +972,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML'; //to translate
@@ -1022,4 +1005,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/persian-windows-1256.inc.php b/lang/persian-windows-1256.inc.php
index 8d9b5b8eb..32d1d14ec 100644
--- a/lang/persian-windows-1256.inc.php
+++ b/lang/persian-windows-1256.inc.php
@@ -151,7 +151,6 @@ $strHostEmpty = '
$strIdxFulltext = ' ';
$strIgnore = 'Ignore';
-$strImportDocSQL = ' docSQL';
$strIndex = '';
$strIndexes = 'ʝ';
$strIndexHasBeenDropped = ' %s ';
@@ -347,13 +346,10 @@ $strZip = '"zipped"';
// To translate:
$strAbortedClients = 'Aborted'; //to translate
-$strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; //to translate
$strAccessDeniedCreateConfig = 'Probably reason of this is that you did not create configuration file. You might want to use %1$ssetup script%2$s to create one.'; //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
$strAddConstraints = 'Add constraints'; //to translate
-$strAddedColumnComment = 'Added comment for column'; //to translate
-$strAddedColumnRelation = 'Added relation for column'; //to translate
$strAddFields = 'Add %s field(s)'; //to translate
$strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; //to translate
$strAddIntoComments = 'Add into comments'; //to translate
@@ -459,15 +455,6 @@ $strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here mi
$strDataPages = 'Pages containing data'; //to translate
$strDBComment = 'Database comment: '; //to translate
$strDBCopy = 'Copy database to'; //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
$strDbPrivileges = 'Database-specific privileges'; //to translate
$strDBRename = 'Rename database to'; //to translate
$strDbSpecific = 'database-specific'; //to translate
@@ -541,7 +528,6 @@ $strIcelandic = 'Icelandic'; //to translate
$strId = 'ID'; //to translate
$strIgnoreDuplicates = 'Ignore duplicate rows'; //to translate
$strIgnoreInserts = 'Use ignore inserts'; //to translate
-$strIgnoringFile = 'Ignoring file %s'; //to translate
$strImportFiles = 'Import files'; //to translate
$strImportFormat = 'Format of imported file'; //to translate
$strImport = 'Import'; //to translate
@@ -929,7 +915,6 @@ $strThemeNoValidImgPath = 'No valid image path for theme %s found!'; //to trans
$strThemePathNotFound = 'Theme path not found for theme %s!'; //to translate
$strTheme = 'Theme / Style'; //to translate
$strThisHost = 'This Host'; //to translate
-$strThisNotDirectory = 'This was not a directory'; //to translate
$strThreads = 'Threads'; //to translate
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to translate
$strTimeoutInfo = 'Previous import timed out, after resubmitting will continue from position %d.'; //to translate
@@ -986,8 +971,6 @@ $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
$strWriteRequests = 'Write requests'; //to translate
-$strWritingCommentNotPossible = 'Writing of comment not possible'; //to translate
-$strWritingRelationNotPossible = 'Writing of relation not possible'; //to translate
$strXML = 'XML'; //to translate
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/polish-iso-8859-2.inc.php b/lang/polish-iso-8859-2.inc.php
index 6992bf06a..96bdea347 100644
--- a/lang/polish-iso-8859-2.inc.php
+++ b/lang/polish-iso-8859-2.inc.php
@@ -16,7 +16,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s dni, %s godzin, %s minut i %s sekund';
$strAbortedClients = 'Przerwane';
-$strAbsolutePathToDocSqlDir = 'Prosz poda bezwzgldn ciek na serwerze www do katalogu docSQL';
$strAccessDenied = 'Brak dostpu';
$strAccessDeniedCreateConfig = 'Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego stworzenia mona uy %1$sskryptu instalacyjnego%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin prbowa poczy si z serwerem MySQL, a serwer odrzuci poczenie. Powiniene sprawdzi nazw hosta, nazw uytkownika i haso w pliku config.inc.php i upewni si, e odpowiadaj one informacjom danym przez administratora serwera MySQL.';
@@ -26,8 +25,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj ograniczenia';
$strAddDeleteColumn = 'Dodaj/usu pola';
$strAddDeleteRow = 'Dodaj/usu wiersz kryteriw';
-$strAddedColumnComment = 'Zosta dodany komentarz kolumny';
-$strAddedColumnRelation = 'Zostaa dodana relacja dla kolumny';
$strAddFields = 'Dodaj %s pl';
$strAddHeaderComment = 'Dodaj do nagwka wasny komentarz (\\n oddziela linie)';
$strAddIntoComments = 'Dodaj w komentarzach:';
@@ -199,15 +196,6 @@ $strDataOnly = 'Tylko dane';
$strDataPages = 'Strony zawierajce dane';
$strDBComment = 'Komentarz bazy danych: ';
$strDBCopy = 'Kopiuj baz danych do';
-$strDBGContextID = 'ID kontekstu';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Trafienia';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Maksymalny czas, ms';
-$strDBGMinTimeMs = 'Minimalny czas, ms';
-$strDBGModule = 'Modu';
-$strDBGTimePerHitMs = 'Czas/trafienie, ms';
-$strDBGTotalTimeMs = 'Cakowity czas, ms';
$strDbPrivileges = 'Uprawnienia specyficzne dla baz danych';
$strDBRename = 'Zmie nazw bazy danych na';
$strDbSpecific = 'specyficzne dla bazy danych';
@@ -344,8 +332,6 @@ $strIdxFulltext = 'Pe
$strIgnoreDuplicates = 'Ignoruj zdublowane rekordy';
$strIgnore = 'Ignoruj';
$strIgnoreInserts = 'Uyj ignorowanych doda';
-$strIgnoringFile = 'Plik %s jest ignorowany';
-$strImportDocSQL = 'Import plikw docSQL';
$strImportFiles = 'Import plikw';
$strImportFormat = 'Format importowanych plikw';
$strImport = 'Import';
@@ -898,7 +884,6 @@ $strThemeNotFound = 'Nie znaleziono motywu graficznego %s!';
$strThemeNoValidImgPath = 'Nie znaleziono prawidowej cieki do obrazka dla motywu graficznego %s!';
$strThemePathNotFound = 'Nie znaleziono cieki do motywu %s!';
$strThisHost = 'Ten host';
-$strThisNotDirectory = 'To nie by katalog';
$strThreadSuccessfullyKilled = 'Wtek %s zosta pomylnie unicestwiony.';
$strThreads = 'Wtki';
$strTime = 'Czas';
@@ -978,8 +963,6 @@ $strWildcard = 'znak wieloznaczny';
$strWindowNotFound = 'Docelowe okno przegldarki nie mogo by zaktualizowane. By moe okno-rodzic zostao zamknite lub przegldarka, uwzgldniajc ustawienia bezpieczestwa, blokuje aktualizacje pomidzy oknami';
$strWithChecked = 'Zaznaczone:';
$strWriteRequests = 'da zapisu';
-$strWritingCommentNotPossible = 'Zapisanie komentarza nie jest moliwe';
-$strWritingRelationNotPossible = 'Zapisanie relacji nie jest moliwe';
$strWrongUser = 'Bdne pola uytkownik/haso. Brak dostpu.';
$strXMLOptions = 'Opcje formatu XML';
@@ -992,4 +975,38 @@ $strZip = '".zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php
index 853eb83bd..eab82d45a 100644
--- a/lang/polish-utf-8.inc.php
+++ b/lang/polish-utf-8.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s dni, %s godzin, %s minut i %s sekund';
$strAbortedClients = 'Przerwane';
-$strAbsolutePathToDocSqlDir = 'Proszę podać bezwzględną ścieżkę na serwerze www do katalogu docSQL';
$strAccessDenied = 'Brak dostępu';
$strAccessDeniedCreateConfig = 'Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego stworzenia można użyć %1$sskryptu instalacyjnego%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin próbował połączyć się z serwerem MySQL, a serwer odrzucił połączenie. Powinieneś sprawdzić nazwę hosta, nazwę użytkownika i hasło w pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym przez administratora serwera MySQL.';
@@ -27,8 +26,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj ograniczenia';
$strAddDeleteColumn = 'Dodaj/usuń pola';
$strAddDeleteRow = 'Dodaj/usuń wiersz kryteriów';
-$strAddedColumnComment = 'Został dodany komentarz kolumny';
-$strAddedColumnRelation = 'Została dodana relacja dla kolumny';
$strAddFields = 'Dodaj %s pól';
$strAddHeaderComment = 'Dodaj do nagłówka własny komentarz (\\n oddziela linie)';
$strAddIntoComments = 'Dodaj w komentarzach:';
@@ -200,15 +197,6 @@ $strDataOnly = 'Tylko dane';
$strDataPages = 'Strony zawierające dane';
$strDBComment = 'Komentarz bazy danych: ';
$strDBCopy = 'Kopiuj bazę danych do';
-$strDBGContextID = 'ID kontekstu';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Trafienia';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Maksymalny czas, ms';
-$strDBGMinTimeMs = 'Minimalny czas, ms';
-$strDBGModule = 'Moduł';
-$strDBGTimePerHitMs = 'Czas/trafienie, ms';
-$strDBGTotalTimeMs = 'Całkowity czas, ms';
$strDbPrivileges = 'Uprawnienia specyficzne dla baz danych';
$strDBRename = 'Zmień nazwę bazy danych na';
$strDbSpecific = 'specyficzne dla bazy danych';
@@ -345,8 +333,6 @@ $strIdxFulltext = 'Pełny tekst';
$strIgnoreDuplicates = 'Ignoruj zdublowane rekordy';
$strIgnore = 'Ignoruj';
$strIgnoreInserts = 'Użyj ignorowanych dodań';
-$strIgnoringFile = 'Plik %s jest ignorowany';
-$strImportDocSQL = 'Import plików docSQL';
$strImportFiles = 'Import plików';
$strImportFormat = 'Format importowanych plików';
$strImport = 'Import';
@@ -899,7 +885,6 @@ $strThemeNotFound = 'Nie znaleziono motywu graficznego %s!';
$strThemeNoValidImgPath = 'Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!';
$strThemePathNotFound = 'Nie znaleziono ścieżki do motywu %s!';
$strThisHost = 'Ten host';
-$strThisNotDirectory = 'To nie był katalog';
$strThreadSuccessfullyKilled = 'Wątek %s został pomyślnie unicestwiony.';
$strThreads = 'Wątki';
$strTime = 'Czas';
@@ -979,8 +964,6 @@ $strWildcard = 'znak wieloznaczny';
$strWindowNotFound = 'Docelowe okno przeglądarki nie mogło być zaktualizowane. Być może okno-rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia bezpieczeństwa, blokuje aktualizacje pomiędzy oknami';
$strWithChecked = 'Zaznaczone:';
$strWriteRequests = 'Żądań zapisu';
-$strWritingCommentNotPossible = 'Zapisanie komentarza nie jest możliwe';
-$strWritingRelationNotPossible = 'Zapisanie relacji nie jest możliwe';
$strWrongUser = 'Błędne pola użytkownik/hasło. Brak dostępu.';
$strXMLOptions = 'Opcje formatu XML';
@@ -993,4 +976,38 @@ $strZip = '".zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/polish-windows-1250.inc.php b/lang/polish-windows-1250.inc.php
index 940a15d76..6317df25a 100644
--- a/lang/polish-windows-1250.inc.php
+++ b/lang/polish-windows-1250.inc.php
@@ -16,7 +16,6 @@ $datefmt = '%d %B %Y, %H:%M';
$timespanfmt = '%s dni, %s godzin, %s minut i %s sekund';
$strAbortedClients = 'Przerwane';
-$strAbsolutePathToDocSqlDir = 'Prosz poda bezwzgldn ciek na serwerze www do katalogu docSQL';
$strAccessDenied = 'Brak dostpu';
$strAccessDeniedCreateConfig = 'Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego stworzenia mona uy %1$sskryptu instalacyjnego%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin prbowa poczy si z serwerem MySQL, a serwer odrzuci poczenie. Powiniene sprawdzi nazw hosta, nazw uytkownika i haso w pliku config.inc.php i upewni si, e odpowiadaj one informacjom danym przez administratora serwera MySQL.';
@@ -26,8 +25,6 @@ $strAddClause = 'Dodaj %s';
$strAddConstraints = 'Dodaj ograniczenia';
$strAddDeleteColumn = 'Dodaj/usu pola';
$strAddDeleteRow = 'Dodaj/usu wiersz kryteriw';
-$strAddedColumnComment = 'Zosta dodany komentarz kolumny';
-$strAddedColumnRelation = 'Zostaa dodana relacja dla kolumny';
$strAddFields = 'Dodaj %s pl';
$strAddHeaderComment = 'Dodaj do nagwka wasny komentarz (\\n oddziela linie)';
$strAddIntoComments = 'Dodaj w komentarzach:';
@@ -199,15 +196,6 @@ $strDataOnly = 'Tylko dane';
$strDataPages = 'Strony zawierajce dane';
$strDBComment = 'Komentarz bazy danych: ';
$strDBCopy = 'Kopiuj baz danych do';
-$strDBGContextID = 'ID kontekstu';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Trafienia';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Maksymalny czas, ms';
-$strDBGMinTimeMs = 'Minimalny czas, ms';
-$strDBGModule = 'Modu';
-$strDBGTimePerHitMs = 'Czas/trafienie, ms';
-$strDBGTotalTimeMs = 'Cakowity czas, ms';
$strDbPrivileges = 'Uprawnienia specyficzne dla baz danych';
$strDBRename = 'Zmie nazw bazy danych na';
$strDbSpecific = 'specyficzne dla bazy danych';
@@ -344,8 +332,6 @@ $strIdxFulltext = 'Pe
$strIgnoreDuplicates = 'Ignoruj zdublowane rekordy';
$strIgnore = 'Ignoruj';
$strIgnoreInserts = 'Uyj ignorowanych doda';
-$strIgnoringFile = 'Plik %s jest ignorowany';
-$strImportDocSQL = 'Import plikw docSQL';
$strImportFiles = 'Import plikw';
$strImportFormat = 'Format importowanych plikw';
$strImport = 'Import';
@@ -898,7 +884,6 @@ $strThemeNotFound = 'Nie znaleziono motywu graficznego %s!';
$strThemeNoValidImgPath = 'Nie znaleziono prawidowej cieki do obrazka dla motywu graficznego %s!';
$strThemePathNotFound = 'Nie znaleziono cieki do motywu %s!';
$strThisHost = 'Ten host';
-$strThisNotDirectory = 'To nie by katalog';
$strThreadSuccessfullyKilled = 'Wtek %s zosta pomylnie unicestwiony.';
$strThreads = 'Wtki';
$strTime = 'Czas';
@@ -978,8 +963,6 @@ $strWildcard = 'znak wieloznaczny';
$strWindowNotFound = 'Docelowe okno przegldarki nie mogo by zaktualizowane. By moe okno-rodzic zostao zamknite lub przegldarka, uwzgldniajc ustawienia bezpieczestwa, blokuje aktualizacje pomidzy oknami';
$strWithChecked = 'Zaznaczone:';
$strWriteRequests = 'da zapisu';
-$strWritingCommentNotPossible = 'Zapisanie komentarza nie jest moliwe';
-$strWritingRelationNotPossible = 'Zapisanie relacji nie jest moliwe';
$strWrongUser = 'Bdne pola uytkownik/haso. Brak dostpu.';
$strXMLOptions = 'Opcje formatu XML';
@@ -992,4 +975,38 @@ $strZip = '".zip"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/portuguese-iso-8859-1.inc.php b/lang/portuguese-iso-8859-1.inc.php
index 6cf78d638..78f6b6660 100644
--- a/lang/portuguese-iso-8859-1.inc.php
+++ b/lang/portuguese-iso-8859-1.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%d-%B-%Y
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Introduza o caminho absoluto at directoria docSQL no Servidor Web';
$strAccessDenied = 'Acesso Negado';
$strAccessDeniedExplanation = 'O phpMyAdmin tentou ligar-se ao servidor MySQL, e o servidor rejeitou a ligao. Verifique o anfitrio, nome de utilizador e palavra-passe no config.inc.php e assegure-se que correspondem informao fornecida pelo administrador do MySQL.';
$strAction = 'Aces';
@@ -33,8 +32,6 @@ $strAddAutoIncrement = 'Adicionar valor AUTO_INCREMENT';
$strAddConstraints = 'Adicionar limitadores';
$strAddDeleteColumn = 'Adicionar/Remover Campos';
$strAddDeleteRow = 'Adicionar/Remover Critrios';
-$strAddedColumnComment = 'Comentrios para coluna adicionados';
-$strAddedColumnRelation = 'Relao para a coluna adicionada';
$strAddIntoComments = 'Adicionar aos comentrios';
$strAddNewField = 'Adiciona novo campo';
$strAddPrivilegesOnDb = 'Adicionar privilgios na base de dados seguinte';
@@ -151,15 +148,6 @@ $strData = 'Dados';
$strDataDict = 'Dicionario de dados';
$strDataOnly = 'Apenas dados';
$strDBComment = 'Comentrio da Base de Dados: ';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID de Contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linha';
-$strDBGMaxTimeMs = 'Tempo mx, ms';
-$strDBGMinTimeMs = 'Tempo min, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilgios especficos da Base de Dados';
$strDbSpecific = 'Especifico da Base de Dados';
$strDefault = 'Defeito';
@@ -252,8 +240,6 @@ $strHungarian = 'H
$strId = 'ID'; //(same in portuguese)
$strIdxFulltext = 'Texto Completo';
$strIgnore = 'Ignora';
-$strIgnoringFile = 'A ignorar ficheiro %s';
-$strImportDocSQL = 'Importar ficheiros docSQL';
$strImportFiles = 'Importar';
$strIndexes = 'ndices';
$strIndexHasBeenDropped = 'O ndice %s foi eliminado';
@@ -562,7 +548,6 @@ $strTblPrivileges = 'Privil
$strTextAreaLength = ' Devido ao seu tamanho,
este campo pode no ser editvel ';
$strThai = 'Tailands';
$strThisHost = 'Este Anfitrio';
-$strThisNotDirectory = 'Isto no era uma directoria';
$strTime = 'Tempo';
$strTotal = 'total';
$strTotalUC = 'Total'; // (same in portuguese)
@@ -612,8 +597,6 @@ $strWebServerUploadDirectoryError = 'N
$strWelcome = 'Bemvindo ao %s';
$strWestEuropean = 'Europeu de Oeste';
$strWithChecked = 'Com os seleccionados:';
-$strWritingCommentNotPossible = 'No possvel escrever comentrio';
-$strWritingRelationNotPossible = 'No possvel escrever relao';
$strWrongUser = 'Utilizador ou Palavra-passe errada. Acesso Negado.';
$strXML = 'XML';// (Same in portuguese)
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/portuguese-iso-8859-15.inc.php b/lang/portuguese-iso-8859-15.inc.php
index 5fc59112a..51271b137 100644
--- a/lang/portuguese-iso-8859-15.inc.php
+++ b/lang/portuguese-iso-8859-15.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%d-%B-%Y
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Introduza o caminho absoluto at directoria docSQL no Servidor Web';
$strAccessDenied = 'Acesso Negado';
$strAccessDeniedExplanation = 'O phpMyAdmin tentou ligar-se ao servidor MySQL, e o servidor rejeitou a ligao. Verifique o anfitrio, nome de utilizador e palavra-passe no config.inc.php e assegure-se que correspondem informao fornecida pelo administrador do MySQL.';
$strAction = 'Aces';
@@ -33,8 +32,6 @@ $strAddAutoIncrement = 'Adicionar valor AUTO_INCREMENT';
$strAddConstraints = 'Adicionar limitadores';
$strAddDeleteColumn = 'Adicionar/Remover Campos';
$strAddDeleteRow = 'Adicionar/Remover Critrios';
-$strAddedColumnComment = 'Comentrios para coluna adicionados';
-$strAddedColumnRelation = 'Relao para a coluna adicionada';
$strAddIntoComments = 'Adicionar aos comentrios';
$strAddNewField = 'Adiciona novo campo';
$strAddPrivilegesOnDb = 'Adicionar privilgios na base de dados seguinte';
@@ -151,15 +148,6 @@ $strData = 'Dados';
$strDataDict = 'Dicionario de dados';
$strDataOnly = 'Apenas dados';
$strDBComment = 'Comentrio da Base de Dados: ';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID de Contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linha';
-$strDBGMaxTimeMs = 'Tempo mx, ms';
-$strDBGMinTimeMs = 'Tempo min, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilgios especficos da Base de Dados';
$strDbSpecific = 'Especifico da Base de Dados';
$strDefault = 'Defeito';
@@ -252,8 +240,6 @@ $strHungarian = 'H
$strId = 'ID'; //(same in portuguese)
$strIdxFulltext = 'Texto Completo';
$strIgnore = 'Ignora';
-$strIgnoringFile = 'A ignorar ficheiro %s';
-$strImportDocSQL = 'Importar ficheiros docSQL';
$strImportFiles = 'Importar';
$strIndexes = 'ndices';
$strIndexHasBeenDropped = 'O ndice %s foi eliminado';
@@ -562,7 +548,6 @@ $strTblPrivileges = 'Privil
$strTextAreaLength = ' Devido ao seu tamanho,
este campo pode no ser editvel ';
$strThai = 'Tailands';
$strThisHost = 'Este Anfitrio';
-$strThisNotDirectory = 'Isto no era uma directoria';
$strTime = 'Tempo';
$strTotal = 'total';
$strTotalUC = 'Total'; // (same in portuguese)
@@ -612,8 +597,6 @@ $strWebServerUploadDirectoryError = 'N
$strWelcome = 'Bemvindo ao %s';
$strWestEuropean = 'Europeu de Oeste';
$strWithChecked = 'Com os seleccionados:';
-$strWritingCommentNotPossible = 'No possvel escrever comentrio';
-$strWritingRelationNotPossible = 'No possvel escrever relao';
$strWrongUser = 'Utilizador ou Palavra-passe errada. Acesso Negado.';
$strXML = 'XML';// (Same in portuguese)
@@ -1025,4 +1008,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php
index a154fdf0c..59ed19a34 100644
--- a/lang/portuguese-utf-8.inc.php
+++ b/lang/portuguese-utf-8.inc.php
@@ -26,7 +26,6 @@ $datefmt = '%d-%B-%Y às %H:%M';
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Introduza o caminho absoluto até à directoria docSQL no Servidor Web';
$strAccessDenied = 'Acesso Negado';
$strAccessDeniedExplanation = 'O phpMyAdmin tentou ligar-se ao servidor MySQL, e o servidor rejeitou a ligação. Verifique o anfitrião, nome de utilizador e palavra-passe no config.inc.php e assegure-se que correspondem à informação fornecida pelo administrador do MySQL.';
$strAction = 'Acções';
@@ -34,8 +33,6 @@ $strAddAutoIncrement = 'Adicionar valor AUTO_INCREMENT';
$strAddConstraints = 'Adicionar limitadores';
$strAddDeleteColumn = 'Adicionar/Remover Campos';
$strAddDeleteRow = 'Adicionar/Remover Critérios';
-$strAddedColumnComment = 'Comentários para coluna adicionados';
-$strAddedColumnRelation = 'Relação para a coluna adicionada';
$strAddIntoComments = 'Adicionar aos comentários';
$strAddNewField = 'Adiciona novo campo';
$strAddPrivilegesOnDb = 'Adicionar privilégios na base de dados seguinte';
@@ -152,15 +149,6 @@ $strData = 'Dados';
$strDataDict = 'Dicionario de dados';
$strDataOnly = 'Apenas dados';
$strDBComment = 'Comentário da Base de Dados: ';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID de Contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Linha';
-$strDBGMaxTimeMs = 'Tempo máx, ms';
-$strDBGMinTimeMs = 'Tempo min, ms';
-$strDBGModule = 'Módulo';
-$strDBGTimePerHitMs = 'Tempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tempo total, ms';
$strDbPrivileges = 'Privilégios específicos da Base de Dados';
$strDbSpecific = 'Especifico da Base de Dados';
$strDefault = 'Defeito';
@@ -253,8 +241,6 @@ $strHungarian = 'Húngaro';
$strId = 'ID'; //(same in portuguese)
$strIdxFulltext = 'Texto Completo';
$strIgnore = 'Ignora';
-$strIgnoringFile = 'A ignorar ficheiro %s';
-$strImportDocSQL = 'Importar ficheiros docSQL';
$strImportFiles = 'Importar';
$strIndexes = 'Índices';
$strIndexHasBeenDropped = 'O Índice %s foi eliminado';
@@ -563,7 +549,6 @@ $strTblPrivileges = 'Privilégios específicos da tabela';
$strTextAreaLength = ' Devido ao seu tamanho,
este campo pode não ser editável ';
$strThai = 'Tailandês';
$strThisHost = 'Este Anfitrião';
-$strThisNotDirectory = 'Isto não era uma directoria';
$strTime = 'Tempo';
$strTotal = 'total';
$strTotalUC = 'Total'; // (same in portuguese)
@@ -613,8 +598,6 @@ $strWebServerUploadDirectoryError = 'Não é possivel alcançar a directoria que
$strWelcome = 'Bemvindo ao %s';
$strWestEuropean = 'Europeu de Oeste';
$strWithChecked = 'Com os seleccionados:';
-$strWritingCommentNotPossible = 'Não é possível escrever comentário';
-$strWritingRelationNotPossible = 'Não é possível escrever relação';
$strWrongUser = 'Utilizador ou Palavra-passe errada. Acesso Negado.';
$strXML = 'XML';// (Same in portuguese)
@@ -1026,4 +1009,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/romanian-iso-8859-1.inc.php b/lang/romanian-iso-8859-1.inc.php
index f80d2126a..4917a109d 100644
--- a/lang/romanian-iso-8859-1.inc.php
+++ b/lang/romanian-iso-8859-1.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s zile, %s ore, %s minute si %s secunde';
$strAbortedClients = 'Intrerupt';
-$strAbsolutePathToDocSqlDir = 'Va rugam introduceti calea absoluta al serverului web la directorul docSQL';
$strAccessDenied = 'Acces interzis';
$strAccessDeniedExplanation = 'phpMyAdmin a incercat sa se conecteze la serverul de MySQL dar acesta a respins conexiunea. Ar trebui verificat daca datele din config.inc.php sunt corecte.';
$strAction = 'Actiune';
@@ -25,8 +24,6 @@ $strAddAutoIncrement = 'Adauga valoare pentru AUTO_INCREMENT';
$strAddConstraints = 'Adauga constrangere';
$strAddDeleteColumn = 'Adauga/Sterge coloane';
$strAddDeleteRow = 'Adauga/Sterge criteriu';
-$strAddedColumnComment = 'Sa adaugat comentariu la coloana';
-$strAddedColumnRelation = 'Sa adaugat o relatie la coloana';
$strAddFields = 'Adauga %s camp(uri)';
$strAddHeaderComment = 'Adaugare comentariu la header (\\n inseamna delimitare de rand)';
$strAddIntoComments = 'Adaugare la comentarii';
@@ -172,15 +169,6 @@ $strDataDict = 'Dictionar de date';
$strDataOnly = 'Numai date';
$strDBComment = 'Comentarii referitoare la baza de date: ';
$strDBCopy = 'Copiaza baza de date';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Afisari';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Timp maxim, ms';
-$strDBGMinTimeMs = 'Timp minim, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Timp/Afisare, ms';
-$strDBGTotalTimeMs = 'Timp total, ms';
$strDbPrivileges = 'Drepturi specifice de baza de date';
$strDBRename = 'Redenumire baza de date in';
$strDbSpecific = 'specific bazei de date';
@@ -292,8 +280,6 @@ $strId = 'ID';
$strIdxFulltext = 'Tot textul';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizati ignorare inserari';
-$strIgnoringFile = 'Fisier %s ignorat';
-$strImportDocSQL = 'Import de fisiere docSQL';
$strImportFiles = 'Import de fisiere';
$strIndexes = 'Indexuri';
$strIndexHasBeenDropped = 'Index %s a fost aruncat';
@@ -651,7 +637,6 @@ $strTextAreaLength = ' Datorita lungimii sale,
acest camp s-ar putea sa n
$strThai = 'Tailandez';
$strTheme = 'Sablon / Stil';
$strThisHost = 'Acest Host';
-$strThisNotDirectory = 'Acesta nu este un director';
$strThreadSuccessfullyKilled = 'Firul de executie %s a fost oprit cu succes.';
$strTime = 'Timp';
$strToggleScratchboard = 'dezactivare scratchboard';
@@ -718,8 +703,6 @@ $strWestEuropean = 'European de vest';
$strWildcard = 'wildcard';
$strWindowNotFound = 'Fereastra de navigare nu a putut fi reincarcat. Poate aceasta nu a fost inchis, sau fereastra parinte blocheaza ferestrele din cauza securitatii sistemului.';
$strWithChecked = 'Verificat cu:';
-$strWritingCommentNotPossible = 'Scrierea unui comentariu nu este posibil';
-$strWritingRelationNotPossible = 'Scrierea unei relatii nu este posibil';
$strWrongUser = 'Nume de utilizator/Parola incorecta. Accesul interzis.';
$strXML = 'XML';
@@ -1017,4 +1000,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php
index 45e1784c0..5f9aae1b6 100644
--- a/lang/romanian-utf-8.inc.php
+++ b/lang/romanian-utf-8.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%B %d, %Y at %I:%M %p';
$timespanfmt = '%s zile, %s ore, %s minute si %s secunde';
$strAbortedClients = 'Intrerupt';
-$strAbsolutePathToDocSqlDir = 'Va rugam introduceti calea absoluta al serverului web la directorul docSQL';
$strAccessDenied = 'Acces interzis';
$strAccessDeniedExplanation = 'phpMyAdmin a incercat sa se conecteze la serverul de MySQL dar acesta a respins conexiunea. Ar trebui verificat daca datele din config.inc.php sunt corecte.';
$strAction = 'Actiune';
@@ -26,8 +25,6 @@ $strAddAutoIncrement = 'Adauga valoare pentru AUTO_INCREMENT';
$strAddConstraints = 'Adauga constrangere';
$strAddDeleteColumn = 'Adauga/Sterge coloane';
$strAddDeleteRow = 'Adauga/Sterge criteriu';
-$strAddedColumnComment = 'Sa adaugat comentariu la coloana';
-$strAddedColumnRelation = 'Sa adaugat o relatie la coloana';
$strAddFields = 'Adauga %s camp(uri)';
$strAddHeaderComment = 'Adaugare comentariu la header (\\n inseamna delimitare de rand)';
$strAddIntoComments = 'Adaugare la comentarii';
@@ -173,15 +170,6 @@ $strDataDict = 'Dictionar de date';
$strDataOnly = 'Numai date';
$strDBComment = 'Comentarii referitoare la baza de date: ';
$strDBCopy = 'Copiaza baza de date';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Afisari';
-$strDBGLine = 'Linia';
-$strDBGMaxTimeMs = 'Timp maxim, ms';
-$strDBGMinTimeMs = 'Timp minim, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Timp/Afisare, ms';
-$strDBGTotalTimeMs = 'Timp total, ms';
$strDbPrivileges = 'Drepturi specifice de baza de date';
$strDBRename = 'Redenumire baza de date in';
$strDbSpecific = 'specific bazei de date';
@@ -293,8 +281,6 @@ $strId = 'ID';
$strIdxFulltext = 'Tot textul';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizati ignorare inserari';
-$strIgnoringFile = 'Fisier %s ignorat';
-$strImportDocSQL = 'Import de fisiere docSQL';
$strImportFiles = 'Import de fisiere';
$strIndexes = 'Indexuri';
$strIndexHasBeenDropped = 'Index %s a fost aruncat';
@@ -652,7 +638,6 @@ $strTextAreaLength = ' Datorita lungimii sale,
acest camp s-ar putea sa n
$strThai = 'Tailandez';
$strTheme = 'Sablon / Stil';
$strThisHost = 'Acest Host';
-$strThisNotDirectory = 'Acesta nu este un director';
$strThreadSuccessfullyKilled = 'Firul de executie %s a fost oprit cu succes.';
$strTime = 'Timp';
$strToggleScratchboard = 'dezactivare scratchboard';
@@ -719,8 +704,6 @@ $strWestEuropean = 'European de vest';
$strWildcard = 'wildcard';
$strWindowNotFound = 'Fereastra de navigare nu a putut fi reincarcat. Poate aceasta nu a fost inchis, sau fereastra parinte blocheaza ferestrele din cauza securitatii sistemului.';
$strWithChecked = 'Verificat cu:';
-$strWritingCommentNotPossible = 'Scrierea unui comentariu nu este posibil';
-$strWritingRelationNotPossible = 'Scrierea unei relatii nu este posibil';
$strWrongUser = 'Nume de utilizator/Parola incorecta. Accesul interzis.';
$strXML = 'XML';
@@ -1018,4 +1001,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/russian-cp-866.inc.php b/lang/russian-cp-866.inc.php
index 082c1e040..3ffafcfb7 100644
--- a/lang/russian-cp-866.inc.php
+++ b/lang/russian-cp-866.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%B %d %Y
$timespanfmt = '%s , %s ᮢ, %s %s ᥪ㭤';
$strAbortedClients = '⬥';
-$strAbsolutePathToDocSqlDir = ' ᮫ ࢥ ४ਨ docSQL, ';
$strAccessDenied = ' 㯥 ⪠';
$strAccessDeniedCreateConfig = ' 稭 - ⢨ 䠩 䨣樨. ᮧ ᯮ짮 %1$s業ਥ ⠭%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin ⠫ ᮥ ࢥ MySQL, ࢥ ⢥ ᮥ. , 짮⥫ config.inc.php.';
@@ -34,8 +33,6 @@ $strAddClause = '
$strAddConstraints = ' ࠭祭';
$strAddDeleteColumn = '/㤠 ⮫ ';
$strAddDeleteRow = '/㤠 ';
-$strAddedColumnComment = ' ⮫';
-$strAddedColumnRelation = ' ⮫';
$strAddFields = ' %s ()';
$strAddHeaderComment = ' ᮡ⢥ (ॢ ப: \\n)';
$strAddIntoComments = ' ਨ';
@@ -190,12 +187,6 @@ $strDataOnly = '
$strDataPages = '࠭ 묨';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContext = '⥪';
-$strDBGContextID = '⥪ ID';
-$strDBGMaxTimeMs = 'ᨬ쭮 ६, ms';
-$strDBGMinTimeMs = '쭮 ६, ms';
-$strDBGModule = '';
-$strDBGTotalTimeMs = '⮣ ६, ms';
$strDbPrivileges = ' ਢ, ᯥ ';
$strDBRename = '२ ';
$strDbSpecific = 'ᯥ筮 ';
@@ -324,9 +315,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' 騥 ப';
$strIgnoreInserts = ' ⠢';
-$strIgnoringFile = ' 䠩 %s';
$strImport = '';
-$strImportDocSQL = ' docSQL 䠩';
$strImportFiles = ' 䠩';
$strImportFormat = 'ଠ 㥬 䠩';
$strImportSuccessfullyFinished = ' ᯥ譮 襭, ᮢ 믮: %d.';
@@ -775,7 +764,6 @@ $strThemeDefaultNotFound = '
$strThemeNoPreviewAvailable = '।ᬮ 㯥.';
$strThemeNotFound = ' %s !';
$strThisHost = ' ';
-$strThisNotDirectory = ' 뫠 ४';
$strThreads = '⮪';
$strThreadSuccessfullyKilled = 'Thread %s 㤠.';
$strTime = '६';
@@ -840,8 +828,6 @@ $strWestEuropean = '
$strWildcard = '蠡';
$strWindowNotFound = ' 㧥 . , 뫨 த⥫ 㧥 - ᭮';
$strWithChecked = ' ⬥祭묨:';
-$strWritingCommentNotPossible = 'ᠭ ';
-$strWritingRelationNotPossible = ' 裡 ';
$strWrongUser = '訡 /. 㯥 ⪠.';
$strXML = 'XML';
@@ -873,9 +859,6 @@ $strBusyPages = 'Busy pages'; //to translate
$strCanNotLoadExportPlugins = 'Could not load export plugins, please check your installation!'; //to translate
$strCanNotLoadImportPlugins = 'Could not load import plugins, please check your installation!'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
$strEngineAvailable = '%s is available on this MySQL server.'; //to translate
@@ -1019,4 +1002,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/russian-koi8-r.inc.php b/lang/russian-koi8-r.inc.php
index 66f64371f..31f9a533e 100644
--- a/lang/russian-koi8-r.inc.php
+++ b/lang/russian-koi8-r.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%B %d %Y
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL, ';
$strAccessDenied = ' ';
$strAccessDeniedCreateConfig = ' - . %1$s %2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL, . , config.inc.php.';
@@ -34,8 +33,6 @@ $strAddClause = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ()';
$strAddHeaderComment = ' ( : \\n)';
$strAddIntoComments = ' ';
@@ -190,12 +187,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContext = '';
-$strDBGContextID = ' ID';
-$strDBGMaxTimeMs = ' , ms';
-$strDBGMinTimeMs = ' , ms';
-$strDBGModule = '';
-$strDBGTotalTimeMs = ' , ms';
$strDbPrivileges = ' , ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -324,9 +315,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' ';
$strIgnoreInserts = ' ';
-$strIgnoringFile = ' %s';
$strImport = '';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strImportFormat = ' ';
$strImportSuccessfullyFinished = ' , : %d.';
@@ -775,7 +764,6 @@ $strThemeDefaultNotFound = '
$strThemeNoPreviewAvailable = ' .';
$strThemeNotFound = ' %s !';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreads = '';
$strThreadSuccessfullyKilled = 'Thread %s .';
$strTime = '';
@@ -840,8 +828,6 @@ $strWestEuropean = '
$strWildcard = '';
$strWindowNotFound = ' . , - ';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXML = 'XML';
@@ -873,9 +859,6 @@ $strBusyPages = 'Busy pages'; //to translate
$strCanNotLoadExportPlugins = 'Could not load export plugins, please check your installation!'; //to translate
$strCanNotLoadImportPlugins = 'Could not load import plugins, please check your installation!'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
$strEngineAvailable = '%s is available on this MySQL server.'; //to translate
@@ -1019,4 +1002,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/russian-utf-8.inc.php b/lang/russian-utf-8.inc.php
index c2e1dbf67..528799e7c 100644
--- a/lang/russian-utf-8.inc.php
+++ b/lang/russian-utf-8.inc.php
@@ -25,7 +25,6 @@ $datefmt = '%B %d %Y г., %H:%M';
$timespanfmt = '%s дней, %s часов, %s минут и %s секунд';
$strAbortedClients = 'Отменены';
-$strAbsolutePathToDocSqlDir = 'Введите абсолютный путь на сервере к директории docSQL, пожалуйста';
$strAccessDenied = 'В доступе отказано';
$strAccessDeniedCreateConfig = 'Возможная причина - отсутствие файла конфигурации. Для его создания вы можете воспользоваться %1$sсценарием установки%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin попытался соединиться с сервером MySQL, но сервер отверг соединение. Проверьте имя хоста, пользователя и пароль в config.inc.php.';
@@ -35,8 +34,6 @@ $strAddClause = 'Добавить %s';
$strAddConstraints = 'Добавить ограничения';
$strAddDeleteColumn = 'Добавить/удалить столбец критерия';
$strAddDeleteRow = 'Добавить/удалить ряд критерия';
-$strAddedColumnComment = 'Добавленный комментарий для столбца';
-$strAddedColumnRelation = 'Добавленная связь для столбца';
$strAddFields = 'Добавить %s поле(я)';
$strAddHeaderComment = 'Добавить собственный комментарий в заголовок (перевод строки: \\n)';
$strAddIntoComments = 'Добавить в комментарии';
@@ -191,12 +188,6 @@ $strDataOnly = 'Только данные';
$strDataPages = 'Страниц с данными';
$strDBComment = 'Комментарий БД: ';
$strDBCopy = 'Скопировать БД в';
-$strDBGContext = 'Контекст';
-$strDBGContextID = 'Контекст ID';
-$strDBGMaxTimeMs = 'Максимальное время, ms';
-$strDBGMinTimeMs = 'Минимальное время, ms';
-$strDBGModule = 'Модуль';
-$strDBGTotalTimeMs = 'Итоговое время, ms';
$strDbPrivileges = ' Привилегии, специфичные для базы данных';
$strDBRename = 'Переименовать базу данных в';
$strDbSpecific = 'специфично для БД';
@@ -325,9 +316,7 @@ $strIdxFulltext = 'ПолнТекст';
$strIgnore = 'Игнорировать';
$strIgnoreDuplicates = 'Игнорировать повторяющиеся строки';
$strIgnoreInserts = 'Игнорировать вставки';
-$strIgnoringFile = 'Игнорирую файл %s';
$strImport = 'Импорт';
-$strImportDocSQL = 'Импорт docSQL файлов';
$strImportFiles = 'Импорт файлов';
$strImportFormat = 'Формат импортируемого файла';
$strImportSuccessfullyFinished = 'Импорт успешно завершен, запросов выполнено: %d.';
@@ -776,7 +765,6 @@ $strThemeDefaultNotFound = 'Тема по-умолчанию %s не найде
$strThemeNoPreviewAvailable = 'Предпросмотр не доступен.';
$strThemeNotFound = 'Тема %s не найдена!';
$strThisHost = 'Этот хост';
-$strThisNotDirectory = 'Это была не директория';
$strThreads = 'Потоки';
$strThreadSuccessfullyKilled = 'Thread %s был удален.';
$strTime = 'Время';
@@ -841,8 +829,6 @@ $strWestEuropean = 'Западно-Европейский';
$strWildcard = 'шаблон';
$strWindowNotFound = 'Целевое окно браузера не может быть обновлено. Возможно, вы закрыли родительское окно или ваш браузер блокирует межоконные обновления из-за настроек безопасности';
$strWithChecked = 'С отмеченными:';
-$strWritingCommentNotPossible = 'Написание комментария невозможно';
-$strWritingRelationNotPossible = 'Добавление связи невозможно';
$strWrongUser = 'Ошибочный логин/пароль. В доступе отказано.';
$strXML = 'XML';
@@ -874,9 +860,6 @@ $strBusyPages = 'Busy pages'; //to translate
$strCanNotLoadExportPlugins = 'Could not load export plugins, please check your installation!'; //to translate
$strCanNotLoadImportPlugins = 'Could not load import plugins, please check your installation!'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
$strEngineAvailable = '%s is available on this MySQL server.'; //to translate
@@ -1020,4 +1003,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/russian-windows-1251.inc.php b/lang/russian-windows-1251.inc.php
index dfc59ca1d..b5a9a9858 100644
--- a/lang/russian-windows-1251.inc.php
+++ b/lang/russian-windows-1251.inc.php
@@ -24,7 +24,6 @@ $datefmt = '%B %d %Y
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL, ';
$strAccessDenied = ' ';
$strAccessDeniedCreateConfig = ' - . %1$s %2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL, . , config.inc.php.';
@@ -34,8 +33,6 @@ $strAddClause = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ()';
$strAddHeaderComment = ' ( : \\n)';
$strAddIntoComments = ' ';
@@ -190,12 +187,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' : ';
$strDBCopy = ' ';
-$strDBGContext = '';
-$strDBGContextID = ' ID';
-$strDBGMaxTimeMs = ' , ms';
-$strDBGMinTimeMs = ' , ms';
-$strDBGModule = '';
-$strDBGTotalTimeMs = ' , ms';
$strDbPrivileges = ' , ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -324,9 +315,7 @@ $strIdxFulltext = '
$strIgnore = '';
$strIgnoreDuplicates = ' ';
$strIgnoreInserts = ' ';
-$strIgnoringFile = ' %s';
$strImport = '';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strImportFormat = ' ';
$strImportSuccessfullyFinished = ' , : %d.';
@@ -775,7 +764,6 @@ $strThemeDefaultNotFound = '
$strThemeNoPreviewAvailable = ' .';
$strThemeNotFound = ' %s !';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreads = '';
$strThreadSuccessfullyKilled = 'Thread %s .';
$strTime = '';
@@ -840,8 +828,6 @@ $strWestEuropean = '
$strWildcard = '';
$strWindowNotFound = ' . , - ';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXML = 'XML';
@@ -873,9 +859,6 @@ $strBusyPages = 'Busy pages'; //to translate
$strCanNotLoadExportPlugins = 'Could not load export plugins, please check your installation!'; //to translate
$strCanNotLoadImportPlugins = 'Could not load import plugins, please check your installation!'; //to translate
-$strDBGHits = 'Hits'; //to translate
-$strDBGLine = 'Line'; //to translate
-$strDBGTimePerHitMs = 'Time/Hit, ms'; //to translate
$strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate
$strEngineAvailable = '%s is available on this MySQL server.'; //to translate
@@ -1019,4 +1002,38 @@ $strWriteRequests = 'Write requests'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php
index 6ee55a3a2..d2c790c4a 100644
--- a/lang/serbian_cyrillic-utf-8.inc.php
+++ b/lang/serbian_cyrillic-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d. %B %Y. у %H:%M';
$timespanfmt = '%s дана, %s сати, %s минута и %s секунди';
$strAbortedClients = 'Прекинуто';
-$strAbsolutePathToDocSqlDir = 'Унесите комплетну путању до директоријума docSQL на веб серверу';
$strAccessDeniedExplanation = 'phpMyAdmin је покушао да се повеже на MySQL сервер, али је сервер одбио повезивање. Проверите назив домаћина, корисничко име и лозинку у config.inc.php и уверите се да одговарају подацима које сте добили од администратора MySQL сервера.';
$strAccessDenied = 'Приступ одбијен';
$strAction = 'Акција';
@@ -31,8 +30,6 @@ $strAddAutoIncrement = 'Додај AUTO_INCREMENT вредност';
$strAddConstraints = 'Додај ограничења';
$strAddDeleteColumn = 'Додај/обриши колону';
$strAddDeleteRow = 'Додај/обриши поље за критеријум';
-$strAddedColumnComment = 'Додат је коментар колони';
-$strAddedColumnRelation = 'Додата је релација колони';
$strAddFields = 'Додај %s поља';
$strAddHeaderComment = 'Додај коментар у заглавље (\\n раздваја линије)';
$strAddIntoComments = 'Додај у коментаре';
@@ -190,15 +187,6 @@ $strDataPages = 'Стране са подацима';
$strData = 'Подаци';
$strDBComment = 'Коментар базе:';
$strDBCopy = 'Копирај базу у';
-$strDBGContextID = 'Контекст ИД';
-$strDBGContext = 'Контекст';
-$strDBGHits = 'Погодака';
-$strDBGLine = 'Линија';
-$strDBGMaxTimeMs = 'Max време, мс';
-$strDBGMinTimeMs = 'Мин време, мс';
-$strDBGModule = 'Модул';
-$strDBGTimePerHitMs = 'Време/погодак, мс';
-$strDBGTotalTimeMs = 'Укупно време, мс';
$strDbPrivileges = 'Привилегије везане за базу';
$strDBRename = 'Преименуј базу у';
$strDbSpecific = 'Специфично за базу';
@@ -318,8 +306,6 @@ $strId = 'ID';
$strIdxFulltext = 'Текст кључ';
$strIgnoreInserts = 'Игнориши дупликате при уметању';
$strIgnore = 'Игнориши';
-$strIgnoringFile = 'Игноришем датотеку %s';
-$strImportDocSQL = 'Увоз docSQL датотека';
$strImportFiles = 'Увоз датотека';
$strIndexes = 'Кључеви';
$strIndexHasBeenDropped = 'Кључ %s је обрисан';
@@ -701,7 +687,6 @@ $strTextAreaLength = 'Због њехове величине, поље
мо
$strThai = 'Тајски';
$strTheme = 'Тема / стил';
$strThisHost = 'Овај сервер';
-$strThisNotDirectory = 'Ово није директоријум';
$strThreadSuccessfullyKilled = 'Процес %s је успешно прекинут.';
$strTime = 'Време';
$strToggleScratchboard = 'Укључи/искључи радну таблу';
@@ -770,8 +755,6 @@ $strWildcard = 'џокер';
$strWindowNotFound = 'Одредишни прозор претраживача није могао да буде ажуриран. Можда сте затворили матични прозор, или ваш претраживач онемогућава ажурирање међу прозорима због сигурносних подешавања';
$strWithChecked = 'Означено:';
$strWriteRequests = 'Захтеви за упис';
-$strWritingCommentNotPossible = 'Писање коментара није могуће';
-$strWritingRelationNotPossible = 'Уписивање релације није могуће';
$strWrongUser = 'Погрешно корисничко име/лозинка. Приступ одбијен.';
$strXML = 'XML';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/serbian_cyrillic-windows-1251.inc.php b/lang/serbian_cyrillic-windows-1251.inc.php
index 05ef245c9..7132c773d 100644
--- a/lang/serbian_cyrillic-windows-1251.inc.php
+++ b/lang/serbian_cyrillic-windows-1251.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d. %B %Y.
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' docSQL ';
$strAccessDenied = ' ';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL , . , config.inc.php MySQL .';
$strAction = '';
@@ -30,8 +29,6 @@ $strAddAutoIncrement = '
$strAddConstraints = ' ';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' ';
$strAddFields = ' %s ';
$strAddHeaderComment = ' (\\n )';
$strAddIntoComments = ' ';
@@ -189,15 +186,6 @@ $strDataOnly = '
$strDataPages = ' ';
$strDBComment = ' :';
$strDBCopy = ' ';
-$strDBGContext = '';
-$strDBGContextID = ' ';
-$strDBGHits = '';
-$strDBGLine = '';
-$strDBGMaxTimeMs = 'Max , ';
-$strDBGMinTimeMs = ' , ';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/, ';
-$strDBGTotalTimeMs = ' , ';
$strDbPrivileges = ' ';
$strDBRename = ' ';
$strDbSpecific = ' ';
@@ -317,8 +305,6 @@ $strId = 'ID';
$strIdxFulltext = ' ';
$strIgnore = '';
$strIgnoreInserts = ' ';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strIndex = 'ʚ';
$strIndexes = 'ʚ';
@@ -700,7 +686,6 @@ $strTextAreaLength = '
$strThai = '';
$strTheme = ' / ';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strTime = '';
$strToggleScratchboard = '/ ';
@@ -769,8 +754,6 @@ $strWildcard = '
$strWindowNotFound = ' . , ';
$strWithChecked = ':';
$strWriteRequests = ' ';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' ';
$strWrongUser = ' /. .';
$strXML = 'XML';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php
index bb4fb96b2..84bdddf58 100644
--- a/lang/serbian_latin-utf-8.inc.php
+++ b/lang/serbian_latin-utf-8.inc.php
@@ -23,7 +23,6 @@ $datefmt = '%d. %B %Y. u %H:%M';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direktorijuma docSQL na veb serveru';
$strAccessDeniedExplanation = 'phpMyAdmin je pokušao da se poveže na MySQL server, ali je server odbio povezivanje. Proverite naziv domaćina, korisničko ime i lozinku u config.inc.php i uverite se da odgovaraju podacima koje ste dobili od administratora MySQL servera.';
$strAccessDenied = 'Pristup odbijen';
$strAction = 'Akcija';
@@ -31,8 +30,6 @@ $strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrednost';
$strAddConstraints = 'Dodaj ograničenja';
$strAddDeleteColumn = 'Dodaj/obriši kolonu';
$strAddDeleteRow = 'Dodaj/obriši polje za kriterijum';
-$strAddedColumnComment = 'Dodat je komentar koloni';
-$strAddedColumnRelation = 'Dodata je relacija koloni';
$strAddFields = 'Dodaj %s polja';
$strAddHeaderComment = 'Dodaj komentar u zaglavlje (\\n razdvaja linije)';
$strAddIntoComments = 'Dodaj u komentare';
@@ -190,15 +187,6 @@ $strDataPages = 'Strane sa podacima';
$strData = 'Podaci';
$strDBComment = 'Komentar baze:';
$strDBCopy = 'Kopiraj bazu u';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pogodaka';
-$strDBGLine = 'Linija';
-$strDBGMaxTimeMs = 'Max vreme, ms';
-$strDBGMinTimeMs = 'Min vreme, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vreme/pogodak, ms';
-$strDBGTotalTimeMs = 'Ukupno vreme, ms';
$strDbPrivileges = 'Privilegije vezane za bazu';
$strDBRename = 'Preimenuj bazu u';
$strDbSpecific = 'Specifično za bazu';
@@ -318,8 +306,6 @@ $strId = 'ID';
$strIdxFulltext = 'Tekst ključ';
$strIgnore = 'Ignoriši';
$strIgnoreInserts = 'Ignoriši duplikate pri umetanju';
-$strIgnoringFile = 'Ignorišem datoteku %s';
-$strImportDocSQL = 'Uvoz docSQL datoteka';
$strImportFiles = 'Uvoz datoteka';
$strIndexes = 'Ključevi';
$strIndexHasBeenDropped = 'Ključ %s je obrisan';
@@ -701,7 +687,6 @@ $strTextAreaLength = 'Zbog njehove veličine, polje
možda nećete moći da
$strThai = 'Tajski';
$strTheme = 'Tema / stil';
$strThisHost = 'Ovaj server';
-$strThisNotDirectory = 'Ovo nije direktorijum';
$strThreadSuccessfullyKilled = 'Proces %s je uspešno prekinut.';
$strTime = 'Vreme';
$strToggleScratchboard = 'Uključi/isključi radnu tablu';
@@ -770,8 +755,6 @@ $strWildcard = 'džoker';
$strWindowNotFound = 'Odredišni prozor pretraživača nije mogao da bude ažuriran. Možda ste zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među prozorima zbog sigurnosnih podešavanja';
$strWithChecked = 'Označeno:';
$strWriteRequests = 'Zahtevi za upis';
-$strWritingCommentNotPossible = 'Pisanje komentara nije moguće';
-$strWritingRelationNotPossible = 'Upisivanje relacije nije moguće';
$strWrongUser = 'Pogrešno korisničko ime/lozinka. Pristup odbijen.';
$strXML = 'XML';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/serbian_latin-windows-1250.inc.php b/lang/serbian_latin-windows-1250.inc.php
index 3e361167a..f729879a9 100644
--- a/lang/serbian_latin-windows-1250.inc.php
+++ b/lang/serbian_latin-windows-1250.inc.php
@@ -22,7 +22,6 @@ $datefmt = '%d. %B %Y. u %H:%M';
$timespanfmt = '%s dana, %s sati, %s minuta i %s sekundi';
$strAbortedClients = 'Prekinuto';
-$strAbsolutePathToDocSqlDir = 'Unesite kompletnu putanju do direktorijuma docSQL na veb serveru';
$strAccessDeniedExplanation = 'phpMyAdmin je pokuao da se povee na MySQL server, ali je server odbio povezivanje. Proverite naziv domaina, korisniko ime i lozinku u config.inc.php i uverite se da odgovaraju podacima koje ste dobili od administratora MySQL servera.';
$strAccessDenied = 'Pristup odbijen';
$strAction = 'Akcija';
@@ -30,8 +29,6 @@ $strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrednost';
$strAddConstraints = 'Dodaj ogranienja';
$strAddDeleteColumn = 'Dodaj/obrii kolonu';
$strAddDeleteRow = 'Dodaj/obrii polje za kriterijum';
-$strAddedColumnComment = 'Dodat je komentar koloni';
-$strAddedColumnRelation = 'Dodata je relacija koloni';
$strAddFields = 'Dodaj %s polja';
$strAddHeaderComment = 'Dodaj komentar u zaglavlje (\\n razdvaja linije)';
$strAddIntoComments = 'Dodaj u komentare';
@@ -189,15 +186,6 @@ $strDataPages = 'Strane sa podacima';
$strData = 'Podaci';
$strDBComment = 'Komentar baze:';
$strDBCopy = 'Kopiraj bazu u';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Pogodaka';
-$strDBGLine = 'Linija';
-$strDBGMaxTimeMs = 'Max vreme, ms';
-$strDBGMinTimeMs = 'Min vreme, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Vreme/pogodak, ms';
-$strDBGTotalTimeMs = 'Ukupno vreme, ms';
$strDbPrivileges = 'Privilegije vezane za bazu';
$strDBRename = 'Preimenuj bazu u';
$strDbSpecific = 'Specifino za bazu';
@@ -317,8 +305,6 @@ $strId = 'ID';
$strIdxFulltext = 'Tekst klju';
$strIgnore = 'Ignorii';
$strIgnoreInserts = 'Ignorii duplikate pri umetanju';
-$strIgnoringFile = 'Ignoriem datoteku %s';
-$strImportDocSQL = 'Uvoz docSQL datoteka';
$strImportFiles = 'Uvoz datoteka';
$strIndexes = 'Kljuevi';
$strIndexHasBeenDropped = 'Klju %s je obrisan';
@@ -700,7 +686,6 @@ $strTextAreaLength = 'Zbog njehove veli
$strThai = 'Tajski';
$strTheme = 'Tema / stil';
$strThisHost = 'Ovaj server';
-$strThisNotDirectory = 'Ovo nije direktorijum';
$strThreadSuccessfullyKilled = 'Proces %s je uspeno prekinut.';
$strTime = 'Vreme';
$strToggleScratchboard = 'Ukljui/iskljui radnu tablu';
@@ -769,8 +754,6 @@ $strWildcard = 'd
$strWindowNotFound = 'Odredini prozor pretraivaa nije mogao da bude auriran. Moda ste zatvorili matini prozor, ili va pretraiva onemoguava auriranje meu prozorima zbog sigurnosnih podeavanja';
$strWithChecked = 'Oznaeno:';
$strWriteRequests = 'Zahtevi za upis';
-$strWritingCommentNotPossible = 'Pisanje komentara nije mogue';
-$strWritingRelationNotPossible = 'Upisivanje relacije nije mogue';
$strWrongUser = 'Pogreno korisniko ime/lozinka. Pristup odbijen.';
$strXML = 'XML';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovak-iso-8859-2.inc.php b/lang/slovak-iso-8859-2.inc.php
index c0dc61acc..9d1d59f07 100644
--- a/lang/slovak-iso-8859-2.inc.php
+++ b/lang/slovak-iso-8859-2.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d.%B, %Y - %H:%M';
$timespanfmt = '%s dn, %s hodn, %s mint a %s seknd';
$strAbortedClients = 'Preruen';
-$strAbsolutePathToDocSqlDir = 'Prosm zadajte absoltnu cestu k adresru docSQL na serveri.';
$strAccessDeniedCreateConfig = 'Pravdepodobn prina je, e neexistuje konfiguran sbor. Na jeho vytvorenie mete poui %1$skonfiguran skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin sa poksil pripoji k MySQL serveru ale ten spojenie odmietol. Skontrolujte prosm meno serveru, pouvatesk meno a heslo v sbore config.inc.php a s tm, ktor ste dostali o administrtora MySQL servera.';
$strAccessDenied = 'Prstup zamietnut';
@@ -30,8 +29,6 @@ $strAddClause = 'Prida
$strAddConstraints = 'Prida obmedzenia';
$strAddDeleteColumn = 'Prida/Odobra polia stpcov';
$strAddDeleteRow = 'Prida/Odobra kritria riadku';
-$strAddedColumnComment = 'Pridan komentr k stpcu';
-$strAddedColumnRelation = 'Pridan vzah pre stpec';
$strAddFields = 'Prida %s poloiek';
$strAddHeaderComment = 'Prida vlastn komentr do hlaviky (\\n oddeuje riadky)';
$strAddIntoComments = 'Prida do komentrov';
@@ -203,15 +200,6 @@ $strDataOnly = 'Iba d
$strDataPages = 'Strnky obsahujce dta';
$strDBComment = 'Komentr k databze: ';
$strDBCopy = 'Skoprova databzu na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zsahov';
-$strDBGLine = 'Riadok';
-$strDBGMaxTimeMs = 'Max. as, ms';
-$strDBGMinTimeMs = 'Min as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zsah, ms';
-$strDBGTotalTimeMs = 'Celkov as, ms';
$strDbPrivileges = 'Oprvnenia pre jednotliv databzy';
$strDBRename = 'Premenova databzu na';
$strDbSpecific = 'zvisl na databze';
@@ -347,8 +335,6 @@ $strIdxFulltext = 'Cel
$strIgnoreDuplicates = 'Ignorova opakujce sa riadky';
$strIgnore = 'Ignorova';
$strIgnoreInserts = 'Poui IGNORE';
-$strIgnoringFile = 'Ignorujem sbor %s';
-$strImportDocSQL = 'Importova sbory docSQL';
$strImportFiles = 'Importova sbory';
$strImportFormat = 'Formt importovanho sboru';
$strImport = 'Import';
@@ -899,7 +885,6 @@ $strThemeNoValidImgPath = 'Nebola n
$strThemePathNotFound = 'Nebola njden platn cesta ku vzhadu %s!';
$strTheme = 'Vzhad';
$strThisHost = 'Tento pota';
-$strThisNotDirectory = 'Nebol zadan adresr';
$strThreads = 'Poet vlkien';
$strThreadSuccessfullyKilled = 'Vlkno %s bol spene zabit.';
$strTime = 'as';
@@ -979,8 +964,6 @@ $strWildcard = 'nahradzuj
$strWindowNotFound = 'Cieov okno prehliadaa nemohlo by aktualizovan. Mono ste zatvorili rodiovsk okno, alebo prehliada blokuje opercie medzi oknami z dvodu bezpenostnch nastaven';
$strWithChecked = 'Vber:';
$strWriteRequests = 'Poiadavkov na zpis';
-$strWritingCommentNotPossible = 'Komentr sa ned zapsa';
-$strWritingRelationNotPossible = 'Vzah sa ned zapsa';
$strWrongUser = 'Zl pouvatesk meno alebo heslo. Prstup zamietnut.';
$strXMLOptions = 'Nastavenia pre XML';
@@ -999,4 +982,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php
index 5ea6b70e3..55c2e9277 100644
--- a/lang/slovak-utf-8.inc.php
+++ b/lang/slovak-utf-8.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d.%B, %Y - %H:%M';
$timespanfmt = '%s dní, %s hodín, %s minút a %s sekúnd';
$strAbortedClients = 'Prerušené';
-$strAbsolutePathToDocSqlDir = 'Prosím zadajte absolútnu cestu k adresáru docSQL na serveri.';
$strAccessDeniedCreateConfig = 'Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho vytvorenie môžete použiť %1$skonfiguračný skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin sa pokúsil pripojiť k MySQL serveru ale ten spojenie odmietol. Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config.inc.php a s tým, ktoré ste dostali o administrátora MySQL servera.';
$strAccessDenied = 'Prístup zamietnutý';
@@ -31,8 +30,6 @@ $strAddClause = 'Pridať %s';
$strAddConstraints = 'Pridať obmedzenia';
$strAddDeleteColumn = 'Pridať/Odobrať polia stĺpcov';
$strAddDeleteRow = 'Pridať/Odobrať kritéria riadku';
-$strAddedColumnComment = 'Pridaný komentár k stĺpcu';
-$strAddedColumnRelation = 'Pridaný vzťah pre stĺpec';
$strAddFields = 'Pridať %s položiek';
$strAddHeaderComment = 'Pridať vlastný komentár do hlavičky (\\n oddeľuje riadky)';
$strAddIntoComments = 'Pridať do komentárov';
@@ -204,15 +201,6 @@ $strDataOnly = 'Iba dáta';
$strDataPages = 'Stránky obsahujúce dáta';
$strDBComment = 'Komentár k databáze: ';
$strDBCopy = 'Skopírovať databázu na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zásahov';
-$strDBGLine = 'Riadok';
-$strDBGMaxTimeMs = 'Max. čas, ms';
-$strDBGMinTimeMs = 'Min čas, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Čas/Zásah, ms';
-$strDBGTotalTimeMs = 'Celkový čas, ms';
$strDbPrivileges = 'Oprávnenia pre jednotlivé databázy';
$strDBRename = 'Premenovať databázu na';
$strDbSpecific = 'závislé na databáze';
@@ -348,8 +336,6 @@ $strIdxFulltext = 'Celý text';
$strIgnoreDuplicates = 'Ignorovať opakujúce sa riadky';
$strIgnore = 'Ignorovať';
$strIgnoreInserts = 'Použiť IGNORE';
-$strIgnoringFile = 'Ignorujem súbor %s';
-$strImportDocSQL = 'Importovať súbory docSQL';
$strImportFiles = 'Importovať súbory';
$strImportFormat = 'Formát importovaného súboru';
$strImport = 'Import';
@@ -900,7 +886,6 @@ $strThemeNoValidImgPath = 'Nebola nájdená platná cesta k obrázkom pre vzhľa
$strThemePathNotFound = 'Nebola nájdená platná cesta ku vzhľadu %s!';
$strTheme = 'Vzhľad';
$strThisHost = 'Tento počítač';
-$strThisNotDirectory = 'Nebol zadaný adresár';
$strThreads = 'Počet vlákien';
$strThreadSuccessfullyKilled = 'Vlákno %s bol úspešne zabité.';
$strTime = 'Čas';
@@ -980,8 +965,6 @@ $strWildcard = 'nahradzujúci znak';
$strWindowNotFound = 'Cieľové okno prehliadača nemohlo byť aktualizované. Možno ste zatvorili rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu bezpečnostných nastavení';
$strWithChecked = 'Výber:';
$strWriteRequests = 'Požiadavkov na zápis';
-$strWritingCommentNotPossible = 'Komentár sa nedá zapísať';
-$strWritingRelationNotPossible = 'Vzťah sa nedá zapísať';
$strWrongUser = 'Zlé používateľské meno alebo heslo. Prístup zamietnutý.';
$strXMLOptions = 'Nastavenia pre XML';
@@ -1000,4 +983,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovak-windows-1250.inc.php b/lang/slovak-windows-1250.inc.php
index dadf65f61..eace3058e 100644
--- a/lang/slovak-windows-1250.inc.php
+++ b/lang/slovak-windows-1250.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d.%B, %Y - %H:%M';
$timespanfmt = '%s dn, %s hodn, %s mint a %s seknd';
$strAbortedClients = 'Preruen';
-$strAbsolutePathToDocSqlDir = 'Prosm zadajte absoltnu cestu k adresru docSQL na serveri.';
$strAccessDeniedCreateConfig = 'Pravdepodobn prina je, e neexistuje konfiguran sbor. Na jeho vytvorenie mete poui %1$skonfiguran skript%2$s.';
$strAccessDeniedExplanation = 'phpMyAdmin sa poksil pripoji k MySQL serveru ale ten spojenie odmietol. Skontrolujte prosm meno serveru, pouvatesk meno a heslo v sbore config.inc.php a s tm, ktor ste dostali o administrtora MySQL servera.';
$strAccessDenied = 'Prstup zamietnut';
@@ -30,8 +29,6 @@ $strAddClause = 'Prida
$strAddConstraints = 'Prida obmedzenia';
$strAddDeleteColumn = 'Prida/Odobra polia stpcov';
$strAddDeleteRow = 'Prida/Odobra kritria riadku';
-$strAddedColumnComment = 'Pridan komentr k stpcu';
-$strAddedColumnRelation = 'Pridan vzah pre stpec';
$strAddFields = 'Prida %s poloiek';
$strAddHeaderComment = 'Prida vlastn komentr do hlaviky (\\n oddeuje riadky)';
$strAddIntoComments = 'Prida do komentrov';
@@ -203,15 +200,6 @@ $strDataOnly = 'Iba d
$strDataPages = 'Strnky obsahujce dta';
$strDBComment = 'Komentr k databze: ';
$strDBCopy = 'Skoprova databzu na';
-$strDBGContextID = 'Kontext ID';
-$strDBGContext = 'Kontext';
-$strDBGHits = 'Zsahov';
-$strDBGLine = 'Riadok';
-$strDBGMaxTimeMs = 'Max. as, ms';
-$strDBGMinTimeMs = 'Min as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zsah, ms';
-$strDBGTotalTimeMs = 'Celkov as, ms';
$strDbPrivileges = 'Oprvnenia pre jednotliv databzy';
$strDBRename = 'Premenova databzu na';
$strDbSpecific = 'zvisl na databze';
@@ -347,8 +335,6 @@ $strIdxFulltext = 'Cel
$strIgnoreDuplicates = 'Ignorova opakujce sa riadky';
$strIgnore = 'Ignorova';
$strIgnoreInserts = 'Poui IGNORE';
-$strIgnoringFile = 'Ignorujem sbor %s';
-$strImportDocSQL = 'Importova sbory docSQL';
$strImportFiles = 'Importova sbory';
$strImportFormat = 'Formt importovanho sboru';
$strImport = 'Import';
@@ -899,7 +885,6 @@ $strThemeNoValidImgPath = 'Nebola n
$strThemePathNotFound = 'Nebola njden platn cesta ku vzhadu %s!';
$strTheme = 'Vzhad';
$strThisHost = 'Tento pota';
-$strThisNotDirectory = 'Nebol zadan adresr';
$strThreads = 'Poet vlkien';
$strThreadSuccessfullyKilled = 'Vlkno %s bol spene zabit.';
$strTime = 'as';
@@ -979,8 +964,6 @@ $strWildcard = 'nahradzuj
$strWindowNotFound = 'Cieov okno prehliadaa nemohlo by aktualizovan. Mono ste zatvorili rodiovsk okno, alebo prehliada blokuje opercie medzi oknami z dvodu bezpenostnch nastaven';
$strWithChecked = 'Vber:';
$strWriteRequests = 'Poiadavkov na zpis';
-$strWritingCommentNotPossible = 'Komentr sa ned zapsa';
-$strWritingRelationNotPossible = 'Vzah sa ned zapsa';
$strWrongUser = 'Zl pouvatesk meno alebo heslo. Prstup zamietnut.';
$strXMLOptions = 'Nastavenia pre XML';
@@ -999,4 +982,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovenian-iso-8859-2.inc.php b/lang/slovenian-iso-8859-2.inc.php
index c7e1a6172..eea96d6e1 100644
--- a/lang/slovenian-iso-8859-2.inc.php
+++ b/lang/slovenian-iso-8859-2.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%d %B %Y ob %I:%M %p';
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
$strAbortedClients = 'Prekinjeno';
-$strAbsolutePathToDocSqlDir = 'Vnesite absolutno pot do docSQL mape na streniku';
$strAccessDenied = 'Dostop zavrnjen';
$strAccessDeniedExplanation = 'phpMyAdmin se je poskual povezati na MySQL strenik, ki je zavrnil povezavo. Preverite, ali gostitelj, uporabniko ime in geslo v datoteki config.inc.php ustrezajo podatkom administratorja MySQL strenika.';
$strAction = 'Akcija';
@@ -26,8 +25,6 @@ $strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrednost';
$strAddConstraints = 'Dodaj omejitve';
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
$strAddDeleteRow = 'Dodaj/Odstrani vrstico \'Kriterij\'';
-$strAddedColumnComment = 'Dodan komentar za stolpec';
-$strAddedColumnRelation = 'Dodana relacija za stolpec';
$strAddHeaderComment = 'Dodaj prilagojen komentar v glavo (\\n prelomi vrstice)';
$strAddIntoComments = 'Dodaj med komentarje';
$strAddNewField = 'Dodaj novo polje';
@@ -160,15 +157,6 @@ $strDataDict = 'Podatkovni slovar';
$strDataOnly = 'Samo podatki';
$strData = 'Podatki';
$strDBComment = 'Komentar zbirke podatkov: ';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Zadetki';
-$strDBGLine = 'Vrstica';
-$strDBGMaxTimeMs = 'Najveji as, ms';
-$strDBGMinTimeMs = 'Najmanji as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zadetek, ms';
-$strDBGTotalTimeMs = 'Skupni as, ms';
$strDbPrivileges = 'Privilegiji tipini za podatkovno bazo';
$strDBRename = 'Preimenuj podatkovno bazo v';
$strDbSpecific = 'glede na zbirko podatkov';
@@ -270,8 +258,6 @@ $strId = 'ID';
$strIdxFulltext = 'Polno besedilo';
$strIgnoreInserts = 'Uporabi monost prezri vstavke';
$strIgnore = 'Prezri';
-$strIgnoringFile = 'Prezrl sem datoteko %s';
-$strImportDocSQL = 'Uvozi docSQL datoteke';
$strImportFiles = 'Uvozi datoteke';
$strIndexes = 'Indeksi';
$strIndexHasBeenDropped = 'Indeks %s je zavren';
@@ -590,7 +576,6 @@ $strTblPrivileges = 'Privilegiji tipi
$strTextAreaLength = ' Zaradi njegove doline
polja ne bo mogoe urejati ';
$strThai = 'Tajsko';
$strThisHost = 'Ta strenik';
-$strThisNotDirectory = 'To ni bila mapa';
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
$strTime = 'as';
$strToggleScratchboard = 'preklopi odloie (scratchboard)';
@@ -652,8 +637,6 @@ $strWestEuropean = 'Zahodno evropsko';
$strWildcard = 'nadomestni znak';
$strWindowNotFound = 'Ciljnega okna ni bilo mogoe osveiti. Morda ste zaprli nadrejeno okno ali pa va brskalnik blokira osveevanje varnostnih parametrov med okni.';
$strWithChecked = 'Z oznaenim:';
-$strWritingCommentNotPossible = 'Zapisovanje komentarjev ni mogoe';
-$strWritingRelationNotPossible = 'Zapisovanje relacij ni mogoe';
$strWrongUser = 'Napano uporabniko ime/geslo. Dostop zavrnjen.';
$strXML = 'XML';
@@ -1018,4 +1001,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php
index d05de73a6..a5d348593 100644
--- a/lang/slovenian-utf-8.inc.php
+++ b/lang/slovenian-utf-8.inc.php
@@ -19,7 +19,6 @@ $datefmt = '%d %B %Y ob %I:%M %p';
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
$strAbortedClients = 'Prekinjeno';
-$strAbsolutePathToDocSqlDir = 'Vnesite absolutno pot do docSQL mape na strežniku';
$strAccessDenied = 'Dostop zavrnjen';
$strAccessDeniedExplanation = 'phpMyAdmin se je poskušal povezati na MySQL strežnik, ki je zavrnil povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki config.inc.php ustrezajo podatkom administratorja MySQL strežnika.';
$strAction = 'Akcija';
@@ -27,8 +26,6 @@ $strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrednost';
$strAddConstraints = 'Dodaj omejitve';
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
$strAddDeleteRow = 'Dodaj/Odstrani vrstico \'Kriterij\'';
-$strAddedColumnComment = 'Dodan komentar za stolpec';
-$strAddedColumnRelation = 'Dodana relacija za stolpec';
$strAddHeaderComment = 'Dodaj prilagojen komentar v glavo (\\n prelomi vrstice)';
$strAddIntoComments = 'Dodaj med komentarje';
$strAddNewField = 'Dodaj novo polje';
@@ -161,15 +158,6 @@ $strDataDict = 'Podatkovni slovar';
$strDataOnly = 'Samo podatki';
$strData = 'Podatki';
$strDBComment = 'Komentar zbirke podatkov: ';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Zadetki';
-$strDBGLine = 'Vrstica';
-$strDBGMaxTimeMs = 'Največji čas, ms';
-$strDBGMinTimeMs = 'Najmanjši čas, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Čas/Zadetek, ms';
-$strDBGTotalTimeMs = 'Skupni čas, ms';
$strDbPrivileges = 'Privilegiji tipični za podatkovno bazo';
$strDBRename = 'Preimenuj podatkovno bazo v';
$strDbSpecific = 'glede na zbirko podatkov';
@@ -271,8 +259,6 @@ $strId = 'ID';
$strIdxFulltext = 'Polno besedilo';
$strIgnoreInserts = 'Uporabi možnost prezri vstavke';
$strIgnore = 'Prezri';
-$strIgnoringFile = 'Prezrl sem datoteko %s';
-$strImportDocSQL = 'Uvozi docSQL datoteke';
$strImportFiles = 'Uvozi datoteke';
$strIndexes = 'Indeksi';
$strIndexHasBeenDropped = 'Indeks %s je zavržen';
@@ -591,7 +577,6 @@ $strTblPrivileges = 'Privilegiji tipični za tabelo';
$strTextAreaLength = ' Zaradi njegove dolžine
polja ne bo mogoče urejati ';
$strThai = 'Tajsko';
$strThisHost = 'Ta strežnik';
-$strThisNotDirectory = 'To ni bila mapa';
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
$strTime = 'Čas';
$strToggleScratchboard = 'preklopi odložišče (scratchboard)';
@@ -653,8 +638,6 @@ $strWestEuropean = 'Zahodno evropsko';
$strWildcard = 'nadomestni znak';
$strWindowNotFound = 'Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni.';
$strWithChecked = 'Z označenim:';
-$strWritingCommentNotPossible = 'Zapisovanje komentarjev ni mogoče';
-$strWritingRelationNotPossible = 'Zapisovanje relacij ni mogoče';
$strWrongUser = 'Napačno uporabniško ime/geslo. Dostop zavrnjen.';
$strXML = 'XML';
@@ -1019,4 +1002,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/slovenian-windows-1250.inc.php b/lang/slovenian-windows-1250.inc.php
index 2891155c1..3be7e7b41 100644
--- a/lang/slovenian-windows-1250.inc.php
+++ b/lang/slovenian-windows-1250.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%d %B %Y ob %I:%M %p';
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
$strAbortedClients = 'Prekinjeno';
-$strAbsolutePathToDocSqlDir = 'Vnesite absolutno pot do docSQL mape na streniku';
$strAccessDenied = 'Dostop zavrnjen';
$strAccessDeniedExplanation = 'phpMyAdmin se je poskual povezati na MySQL strenik, ki je zavrnil povezavo. Preverite, ali gostitelj, uporabniko ime in geslo v datoteki config.inc.php ustrezajo podatkom administratorja MySQL strenika.';
$strAction = 'Akcija';
@@ -26,8 +25,6 @@ $strAddAutoIncrement = 'Dodaj AUTO_INCREMENT vrednost';
$strAddConstraints = 'Dodaj omejitve';
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
$strAddDeleteRow = 'Dodaj/Odstrani vrstico \'Kriterij\'';
-$strAddedColumnComment = 'Dodan komentar za stolpec';
-$strAddedColumnRelation = 'Dodana relacija za stolpec';
$strAddHeaderComment = 'Dodaj prilagojen komentar v glavo (\\n prelomi vrstice)';
$strAddIntoComments = 'Dodaj med komentarje';
$strAddNewField = 'Dodaj novo polje';
@@ -160,15 +157,6 @@ $strDataDict = 'Podatkovni slovar';
$strDataOnly = 'Samo podatki';
$strData = 'Podatki';
$strDBComment = 'Komentar zbirke podatkov: ';
-$strDBGContextID = 'Kontekst ID';
-$strDBGContext = 'Kontekst';
-$strDBGHits = 'Zadetki';
-$strDBGLine = 'Vrstica';
-$strDBGMaxTimeMs = 'Najveji as, ms';
-$strDBGMinTimeMs = 'Najmanji as, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'as/Zadetek, ms';
-$strDBGTotalTimeMs = 'Skupni as, ms';
$strDbPrivileges = 'Privilegiji tipini za podatkovno bazo';
$strDBRename = 'Preimenuj podatkovno bazo v';
$strDbSpecific = 'glede na zbirko podatkov';
@@ -270,8 +258,6 @@ $strId = 'ID';
$strIdxFulltext = 'Polno besedilo';
$strIgnoreInserts = 'Uporabi monost prezri vstavke';
$strIgnore = 'Prezri';
-$strIgnoringFile = 'Prezrl sem datoteko %s';
-$strImportDocSQL = 'Uvozi docSQL datoteke';
$strImportFiles = 'Uvozi datoteke';
$strIndexes = 'Indeksi';
$strIndexHasBeenDropped = 'Indeks %s je zavren';
@@ -590,7 +576,6 @@ $strTblPrivileges = 'Privilegiji tipi
$strTextAreaLength = ' Zaradi njegove doline
polja ne bo mogoe urejati ';
$strThai = 'Tajsko';
$strThisHost = 'Ta strenik';
-$strThisNotDirectory = 'To ni bila mapa';
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
$strTime = 'as';
$strToggleScratchboard = 'preklopi odloie (scratchboard)';
@@ -652,8 +637,6 @@ $strWestEuropean = 'Zahodno evropsko';
$strWildcard = 'nadomestni znak';
$strWindowNotFound = 'Ciljnega okna ni bilo mogoe osveiti. Morda ste zaprli nadrejeno okno ali pa va brskalnik blokira osveevanje varnostnih parametrov med okni.';
$strWithChecked = 'Z oznaenim:';
-$strWritingCommentNotPossible = 'Zapisovanje komentarjev ni mogoe';
-$strWritingRelationNotPossible = 'Zapisovanje relacij ni mogoe';
$strWrongUser = 'Napano uporabniko ime/geslo. Dostop zavrnjen.';
$strXML = 'XML';
@@ -1018,4 +1001,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/spanish-iso-8859-1.inc.php b/lang/spanish-iso-8859-1.inc.php
index 1d5983376..8c2582ed5 100644
--- a/lang/spanish-iso-8859-1.inc.php
+++ b/lang/spanish-iso-8859-1.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%d-%m-%Y a las %H:%M:%S';
$timespanfmt = '%s das, %s horas, %s minutos y %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Por favor, escriba la ruta absoluta del servidor que lleve al directorio docSQL';
$strAccessDenied = 'Acceso denegado ';
$strAccessDeniedCreateConfig = 'La razn ms probable es que usted no cre un archivo de configuracin. Utilice %1$ssetup script%2$s para crear una.';
$strAccessDeniedExplanation = 'phpMyAdmin intent conectarse con el servidor MySQL, y el servidor rechaz esta conexin. Deber revisar el host, nombre de usuario y contrasea en config.inc.php y asegurarse que corresponden con la informacin provista por el administrador del servidor MySQL.';
@@ -27,8 +26,6 @@ $strAddAutoIncrement = 'A
$strAddConstraints = 'Aadir restricciones';
$strAddDeleteColumn = 'Aadir/borrar columna de criterio';
$strAddDeleteRow = 'Aadir/borrar fila de criterio';
-$strAddedColumnComment = 'Se aadi un comentario para la columna';
-$strAddedColumnRelation = 'Se aadi una relacin para la columna';
$strAddFields = 'Aadir %s campo(s)';
$strAddHeaderComment = 'Aadir su propio comentario en el encabezado (\\n segmenta las oraciones)';
$strAddIntoComments = 'Aadir en los comentarios';
@@ -195,15 +192,6 @@ $strDataOnly = 'Solamente datos';
$strDataPages = 'Pginas que contienen datos';
$strDBComment = 'Comentario de la base de datos: ';
$strDBCopy = 'Copiar la base de datos a';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID del contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Lnea';
-$strDBGMaxTimeMs = 'Tiempo mximo, ms';
-$strDBGMinTimeMs = 'Tiempo mnimo, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tiempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tiempo total, ms';
$strDbPrivileges = 'Privilegios especficos para la base de datos';
$strDBRename = 'Cambiar el nombre de la base de datos a';
$strDbSpecific = 'especfico para la base de datos';
@@ -335,8 +323,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignore las filas duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar la opcin ignore inserts';
-$strIgnoringFile = 'Ignorando el archivo %s';
-$strImportDocSQL = 'Importar archivos docSQL';
$strImportFiles = 'Importar archivos';
$strImportFormat = 'Formato del archivo importado';
$strImport = 'Importar';
@@ -874,7 +860,6 @@ $strThemeNoValidImgPath = '
$strThemePathNotFound = 'No se hall la ruta de la plantilla de interfaz (theme) para la plantilla %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Este Host';
-$strThisNotDirectory = 'Esto no es un directorio';
$strThreads = 'Procesos';
$strThreadSuccessfullyKilled = 'El proceso %s fue destruido exitosamente.';
$strTimeoutInfo = 'Se agot el tiempo de ejecucin en la importacin previa; si lo reenva continuar desde la posicin %d.';
@@ -952,8 +937,6 @@ $strWildcard = 'comod
$strWindowNotFound = 'La ventana del navegador no pudo actualizarse. Quiz cerr la ventana principal o su navegador est bloqueando las actualizaciones en ventanas mltiples debido a sus parmetros de seguridad.';
$strWithChecked = 'Para los elementos que estn marcados:';
$strWriteRequests = 'Escribir las solicitudes';
-$strWritingCommentNotPossible = 'No fue posible escribir el comentario';
-$strWritingRelationNotPossible = 'No fue posible escribir la relacin';
$strWrongUser = 'El nombre de usuario o la contrasea est equivocado. El acceso fue denegado.';
$strXML = 'XML';
@@ -1000,4 +983,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/spanish-iso-8859-15.inc.php b/lang/spanish-iso-8859-15.inc.php
index 6e49204b9..f09d0f345 100644
--- a/lang/spanish-iso-8859-15.inc.php
+++ b/lang/spanish-iso-8859-15.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%d-%m-%Y a las %H:%M:%S';
$timespanfmt = '%s das, %s horas, %s minutos y %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Por favor, escriba la ruta absoluta del servidor que lleve al directorio docSQL';
$strAccessDenied = 'Acceso denegado ';
$strAccessDeniedCreateConfig = 'La razn ms probable es que usted no cre un archivo de configuracin. Utilice %1$ssetup script%2$s para crear una.';
$strAccessDeniedExplanation = 'phpMyAdmin intent conectarse con el servidor MySQL, y el servidor rechaz esta conexin. Deber revisar el host, nombre de usuario y contrasea en config.inc.php y asegurarse que corresponden con la informacin provista por el administrador del servidor MySQL.';
@@ -27,8 +26,6 @@ $strAddAutoIncrement = 'A
$strAddConstraints = 'Aadir restricciones';
$strAddDeleteColumn = 'Aadir/borrar columna de criterio';
$strAddDeleteRow = 'Aadir/borrar fila de criterio';
-$strAddedColumnComment = 'Se aadi un comentario para la columna';
-$strAddedColumnRelation = 'Se aadi una relacin para la columna';
$strAddFields = 'Aadir %s campo(s)';
$strAddHeaderComment = 'Aadir su propio comentario en el encabezado (\\n segmenta las oraciones)';
$strAddIntoComments = 'Aadir en los comentarios';
@@ -195,15 +192,6 @@ $strDataOnly = 'Solamente datos';
$strDataPages = 'Pginas que contienen datos';
$strDBComment = 'Comentario de la base de datos: ';
$strDBCopy = 'Copiar la base de datos a';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID del contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Lnea';
-$strDBGMaxTimeMs = 'Tiempo mximo, ms';
-$strDBGMinTimeMs = 'Tiempo mnimo, ms';
-$strDBGModule = 'Mdulo';
-$strDBGTimePerHitMs = 'Tiempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tiempo total, ms';
$strDbPrivileges = 'Privilegios especficos para la base de datos';
$strDBRename = 'Cambiar el nombre de la base de datos a';
$strDbSpecific = 'especfico para la base de datos';
@@ -335,8 +323,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignore las filas duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar la opcin ignore inserts';
-$strIgnoringFile = 'Ignorando el archivo %s';
-$strImportDocSQL = 'Importar archivos docSQL';
$strImportFiles = 'Importar archivos';
$strImportFormat = 'Formato del archivo importado';
$strImport = 'Importar';
@@ -874,7 +860,6 @@ $strThemeNoValidImgPath = '
$strThemePathNotFound = 'No se hall la ruta de la plantilla de interfaz (theme) para la plantilla %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Este Host';
-$strThisNotDirectory = 'Esto no es un directorio';
$strThreads = 'Procesos';
$strThreadSuccessfullyKilled = 'El proceso %s fue destruido exitosamente.';
$strTimeoutInfo = 'Se agot el tiempo de ejecucin en la importacin previa; si lo reenva continuar desde la posicin %d.';
@@ -952,8 +937,6 @@ $strWildcard = 'comod
$strWindowNotFound = 'La ventana del navegador no pudo actualizarse. Quiz cerr la ventana principal o su navegador est bloqueando las actualizaciones en ventanas mltiples debido a sus parmetros de seguridad.';
$strWithChecked = 'Para los elementos que estn marcados:';
$strWriteRequests = 'Escribir las solicitudes';
-$strWritingCommentNotPossible = 'No fue posible escribir el comentario';
-$strWritingRelationNotPossible = 'No fue posible escribir la relacin';
$strWrongUser = 'El nombre de usuario o la contrasea est equivocado. El acceso fue denegado.';
$strXML = 'XML';
@@ -1000,4 +983,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php
index 349808100..9354d91fd 100644
--- a/lang/spanish-utf-8.inc.php
+++ b/lang/spanish-utf-8.inc.php
@@ -19,7 +19,6 @@ $datefmt = '%d-%m-%Y a las %H:%M:%S';
$timespanfmt = '%s días, %s horas, %s minutos y %s segundos';
$strAbortedClients = 'Abortado';
-$strAbsolutePathToDocSqlDir = 'Por favor, escriba la ruta absoluta del servidor que lleve al directorio docSQL';
$strAccessDenied = 'Acceso denegado ';
$strAccessDeniedCreateConfig = 'La razón más probable es que usted no creó un archivo de configuración. Utilice %1$ssetup script%2$s para crear una.';
$strAccessDeniedExplanation = 'phpMyAdmin intentó conectarse con el servidor MySQL, y el servidor rechazó esta conexión. Deberá revisar el host, nombre de usuario y contraseña en config.inc.php y asegurarse que corresponden con la información provista por el administrador del servidor MySQL.';
@@ -28,8 +27,6 @@ $strAddAutoIncrement = 'Añadir el valor AUTO_INCREMENT';
$strAddConstraints = 'Añadir restricciones';
$strAddDeleteColumn = 'Añadir/borrar columna de criterio';
$strAddDeleteRow = 'Añadir/borrar fila de criterio';
-$strAddedColumnComment = 'Se añadió un comentario para la columna';
-$strAddedColumnRelation = 'Se añadió una relación para la columna';
$strAddFields = 'Añadir %s campo(s)';
$strAddHeaderComment = 'Añadir su propio comentario en el encabezado (\\n segmenta las oraciones)';
$strAddIntoComments = 'Añadir en los comentarios';
@@ -196,15 +193,6 @@ $strDataOnly = 'Solamente datos';
$strDataPages = 'Páginas que contienen datos';
$strDBComment = 'Comentario de la base de datos: ';
$strDBCopy = 'Copiar la base de datos a';
-$strDBGContext = 'Contexto';
-$strDBGContextID = 'ID del contexto';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Línea';
-$strDBGMaxTimeMs = 'Tiempo máximo, ms';
-$strDBGMinTimeMs = 'Tiempo mínimo, ms';
-$strDBGModule = 'Módulo';
-$strDBGTimePerHitMs = 'Tiempo/Hit, ms';
-$strDBGTotalTimeMs = 'Tiempo total, ms';
$strDbPrivileges = 'Privilegios específicos para la base de datos';
$strDBRename = 'Cambiar el nombre de la base de datos a';
$strDbSpecific = 'específico para la base de datos';
@@ -336,8 +324,6 @@ $strIdxFulltext = 'Texto completo';
$strIgnoreDuplicates = 'Ignore las filas duplicadas';
$strIgnore = 'Ignorar';
$strIgnoreInserts = 'Usar la opción ignore inserts';
-$strIgnoringFile = 'Ignorando el archivo %s';
-$strImportDocSQL = 'Importar archivos docSQL';
$strImportFiles = 'Importar archivos';
$strImportFormat = 'Formato del archivo importado';
$strImport = 'Importar';
@@ -875,7 +861,6 @@ $strThemeNoValidImgPath = '¡No se halló la ruta de imágenes para la plantilla
$strThemePathNotFound = '¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla %s!';
$strTheme = 'Tema / Estilo';
$strThisHost = 'Este Host';
-$strThisNotDirectory = 'Esto no es un directorio';
$strThreads = 'Procesos';
$strThreadSuccessfullyKilled = 'El proceso %s fue destruido exitosamente.';
$strTimeoutInfo = 'Se agotó el tiempo de ejecución en la importación previa; si lo reenvía continuará desde la posición %d.';
@@ -953,8 +938,6 @@ $strWildcard = 'comodín';
$strWindowNotFound = 'La ventana del navegador no pudo actualizarse. Quizá cerró la ventana principal o su navegador está bloqueando las actualizaciones en ventanas múltiples debido a sus parámetros de seguridad.';
$strWithChecked = 'Para los elementos que están marcados:';
$strWriteRequests = 'Escribir las solicitudes';
-$strWritingCommentNotPossible = 'No fue posible escribir el comentario';
-$strWritingRelationNotPossible = 'No fue posible escribir la relación';
$strWrongUser = 'El nombre de usuario o la contraseña está equivocado. El acceso fue denegado.';
$strXML = 'XML';
@@ -1001,4 +984,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/swedish-iso-8859-1.inc.php b/lang/swedish-iso-8859-1.inc.php
index 6a0e499e9..d2d91e2a7 100644
--- a/lang/swedish-iso-8859-1.inc.php
+++ b/lang/swedish-iso-8859-1.inc.php
@@ -20,7 +20,6 @@ $datefmt = '%d %B %Y kl %H:%M';
$timespanfmt = '%s dagar, %s timmar, %s minuter och %s sekunder';
$strAbortedClients = 'Avbrutna';
-$strAbsolutePathToDocSqlDir = 'Ange absolut skvg p webbservern till docSQL-katalog';
$strAccessDenied = 'tkomst nekad';
$strAccessDeniedCreateConfig = 'Trolig orsak till detta r att du inte skapade en konfigurationsfil. Du vill kanske anvnda %1$suppsttningsskript%2$s fr att skapa en.';
$strAccessDeniedExplanation = 'phpMyAdmin frskte skapa en frbindelse till MySQL-servern, men servern nekade uppkopplingen. Kontrollera vrd, anvndarnamn och lsenord i config.inc.php och frvissa dig om att de stmmer verens med informationen frn administratren av MySQL-servern.';
@@ -30,8 +29,6 @@ $strAddClause = 'L
$strAddConstraints = 'Lgg till restriktioner';
$strAddDeleteColumn = 'Lgg till/ta bort fltkolumner';
$strAddDeleteRow = 'Lgg till/ta bort villkorsrader';
-$strAddedColumnComment = 'La till kommentar fr kolumn';
-$strAddedColumnRelation = 'La till relation fr kolumn';
$strAddFields = 'Lgg till %s flt';
$strAddHeaderComment = 'Lgg till egen kommentar i huvud (\\n delar rader)';
$strAddIntoComments = 'Lgg till i kommentarer';
@@ -203,15 +200,6 @@ $strDataOnly = 'Enbart data';
$strDataPages = 'Sidor innehllande data';
$strDBComment = 'Databaskommentar: ';
$strDBCopy = 'Kopiera databas till';
-$strDBGContextID = 'Innehlls-ID';
-$strDBGContext = 'Innehll';
-$strDBGHits = 'Trffar';
-$strDBGLine = 'Rad';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/trff, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Databasspecifika privilegier';
$strDBRename = 'Dp om databasen till';
$strDbSpecific = 'databasspecifik';
@@ -348,8 +336,6 @@ $strIdxFulltext = 'Heltext';
$strIgnoreDuplicates = 'Ignorera dubblerade rader';
$strIgnore = 'Ignorera';
$strIgnoreInserts = 'Anvnd IGNORE i infogningar';
-$strIgnoringFile = 'Ignorerar fil %s';
-$strImportDocSQL = 'Importera docSQL-filer';
$strImportFiles = 'Importera filer';
$strImportFormat = 'Format p importerad fil';
$strImport = 'Importera';
@@ -902,7 +888,6 @@ $strThemeNoValidImgPath = 'Ingen giltig s
$strThemePathNotFound = 'Temats skvg fr tema %s hittades inte!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Denna vrd';
-$strThisNotDirectory = 'Detta var inte en katalog';
$strThreads = 'Trdar';
$strThreadSuccessfullyKilled = 'Trd %s ddades med framgng.';
$strTimeoutInfo = 'Tidsbegrnsningen verskreds vid fregende import. Efter terupptagning av importen kommer den fortstta frn position %d.';
@@ -982,8 +967,6 @@ $strWildcard = 'jokertecken';
$strWindowNotFound = 'Mlfnstret kunde inte uppdateras. Orsaken kan vara att du stngt frldrafnstret eller att din webblsares skerhetsinstllningar blockerar uppdateringar mellan fnster.';
$strWithChecked = 'Med markerade:';
$strWriteRequests = 'Skrivefterfrgningar';
-$strWritingCommentNotPossible = 'Skrivning av kommentar inte mjlig';
-$strWritingRelationNotPossible = 'Skrivning av relation inte mjlig';
$strWrongUser = 'Fel anvndarnamn/lsenord. tkomst nekad.';
$strXMLOptions = 'XML-alternativ';
@@ -996,4 +979,38 @@ $strZip = '"zippad"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/swedish-utf-8.inc.php b/lang/swedish-utf-8.inc.php
index 10184c5e6..e12944d45 100644
--- a/lang/swedish-utf-8.inc.php
+++ b/lang/swedish-utf-8.inc.php
@@ -21,7 +21,6 @@ $datefmt = '%d %B %Y kl %H:%M';
$timespanfmt = '%s dagar, %s timmar, %s minuter och %s sekunder';
$strAbortedClients = 'Avbrutna';
-$strAbsolutePathToDocSqlDir = 'Ange absolut sökväg på webbservern till docSQL-katalog';
$strAccessDenied = 'Åtkomst nekad';
$strAccessDeniedCreateConfig = 'Trolig orsak till detta är att du inte skapade en konfigurationsfil. Du vill kanske använda %1$suppsättningsskript%2$s för att skapa en.';
$strAccessDeniedExplanation = 'phpMyAdmin försökte skapa en förbindelse till MySQL-servern, men servern nekade uppkopplingen. Kontrollera värd, användarnamn och lösenord i config.inc.php och förvissa dig om att de stämmer överens med informationen från administratören av MySQL-servern.';
@@ -31,8 +30,6 @@ $strAddClause = 'Lägg till %s';
$strAddConstraints = 'Lägg till restriktioner';
$strAddDeleteColumn = 'Lägg till/ta bort fältkolumner';
$strAddDeleteRow = 'Lägg till/ta bort villkorsrader';
-$strAddedColumnComment = 'La till kommentar för kolumn';
-$strAddedColumnRelation = 'La till relation för kolumn';
$strAddFields = 'Lägg till %s fält';
$strAddHeaderComment = 'Lägg till egen kommentar i huvud (\\n delar rader)';
$strAddIntoComments = 'Lägg till i kommentarer';
@@ -204,15 +201,6 @@ $strDataOnly = 'Enbart data';
$strDataPages = 'Sidor innehållande data';
$strDBComment = 'Databaskommentar: ';
$strDBCopy = 'Kopiera databas till';
-$strDBGContextID = 'Innehålls-ID';
-$strDBGContext = 'Innehåll';
-$strDBGHits = 'Träffar';
-$strDBGLine = 'Rad';
-$strDBGMaxTimeMs = 'Max tid, ms';
-$strDBGMinTimeMs = 'Min tid, ms';
-$strDBGModule = 'Modul';
-$strDBGTimePerHitMs = 'Tid/träff, ms';
-$strDBGTotalTimeMs = 'Total tid, ms';
$strDbPrivileges = 'Databasspecifika privilegier';
$strDBRename = 'Döp om databasen till';
$strDbSpecific = 'databasspecifik';
@@ -349,8 +337,6 @@ $strIdxFulltext = 'Heltext';
$strIgnoreDuplicates = 'Ignorera dubblerade rader';
$strIgnore = 'Ignorera';
$strIgnoreInserts = 'Använd IGNORE i infogningar';
-$strIgnoringFile = 'Ignorerar fil %s';
-$strImportDocSQL = 'Importera docSQL-filer';
$strImportFiles = 'Importera filer';
$strImportFormat = 'Format på importerad fil';
$strImport = 'Importera';
@@ -903,7 +889,6 @@ $strThemeNoValidImgPath = 'Ingen giltig sökväg till bilder för tema %s hittad
$strThemePathNotFound = 'Temats sökväg för tema %s hittades inte!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Denna värd';
-$strThisNotDirectory = 'Detta var inte en katalog';
$strThreads = 'Trådar';
$strThreadSuccessfullyKilled = 'Tråd %s dödades med framgång.';
$strTimeoutInfo = 'Tidsbegränsningen överskreds vid föregående import. Efter återupptagning av importen kommer den fortsätta från position %d.';
@@ -983,8 +968,6 @@ $strWildcard = 'jokertecken';
$strWindowNotFound = 'Målfönstret kunde inte uppdateras. Orsaken kan vara att du stängt föräldrafönstret eller att din webbläsares säkerhetsinställningar blockerar uppdateringar mellan fönster.';
$strWithChecked = 'Med markerade:';
$strWriteRequests = 'Skrivefterfrågningar';
-$strWritingCommentNotPossible = 'Skrivning av kommentar inte möjlig';
-$strWritingRelationNotPossible = 'Skrivning av relation inte möjlig';
$strWrongUser = 'Fel användarnamn/lösenord. Åtkomst nekad.';
$strXMLOptions = 'XML-alternativ';
@@ -997,4 +980,38 @@ $strZip = '"zippad"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/tatarish-iso-8859-9.inc.php b/lang/tatarish-iso-8859-9.inc.php
index 818e659d0..5fd35ff25 100644
--- a/lang/tatarish-iso-8859-9.inc.php
+++ b/lang/tatarish-iso-8859-9.inc.php
@@ -17,7 +17,6 @@ $datefmt = '%Y.%m.%d, %H:%M';
$timespanfmt = '%s kn, %s st, %s minut ta %s sekund';
$strAbortedClients = 'zderelde';
-$strAbsolutePathToDocSqlDir = 'Serverd docSQL trggen kiter yuln kertse';
$strAccessDeniedExplanation = 'phpMyAdmin bu MySQL serverg totalp qaraa, server bu totalun zep quyd. Xzer, "config.inc.php" biremend kertelgn sanaqisem/ireisem/serszlr tikserep, alarn MySQL idrese birgn mlmt beln atrp qars qala.';
$strAccessDenied = 'reep Bulmad';
$strAction = 'E';
@@ -26,8 +25,6 @@ $strAddClause = '%s
$strAddConstraints = 'iklwlr stise';
$strAddDeleteColumn = 'Add/Delete Field Columns';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'Kilse alana aqlama stlende';
-$strAddedColumnRelation = 'Kilse alana bylne stlende';
$strAddFields = '%s alan stw';
$strAddHeaderComment = 'Balqqa stm aqlama stw (yullar \\n beln ayrla)';
$strAddIntoComments = 'Aqlama een stise';
@@ -193,15 +190,6 @@ $strDataOnly = 'E
$strDataPages = 'Etlekle bitlr';
$strDBComment = 'Biremlek aqlamas:';
$strDBCopy = 'Biremlekne boa kbyt';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hit';
-$strDBGLine = 'Yul';
-$strDBGMaxTimeMs = 'Max waqt, ms';
-$strDBGMinTimeMs = 'Min waqt, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Waqt/Hit, ms';
-$strDBGTotalTimeMs = 'Tulaym waqt, ms';
$strDbPrivileges = 'Berr biremlekk qall xoquqlar';
$strDBRename = 'Biremlekne bolay atap quy';
$strDbSpecific = 'berr biremlekk qall';
@@ -333,8 +321,6 @@ $strIdxFulltext = 'Tul
$strIgnoreDuplicates = 'Qabatlanan yazmalarn tse';
$strIgnoreInserts = '"IGNORE" beln kertse';
$strIgnore = 'Qarama';
-$strIgnoringFile = '"%s" bireme tel';
-$strImportDocSQL = 'docSQL Biremen Yklw';
$strImportFiles = 'Biremdn alu';
$strImportFormat = 'Yklnan birem tzelee';
$strImport = 'Yklw';
@@ -768,7 +754,6 @@ $strThemeNoValidImgPath = '%s dig
$strThemePathNotFound = '%s dign tlaw urnlaqan yul tablmad!';
$strTheme = 'Tlaw / Bizle';
$strThisHost = 'Bu Sanaq';
-$strThisNotDirectory = 'Trgk tgel ul';
$strThreads = 'Ceplr';
$strThreadSuccessfullyKilled = '%s cebe ul terelgn buld.';
$strTime = 'Waqt';
@@ -839,8 +824,6 @@ $strWildcard = 'alma
$strWindowNotFound = 'Browsern maqsat trzse yaartlm qald. Ana-trz yablan bulan blki, y browserne iminlek caylawnda trz-ara yaartu tylan bulp tora.';
$strWithChecked = 'Saylanann:';
$strWriteRequests = 'Yazua soraw';
-$strWritingCommentNotPossible = 'Aqlama stnerlek tgel';
-$strWritingRelationNotPossible = 'Bylne kerterlek tgel';
$strWrongUser = 'Atama/sersze yal buluna kr ireep bulmad.';
$strXMLOptions = 'XML kylnee';
@@ -1010,4 +993,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/tatarish-utf-8.inc.php b/lang/tatarish-utf-8.inc.php
index 3f5b4d627..fa6ab0236 100644
--- a/lang/tatarish-utf-8.inc.php
+++ b/lang/tatarish-utf-8.inc.php
@@ -18,7 +18,6 @@ $datefmt = '%Y.%m.%d, %H:%M';
$timespanfmt = '%s kön, %s säğät, %s minut ta %s sekund';
$strAbortedClients = 'Özderelde';
-$strAbsolutePathToDocSqlDir = 'Serverdä docSQL törgägenä kiterü yulın kertäse';
$strAccessDeniedExplanation = 'phpMyAdmin bu MySQL servergä totaşılıp qarağaç, server bu totaşıluın özep quydı. Xäzer, "config.inc.php" biremendä kertelgän sanaqisem/ireşisem/sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp qarísı qala.';
$strAccessDenied = 'İreşep Bulmadı';
$strAction = 'Eş';
@@ -27,8 +26,6 @@ $strAddClause = '%s östäw';
$strAddConstraints = 'Çikläwlär östise';
$strAddDeleteColumn = 'Add/Delete Field Columns';
$strAddDeleteRow = 'Add/Delete Criteria Row';
-$strAddedColumnComment = 'Kiläse alanğa açıqlama östälende';
-$strAddedColumnRelation = 'Kiläse alanğa bäyläneş östälende';
$strAddFields = '%s alan östäw';
$strAddHeaderComment = 'Başlıqqa östämä açıqlama östäw (yullar \\n belän ayırıla)';
$strAddIntoComments = 'Açıqlama eçenä östise';
@@ -194,15 +191,6 @@ $strDataOnly = 'Eçtälegen genä';
$strDataPages = 'Eçtälekle bitlär';
$strDBComment = 'Biremlek açıqlaması:';
$strDBCopy = 'Biremlekne boña kübäyt';
-$strDBGContext = 'Context';
-$strDBGContextID = 'Context ID';
-$strDBGHits = 'Hit';
-$strDBGLine = 'Yul';
-$strDBGMaxTimeMs = 'Max waqıt, ms';
-$strDBGMinTimeMs = 'Min waqıt, ms';
-$strDBGModule = 'Module';
-$strDBGTimePerHitMs = 'Waqıt/Hit, ms';
-$strDBGTotalTimeMs = 'Tulayım waqıt, ms';
$strDbPrivileges = 'Berär biremlekkä qağılışlı xoquqlar';
$strDBRename = 'Biremlekne bolay atap quy';
$strDbSpecific = 'berär biremlekkä qağılışlı';
@@ -334,8 +322,6 @@ $strIdxFulltext = 'Tulımäten';
$strIgnoreDuplicates = 'Qabatlanğan yazmalarnı ütäse';
$strIgnoreInserts = '"IGNORE" belän kertäse';
$strIgnore = 'Qarama';
-$strIgnoringFile = '"%s" bireme ütelä';
-$strImportDocSQL = 'docSQL Biremen Yökläw';
$strImportFiles = 'Biremdän alu';
$strImportFormat = 'Yöklänğan birem tözeleşe';
$strImport = 'Yökläw';
@@ -769,7 +755,6 @@ $strThemeNoValidImgPath = '%s digän tışlaw sürätläre urınlaşqan yul tab
$strThemePathNotFound = '%s digän tışlaw urınlaşqan yul tabılmadı!';
$strTheme = 'Tışlaw / Bizäleş';
$strThisHost = 'Bu Sanaq';
-$strThisNotDirectory = 'Törgäk tügel ul';
$strThreads = 'Ceplär';
$strThreadSuccessfullyKilled = '%s cebe uñışlı üterelgän buldı.';
$strTime = 'Waqıt';
@@ -840,8 +825,6 @@ $strWildcard = 'almaşbilge';
$strWindowNotFound = 'Browsernıñ maqsat täräzäse yañartılmí qaldı. Ana-täräzä yabılğan bulğan bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp tora.';
$strWithChecked = 'Saylanğannı:';
$strWriteRequests = 'Yazuğa soraw';
-$strWritingCommentNotPossible = 'Açıqlama östänerlek tügel';
-$strWritingRelationNotPossible = 'Bäyläneş kerterlek tügel';
$strWrongUser = 'Atama/sersüzeñ yalğış buluına kürä ireşep bulmadı.';
$strXMLOptions = 'XML köyläneşe';
@@ -1011,4 +994,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/thai-tis-620.inc.php b/lang/thai-tis-620.inc.php
index 96416dc46..d2bd1e6ce 100644
--- a/lang/thai-tis-620.inc.php
+++ b/lang/thai-tis-620.inc.php
@@ -20,14 +20,11 @@ $datefmt = '%d %B %Y %R
$timespanfmt = '%s ѹ, %s , %s ҷ, %s Թҷ';
$strAbortedClients = '¡ԡ';
-$strAbsolutePathToDocSqlDir = 'س absolute path ͧá docSQL ';
$strAccessDenied = 'حҵҹ';
$strAction = 'зӡ';
$strAddAutoIncrement = ' AUTO_INCREMENT';
$strAddDeleteColumn = '/ź (Ŵ)';
$strAddDeleteRow = '/ź ';
-$strAddedColumnComment = ' ˵ Ѻ';
-$strAddedColumnRelation = ' Ūѹ Ѻ';
$strAddNewField = 'Ŵ';
$strAddPrivilegesOnDb = 'ԷԢͧҹŵ仹';
$strAddPrivilegesOnTbl = 'ԷԢͧҧ仹';
@@ -146,15 +143,6 @@ $strDatabasesStatsHeavyTraffic = '
$strDataDict = 'ҹء';
$strDataOnly = 'Т';
$strDBComment = '˵آͧҹ: ';
-$strDBGContext = '硫';
-$strDBGContextID = 'Ţ硫';
-$strDBGHits = 'Ե';
-$strDBGLine = '÷Ѵ';
-$strDBGMaxTimeMs = 'ҡش, Թҷ';
-$strDBGMinTimeMs = 'ҹش, Թҷ';
-$strDBGModule = '';
-$strDBGTimePerHitMs = '/Ե, Թҷ';
-$strDBGTotalTimeMs = 'ҷ, Թҷ';
$strDbPrivileges = 'ԷШаҹ';
$strDBRename = '¹Ͱҹ';
$strDbSpecific = 'аҹ';
@@ -248,8 +236,6 @@ $strIcelandic = '
$strId = 'ID';
$strIdxFulltext = 'ͤ (fulltext)';
$strIgnore = 'ʹ';
-$strIgnoringFile = 'ʹ %s';
-$strImportDocSQL = ' docSQL';
$strImportFiles = '';
$strIndex = 'Ѫ';
$strIndexes = 'Ѫ';
@@ -554,7 +540,6 @@ $strTextAreaLength = '
$strThai = '';
$strTheme = '˹ҵ';
$strThisHost = 'ʵ';
-$strThisNotDirectory = 'á';
$strThreadSuccessfullyKilled = 'ô %s ١º.';
$strTime = '';
$strTotal = '';
@@ -607,8 +592,6 @@ $strWelcome = '%s
$strWestEuropean = 'ûѹ';
$strWildcard = '';
$strWithChecked = 'ӡѺ͡:';
-$strWritingCommentNotPossible = '¹˵ع';
-$strWritingRelationNotPossible = '¹Ūѹ';
$strWrongUser = 'حҵ ͼʼҹԴ';
$strXML = 'XML';
@@ -1020,4 +1003,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php
index a64c25f00..bfa4f591d 100644
--- a/lang/thai-utf-8.inc.php
+++ b/lang/thai-utf-8.inc.php
@@ -21,14 +21,11 @@ $datefmt = '%d %B %Y %Rน.';
$timespanfmt = '%s วัน, %s ชั่วโมง, %s นาที, %s วินาที';
$strAbortedClients = 'ยกเลิก';
-$strAbsolutePathToDocSqlDir = 'กรุณาใส่ absolute path ของไดเรกทอรี docSQL บนเว็บเซิร์ฟเวอร์';
$strAccessDenied = 'ไม่อนุญาตให้ใช้งาน';
$strAction = 'กระทำการ';
$strAddAutoIncrement = 'เพิ่มค่า AUTO_INCREMENT';
$strAddDeleteColumn = 'เพิ่ม/ลบ คอลัมน์ (ฟิลด์)';
$strAddDeleteRow = 'เพิ่ม/ลบ แถว';
-$strAddedColumnComment = 'เพิ่ม หมายเหตุ สำหรับคอลัมน์';
-$strAddedColumnRelation = 'เพิ่ม รีเลชัน สำหรับคอลัมน์';
$strAddNewField = 'เพิ่มฟิลด์ใหม่';
$strAddPrivilegesOnDb = 'เพิ่มสิทธิของฐานข้อมูลต่อไปนี้';
$strAddPrivilegesOnTbl = 'เพิ่มสิทธิของตารางต่อไปนี้';
@@ -147,15 +144,6 @@ $strDatabasesStatsHeavyTraffic = 'โปรดทราบ: การเปิ
$strDataDict = 'พจนานุกรมข้อมูล';
$strDataOnly = 'เฉพาะข้อมูล';
$strDBComment = 'หมายเหตุของฐานข้อมูล: ';
-$strDBGContext = 'คอนเท็กซ์';
-$strDBGContextID = 'หมายเลขคอนเท็กซ์';
-$strDBGHits = 'ฮิต';
-$strDBGLine = 'บรรทัด';
-$strDBGMaxTimeMs = 'เวลามากสุด, มิลลิวินาที';
-$strDBGMinTimeMs = 'เวลาน้อยสุด, มิลลิวินาที';
-$strDBGModule = 'โมดูล';
-$strDBGTimePerHitMs = 'เวลา/ฮิต, มิลลิวินาที';
-$strDBGTotalTimeMs = 'เวลาทั้งหมด, มิลลิวินาที';
$strDbPrivileges = 'สิทธิเจาะจงเฉพาะฐานข้อมูล';
$strDBRename = 'เปลี่ยนชื่อฐานข้อมูลเป็น';
$strDbSpecific = 'เฉพาะฐานข้อมูล';
@@ -249,8 +237,6 @@ $strIcelandic = 'ไอซ์แลนด์';
$strId = 'ID';
$strIdxFulltext = 'ข้อความเต็ม (fulltext)';
$strIgnore = 'ไม่สนใจ';
-$strIgnoringFile = 'ไม่สนใจไฟล์ %s';
-$strImportDocSQL = 'นำเข้าไฟล์ docSQL';
$strImportFiles = 'นำเข้าไฟล์';
$strIndex = 'ดัชนี';
$strIndexes = 'ดัชนี';
@@ -555,7 +541,6 @@ $strTextAreaLength = 'เนื่องจากความยาวของ
$strThai = 'ไทย';
$strTheme = 'หน้าตา';
$strThisHost = 'โฮสต์นี้';
-$strThisNotDirectory = 'นี่ไม่ใช่ไดเรกทอรี';
$strThreadSuccessfullyKilled = 'เธรด %s ถูกทำลายเรียบร้อยแล้ว.';
$strTime = 'เวลา';
$strTotal = 'ทั้งหมด';
@@ -608,8 +593,6 @@ $strWelcome = '%s ยินดีต้อนรับ';
$strWestEuropean = 'ยุโรปตะวันตก';
$strWildcard = 'ไวล์การ์ด';
$strWithChecked = 'ทำกับที่เลือก:';
-$strWritingCommentNotPossible = 'การเขียนหมายเหตุนั้นเป็นไปไม่ได้';
-$strWritingRelationNotPossible = 'การเขียนรีเลชันนั้นเป็นไปไม่ได้';
$strWrongUser = 'อนุญาตให้เข้าใช้ไม่ได้ ชื่อผู้ใช้หรือรหัสผ่านผิด';
$strXML = 'XML';
@@ -1021,4 +1004,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/turkish-iso-8859-9.inc.php b/lang/turkish-iso-8859-9.inc.php
index 98ac9b8c2..0f7071f68 100644
--- a/lang/turkish-iso-8859-9.inc.php
+++ b/lang/turkish-iso-8859-9.inc.php
@@ -28,7 +28,6 @@ $datefmt = '%d %B %Y saat %H:%M:%S';
$timespanfmt = '%s gn, %s saat, %s dakika ve %s saniye';
$strAbortedClients = 'ptal edilen';
-$strAbsolutePathToDocSqlDir = 'Ltfen web sunucusundaki docSQL dizinine giden tam yolu giriniz';
$strAccessDenied = 'Eriim engellendi';
$strAccessDeniedCreateConfig = 'Muhtemelen bunun sebebi yaplandrma dosyasn oluturmadnz. Bir tane oluturmak iin %1$ssetup script%2$s kullanmak isteyebilirsiniz.';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL sunucusuna balanmay denedi ama sunucu balanty reddetti. config.inc iindeki anamakine (host) adresini, kullanc adn ve parolay kontrol edin ve MySQL sunucusunun yneticisi tarafndan verilen bilgiyle uyutuundan emin olun.';
@@ -38,8 +37,6 @@ $strAddClause = '%s komutu ekle';
$strAddConstraints = 'Kstlamalar ekle';
$strAddDeleteColumn = 'Alan Stunlar Ekle/Sil';
$strAddDeleteRow = 'Kriter Satr Ekle/Sil';
-$strAddedColumnComment = 'Stun iin eklenmi yorum';
-$strAddedColumnRelation = 'Stun iin eklenmi iliki';
$strAddFields = '%s alan ekle';
$strAddHeaderComment = 'Balk iine zel yorum ekle (\\n satr bler)';
$strAddIntoComments = 'Yorumlarn iine ekle';
@@ -211,15 +208,6 @@ $strDataOnly = 'Sadece veri';
$strDataPages = 'Veri ieren sayfalar';
$strDBComment = 'Veritaban yorumu:';
$strDBCopy = 'Veritabann uraya kopyala:';
-$strDBGContext = 'erik';
-$strDBGContextID = 'erik ID';
-$strDBGHits = 'Ulama';
-$strDBGLine = 'Satr';
-$strDBGMaxTimeMs = 'En ok sre, ms';
-$strDBGMinTimeMs = 'En az sre, ms';
-$strDBGModule = 'Modl';
-$strDBGTimePerHitMs = 'Sre/Ulama, ms';
-$strDBGTotalTimeMs = 'Toplam sre, ms';
$strDbPrivileges = 'Veritabanna zg yetkiler';
$strDBRename = 'Veritabann una yeniden adlandr';
$strDbSpecific = 'Veritabanna zg';
@@ -356,8 +344,6 @@ $strIdxFulltext = 'Tam metin';
$strIgnoreDuplicates = 'Kopya satrlar yoksay';
$strIgnore = 'Yoksay';
$strIgnoreInserts = 'Yoksaylan eklemeleri kullan';
-$strIgnoringFile = '%s dosyas yoksaylyor';
-$strImportDocSQL = 'docSQL Dosyalarn eri Aktar';
$strImportFiles = 'Dosyalar ieri aktar';
$strImportFormat = 'eri aktarlm dosyann biimi';
$strImport = 'eri Aktar';
@@ -910,7 +896,6 @@ $strThemeNoValidImgPath = '%s temas
$strThemePathNotFound = '%s temas iin tema yolu bulunamad!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Bu Anamakine';
-$strThisNotDirectory = 'Bu bir dizin deildi';
$strThreads = 'lemler';
$strThreadSuccessfullyKilled = '%s ilemi baarl olarak sonlandrld.';
$strTimeoutInfo = 'nceki ieri aktarma zaman amna urad, sonradan yeniden gnderim %d konumundan devam edecek.';
@@ -990,8 +975,6 @@ $strWildcard = 'joker';
$strWindowNotFound = 'Hedef tarayc penceresi gncellenemiyor. Belki ana pencereyi kapatm olabilirsiniz ya da taraycnzn gvenlik ayarlar apraz-pencere gncellemelerini engellemek iin yaplandrlmtr.';
$strWithChecked = 'Seilileri:';
$strWriteRequests = 'Yazma istekleri';
-$strWritingCommentNotPossible = 'Yorum yazlmas mmkn deil';
-$strWritingRelationNotPossible = 'liki yazlmas mmkn deil';
$strWrongUser = 'Yanl kullanc ad/parola. Eriim engellendi.';
$strXMLOptions = 'XML seenekleri';
@@ -1004,4 +987,38 @@ $strZip = '"zip olarak"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php
index a35ea5d61..acc120a65 100644
--- a/lang/turkish-utf-8.inc.php
+++ b/lang/turkish-utf-8.inc.php
@@ -29,7 +29,6 @@ $datefmt = '%d %B %Y saat %H:%M:%S';
$timespanfmt = '%s gün, %s saat, %s dakika ve %s saniye';
$strAbortedClients = 'İptal edilen';
-$strAbsolutePathToDocSqlDir = 'Lütfen web sunucusundaki docSQL dizinine giden tam yolu giriniz';
$strAccessDenied = 'Erişim engellendi';
$strAccessDeniedCreateConfig = 'Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadınız. Bir tane oluşturmak için %1$ssetup script%2$s kullanmak isteyebilirsiniz.';
$strAccessDeniedExplanation = 'phpMyAdmin MySQL sunucusuna bağlanmayı denedi ama sunucu bağlantıyı reddetti. config.inc içindeki anamakine (host) adresini, kullanıcı adını ve parolayı kontrol edin ve MySQL sunucusunun yöneticisi tarafından verilen bilgiyle uyuştuğundan emin olun.';
@@ -39,8 +38,6 @@ $strAddClause = '%s komutu ekle';
$strAddConstraints = 'Kısıtlamaları ekle';
$strAddDeleteColumn = 'Alan Sütunları Ekle/Sil';
$strAddDeleteRow = 'Kriter Satırı Ekle/Sil';
-$strAddedColumnComment = 'Sütun için eklenmiş yorum';
-$strAddedColumnRelation = 'Sütun için eklenmiş ilişki';
$strAddFields = '%s alan ekle';
$strAddHeaderComment = 'Başlık içine özel yorum ekle (\\n satırı böler)';
$strAddIntoComments = 'Yorumların içine ekle';
@@ -212,15 +209,6 @@ $strDataOnly = 'Sadece veri';
$strDataPages = 'Veri içeren sayfalar';
$strDBComment = 'Veritabanı yorumu:';
$strDBCopy = 'Veritabanını şuraya kopyala:';
-$strDBGContext = 'İçerik';
-$strDBGContextID = 'İçerik ID';
-$strDBGHits = 'Ulaşma';
-$strDBGLine = 'Satır';
-$strDBGMaxTimeMs = 'En çok süre, ms';
-$strDBGMinTimeMs = 'En az süre, ms';
-$strDBGModule = 'Modül';
-$strDBGTimePerHitMs = 'Süre/Ulaşma, ms';
-$strDBGTotalTimeMs = 'Toplam süre, ms';
$strDbPrivileges = 'Veritabanına özgü yetkiler';
$strDBRename = 'Veritabanını şuna yeniden adlandır';
$strDbSpecific = 'Veritabanına özgü';
@@ -357,8 +345,6 @@ $strIdxFulltext = 'Tam metin';
$strIgnoreDuplicates = 'Kopya satırları yoksay';
$strIgnore = 'Yoksay';
$strIgnoreInserts = 'Yoksayılan eklemeleri kullan';
-$strIgnoringFile = '%s dosyası yoksayılıyor';
-$strImportDocSQL = 'docSQL Dosyalarını İçeri Aktar';
$strImportFiles = 'Dosyaları içeri aktar';
$strImportFormat = 'İçeri aktarılmış dosyanın biçimi';
$strImport = 'İçeri Aktar';
@@ -911,7 +897,6 @@ $strThemeNoValidImgPath = '%s teması için geçerli resim yolu bulunamadı!';
$strThemePathNotFound = '%s teması için tema yolu bulunamadı!';
$strTheme = 'Tema / Stil';
$strThisHost = 'Bu Anamakine';
-$strThisNotDirectory = 'Bu bir dizin değildi';
$strThreads = 'İşlemler';
$strThreadSuccessfullyKilled = '%s işlemi başarılı olarak sonlandırıldı.';
$strTimeoutInfo = 'Önceki içeri aktarma zaman aşımına uğradı, sonradan yeniden gönderim %d konumundan devam edecek.';
@@ -991,8 +976,6 @@ $strWildcard = 'joker';
$strWindowNotFound = 'Hedef tarayıcı penceresi güncellenemiyor. Belki ana pencereyi kapatmış olabilirsiniz ya da tarayıcınızın güvenlik ayarları çapraz-pencere güncellemelerini engellemek için yapılandırılmıştır.';
$strWithChecked = 'Seçilileri:';
$strWriteRequests = 'Yazma istekleri';
-$strWritingCommentNotPossible = 'Yorum yazılması mümkün değil';
-$strWritingRelationNotPossible = 'İlişki yazılması mümkün değil';
$strWrongUser = 'Yanlış kullanıcı adı/parola. Erişim engellendi.';
$strXMLOptions = 'XML seçenekleri';
@@ -1005,4 +988,38 @@ $strZip = '"zip olarak"';
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php
index 903b077ce..2bc474c10 100644
--- a/lang/ukrainian-utf-8.inc.php
+++ b/lang/ukrainian-utf-8.inc.php
@@ -19,14 +19,11 @@ $datefmt = '%B %d %Y р., %H:%M';
$timespanfmt = '%s днів, %s годин, %s хвилин і %s секунд';
$strAbortedClients = 'Перервано';
-$strAbsolutePathToDocSqlDir = 'Прошу задати абсолютний шлях на веб-сервері до каталогу docSQL';
$strAccessDeniedExplanation = 'phpMyAdmin спробував з\'єднатися з MySQL сервером, але сервер не дозволив під\'єднання. Прошу перевірити значення host, username та password у файлі config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від адміністратора MySQL сервера.';
$strAccessDenied = 'Доступ заборонено';
$strAction = 'Дія';
$strAddDeleteColumn = 'Додати/забрати колонку критерію';
$strAddDeleteRow = 'Додати/забрати рядок критерію';
-$strAddedColumnComment = 'Додано коментар до колонки';
-$strAddedColumnRelation = 'Додано зв\'язок для колонки';
$strAddIntoComments = 'Додати коментар';
$strAddNewField = 'Додати нове поле';
$strAddPrivilegesOnDb = 'Додати права для цієї бази даних';
@@ -146,15 +143,6 @@ $strDataDict = 'Словник даних';
$strDataOnly = 'Лише дані';
$strData = 'Дані';
$strDBComment = 'Коментар бази даних: ';
-$strDBGContextID = 'Контекст ID';
-$strDBGContext = 'Контекст';
-$strDBGHits = 'Hits';
-$strDBGLine = 'Рядок';
-$strDBGMaxTimeMs = 'Макс час, мс';
-$strDBGMinTimeMs = 'Мін час, мс';
-$strDBGModule = 'Модуль';
-$strDBGTimePerHitMs = 'Time/Hit, мс';
-$strDBGTotalTimeMs = 'Загальний час, мс';
$strDbPrivileges = 'Права, які стосуються бази даних';
$strDbSpecific = 'специфічний для бази даних';
$strDefaultValueHelp = 'Для значень за замовчуванням, введіть лише значення, без використання зворотніх слешів чи лапок, у такому форматі: a';
@@ -249,8 +237,6 @@ $strHungarian = 'Мадярське';
$strId = 'ID';
$strIdxFulltext = 'ПовнТекст';
$strIgnore = 'Ігноруровати';
-$strIgnoringFile = 'Проіґноровано файл %s';
-$strImportDocSQL = 'Імпортувати docSQL файли';
$strImportFiles = 'Імпорт файлів';
$strIndexes = 'Індекси';
$strIndexHasBeenDropped = 'Індекс %s було знищено';
@@ -551,7 +537,6 @@ $strTblPrivileges = 'Права, які стосуються таблиці';
$strTextAreaLength = ' Через велику довжину,
це поле не може бути відредаговано ';
$strThai = 'Тайське';
$strThisHost = 'Цей хост';
-$strThisNotDirectory = 'Це не каталог';
$strThreadSuccessfullyKilled = 'Процес %s припинено.';
$strTime = 'Час';
$strToggleScratchboard = 'ввімкнути чорновик (scratchboard)';
@@ -609,8 +594,6 @@ $strWelcome = 'Ласкаво просимо до %s';
$strWestEuropean = 'Західно Європейське';
$strWildcard = 'шаблон';
$strWithChecked = 'З відміченими:';
-$strWritingCommentNotPossible = 'Неможливо додати коментар';
-$strWritingRelationNotPossible = 'Неможливо додати зв\'язок';
$strWrongUser = 'Невірний логін/пароль. Доступ не дозволено.';
$strXML = 'XML';
@@ -1019,4 +1002,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/lang/ukrainian-windows-1251.inc.php b/lang/ukrainian-windows-1251.inc.php
index 605876556..4476b87a8 100644
--- a/lang/ukrainian-windows-1251.inc.php
+++ b/lang/ukrainian-windows-1251.inc.php
@@ -18,14 +18,11 @@ $datefmt = '%B %d %Y
$timespanfmt = '%s , %s , %s %s ';
$strAbortedClients = '';
-$strAbsolutePathToDocSqlDir = ' - docSQL';
$strAccessDenied = ' ';
$strAccessDeniedExplanation = 'phpMyAdmin \' MySQL , \'. host, username password config.inc.php , MySQL .';
$strAction = 'ij';
$strAddDeleteColumn = '/ ';
$strAddDeleteRow = '/ ';
-$strAddedColumnComment = ' ';
-$strAddedColumnRelation = ' \' ';
$strAddIntoComments = ' ';
$strAddNewField = ' ';
$strAddPrivilegesOnDb = ' ';
@@ -145,15 +142,6 @@ $strDatabasesStatsHeavyTraffic = '
$strDataDict = ' ';
$strDataOnly = ' ';
$strDBComment = ' : ';
-$strDBGContext = '';
-$strDBGContextID = ' ID';
-$strDBGHits = 'Hits';
-$strDBGLine = '';
-$strDBGMaxTimeMs = ' , ';
-$strDBGMinTimeMs = '̳ , ';
-$strDBGModule = '';
-$strDBGTimePerHitMs = 'Time/Hit, ';
-$strDBGTotalTimeMs = ' , ';
$strDbPrivileges = ', ';
$strDbSpecific = ' ';
$strDefault = ' ';
@@ -248,8 +236,6 @@ $strHungarian = '
$strId = 'ID';
$strIdxFulltext = '';
$strIgnore = '';
-$strIgnoringFile = ' %s';
-$strImportDocSQL = ' docSQL ';
$strImportFiles = ' ';
$strIndex = '';
$strIndexes = '';
@@ -550,7 +536,6 @@ $strTblPrivileges = '
$strTextAreaLength = ' ,
';
$strThai = '';
$strThisHost = ' ';
-$strThisNotDirectory = ' ';
$strThreadSuccessfullyKilled = ' %s .';
$strTime = '';
$strToggleScratchboard = ' (scratchboard)';
@@ -608,8 +593,6 @@ $strWelcome = '
$strWestEuropean = ' ';
$strWildcard = '';
$strWithChecked = ' :';
-$strWritingCommentNotPossible = ' ';
-$strWritingRelationNotPossible = ' \'';
$strWrongUser = ' /. .';
$strXML = 'XML';
@@ -1018,4 +1001,38 @@ $strFontSize = 'Font size'; //to translate
$strLanguage = 'Language'; //to translate
$strPmaWiki = 'phpMyAdmin wiki'; //to translate
$strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formated date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate
+$strDocSQL = 'DocSQL'; //to translate
+$strDocSQLOptions = 'DocSQL options'; //to translate
+$strTableName = 'Table name'; //to translate
+$strTableIsEmpty = 'Table seems to be empty!'; //to translate
+$strDbIsEmpty = 'Database seems to be empty!'; //to translate
+$strShowingPhp = 'Showing as PHP code'; //to translate
+$strShowingSQL = 'Showing SQL query'; //to translate
+$strDesigner = 'Designer'; //to translate
+$strNumberOfTables = 'Number of tables'; //to translate
+$strCreateTable = 'Create table'; //to translate
+$strCreateRelation = 'Create relation'; //to translate
+$strSavePosition = 'Save position'; //to translate
+$strSelectForeignKey = 'Select Foreign Key'; //to translate
+$strHide = 'Hide'; //to translate
+$strShowHideLeftMenu = 'Show/Hide left menu'; //to translate
+$strReload = 'Reload'; //to translate
+$strSmallBigAll = 'Small/Big All'; //to translate
+$strImportExportCoords = 'Import/Export coordinates for PDF schema'; //to translate
+$strMoveMenu = 'Move Menu'; //to translate
+$strAngularLinks = 'Angular links'; //to translate
+$strDirectLinks = 'Direct links'; //to translate
+$strAlwaysShowLinks = 'Always show links'; //to translate
+$strDisableForFasterScrolling = 'Disable for faster scrolling'; //to translate
+$strHideShowAll = 'Hide/Show all'; //to translate
+$strHideShowNoRelation = 'Hide/Show Tables with no relation'; //to translate
+$strInternalRelationAdded = 'Internal relation added'; //to translate
+$strInnoDBRelationAdded = 'InnoDB relation added'; //to translate
+$strRelationDeleted = 'Relation deleted'; //to translate
+$strNotThePrimaryKey = 'This is not the primary key!'; //to translate
+$strToSelectRelation = 'To select relation, click :'; //to translate
+$strExportImportToScale = 'Export/Import to scale'; //to translate
+$strRecommended = 'recommended'; //to translate
+$strToFromPage = 'to/from page'; //to translate
+$strSelectReferencedKey = 'Select referenced key'; //to translate
?>
diff --git a/libraries/PMA_List_Database.class.php b/libraries/PMA_List_Database.class.php
index fbab3c2bd..79fc4c3ff 100644
--- a/libraries/PMA_List_Database.class.php
+++ b/libraries/PMA_List_Database.class.php
@@ -354,6 +354,46 @@ require_once './libraries/PMA_List.class.php';
return $dbgroups;
}
+ /**
+ * returns html code for list with dbs
+ *
+ * @return string html code list
+ */
+ function getHtmlListGrouped($selected = '')
+ {
+ if (true === $selected) {
+ $selected = $this->getDefault();
+ }
+
+ $return = '' . "\n";
+ foreach ($this->getGroupedDetails() as $group => $dbs) {
+ if (count($dbs) > 1) {
+ $return .= '
';
+
+ return $return;
+ }
+
/**
* returns html code for select form element with dbs
*
@@ -476,4 +516,4 @@ require_once './libraries/PMA_List.class.php';
} // end if
}
}
-?>
\ No newline at end of file
+?>
diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php
index c4fcd5ad7..14c0e2679 100644
--- a/libraries/auth/cookie.auth.lib.php
+++ b/libraries/auth/cookie.auth.lib.php
@@ -303,10 +303,10 @@ function PMA_auth_check()
if (!empty($old_usr)) {
if ($GLOBALS['cfg']['LoginCookieDeleteAll']) {
foreach($GLOBALS['cfg']['Servers'] as $key => $val) {
- setcookie('pma_cookie_password-' . $key, '', 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_removeCookie('pma_cookie_password-' . $key);
}
} else {
- setcookie('pma_cookie_password-' . $server, '', 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_removeCookie('pma_cookie_password-' . $server);
}
}
@@ -437,20 +437,14 @@ function PMA_auth_set_user()
// Name and password cookies needs to be refreshed each time
// Duration = one month for username
- setcookie('pma_cookie_username-' . $server,
- PMA_blowfish_encrypt($cfg['Server']['user'] . ':' . $GLOBALS['current_time'],
- $GLOBALS['cfg']['blowfish_secret']),
- time() + (60 * 60 * 24 * 30),
- $GLOBALS['cookie_path'], '',
- $GLOBALS['is_https']);
+ PMA_setCookie('pma_cookie_username-' . $server, PMA_blowfish_encrypt($cfg['Server']['user'] . ':' . $GLOBALS['current_time'], $GLOBALS['cfg']['blowfish_secret']));
- // Duration = till the browser is closed for password (we don't want this to be saved)
- setcookie('pma_cookie_password-' . $server,
+ // Duration = as configured
+ PMA_setCookie('pma_cookie_password-' . $server,
PMA_blowfish_encrypt(!empty($cfg['Server']['password']) ? $cfg['Server']['password'] : "\xff(blank)",
$GLOBALS['cfg']['blowfish_secret'] . $GLOBALS['current_time']),
- $GLOBALS['cfg']['LoginCookieStore'],
- $GLOBALS['cookie_path'], '',
- $GLOBALS['is_https']);
+ null,
+ $GLOBALS['cfg']['LoginCookieStore']);
// Set server cookies if required (once per session) and, in this case, force
// reload to ensure the client accepts cookies
@@ -458,14 +452,10 @@ function PMA_auth_set_user()
if ($GLOBALS['cfg']['AllowArbitraryServer']) {
if (isset($pma_auth_server) && !empty($pma_auth_server) && $pma_server_changed) {
// Duration = one month for serverrname
- setcookie('pma_cookie_servername-' . $server,
- $cfg['Server']['host'],
- time() + (60 * 60 * 24 * 30),
- $GLOBALS['cookie_path'], '',
- $GLOBALS['is_https']);
+ PMA_setCookie('pma_cookie_servername-' . $server, $cfg['Server']['host']);
} else {
// Delete servername cookie
- setcookie('pma_cookie_servername-' . $server, '', 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_removeCookie('pma_cookie_servername-' . $server);
}
}
@@ -510,7 +500,7 @@ function PMA_auth_fails()
global $conn_error, $server;
// Deletes password cookie and displays the login form
- setcookie('pma_cookie_password-' . $server, '', 0, $GLOBALS['cookie_path'], '', $GLOBALS['is_https']);
+ PMA_removeCookie('pma_cookie_password-' . $server);
if (isset($GLOBALS['allowDeny_forbidden']) && $GLOBALS['allowDeny_forbidden']) {
$conn_error = $GLOBALS['strAccessDenied'];
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 632a56b23..37c5c8b48 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -929,7 +929,7 @@ if (!defined('PMA_MINIMUM_COMMON')) {
} else {
session_write_close();
if (headers_sent()) {
- if (function_exists(debug_print_backtrace)) {
+ if (function_exists('debug_print_backtrace')) {
echo '' . "\n";
+ // wether display db_name cuted by the group part
+ $cut = true;
+ } else {
+ // .. or full
+ $cut = false;
+ }
+ foreach ($dbs as $db) {
+ $return .= '
';
debug_print_backtrace();
echo '
';
@@ -1277,11 +1277,13 @@ window.parent.updateTableTitle('', '';
echo $message;
if (isset($GLOBALS['special_message'])) {
echo PMA_sanitize($GLOBALS['special_message']);
unset($GLOBALS['special_message']);
}
+ echo ' ' . "\n";
- }
+ if (($cfgRelation['commwork'] == true) && ($cfgRelation['mimework'] != true)) {
+ echo '' . $GLOBALS['strUpdComTab'] . ' ' . "\n";
+ }
echo ' ' . $GLOBALS['strUpdComTab'] . ' ' . "\n";
+ echo ' $cfg[\'Servers\'][$i][\'history\'] ... '
. ((isset($cfgRelation['history'])) ? $hit : sprintf($shit, 'history'))
@@ -262,6 +271,13 @@ function PMA_getRelationsParam($verbose = false)
. (($cfgRelation['historywork'] == true) ? $enabled : $disabled)
. ' ' . "\n";
+ echo ' $cfg[\'Servers\'][$i][\'designer_coords\'] ... '
+ . ((isset($cfgRelation['designer_coords'])) ? $hit : sprintf($shit, 'designer_coords'))
+ . ' ' . "\n";
+
echo '' . "\n";
} // end if ($verbose == true) {
diff --git a/libraries/session.inc.php b/libraries/session.inc.php
index 965f26614..004114f6d 100644
--- a/libraries/session.inc.php
+++ b/libraries/session.inc.php
@@ -25,7 +25,6 @@ if (!@function_exists('session_name')) {
// (do not use & for parameters sent by header)
header('Location: error.php'
. '?lang=' . urlencode($available_languages[$lang][2])
- . '&charset=' . urlencode($charset)
. '&dir=' . urlencode($text_dir)
. '&type=' . urlencode($strError)
. '&error=' . urlencode(sprintf($strCantLoad, 'session')));
@@ -33,7 +32,7 @@ if (!@function_exists('session_name')) {
} elseif (ini_get('session.auto_start') == true && session_name() != 'phpMyAdmin') {
$_SESSION = array();
if (isset($_COOKIE[session_name()])) {
- setcookie(session_name(), '', time()-42000, '/');
+ PMA_removeCookie(session_name());
}
session_unset();
@session_destroy();
@@ -44,7 +43,7 @@ if (!@function_exists('session_name')) {
//ini_set('session.auto_start', 0);
// session cookie settings
-session_set_cookie_params(0, PMA_Config::getCookiePath(),
+session_set_cookie_params(0, PMA_Config::getCookiePath() . '; HttpOnly',
'', PMA_Config::isHttps());
// cookies are safer
diff --git a/libraries/sqlparser.data.php b/libraries/sqlparser.data.php
index 838490641..bc2ad6420 100644
--- a/libraries/sqlparser.data.php
+++ b/libraries/sqlparser.data.php
@@ -98,6 +98,7 @@ $PMA_SQPdata_function_name = array (
'EXPORT_SET',
'EXTERIORRING', // polygon-property-functions.html
'EXTRACT',
+ 'EXTRACTVALUE', // xml-functions.html
'FIELD',
'FIND_IN_SET',
'FLOOR',
@@ -235,6 +236,7 @@ $PMA_SQPdata_function_name = array (
'UNHEX', // string-functions.html
'UNIQUE_USERS',
'UNIX_TIMESTAMP',
+ 'UPDATEXML', // xml-functions.html
'UPPER',
'USER',
'UTC_DATE',
@@ -254,7 +256,7 @@ $PMA_SQPdata_function_name = array (
'YEARWEEK'
);
//$PMA_SQPdata_function_name_cnt = count($PMA_SQPdata_function_name);
-$PMA_SQPdata_function_name_cnt = 229;
+$PMA_SQPdata_function_name_cnt = 231;
// DEBUG
//$test_PMA_SQPdata_function_name = $PMA_SQPdata_function_name;
//sort($PMA_SQPdata_function_name);
diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php
index 91eff80c2..2cca105ae 100644
--- a/libraries/tbl_links.inc.php
+++ b/libraries/tbl_links.inc.php
@@ -43,6 +43,8 @@ $tabs = array();
$tabs['browse']['icon'] = 'b_browse.png';
$tabs['browse']['text'] = $strBrowse;
+$tabs['browse']['link'] = 'sql.php';
+$tabs['browse']['args']['pos'] = 0;
$tabs['structure']['icon'] = 'b_props.png';
$tabs['structure']['link'] = 'tbl_structure.php';
@@ -54,6 +56,7 @@ $tabs['sql']['text'] = $strSQL;
$tabs['search']['icon'] = 'b_search.png';
$tabs['search']['text'] = $strSearch;
+$tabs['search']['link'] = 'tbl_select.php';
if ( ! (isset($db_is_information_schema) && $db_is_information_schema) ) {
$tabs['insert']['icon'] = 'b_insrow.png';
@@ -79,19 +82,20 @@ if ( ! $tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information
$tabs['operation']['link'] = 'tbl_operations.php';
$tabs['operation']['text'] = $strOperations;
- if ($table_info_num_rows > 0) {
- $ln8_stt = (PMA_MYSQL_INT_VERSION >= 40000)
- ? 'TRUNCATE TABLE '
- : 'DELETE FROM ';
- $tabs['empty']['link'] = 'sql.php';
- $tabs['empty']['args']['sql_query'] = $ln8_stt . PMA_backquote($table);
- $tabs['empty']['args']['zero_rows'] = sprintf($strTableHasBeenEmptied, htmlspecialchars($table));
- $tabs['empty']['attr'] = 'onclick="return confirmLink(this, \'' . $ln8_stt . PMA_jsFormat($table) . '\')"';
- $tabs['empty']['args']['goto'] = 'tbl_structure.php';
- $tabs['empty']['class'] = 'caution';
- }
+ $ln8_stt = (PMA_MYSQL_INT_VERSION >= 40000)
+ ? 'TRUNCATE TABLE '
+ : 'DELETE FROM ';
+ $tabs['empty']['link'] = 'sql.php';
+ $tabs['empty']['args']['sql_query'] = $ln8_stt . PMA_backquote($table);
+ $tabs['empty']['args']['zero_rows'] = sprintf($strTableHasBeenEmptied, htmlspecialchars($table));
+ $tabs['empty']['attr'] = 'onclick="return confirmLink(this, \'' . $ln8_stt . PMA_jsFormat($table) . '\')"';
+ $tabs['empty']['args']['goto'] = 'tbl_structure.php';
+ $tabs['empty']['class'] = 'caution';
$tabs['empty']['icon'] = 'b_empty.png';
$tabs['empty']['text'] = $strEmpty;
+ if ($table_info_num_rows == 0) {
+ $tabs['empty']['warning'] = $strTableIsEmpty;
+ }
}
/**
@@ -112,10 +116,9 @@ if ( ! (isset($db_is_information_schema) && $db_is_information_schema) ) {
$tabs['drop']['class'] = 'caution';
}
-if ($table_info_num_rows > 0 || $tbl_is_view) {
- $tabs['browse']['link'] = 'sql.php';
- $tabs['browse']['args']['pos'] = 0;
- $tabs['search']['link'] = 'tbl_select.php';
+if ($table_info_num_rows == 0 && !$tbl_is_view) {
+ $tabs['browse']['warning'] = $strTableIsEmpty;
+ $tabs['search']['warning'] = $strTableIsEmpty;
}
echo PMA_getTabs( $tabs );
diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php
index f161bae6f..c72f24ef2 100644
--- a/libraries/tbl_properties.inc.php
+++ b/libraries/tbl_properties.inc.php
@@ -53,7 +53,7 @@ function display_field_options(field_type, i) {
-' . $GLOBALS['strDesigner'] . ': '
+ . (($cfgRelation['designerwork'] == true) ? $enabled : $disabled)
+ . '
+ * class PDF extends TCPDF { + * function Footer() { + * //Go to 1.5 cm from bottom + * $this->SetY(-15); + * //Select Arial italic 8 + * $this->SetFont('Arial','I',8); + * //Print current and total page numbers + * $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C'); + * } + * } + * $pdf=new PDF(); + * $pdf->AliasNbPages(); + *+ * @param string $alias The alias. Default value: {nb}. + * @since 1.4 + * @see PageNo(), Footer() + */ + function AliasNbPages($alias='{nb}') { + //Define an alias for total number of pages + $this->AliasNbPages = $this->_escapetext($alias); + } + + /** + * This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid. + * 2004-06-11 :: Nicola Asuni : changed bold tag with strong + * @param string $msg The error message + * @since 1.0 + */ + function Error($msg) { + //Fatal error + die('TCPDF error: '.$msg); + } + + /** + * This method begins the generation of the PDF document. It is not necessary to call it explicitly because AddPage() does it automatically. + * Note: no page is created by this method + * @since 1.0 + * @see AddPage(), Close() + */ + function Open() { + //Begin document + $this->state=1; + } + + /** + * Terminates the PDF document. It is not necessary to call this method explicitly because Output() does it automatically. If the document contains no page, AddPage() is called to prevent from getting an invalid document. + * @since 1.0 + * @see Open(), Output() + */ + function Close() { + //Terminate document + if($this->state==3) { + return; + } + if($this->page==0) { + $this->AddPage(); + } + //Page footer + $this->InFooter=true; + $this->Footer(); + $this->InFooter=false; + //Close page + $this->_endpage(); + //Close document + $this->_enddoc(); + } + + /** + * Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer. Then the page is added, the current position set to the top-left corner according to the left and top margins, and Header() is called to display the header. + * The font which was set before calling is automatically restored. There is no need to call SetFont() again if you want to continue with the same font. The same is true for colors and line width. + * The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards. + * @param string $orientation Page orientation. Possible values are (case insensitive):
+ * $pdf->AddFont('Comic','I'); + * // is equivalent to: + * $pdf->AddFont('Comic','I','comici.php'); + *+ * @param string $family Font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font. + * @param string $style Font style. Possible values are (case insensitive):
+ * define('FPDF_FONTPATH','/home/www/font/'); + * require('tcpdf.php'); + * + * //Times regular 12 + * $pdf->SetFont('Times'); + * //Arial bold 14 + * $pdf->SetFont('Arial','B',14); + * //Removes bold + * $pdf->SetFont(''); + * //Times bold, italic and underlined 14 + * $pdf->SetFont('Times','BIU'); + *
+ * class PDF extends TCPDF { + * var $col=0; + * + * function SetCol($col) { + * //Move position to a column + * $this->col=$col; + * $x=10+$col*65; + * $this->SetLeftMargin($x); + * $this->SetX($x); + * } + * + * function AcceptPageBreak() { + * if($this->col<2) { + * //Go to next column + * $this->SetCol($this->col+1); + * $this->SetY(10); + * return false; + * } + * else { + * //Go back to first column and issue page break + * $this->SetCol(0); + * return true; + * } + * } + * } + * + * $pdf=new PDF(); + * $pdf->Open(); + * $pdf->AddPage(); + * $pdf->SetFont('Arial','',12); + * for($i=1;$i<=300;$i++) { + * $pdf->Cell(0,5,"Line $i",0,1); + * } + * $pdf->Output(); + *+ * @return boolean + * @since 1.4 + * @see SetAutoPageBreak() + */ + function AcceptPageBreak() { + //Accept automatic page break or not + return $this->AutoPageBreak; + } + + /** + * Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
+ * //Begin with regular font + * $pdf->SetFont('Arial','',14); + * $pdf->Write(5,'Visit '); + * //Then put a blue underlined link + * $pdf->SetTextColor(0,0,255); + * $pdf->SetFont('','U'); + * $pdf->Write(5,'www.tecnick.com','http://www.tecnick.com'); + *+ * @param float $h Line height + * @param string $txt String to print + * @param mixed $link URL or identifier returned by AddLink() + * @param int $fill Indicates if the background must be painted (1) or transparent (0). Default value: 0. + * @since 1.5 + * @see SetFont(), SetTextColor(), AddLink(), MultiCell(), SetAutoPageBreak() + */ + function Write($h, $txt, $link='', $fill=0) { + + //Output text in flowing mode + $cw = &$this->CurrentFont['cw']; + $w = $this->w - $this->rMargin - $this->x; + $wmax = ($w - 2 * $this->cMargin); + + $s = str_replace("\r", '', $txt); + $nb = strlen($s); + + // handle single space character + if(($nb==1) AND preg_match("/[ ]/u", $s)) { + $this->x += $this->GetStringWidth($s); + return; + } + + $sep=-1; + $i=0; + $j=0; + $l=0; + $nl=1; + while($i<$nb) { + //Get next character + $c=$s{$i}; + if(preg_match("/[\n]/u", $c)) { + //Explicit line break + $this->Cell($w, $h, substr($s, $j, $i-$j), 0, 2, '', $fill, $link); + $i++; + $sep = -1; + $j = $i; + $l = 0; + if($nl == 1) { + $this->x = $this->lMargin; + $w = $this->w - $this->rMargin - $this->x; + $wmax = ($w - 2 * $this->cMargin); + } + $nl++; + continue; + } + if(preg_match("/[ ]/u", $c)) { + $sep= $i; + } + + $l = $this->GetStringWidth(substr($s, $j, $i-$j)); + + if($l > $wmax) { + //Automatic line break (word wrapping) + if($sep == -1) { + if($this->x > $this->lMargin) { + //Move to next line + $this->x = $this->lMargin; + $this->y += $h; + $w=$this->w - $this->rMargin - $this->x; + $wmax=($w - 2 * $this->cMargin); + $i++; + $nl++; + continue; + } + if($i==$j) { + $i++; + } + $this->Cell($w, $h, substr($s, $j, $i-$j), 0, 2, '', $fill, $link); + } + else { + $this->Cell($w, $h, substr($s, $j, $sep-$j), 0, 2, '', $fill, $link); + $i=$sep+1; + } + $sep = -1; + $j = $i; + $l = 0; + if($nl==1) { + $this->x = $this->lMargin; + $w = $this->w - $this->rMargin - $this->x; + $wmax = ($w - 2 * $this->cMargin); + } + $nl++; + } + else { + $i++; + } + } + + //Last chunk + if($i!=$j) { + $this->Cell($this->GetStringWidth(substr($s, $j)), $h, substr($s, $j), 0, 0, '', $fill, $link); + } + } + + /** + * Puts an image in the page. The upper-left corner must be given. The dimensions can be specified in different ways:
+ * Char. number range | UTF-8 octet sequence + * (hexadecimal) | (binary) + * --------------------+----------------------------------------------- + * 0000 0000-0000 007F | 0xxxxxxx + * 0000 0080-0000 07FF | 110xxxxx 10xxxxxx + * 0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx + * 0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + * --------------------------------------------------------------------- + * + * ABFN notation: + * --------------------------------------------------------------------- + * UTF8-octets = *( UTF8-char ) + * UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4 + * UTF8-1 = %x00-7F + * UTF8-2 = %xC2-DF UTF8-tail + * + * UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) / + * %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail ) + * UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) / + * %xF4 %x80-8F 2( UTF8-tail ) + * UTF8-tail = %x80-BF + * --------------------------------------------------------------------- + *+ * @param string $str string to process. + * @return array containing codepoints (UTF-8 characters values) + * @access protected + * @author Nicola Asuni + * @since 1.53.0.TC005 (2005-01-05) + */ + function UTF8StringToArray($str) { + if(!$this->isunicode) { + return $str; // string is not in unicode + } + $unicode = array(); // array containing unicode values + $bytes = array(); // array containing single character byte sequences + $numbytes = 1; // number of octetc needed to represent the UTF-8 character + + $str .= ""; // force $str to be a string + $length = strlen($str); + + for($i = 0; $i < $length; $i++) { + $char = ord($str{$i}); // get one string character at time + if(count($bytes) == 0) { // get starting octect + if ($char <= 0x7F) { + $unicode[] = $char; // use the character "as is" because is ASCII + $numbytes = 1; + } elseif (($char >> 0x05) == 0x06) { // 2 bytes character (0x06 = 110 BIN) + $bytes[] = ($char - 0xC0) << 0x06; + $numbytes = 2; + } elseif (($char >> 0x04) == 0x0E) { // 3 bytes character (0x0E = 1110 BIN) + $bytes[] = ($char - 0xE0) << 0x0C; + $numbytes = 3; + } elseif (($char >> 0x03) == 0x1E) { // 4 bytes character (0x1E = 11110 BIN) + $bytes[] = ($char - 0xF0) << 0x12; + $numbytes = 4; + } else { + // use replacement character for other invalid sequences + $unicode[] = 0xFFFD; + $bytes = array(); + $numbytes = 1; + } + } elseif (($char >> 0x06) == 0x02) { // bytes 2, 3 and 4 must start with 0x02 = 10 BIN + $bytes[] = $char - 0x80; + if (count($bytes) == $numbytes) { + // compose UTF-8 bytes to a single unicode value + $char = $bytes[0]; + for($j = 1; $j < $numbytes; $j++) { + $char += ($bytes[$j] << (($numbytes - $j - 1) * 0x06)); + } + if ((($char >= 0xD800) AND ($char <= 0xDFFF)) OR ($char >= 0x10FFFF)) { + /* The definition of UTF-8 prohibits encoding character numbers between + U+D800 and U+DFFF, which are reserved for use with the UTF-16 + encoding form (as surrogate pairs) and do not directly represent + characters. */ + $unicode[] = 0xFFFD; // use replacement character + } + else { + $unicode[] = $char; // add char to array + } + // reset data for next char + $bytes = array(); + $numbytes = 1; + } + } else { + // use replacement character for other invalid sequences + $unicode[] = 0xFFFD; + $bytes = array(); + $numbytes = 1; + } + } + return $unicode; + } + + /** + * Converts UTF-8 strings to UTF16-BE.
+ * Encoding UTF-16: + * + * Encoding of a single character from an ISO 10646 character value to + * UTF-16 proceeds as follows. Let U be the character number, no greater + * than 0x10FFFF. + * + * 1) If U < 0x10000, encode U as a 16-bit unsigned integer and + * terminate. + * + * 2) Let U' = U - 0x10000. Because U is less than or equal to 0x10FFFF, + * U' must be less than or equal to 0xFFFFF. That is, U' can be + * represented in 20 bits. + * + * 3) Initialize two 16-bit unsigned integers, W1 and W2, to 0xD800 and + * 0xDC00, respectively. These integers each have 10 bits free to + * encode the character value, for a total of 20 bits. + * + * 4) Assign the 10 high-order bits of the 20-bit U' to the 10 low-order + * bits of W1 and the 10 low-order bits of U' to the 10 low-order + * bits of W2. Terminate. + * + * Graphically, steps 2 through 4 look like: + * U' = yyyyyyyyyyxxxxxxxxxx + * W1 = 110110yyyyyyyyyy + * W2 = 110111xxxxxxxxxx + *+ * @param string $str string to process. + * @param boolean $setbom if true set the Byte Order Mark (BOM = 0xFEFF) + * @return string + * @access protected + * @author Nicola Asuni + * @since 1.53.0.TC005 (2005-01-05) + * @uses UTF8StringToArray + */ + function UTF8ToUTF16BE($str, $setbom=true) { + if(!$this->isunicode) { + return $str; // string is not in unicode + } + $outstr = ""; // string to be returned + $unicode = $this->UTF8StringToArray($str); // array containing UTF-8 unicode values + $numitems = count($unicode); + + if ($setbom) { + $outstr .= "\xFE\xFF"; // Byte Order Mark (BOM) + } + foreach($unicode as $char) { + if($char == 0xFFFD) { + $outstr .= "\xFF\xFD"; // replacement character + } elseif ($char < 0x10000) { + $outstr .= chr($char >> 0x08); + $outstr .= chr($char & 0xFF); + } else { + $char -= 0x10000; + $w1 = 0xD800 | ($char >> 0x10); + $w2 = 0xDC00 | ($char & 0x3FF); + $outstr .= chr($w1 >> 0x08); + $outstr .= chr($w1 & 0xFF); + $outstr .= chr($w2 >> 0x08); + $outstr .= chr($w2 & 0xFF); + } + } + return $outstr; + } + + // ==================================================== + + /** + * Set header font. + * @param array $font font + * @since 1.1 + */ + function setHeaderFont($font) { + $this->header_font = $font; + } + + /** + * Set footer font. + * @param array $font font + * @since 1.1 + */ + function setFooterFont($font) { + $this->footer_font = $font; + } + + /** + * Set language array. + * @param array $language + * @since 1.1 + */ + function setLanguageArray($language) { + $this->l = $language; + } + + /** + * Set document barcode. + * @param string $bc barcode + */ + function setBarcode($bc="") { + $this->barcode = $bc; + } + + /** + * Print Barcode. + * @param int $x x position in user units + * @param int $y y position in user units + * @param int $w width in user units + * @param int $h height position in user units + * @param string $type type of barcode (I25, C128A, C128B, C128C, C39) + * @param string $style barcode style + * @param string $font font for text + * @param int $xres x resolution + * @param string $code code to print + */ + function writeBarcode($x, $y, $w, $h, $type, $style, $font, $xres, $code) { + require_once(dirname(__FILE__)."/barcode/barcode.php"); + require_once(dirname(__FILE__)."/barcode/i25object.php"); + require_once(dirname(__FILE__)."/barcode/c39object.php"); + require_once(dirname(__FILE__)."/barcode/c128aobject.php"); + require_once(dirname(__FILE__)."/barcode/c128bobject.php"); + require_once(dirname(__FILE__)."/barcode/c128cobject.php"); + + if (empty($code)) { + return; + } + + if (empty($style)) { + $style = BCS_ALIGN_LEFT; + $style |= BCS_IMAGE_PNG; + $style |= BCS_TRANSPARENT; + //$style |= BCS_BORDER; + //$style |= BCS_DRAW_TEXT; + //$style |= BCS_STRETCH_TEXT; + //$style |= BCS_REVERSE_COLOR; + } + if (empty($font)) {$font = BCD_DEFAULT_FONT;} + if (empty($xres)) {$xres = BCD_DEFAULT_XRES;} + + $scale_factor = 1.5 * $xres * $this->k; + $bc_w = round($w * $scale_factor); //width in points + $bc_h = round($h * $scale_factor); //height in points + + switch (strtoupper($type)) { + case "I25": { + $obj = new I25Object($bc_w, $bc_h, $style, $code); + break; + } + case "C128A": { + $obj = new C128AObject($bc_w, $bc_h, $style, $code); + break; + } + default: + case "C128B": { + $obj = new C128BObject($bc_w, $bc_h, $style, $code); + break; + } + case "C128C": { + $obj = new C128CObject($bc_w, $bc_h, $style, $code); + break; + } + case "C39": { + $obj = new C39Object($bc_w, $bc_h, $style, $code); + break; + } + } + + $obj->SetFont($font); + $obj->DrawObject($xres); + + //use a temporary file.... + $tmpName = tempnam(K_PATH_CACHE,'img'); + imagepng($obj->getImage(), $tmpName); + $this->Image($tmpName, $x, $y, $w, $h, 'png'); + $obj->DestroyObject(); + unset($obj); + unlink($tmpName); + } + + /** + * Returns the PDF data. + */ + function getPDFData() { + if($this->state < 3) { + $this->Close(); + } + return $this->buffer; + } + + // --- HTML PARSER FUNCTIONS --- + + /** + * Allows to preserve some HTML formatting.
' . $GLOBALS['strNoDatabases'] . '"); //remove all unsupported tags
+ //replace carriage returns, newlines and tabs
+ $repTable = array("\t" => " ", "\n" => " ", "\r" => " ", "\0" => " ", "\x0B" => " ");
+ $html = strtr($html, $repTable);
+ $pattern = '/(<[^>]+>)/Uu';
+ $a = preg_split($pattern, $html, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); //explodes the string
+
+ if (empty($this->lasth)) {
+ //set row height
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ }
+
+ foreach($a as $key=>$element) {
+ if (!preg_match($pattern, $element)) {
+ //Text
+ if($this->HREF) {
+ $this->addHtmlLink($this->HREF, $element, $fill);
+ }
+ elseif($this->tdbegin) {
+ if((strlen(trim($element)) > 0) AND ($element != " ")) {
+ $this->Cell($this->tdwidth, $this->tdheight, $this->unhtmlentities($element), $this->tableborder, '', $this->tdalign, $this->tdbgcolor);
+ }
+ elseif($element == " ") {
+ $this->Cell($this->tdwidth, $this->tdheight, '', $this->tableborder, '', $this->tdalign, $this->tdbgcolor);
+ }
+ }
+ else {
+ $this->Write($this->lasth, stripslashes($this->unhtmlentities($element)), '', $fill);
+ }
+ }
+ else {
+ $element = substr($element, 1, -1);
+ //Tag
+ if($element{0}=='/') {
+ $this->closedHTMLTagHandler(strtolower(substr($element, 1)));
+ }
+ else {
+ //Extract attributes
+ // get tag name
+ preg_match('/([a-zA-Z0-9]*)/', $element, $tag);
+ $tag = strtolower($tag[0]);
+ // get attributes
+ preg_match_all('/([^=\s]*)=["\']?([^"\']*)["\']?/', $element, $attr_array, PREG_PATTERN_ORDER);
+ $attr = array(); // reset attribute array
+ while(list($id,$name)=each($attr_array[1])) {
+ $attr[strtolower($name)] = $attr_array[2][$id];
+ }
+ $this->openHTMLTagHandler($tag, $attr, $fill);
+ }
+ }
+ }
+ if ($ln) {
+ $this->Ln($this->lasth);
+ }
+ }
+
+ /**
+ * Prints a cell (rectangular area) with optional borders, background color and html text string. The upper-left corner of the cell corresponds to the current position. After the call, the current position moves to the right or to the next line.
+ * If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
+ * @param float $w Cell width. If 0, the cell extends up to the right margin.
+ * @param float $h Cell minimum height. The cell extends automatically if needed.
+ * @param float $x upper-left corner X coordinate
+ * @param float $y upper-left corner Y coordinate
+ * @param string $html html text to print. Default value: empty string.
+ * @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:
or a string containing some or all of the following characters (in any order):
+ * @param int $ln Indicates where the current position should go after the call. Possible values are:
+ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
+ * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
+ * @see Cell()
+ */
+ function writeHTMLCell($w, $h, $x, $y, $html='', $border=0, $ln=0, $fill=0) {
+
+ if (empty($this->lasth)) {
+ //set row height
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ }
+
+ if (empty($x)) {
+ $x = $this->GetX();
+ }
+ if (empty($y)) {
+ $y = $this->GetY();
+ }
+
+ // get current page number
+ $pagenum = $this->page;
+
+ $this->SetX($x);
+ $this->SetY($y);
+
+ if(empty($w)) {
+ $w = $this->fw - $x - $this->rMargin;
+ }
+
+ // store original margin values
+ $lMargin = $this->lMargin;
+ $rMargin = $this->rMargin;
+
+ // set new margin values
+ $this->SetLeftMargin($x);
+ $this->SetRightMargin($this->fw - $x - $w);
+
+ // calculate remaining vertical space on page
+ $restspace = $this->getPageHeight() - $this->GetY() - $this->getBreakMargin();
+
+ $this->writeHTML($html, true, $fill); // write html text
+
+ $currentY = $this->GetY();
+
+ // check if a new page has been created
+ if ($this->page > $pagenum) {
+ // design a cell around the text on first page
+ $currentpage = $this->page;
+ $this->page = $pagenum;
+ $this->SetY($this->getPageHeight() - $restspace - $this->getBreakMargin());
+ $h = $restspace - 1;
+ $this->Cell($w, $h, "", $border, $ln, 'L', 0);
+ // design a cell around the text on last page
+ $this->page = $currentpage;
+ $h = $currentY - $this->tMargin;
+ $this->SetY($this->tMargin); // put cursor at the beginning of text
+ $this->Cell($w, $h, "", $border, $ln, 'L', 0);
+ } else {
+ $h = max($h, ($currentY - $y));
+ $this->SetY($y); // put cursor at the beginning of text
+ // design a cell around the text
+ $this->Cell($w, $h, "", $border, $ln, 'L', 0);
+ }
+
+ // restore original margin values
+ $this->SetLeftMargin($lMargin);
+ $this->SetRightMargin($rMargin);
+
+ if ($ln) {
+ $this->Ln(0);
+ }
+ }
+
+ /**
+ * Process opening tags.
+ * @param string $tag tag name (in uppercase)
+ * @param string $attr tag attribute (in uppercase)
+ * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
+ * @access private
+ */
+ function openHTMLTagHandler($tag, $attr, $fill=0) {
+ //Opening tag
+ switch($tag) {
+ case 'table': {
+ if ((isset($attr['border'])) AND ($attr['border'] != '')) {
+ $this->tableborder = $attr['border'];
+ }
+ else {
+ $this->tableborder = 0;
+ }
+ break;
+ }
+ case 'tr': {
+ break;
+ }
+ case 'td':
+ case 'th': {
+ if ((isset($attr['width'])) AND ($attr['width'] != '')) {
+ $this->tdwidth = ($attr['width']/4);
+ }
+ else {
+ $this->tdwidth = (($this->w - $this->lMargin - $this->rMargin) / $this->default_table_columns);
+ }
+ if ((isset($attr['height'])) AND ($attr['height'] != '')) {
+ $this->tdheight=($attr['height'] / $this->k);
+ }
+ else {
+ $this->tdheight = $this->lasth;
+ }
+ if ((isset($attr['align'])) AND ($attr['align'] != '')) {
+ switch ($attr['align']) {
+ case 'center': {
+ $this->tdalign = "C";
+ break;
+ }
+ case 'right': {
+ $this->tdalign = "R";
+ break;
+ }
+ default:
+ case 'left': {
+ $this->tdalign = "L";
+ break;
+ }
+ }
+ }
+ if ((isset($attr['bgcolor'])) AND ($attr['bgcolor'] != '')) {
+ $coul = $this->convertColorHexToDec($attr['bgcolor']);
+ $this->SetFillColor($coul['R'], $coul['G'], $coul['B']);
+ $this->tdbgcolor=true;
+ }
+ $this->tdbegin=true;
+ break;
+ }
+ case 'hr': {
+ $this->Ln();
+ if ((isset($attr['width'])) AND ($attr['width'] != '')) {
+ $hrWidth = $attr['width'];
+ }
+ else {
+ $hrWidth = $this->w - $this->lMargin - $this->rMargin;
+ }
+ $x = $this->GetX();
+ $y = $this->GetY();
+ $this->SetLineWidth(0.2);
+ $this->Line($x, $y, $x + $hrWidth, $y);
+ $this->SetLineWidth(0.2);
+ $this->Ln();
+ break;
+ }
+ case 'strong': {
+ $this->setStyle('b', true);
+ break;
+ }
+ case 'em': {
+ $this->setStyle('i', true);
+ break;
+ }
+ case 'b':
+ case 'i':
+ case 'u': {
+ $this->setStyle($tag, true);
+ break;
+ }
+ case 'a': {
+ $this->HREF = $attr['href'];
+ break;
+ }
+ case 'img': {
+ if(isset($attr['src'])) {
+ // replace relative path with real server path
+ $attr['src'] = str_replace(K_PATH_URL_CACHE, K_PATH_CACHE, $attr['src']);
+ if(!isset($attr['width'])) {
+ $attr['width'] = 0;
+ }
+ if(!isset($attr['height'])) {
+ $attr['height'] = 0;
+ }
+
+ $this->Image($attr['src'], $this->GetX(),$this->GetY(), $this->pixelsToMillimeters($attr['width']), $this->pixelsToMillimeters($attr['height']));
+ //$this->SetX($this->img_rb_x);
+ $this->SetY($this->img_rb_y);
+
+ }
+ break;
+ }
+ case 'ul': {
+ $this->listordered = false;
+ $this->listcount = 0;
+ break;
+ }
+ case 'ol': {
+ $this->listordered = true;
+ $this->listcount = 0;
+ break;
+ }
+ case 'li': {
+ $this->Ln();
+ if ($this->listordered) {
+ $this->lispacer = " ".(++$this->listcount).". ";
+ }
+ else {
+ //unordered list simbol
+ $this->lispacer = " - ";
+ }
+ $this->Write($this->lasth, $this->lispacer, '', $fill);
+ break;
+ }
+ case 'blockquote':
+ case 'br': {
+ $this->Ln();
+ if(strlen($this->lispacer) > 0) {
+ $this->x += $this->GetStringWidth($this->lispacer);
+ }
+ break;
+ }
+ case 'p': {
+ $this->Ln();
+ $this->Ln();
+ break;
+ }
+ case 'sup': {
+ $currentFontSize = $this->FontSize;
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
+ $this->SetXY($this->GetX(), $this->GetY() - (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
+ break;
+ }
+ case 'sub': {
+ $currentFontSize = $this->FontSize;
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
+ $this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
+ break;
+ }
+ case 'small': {
+ $currentFontSize = $this->FontSize;
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
+ $this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)/3));
+ break;
+ }
+ case 'font': {
+ if (isset($attr['color']) AND $attr['color']!='') {
+ $coul = $this->convertColorHexToDec($attr['color']);
+ $this->SetTextColor($coul['R'],$coul['G'],$coul['B']);
+ $this->issetcolor=true;
+ }
+ if (isset($attr['face']) and in_array(strtolower($attr['face']), $this->fontlist)) {
+ $this->SetFont(strtolower($attr['FACE']));
+ $this->issetfont=true;
+ }
+ if (isset($attr['size'])) {
+ $headsize = intval($attr['size']);
+ } else {
+ $headsize = 0;
+ }
+ $currentFontSize = $this->FontSize;
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetFontSize($this->FontSizePt + $headsize);
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ break;
+ }
+ case 'h1':
+ case 'h2':
+ case 'h3':
+ case 'h4':
+ case 'h5':
+ case 'h6': {
+ $headsize = (4 - substr($tag, 1)) * 2;
+ $currentFontSize = $this->FontSize;
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetFontSize($this->FontSizePt + $headsize);
+ $this->setStyle('b', true);
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ break;
+ }
+ }
+ }
+
+ /**
+ * Process closing tags.
+ * @param string $tag tag name (in uppercase)
+ * @access private
+ */
+ function closedHTMLTagHandler($tag) {
+ //Closing tag
+ switch($tag) {
+ case 'td':
+ case 'th': {
+ $this->tdbegin = false;
+ $this->tdwidth = 0;
+ $this->tdheight = 0;
+ $this->tdalign = "L";
+ $this->tdbgcolor = false;
+ $this->SetFillColor($this->prevFillColor[0], $this->prevFillColor[1], $this->prevFillColor[2]);
+ break;
+ }
+ case 'tr': {
+ $this->Ln();
+ break;
+ }
+ case 'table': {
+ $this->tableborder=0;
+ break;
+ }
+ case 'strong': {
+ $this->setStyle('b', false);
+ break;
+ }
+ case 'em': {
+ $this->setStyle('i', false);
+ break;
+ }
+ case 'b':
+ case 'i':
+ case 'u': {
+ $this->setStyle($tag, false);
+ break;
+ }
+ case 'a': {
+ $this->HREF = '';
+ break;
+ }
+ case 'sup': {
+ $currentFontSize = $this->FontSize;
+ $this->SetFontSize($this->tempfontsize);
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetXY($this->GetX(), $this->GetY() - (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
+ break;
+ }
+ case 'sub': {
+ $currentFontSize = $this->FontSize;
+ $this->SetFontSize($this->tempfontsize);
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
+ break;
+ }
+ case 'small': {
+ $currentFontSize = $this->FontSize;
+ $this->SetFontSize($this->tempfontsize);
+ $this->tempfontsize = $this->FontSizePt;
+ $this->SetXY($this->GetX(), $this->GetY() - (($this->FontSize - $currentFontSize)/3));
+ break;
+ }
+ case 'font': {
+ if ($this->issetcolor == true) {
+ $this->SetTextColor($this->prevTextColor[0], $this->prevTextColor[1], $this->prevTextColor[2]);
+ }
+ if ($this->issetfont) {
+ $this->FontFamily = $this->prevFontFamily;
+ $this->FontStyle = $this->prevFontStyle;
+ $this->SetFont($this->FontFamily);
+ $this->issetfont = false;
+ }
+ $currentFontSize = $this->FontSize;
+ $this->SetFontSize($this->tempfontsize);
+ $this->tempfontsize = $this->FontSizePt;
+ //$this->TextColor = $this->prevTextColor;
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ break;
+ }
+ case 'ul': {
+ $this->Ln();
+ break;
+ }
+ case 'ol': {
+ $this->Ln();
+ break;
+ }
+ case 'li': {
+ $this->lispacer = "";
+ break;
+ }
+ case 'h1':
+ case 'h2':
+ case 'h3':
+ case 'h4':
+ case 'h5':
+ case 'h6': {
+ $currentFontSize = $this->FontSize;
+ $this->SetFontSize($this->tempfontsize);
+ $this->tempfontsize = $this->FontSizePt;
+ $this->setStyle('b', false);
+ $this->Ln();
+ $this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
+ break;
+ }
+ default : {
+ break;
+ }
+ }
+ }
+
+ /**
+ * Sets font style.
+ * @param string $tag tag name (in lowercase)
+ * @param boolean $enable
+ * @access private
+ */
+ function setStyle($tag, $enable) {
+ //Modify style and select corresponding font
+ $this->$tag += ($enable ? 1 : -1);
+ $style='';
+ foreach(array('b', 'i', 'u') as $s) {
+ if($this->$s > 0) {
+ $style .= $s;
+ }
+ }
+ $this->SetFont('', $style);
+ }
+
+ /**
+ * Output anchor link.
+ * @param string $url link URL
+ * @param string $name link name
+ * @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
+ * @access public
+ */
+ function addHtmlLink($url, $name, $fill=0) {
+ //Put a hyperlink
+ $this->SetTextColor(0, 0, 255);
+ $this->setStyle('u', true);
+ $this->Write($this->lasth, $name, $url, $fill);
+ $this->setStyle('u', false);
+ $this->SetTextColor(0);
+ }
+
+ /**
+ * Returns an associative array (keys: R,G,B) from
+ * a hex html code (e.g. #3FE5AA).
+ * @param string $color hexadecimal html color [#rrggbb]
+ * @return array
+ * @access private
+ */
+ function convertColorHexToDec($color = "#000000"){
+ $tbl_color = array();
+ $tbl_color['R'] = hexdec(substr($color, 1, 2));
+ $tbl_color['G'] = hexdec(substr($color, 3, 2));
+ $tbl_color['B'] = hexdec(substr($color, 5, 2));
+ return $tbl_color;
+ }
+
+ /**
+ * Converts pixels to millimeters in 72 dpi.
+ * @param int $px pixels
+ * @return float millimeters
+ * @access private
+ */
+ function pixelsToMillimeters($px){
+ return $px * 25.4 / 72;
+ }
+
+ /**
+ * Reverse function for htmlentities.
+ * Convert entities in UTF-8.
+ *
+ * @param $text_to_convert Text to convert.
+ * @return string converted
+ */
+ function unhtmlentities($text_to_convert) {
+ require_once(dirname(__FILE__).'/html_entity_decode_php4.php');
+ return html_entity_decode_php4($text_to_convert);
+ }
+ } // END OF CLASS
+
+ //Handle special IE contype request
+ if(isset($_SERVER['HTTP_USER_AGENT']) AND ($_SERVER['HTTP_USER_AGENT']=='contype')) {
+ header('Content-Type: application/pdf');
+ exit;
+ }
+
+}
+//============================================================+
+// END OF FILE
+//============================================================+
+?>
diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php
index d2c5fc024..76ada0df2 100644
--- a/libraries/transformations.lib.php
+++ b/libraries/transformations.lib.php
@@ -11,14 +11,19 @@ function PMA_transformation_getOptions($string) {
/* Parse options */
for ($nextToken = strtok($string, ','); $nextToken !== false; $nextToken = strtok(',')) {
- if ($nextToken{0} == '\'') {
- $nextToken = $nextToken{strlen($nextToken) - 1} == '\'' ? substr($nextToken, 1, -1) : substr($nextToken, 1) . ' ' . strtok('\'');
- $transform_options[] = $nextToken;
+ $trimmed = trim($nextToken);
+ if ($trimmed{0} == '\'' && $trimmed{strlen($trimmed) - 1} == '\'') {
+ $transform_options[] = substr($trimmed, 1, -1);
} else {
- $trimmed = trim($nextToken);
if ($trimmed{0} == '\'') {
- $trimmed = $nextToken{strlen($nextToken) - 1} == '\'' ? substr($nextToken, 1, -1) : substr($nextToken, 1) . ' ' . strtok('\'');
- $transform_options[] = $trimmed;
+ $trimmed= ltrim($nextToken);
+ while ($nextToken !== false) {
+ $nextToken = strtok(',');
+ $trimmed .= $nextToken;
+ $rtrimmed = rtrim($trimmed);
+ if ($rtrimmed{strlen($rtrimmed) - 1} == '\'') break;
+ }
+ $transform_options[] = substr($rtrimmed, 1, -1);
} else {
$transform_options[] = $nextToken;
}
diff --git a/libraries/transformations/application_octetstream__download.inc.php b/libraries/transformations/application_octetstream__download.inc.php
index de8e2f82f..e4857204f 100644
--- a/libraries/transformations/application_octetstream__download.inc.php
+++ b/libraries/transformations/application_octetstream__download.inc.php
@@ -3,14 +3,23 @@
// vim: expandtab sw=4 ts=4 sts=4:
function PMA_transformation_application_octetstream__download(&$buffer, $options = array(), $meta = '') {
-global $row;
+ global $row, $fields_meta;
if (isset($options[0]) && !empty($options[0])) {
$cn = $options[0]; // filename
} else {
- if (isset($options[1]) && !empty($options[1]) && isset($row[$options[1]])) {
- $cn = $row[$options[1]];
- } else {
+ if (isset($options[1]) && !empty($options[1])) {
+ foreach($fields_meta as $key => $val) {
+ if ($val->name == $options[1]) {
+ $pos = $key;
+ break;
+ }
+ }
+ if (isset($pos)) {
+ $cn = $row[$pos];
+ }
+ }
+ if (empty($cn)) {
$cn = 'binary_file.dat';
}
}
diff --git a/navigation.php b/navigation.php
index 36aaebc8d..c6360a17f 100644
--- a/navigation.php
+++ b/navigation.php
@@ -165,26 +165,30 @@ if (! $GLOBALS['server']) {
echo '