bug #1621280, support VIEW dependencies during export
This commit is contained in:
@@ -7,6 +7,8 @@ $HeadURL$
|
||||
|
||||
2006-12-26 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* export.php: set $local_query only if we are exporting data
|
||||
* export.php, libraries/export/latex.php, /sql.php, /htmlword.php,
|
||||
/odt.php, lang/*: bug #1621280, VIEW dependencies during export
|
||||
|
||||
2006-12-20 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/export/sql.php: bug #1619647, export of query results
|
||||
|
27
export.php
27
export.php
@@ -417,16 +417,18 @@ if ($export_type == 'server') {
|
||||
foreach ($tables as $table) {
|
||||
// if this is a view, collect it for later; views must be exported
|
||||
// after the tables
|
||||
if (PMA_Table::isView($current_db, $table)) {
|
||||
$is_view = PMA_Table::isView($current_db, $table);
|
||||
if ($is_view) {
|
||||
$views[] = $table;
|
||||
continue;
|
||||
}
|
||||
if (isset($GLOBALS[$what . '_structure'])) {
|
||||
if (!PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates)) {
|
||||
// for a view, export a stand-in definition of the table
|
||||
// to resolve view dependencies
|
||||
if (!PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'stand_in' : 'create_table')) {
|
||||
break 3;
|
||||
}
|
||||
}
|
||||
if (isset($GLOBALS[$what . '_data'])) {
|
||||
if (isset($GLOBALS[$what . '_data']) && ! $is_view) {
|
||||
$local_query = 'SELECT * FROM ' . PMA_backquote($current_db) . '.' . PMA_backquote($table);
|
||||
if (!PMA_exportData($current_db, $table, $crlf, $err_url, $local_query)) {
|
||||
break 3;
|
||||
@@ -436,7 +438,7 @@ if ($export_type == 'server') {
|
||||
foreach($views as $view) {
|
||||
// no data export for a view
|
||||
if (isset($GLOBALS[$what . '_structure'])) {
|
||||
if (!PMA_exportStructure($current_db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates)) {
|
||||
if (!PMA_exportStructure($current_db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'create_view')) {
|
||||
break 3;
|
||||
}
|
||||
}
|
||||
@@ -456,16 +458,18 @@ if ($export_type == 'server') {
|
||||
foreach ($tables as $table) {
|
||||
// if this is a view, collect it for later; views must be exported after
|
||||
// the tables
|
||||
if (PMA_Table::isView($db, $table)) {
|
||||
$is_view = PMA_Table::isView($db, $table);
|
||||
if ($is_view) {
|
||||
$views[] = $table;
|
||||
continue;
|
||||
}
|
||||
if (isset($GLOBALS[$what . '_structure'])) {
|
||||
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates)) {
|
||||
// for a view, export a stand-in definition of the table
|
||||
// to resolve view dependencies
|
||||
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'stand_in' : 'create_table')) {
|
||||
break 2;
|
||||
}
|
||||
}
|
||||
if (isset($GLOBALS[$what . '_data'])) {
|
||||
if (isset($GLOBALS[$what . '_data']) && ! $is_view) {
|
||||
$local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
|
||||
if (!PMA_exportData($db, $table, $crlf, $err_url, $local_query)) {
|
||||
break 2;
|
||||
@@ -475,7 +479,7 @@ if ($export_type == 'server') {
|
||||
foreach ($views as $view) {
|
||||
// no data export for a view
|
||||
if (isset($GLOBALS[$what . '_structure'])) {
|
||||
if (!PMA_exportStructure($db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates)) {
|
||||
if (!PMA_exportStructure($db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'create_view')) {
|
||||
break 2;
|
||||
}
|
||||
}
|
||||
@@ -498,8 +502,9 @@ if ($export_type == 'server') {
|
||||
$add_query = '';
|
||||
}
|
||||
|
||||
$is_view = PMA_Table::isView($db, $table);
|
||||
if (isset($GLOBALS[$what . '_structure'])) {
|
||||
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates)) {
|
||||
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'create_view' : 'create_table')) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@@ -1045,4 +1045,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1046,4 +1046,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1044,4 +1044,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1045,4 +1045,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1046,4 +1046,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1038,4 +1038,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1039,4 +1039,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1022,4 +1022,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1045,4 +1045,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1044,4 +1044,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1024,4 +1024,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1014,4 +1014,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1015,4 +1015,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1046,4 +1046,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1026,4 +1026,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1019,4 +1019,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1019,4 +1019,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strYes = 'Ano';
|
||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||
$strZip = '„zazipov<6F>no“';
|
||||
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strYes = 'Ano';
|
||||
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
|
||||
$strZip = '„zazipováno“';
|
||||
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strYes = 'Ano';
|
||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||
$strZip = '„zazipov<6F>no“';
|
||||
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -879,6 +879,7 @@ $strSQL = 'SQL';
|
||||
$strSQPBugInvalidIdentifer = 'Invalid Identifer';
|
||||
$strSQPBugUnclosedQuote = 'Unclosed quote';
|
||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
|
||||
$strStandInStructureForView = 'Stand-in structure for view';
|
||||
$strStatCheckTime = 'Last check';
|
||||
$strStatCreateTime = 'Creation';
|
||||
$strStatement = 'Statements';
|
||||
@@ -894,6 +895,7 @@ $strStrucNativeExcel = 'Native MS Excel format';
|
||||
$strStrucNativeExcelOptions = 'Native Excel export options';
|
||||
$strStrucOnly = 'Structure only';
|
||||
$strStructPropose = 'Propose table structure';
|
||||
$strStructureForView = 'Structure for view';
|
||||
$strStructure = 'Structure';
|
||||
$strSubmit = 'Submit';
|
||||
$strSuccess = 'Your SQL query has been executed successfully';
|
||||
|
@@ -879,6 +879,7 @@ $strSQL = 'SQL';
|
||||
$strSQPBugInvalidIdentifer = 'Invalid Identifer';
|
||||
$strSQPBugUnclosedQuote = 'Unclosed quote';
|
||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
|
||||
$strStandInStructureForView = 'Stand-in structure for view';
|
||||
$strStatCheckTime = 'Last check';
|
||||
$strStatCreateTime = 'Creation';
|
||||
$strStatement = 'Statements';
|
||||
@@ -894,6 +895,7 @@ $strStrucNativeExcel = 'Native MS Excel format';
|
||||
$strStrucNativeExcelOptions = 'Native Excel export options';
|
||||
$strStrucOnly = 'Structure only';
|
||||
$strStructPropose = 'Propose table structure';
|
||||
$strStructureForView = 'Structure for view';
|
||||
$strStructure = 'Structure';
|
||||
$strSubmit = 'Submit';
|
||||
$strSuccess = 'Your SQL query has been executed successfully';
|
||||
|
@@ -880,6 +880,7 @@ $strSQL = 'SQL';
|
||||
$strSQPBugInvalidIdentifer = 'Invalid Identifer';
|
||||
$strSQPBugUnclosedQuote = 'Unclosed quote';
|
||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String';
|
||||
$strStandInStructureForView = 'Stand-in structure for view';
|
||||
$strStatCheckTime = 'Last check';
|
||||
$strStatCreateTime = 'Creation';
|
||||
$strStatement = 'Statements';
|
||||
@@ -895,6 +896,7 @@ $strStrucNativeExcel = 'Native MS Excel format';
|
||||
$strStrucNativeExcelOptions = 'Native Excel export options';
|
||||
$strStrucOnly = 'Structure only';
|
||||
$strStructPropose = 'Propose table structure';
|
||||
$strStructureForView = 'Structure for view';
|
||||
$strStructure = 'Structure';
|
||||
$strSubmit = 'Submit';
|
||||
$strSuccess = 'Your SQL query has been executed successfully';
|
||||
|
@@ -1024,4 +1024,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1017,4 +1017,6 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
|
||||
$strZip = '"zipp<70>"';
|
||||
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1017,4 +1017,6 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
|
||||
$strZip = '"zipp<70>"';
|
||||
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1018,4 +1018,6 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||
$strZip = '"zippé"';
|
||||
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1023,4 +1023,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1024,4 +1024,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1023,4 +1023,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1023,4 +1023,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1024,4 +1024,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1044,4 +1044,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1038,4 +1038,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1039,4 +1039,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1038,4 +1038,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1039,4 +1039,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1036,4 +1036,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1037,4 +1037,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1020,4 +1020,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1021,4 +1021,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1025,4 +1025,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1044,4 +1044,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1037,4 +1037,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1036,4 +1036,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1058,4 +1058,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1059,4 +1059,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1018,4 +1018,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1019,4 +1019,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1044,4 +1044,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1014,4 +1014,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1015,4 +1015,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1014,4 +1014,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1047,4 +1047,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1048,4 +1048,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1039,4 +1039,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1040,4 +1040,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1041,4 +1041,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1043,4 +1043,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
@@ -1042,4 +1042,6 @@ $strHelp = 'Help'; //to translate
|
||||
$strCancel = 'Cancel'; //to translate
|
||||
$strDeleteRelation = 'Delete relation'; //to translate
|
||||
$strKnownExternalBug = 'The %s functionality is affected by a known bug, see %s'; //to translate
|
||||
$strStructureForView = 'Structure for view'; //to translate
|
||||
$strStandInStructureForView = 'Stand-in structure for view'; //to translate
|
||||
?>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user