view row counting: better logic and message

This commit is contained in:
Marc Delisle
2008-05-10 13:27:38 +00:00
parent 3a228111ae
commit 050406d7f6
56 changed files with 59 additions and 67 deletions

View File

@@ -185,11 +185,8 @@ $row_count = 0;
$hidden_fields = array();
$odd_row = true;
$at_least_one_view_exceeds_max_count = false;
$sum_row_count_pre = '';
$max_exact_count_note = PMA_showHint(PMA_sanitize(sprintf($strViewMaxExactCount, PMA_formatNumber($cfg['MaxExactCountViews'], 0), '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')));
foreach ($tables as $keyname => $each_table) {
// loic1: Patch from Joshua Nye <josh at boxcarmedia.com> to get valid
// statistics whatever is the table type
@@ -247,14 +244,10 @@ foreach ($tables as $keyname => $each_table) {
// for a view, the ENGINE is null
case null :
case 'SYSTEM VIEW' :
if ($each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCountViews']) {
$each_table['COUNTED'] = true;
$each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
// countRecords() takes care of $cfg['MaxExactCountViews']
$each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
$each_table['TABLE_NAME'], $return = true, $force_exact = true,
$is_view = true);
} else {
$each_table['COUNTED'] = false;
}
$table_is_view = true;
break;
default :
@@ -374,11 +367,10 @@ foreach ($tables as $keyname => $each_table) {
// so ensure that we'll display "in use" below for a table
// that needs to be repaired
if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null || $table_is_view)) {
if ($table_is_view && $each_table['TABLE_ROWS'] >= $cfg['MaxExactCountViews'] && (! $each_table['COUNTED'])) {
$at_least_one_view_exceeds_max_count = true;
if ($table_is_view) {
$row_count_pre = '~';
$sum_row_count_pre = '~';
$show_superscript = $max_exact_count_note;
$show_superscript = PMA_showHint(PMA_sanitize(sprintf($strViewHasAtLeast, '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')));
} elseif($each_table['ENGINE'] == 'InnoDB' && (! $each_table['COUNTED'])) {
// InnoDB table: we did not get an accurate row count
$row_count_pre = '~';

View File

@@ -934,7 +934,6 @@ $strVar = 'Variable'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
@@ -1072,4 +1071,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -942,7 +942,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1071,4 +1070,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -944,7 +944,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1073,4 +1072,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -938,7 +938,6 @@ $strUseThisValue = 'Use this value'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //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
@@ -1068,4 +1067,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -936,7 +936,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1065,4 +1064,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -927,7 +927,6 @@ $strViewDumpDatabases = 'Праглядзець дамп (схему) базаў
$strViewDumpDB = 'Праглядзець дамп (схуму) базы дадзеных';
$strViewDump = 'Праглядзець дамп (схему) табліцы';
$strViewHasBeenDropped = 'Выгляд %s быў выдалены';
$strViewMaxExactCount = 'У гэтым праглядзе больш за %d радкоў. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s.';
$strWebServerUploadDirectoryError = 'Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў';
$strWebServerUploadDirectory = 'тэчка вэб-сэрвэра для загрузкі файлаў';
@@ -1048,4 +1047,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -925,7 +925,6 @@ $strViewDumpDatabases = 'Prahladzieć damp (schiemu) bazaŭ dadzienych';
$strViewDumpDB = 'Prahladzieć damp (schumu) bazy dadzienych';
$strViewDump = 'Prahladzieć damp (schiemu) tablicy';
$strViewHasBeenDropped = 'Vyhlad %s byŭ vydaleny';
$strViewMaxExactCount = 'U hetym prahladzie bolš za %d radkoŭ. Kali łaska, źviarniciesia da %sdakumentacyi%s.';
$strView = 'Vyhlad';
$strWebServerUploadDirectoryError = 'Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ';
@@ -1047,4 +1046,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -942,7 +942,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1071,4 +1070,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -987,7 +987,6 @@ $strViewDumpDatabases = 'Ver dump (esquema) dos Bancos de Dados';
$strViewDumpDB = 'Ver o esquema do Banco de Dados';
$strViewDump = 'Ver o esquema da tabela';
$strViewHasBeenDropped = 'Visão %s foi apagada';
$strViewMaxExactCount = 'Essa visão tem mais que %s linhas. Veja referências na %sdocumentation%s.';
$strViewName = 'Nome da VISÃO';
$strView = 'Visão';
@@ -1045,4 +1044,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -742,7 +742,6 @@ $strViewDumpDatabases = 'Преглед на схемата на базата о
$strViewDumpDB = 'Схема на БД';
$strViewDump = 'Схема на таблицата';
$strViewHasBeenDropped = 'Изглед %s беше изтрит';
$strViewMaxExactCount = 'Този изглед има повече от %s реда. Моля, обърнете се към %sдокументацията%s.';
$strWebServerUploadDirectoryError = 'Директорията която сте указали за upload не може да бъде достигната';
$strWebServerUploadDirectory = 'директорията за upload на уеб сървъра';
@@ -1068,4 +1067,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -984,7 +984,6 @@ $strViewDumpDatabases = 'Veure volcat (esquema) de les bases de dades';
$strViewDumpDB = 'Veure l\'esquema de la base de dades';
$strViewDump = 'Veure un esquema de la taula';
$strViewHasBeenDropped = 'Vista %s esborrada';
$strViewMaxExactCount = 'Aquesta vista té més de %d arxius. Consulteu a %sdocumentació%s.';
$strViewName = 'Nom de VISTA';
$strView = 'Vista';
@@ -1043,4 +1042,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -944,7 +944,6 @@ $strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1073,4 +1072,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -795,7 +795,6 @@ $strViewDump = '檢視資料表的備份概要 (dump schema)';
$strViewDumpDatabases = '顯示資料庫概要 (schema)';
$strViewDumpDB = '檢視資料庫的備份概要 (dump schema)';
$strViewHasBeenDropped = '檢視 %s 己被刪除.';
$strViewMaxExactCount = '這個檢查已超過 %s 列, 詳情請參看此%s文件%s.';
$strWebServerUploadDirectory = 'Web 伺服器上載目錄';
$strWebServerUploadDirectoryError = '設定之上載目錄錯誤,未能使用';
@@ -1052,4 +1051,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -990,7 +990,6 @@ $strViewDumpDatabases = 'Prikaži ispis (shemu) baza podataka';
$strViewDumpDB = 'Prikaži ispis (shemu) baze podataka';
$strViewDump = 'Prikaži ispis (shemu) tablice';
$strViewHasBeenDropped = 'Index %s je ispušten';
$strViewMaxExactCount = 'Ovaj prikaz sadrži više od %s redaka. Pogledajte %sdokumentaciju%s.';
$strViewName = 'Naziv prikaza';
$strView = 'Prikaz';
@@ -1046,4 +1045,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1022,7 +1022,6 @@ $strViewDumpDatabases = 'Export databází';
$strViewDumpDB = 'Export databáze';
$strViewDump = 'Export tabulky';
$strViewHasBeenDropped = 'Pohled %s byl odstraněn';
$strViewMaxExactCount = 'Tento pohled má více než %d záznamů. Viz %sdokumentace%s.';
$strViewName = 'Jméno pohledu';
$strView = 'Pohled';
@@ -1047,4 +1046,5 @@ $strZip = '„zazipováno“';
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -986,7 +986,6 @@ $strViewDumpDatabases = 'Vis dump (skema) for databaser';
$strViewDumpDB = 'Vis dump (skema) af database';
$strViewDump = 'Vis dump (skema) over tabel';
$strViewHasBeenDropped = 'Visning %s er blevet droppet';
$strViewMaxExactCount = 'Denne visning har mere end %d rækker. Se venligst %sdokumentationen%s.';
$strViewName = 'VIEW navn';
$strView = 'Visning';
@@ -1047,4 +1046,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -940,7 +940,6 @@ $strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1069,4 +1068,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1024,8 +1024,8 @@ $strVersionInformation = 'Version information';
$strViewDumpDatabases = 'View dump (schema) of databases';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDump = 'View dump (schema) of table';
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.';
$strViewHasBeenDropped = 'View %s has been dropped';
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.';
$strViewName = 'VIEW name';
$strView = 'View';

View File

@@ -964,7 +964,6 @@ $strViewDumpDatabases = 'Näita andmebaaside sisu (skeemi)';
$strViewDumpDB = 'Vaata andmebaasi väljundit (skeemi)';
$strViewDump = 'Vaata tabeli väljundit (skeemi)';
$strViewHasBeenDropped = 'Vaade %s on kustutatud';
$strViewMaxExactCount = 'Sellel vaatel on rohkem kui %s rida. Palun vaata %sdocumentation%s.';
$strView = 'Vaade';
$strWebServerUploadDirectoryError = 'Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav';
@@ -1053,4 +1052,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1012,7 +1012,6 @@ $strViewDumpDatabases = 'Näytä tietokannoista vedos (skeema)';
$strViewDumpDB = 'Tee vedos tietokannasta';
$strViewDump = 'Tee vedos taulusta';
$strViewHasBeenDropped = "Näkymä %s on poistettu";
$strViewMaxExactCount = 'Tässä näkymässä on yli %s riviä. Katso lisätietoja %sdokumentaatiosta%s.';
$strView = "Näkymä";
$strViewName = 'VIEW-arvon nimi';
@@ -1047,4 +1046,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1019,7 +1019,6 @@ $strViewDump = '<b>Afficher le schéma</b> de la table';
$strViewDumpDatabases = 'Schéma et/ou contenu des bases de données';
$strViewDumpDB = 'Schéma et données de la base ';
$strViewHasBeenDropped = 'La vue %s a été supprimée';
$strViewMaxExactCount = 'Cette vue comporte plus de %d enregistrements. Veuillez vous référer à la %sdocumentation%s.';
$strViewName = 'Nom de la vue';
$strView = 'Vue';
@@ -1044,4 +1043,5 @@ $strZip = '"zippé"';
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -988,7 +988,6 @@ $strViewDumpDatabases = 'Ver o volcado das bases de datos';
$strViewDumpDB = 'Ver o esquema do volcado da base de datos';
$strViewDump = 'Ver o esquema do volcado da tabela';
$strViewHasBeenDropped = 'Deixouse a vista %s';
$strViewMaxExactCount = 'Esta vista ten máis de %s fileiras. Consulte a %sdocumentación%.';
$strViewName = 'Nome da VISTA';
$strView = 'Vista';
@@ -1046,4 +1045,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -935,7 +935,6 @@ $strVar = 'Variable'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
@@ -1073,4 +1072,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1018,7 +1018,6 @@ $strViewDump = 'Dump (Schema) der Tabelle anzeigen';
$strViewDumpDB = 'Dump (Schema) der Datenbank anzeigen';
$strViewDumpDatabases = 'Dump (Schema) der Datenbanken anzeigen';
$strViewHasBeenDropped = 'Die Ansicht %s wurde gelöscht';
$strViewMaxExactCount = 'Dieses View hat mehr als %d Zeilen. Bitte schlagen Sie im %sHandbuch%s nach.';
$strViewName = 'VIEW Name';
$strWebServerUploadDirectory = 'Upload-Verzeichnis auf dem Webserver';
@@ -1053,4 +1052,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -941,7 +941,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1070,4 +1069,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -933,7 +933,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary PHP extensions as described in the %sdocumentation%s.'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
@@ -1065,4 +1064,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -934,7 +934,6 @@ $strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewDumpDB = 'View dump (schema) of database'; //to translate
$strViewDump = 'View dump (schema) of table'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
@@ -1073,4 +1072,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -824,7 +824,6 @@ $strViewDumpDatabases = 'Adatbázis kiírás (séma) megtekintése';
$strViewDumpDB = 'Adatbázis kiírás (vázlat) megnézése';
$strViewDump = 'Tábla kiírás (vázlat) megnézése';
$strViewHasBeenDropped = '%s nézet eldobva';
$strViewMaxExactCount = 'Ez a nézet több, mint %s sort tartalmaz. Nézz utána a %sdokumentációban%s.';
$strViewName = 'Nézet neve';
$strView = 'Nézet';
@@ -1064,4 +1063,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -937,7 +937,6 @@ $strUnsupportedCompressionDetected = 'You attempted to load file with unsupporte
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strQueryResultsOperations = 'Query results operations'; //to translate
$strAddClause = 'Add %s'; //to translate
@@ -1063,4 +1062,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -990,7 +990,6 @@ $strViewDumpDatabases = 'Visualizza il dump (schema) dei databases';
$strViewDumpDB = 'Visualizza dump (schema) del database';
$strViewDump = 'Visualizza dump (schema) della tabella';
$strViewHasBeenDropped = 'La vista %s è stata eliminata';
$strViewMaxExactCount = 'Questa vista ha più di %d righe. Per informazioni fare riferimento a %sdocumentation%s.';
$strViewName = 'Nome VISTA';
$strView = 'Vista';
@@ -1048,4 +1047,5 @@ $strAboutphpMyAdmin = 'About phpMyAdmin'; //to translate
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -994,7 +994,6 @@ $strViewDumpDatabases = 'データベースのダンプ(スキーマ)表示';
$strViewDumpDB = 'DB のダンプ(スキーマ)表示';
$strViewDump = 'テーブルのダンプ(スキーマ)表示';
$strViewHasBeenDropped = 'ビュー %s を破棄しました';
$strViewMaxExactCount = 'ビューの行数が %s を越えました。%sドキュメント%s をご覧ください';
$strViewName = 'VIEW の名前';
$strWebServerUploadDirectoryError = '指定したアップロードディレクトリが利用できません';
@@ -1064,4 +1063,5 @@ $strWebServerInformation = 'ウェブサーバ情報'; //to translate
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -934,7 +934,6 @@ $strUseThisValue = 'Use this value'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWestEuropean = 'West European'; //to translate
@@ -1068,4 +1067,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -941,7 +941,6 @@ $strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1070,4 +1069,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -937,7 +937,6 @@ $strUnsupportedCompressionDetected = 'You attempted to load file with unsupporte
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strQueryResultsOperations = 'Query results operations'; //to translate
$strAddClause = 'Add %s'; //to translate
@@ -1063,4 +1062,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1009,7 +1009,6 @@ $strUploadErrorUnknown = 'Unknown error in file upload.'; //to translate
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUploadsNotAllowed = 'File uploads are not allowed on this server.'; //to translate
$strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strViewName = 'VIEW name'; //to translate
$strProfiling = 'Profiling'; //to translate
$strPartitionDefinition = 'PARTITION definition'; //to translate
@@ -1048,4 +1047,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -949,7 +949,6 @@ $strUseThisValue = 'Use this value'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWestEuropean = 'West European'; //to translate
@@ -1085,4 +1084,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -942,7 +942,6 @@ $strUnsupportedCompressionDetected = 'You attempted to load file with unsupporte
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUsedPhpExtensions = 'Used PHP extensions'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strQueryResultsOperations = 'Query results operations'; //to translate
$strAddClause = 'Add %s'; //to translate
@@ -1068,4 +1067,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1012,7 +1012,6 @@ $strViewDump = 'Vis dump (skjema) av tabell';
$strViewDumpDatabases = 'Vis dumpet skjema av databaser';
$strViewDumpDB = 'Vis dump (skjema) av database';
$strViewHasBeenDropped = 'Visningen %s har blitt slettet';
$strViewMaxExactCount = 'Denne visningen har mer enn %d rader. Les i %sdocumentation%s.';
$strViewName = 'VIEW navn';
$strWebServerUploadDirectory = 'webtjener opplastingskatalog';
@@ -1045,4 +1044,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -933,7 +933,6 @@ $strVar = 'Variable'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
@@ -1070,4 +1069,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -919,7 +919,6 @@ $strViewDumpDatabases = 'Zrzut baz danych';
$strViewDumpDB = 'Zrzut bazy danych';
$strViewDump = 'Zrzut tabeli';
$strViewHasBeenDropped = 'Perspektywa %s została usunięta';
$strViewMaxExactCount = 'Perspektywa ma ponad %d rekordów. Proszę zajrzeć do %sdokumentacji%s.';
$strView = 'Perspektywa';
$strWebServerUploadDirectoryError = 'Katalog ustalony dla uploadu jest nieosiągalny';
@@ -1041,4 +1040,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -943,7 +943,6 @@ $strValidatorError = 'The SQL validator could not be initialized. Please check i
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWildcard = 'wildcard'; //to translate
@@ -1074,4 +1073,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1024,7 +1024,6 @@ $strUploadErrorIniSize = 'The uploaded file exceeds the upload_max_filesize dire
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUploadsNotAllowed = 'File uploads are not allowed on this server.'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strViewName = 'VIEW name'; //to translate
$strPartitionDefinition = 'PARTITION definition'; //to translate
@@ -1062,4 +1061,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -994,7 +994,6 @@ $strViewDump = 'Отобразить дамп (схему) таблицы';
$strViewDumpDatabases = 'Отобразить дамп (схему) баз данных';
$strViewDumpDB = 'Отобразить дамп (схему) базы данных';
$strViewHasBeenDropped = 'Представление %s было удалено';
$strViewMaxExactCount = 'Это представление содержит больше %s строк. За разъяснениями, обратитесь к %sдокументации%s.';
$strViewName = 'VIEW название';
$strWebServerUploadDirectory = 'Из каталога загрузки';
@@ -1049,4 +1048,5 @@ $strAboutphpMyAdmin = 'About phpMyAdmin'; //to translate
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -990,7 +990,6 @@ $strViewDumpDatabases = 'Прикажи садржај (схему) базе';
$strViewDumpDB = 'Прикажи садржај (схему) базе';
$strViewDump = 'Прикажи садржај (схему) табеле';
$strViewHasBeenDropped = 'Поглед %s је одбачен';
$strViewMaxExactCount = 'Овај поглед има више од %d редова. Молимо погледајте %sдокументацију%s.';
$strViewName = 'назив за VIEW';
$strView = 'Поглед';
@@ -1047,4 +1046,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -990,7 +990,6 @@ $strViewDumpDatabases = 'Prikaži sadržaj (shemu) baze';
$strViewDumpDB = 'Prikaži sadržaj (shemu) baze';
$strViewDump = 'Prikaži sadržaj (shemu) tabele';
$strViewHasBeenDropped = 'Pogled %s je odbačen';
$strViewMaxExactCount = 'Ovaj pogled ima više od %d redova. Molimo pogledajte %sdokumentaciju%s.';
$strViewName = 'naziv za VIEW';
$strView = 'Pogled';
@@ -1047,4 +1046,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -927,7 +927,6 @@ $strViewDumpDatabases = 'View dump (schema) of databases';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDump = 'View dump (schema) of table';
$strViewHasBeenDropped = 'View %s has been dropped';
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.';
$strView = 'දර්ශනය කරන්න';
$strWebServerUploadDirectoryError = 'අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක';
@@ -1050,4 +1049,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -920,7 +920,6 @@ $strViewDumpDatabases = 'Export databáz';
$strViewDumpDB = 'Zobraziť dump (schému) databázy';
$strViewDump = 'Zobraziť dump (schému) tabuľky';
$strViewHasBeenDropped = 'Pohľad %s bol odstránený';
$strViewMaxExactCount = 'Tento pohľad obsahuje viac ako %s riadkov. Viď %sdokumentácia%s.';
$strView = 'Pohľad';
$strWebServerUploadDirectoryError = 'Adresár určený pre upload súborov sa nedá otvoriť';
@@ -1048,4 +1047,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -938,7 +938,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //to translate
$strWriteRequests = 'Write requests'; //to translate
@@ -1067,4 +1066,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -986,7 +986,6 @@ $strViewDumpDatabases = 'Ver el volcado (schema) de la base de datos';
$strViewDumpDB = 'Ver el volcado esquema de la base de datos';
$strViewDump = 'Mostrar el volcado esquema de la tabla';
$strViewHasBeenDropped = 'Se descartó el modo de visualización %s';
$strViewMaxExactCount = 'Esta visualización tiene más de %s filas. Por favor, refiérase a la %sdocumentación%s.';
$strViewName = '(VIEW) VER nombre';
$strView = 'Visualizar';
@@ -1043,4 +1042,5 @@ $strSuhosin = 'El servidor está utilizando Suhosin. Por favor, refiérase a %sd
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -989,7 +989,6 @@ $strViewDumpDatabases = 'Visa SQL-satser för databaser';
$strViewDumpDB = 'Visa SQL-satser för databasen';
$strViewDump = 'Visa SQL-satser för tabellen';
$strViewHasBeenDropped = 'Vyn %s har tagits bort';
$strViewMaxExactCount = 'Denna vy har mer än %s rader. Var god se %sdokumentationen%s.';
$strViewName = 'Namn på vy';
$strView = 'Vy';
@@ -1046,4 +1045,5 @@ $strSuhosin = 'Server körs med Suhosin. Se %sdokumentation%s för möjliga frå
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -950,7 +950,6 @@ $strUnsupportedCompressionDetected = 'You attempted to load file with unsupporte
$strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'; //to translate
$strUploadsNotAllowed = 'File uploads are not allowed on this server.'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strFunctions = 'Functions'; //to translate
$strProcedures = 'Procedures'; //to translate
@@ -1059,4 +1058,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -939,7 +939,6 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move
$strVersionInformation = 'Version information'; //to translate
$strViewDumpDatabases = 'View dump (schema) of databases';//to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //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
@@ -1069,4 +1068,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -995,7 +995,6 @@ $strViewDumpDatabases = 'Veritabanlarının dökümünü (şemasını) göster';
$strViewDumpDB = 'Veritabanının dökümünü (şemasını) göster';
$strViewDump = 'Tablonun dökümünü (şemasını) göster';
$strViewHasBeenDropped = '%s görünümü kaldırıldı';
$strViewMaxExactCount = 'Bu görünüm %s satırdan daha fazla. Lütfen %sbelgelere%s başvurun.';
$strViewName = 'GÖRÜNÜM adı';
$strView = 'Görünüm';
@@ -1053,4 +1052,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -937,7 +937,6 @@ $strUseThisValue = 'Use this value'; //to translate
$strVersionInformation = 'Version information'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
$strViewMaxExactCount = 'This view has more than %s rows. Please refer to %sdocumentation%s.'; //to translate
$strView = 'View'; //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
@@ -1067,4 +1066,5 @@ $strSuhosin = 'Server running with Suhosin. Please refer to %sdocumentation%s fo
$strEvents = 'Events'; //to translate
$strForeignKeyRelationAdded = 'FOREIGN KEY relation added'; //to translate
$strInternalAndForeign = 'An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'; //to translate
$strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate
?>

View File

@@ -1,7 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* finishs HTML output
* finishes HTML output
*
* updates javascript variables in index.php for coorect working with querywindow
* and navigation frame refreshing