File: english.php

package info (click to toggle)
phppgadmin 5.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,916 kB
  • ctags: 4,657
  • sloc: php: 47,091; sh: 37; sql: 16; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
	/**
	 * English language file for phpPgAdmin.
	 */

	//Basic
	$plugin_lang['strplugindescription'] = 'Report plugin';
	$plugin_lang['strnoreportsdb'] = 'You have not created the reports database. Read the INSTALL file for directions.';

	// Reports
	$plugin_lang['strreport'] = 'Report';
	$plugin_lang['strreports'] = 'Reports';
	$plugin_lang['strshowallreports'] = 'Show all reports';
	$plugin_lang['strnoreports'] = 'No reports found.';
	$plugin_lang['strcreatereport'] = 'Create report';
	$plugin_lang['streditreport'] = 'Edit report';
	$plugin_lang['strreportdropped'] = 'Report dropped.';
	$plugin_lang['strreportdroppedbad'] = 'Report drop failed.';
	$plugin_lang['strconfdropreport'] = 'Are you sure you want to drop the report "%s"?';
	$plugin_lang['strreportneedsname'] = 'You must give a name for your report.';
	$plugin_lang['strreportneedsdef'] = 'You must give SQL for your report.';
	$plugin_lang['strreportcreated'] = 'Report saved.';
	$plugin_lang['strreportcreatedbad'] = 'Failed to save report.';
?>