* English language file for phpPgAdmin. Use this as a basis
* for new translations.
*
- * $Id: english.php,v 1.204 2007/04/21 04:13:26 xzilla Exp $
+ * $Id: english.php,v 1.205 2007/04/21 15:39:54 xzilla Exp $
*/
// Language and character set
$lang['strconfvacuumtable'] = 'Are you sure you want to vacuum "%s"?';
$lang['strconfanalyzetable'] = 'Are you sure you want to analyze "%s"?';
$lang['strestimatedrowcount'] = 'Estimated row count';
+ $lang['strspecifytabletoanalyze'] = 'You must specify at least one table to analyze';
+ $lang['strspecifytabletoempty'] = 'You must specify at least one table to empty';
+ $lang['strspecifytabletodrop'] = 'You must specify at least one table to drop';
+ $lang['strspecifytabletovacuum'] = 'You must specify at least one table to vacuum';
// Columns
$lang['strcolprop'] = 'Column properties';
* English language file for phpPgAdmin. Use this as a basis
* for new translations.
*
- * $Id: english.php,v 1.156 2007/04/21 04:13:26 xzilla Exp $
+ * $Id: english.php,v 1.157 2007/04/21 15:39:54 xzilla Exp $
*/
// Language and character set
$lang['strconfvacuumtable'] = 'Are you sure you want to vacuum "%s"?';
$lang['strconfanalyzetable'] = 'Are you sure you want to analyze "%s"?';
$lang['strestimatedrowcount'] = 'Estimated row count';
+ $lang['strspecifytabletoanalyze'] = 'You must specify at least one table to analyze';
+ $lang['strspecifytabletoempty'] = 'You must specify at least one table to empty';
+ $lang['strspecifytabletodrop'] = 'You must specify at least one table to drop';
+ $lang['strspecifytabletovacuum'] = 'You must specify at least one table to vacuum';
// Columns
$lang['strcolprop'] = 'Column properties';
/**
* List tables in a database
*
- * $Id: tables.php,v 1.89 2007/04/16 16:59:46 soranzo Exp $
+ * $Id: tables.php,v 1.90 2007/04/21 15:40:08 xzilla Exp $
*/
// Include application functions
global $PHP_SELF;
if (empty($_REQUEST['table']) && empty($_REQUEST['ma'])) {
- doDefault('No table(s) given to empty...'); //TODO i18n
+ doDefault($lang['strspecifytabletoempty']);
exit();
}
global $PHP_SELF;
if (empty($_REQUEST['table']) && empty($_REQUEST['ma'])) {
- doDefault('No table(s) given to drop...'); // TODO i18n
+ doDefault($lang['strspecifytabletodrop']);
exit();
}
global $PHP_SELF;
if (empty($_REQUEST['table']) && empty($_REQUEST['ma'])) {
- doDefault('No table(s) given to vacuum...'); //TODO i18n
+ doDefault($lang['strspecifytabletovacuum']);
exit();
}
if ($confirm) {
global $PHP_SELF;
if (empty($_REQUEST['table']) && empty($_REQUEST['ma'])) {
- doDefault('No table(s) given to analyze...'); //TODO i18n
+ doDefault($lang['strspecifytabletoanalyze']);
exit();
}
if ($confirm) {