summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUser yamaguti2008-02-01 08:57:41 +0000
committerUser yamaguti2008-02-01 08:57:41 +0000
commit607ba852fb70bfbeeb7b97932bd8ead770f7d6f9 (patch)
tree2786dfc11519abe6caa2913cff76ae7e76f06f6a
parent1406740615289142f2e9126aa54a6390b863f1b5 (diff)
lowered "Pgpool"'s first 'P' in English documents & messages
-rw-r--r--doc/en/config.html6
-rw-r--r--doc/en/install.html6
-rw-r--r--install/lang/en.lang.php8
-rw-r--r--status.php24
-rw-r--r--templates/help/en/config.tpl6
5 files changed, 25 insertions, 25 deletions
diff --git a/doc/en/config.html b/doc/en/config.html
index 27ae4fc..31a4f95 100644
--- a/doc/en/config.html
+++ b/doc/en/config.html
@@ -58,15 +58,15 @@
<td>When starting pgpool, the query cache is cleared.</td>
</tr>
<tr><td>Don&#039;t run in daemon mode(-n)</td>
- <td>Pgpool can be run in non-daemon mode. For display of pgpool log in this pool, it is necessary to turn on this item. </td>
+ <td>pgpool can be run in non-daemon mode. For display of pgpool log in this pool, it is necessary to turn on this item. </td>
</tr>
<tr><td>Debug mode(-d)</td>
- <td>Pgpool can be run in debug mode. When the debugging log is necessary, it turns it on.</td>
+ <td>pgpool can be run in debug mode. When the debugging log is necessary, it turns it on.</td>
</tr>
<tr>
<tr><td>Stop mode(-d)</td>
- <td>All the processes of pgpool are stopped. The pgpool stop option is displayed, when "Pgpool Stop" is pushed. There are stop mode for pgpool as follows.
+ <td>All the processes of pgpool are stopped. The pgpool stop option is displayed, when "pgpool Stop" is pushed. There are stop mode for pgpool as follows.
<ul>
<li>smart</li>
<li>fast</li>
diff --git a/doc/en/install.html b/doc/en/install.html
index a7df0d1..905986b 100644
--- a/doc/en/install.html
+++ b/doc/en/install.html
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
-<title>Installing Pgpool Management Tool</title>
+<title>Installing pgpool Management Tool</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="../screen.css" rel="stylesheet" type="text/css" />
</head>
@@ -26,7 +26,7 @@
</ul>
</div>
<div id="content">
- <h2>Installing Pgpool Administration Tool</h2>
+ <h2>Installing pgpool Administration Tool</h2>
<h3>Preface</h3>
Please confirm pgpool normally can be installed, and operates before starting the installation of the pgpool management tool. <p />
The following software is at least installed in the server that operates pgpool when the pgpool management tool is installed, and it should be normally operating.
@@ -58,7 +58,7 @@ It explains on the assumption of being set it here as follows.
<td>/var/www/html/admin-tool</td>
</tr>
<tr>
-<th><label>Pgpool command pass</label></th>
+<th><label>pgpool command pass</label></th>
<td>/usr/local/bin/pgpool</td>
</tr>
<tr>
diff --git a/install/lang/en.lang.php b/install/lang/en.lang.php
index 2eb535f..8ed5130 100644
--- a/install/lang/en.lang.php
+++ b/install/lang/en.lang.php
@@ -35,8 +35,8 @@ $message = array(
'strPasswordFile' => 'pcp.conf File',
'strPgmgtFile' => 'pgpoolAdmin Setting File',
'strTempDir' => 'Template Directory',
- 'strPgpoolCommand' => 'Pgpool Command',
- 'strPgpoolCommandOption' => 'Pgpool Command Option',
+ 'strPgpoolCommand' => 'pgpool Command',
+ 'strPgpoolCommandOption' => 'pgpool Command Option',
'strCmdC' => 'Clears query cache',
'strCmdD' => 'debug mode',
'strCmdM' => 'stop mode',
@@ -44,12 +44,12 @@ $message = array(
'strCmdPgpoolFile' => 'pgpool.conf',
'strCmdPcpFile' => 'pcp.conf',
'strCmdDesc' => 'If it is a blank, this option is ignored.',
- 'strPgpoolLogFile' => 'Pgpool Logfile',
+ 'strPgpoolLogFile' => 'pgpool Logfile',
'strPcpDir' => 'PCP directory',
'strPcpTimeout' => 'PCP Timeout',
'strPcpHostName' => 'PCP Hostname',
'strPcpRefreshTime' => 'Refresh Time',
- 'msgCongratulations' => 'Congratulations. Pgpool Administration Tool was installed!',
+ 'msgCongratulations' => 'Congratulations. pgpool Administration Tool was installed!',
'msgDeleteInstallDir' => ' : Please remove this directory',
'msgToTop' => 'top'
);
diff --git a/status.php b/status.php
index f741d09..0b1d6f2 100644
--- a/status.php
+++ b/status.php
@@ -77,7 +77,7 @@ switch ($action) {
}
$ret = execPcp('PCP_START_PGPOOL', $args);
if(!array_key_exists('SUCCESS', $ret)) {
- $tpl->assign('pgpoolStatus', 'Pgpool start failed.');
+ $tpl->assign('pgpoolStatus', 'pgpool start failed.');
$tpl->assign('pgpoolMessage', $ret);
} else {
for($i=0; $i<10; $i++) {
@@ -88,9 +88,9 @@ switch ($action) {
}
}
if(DoesPgpoolPidExist()) {
- $tpl->assign('pgpoolStatus', 'Pgpool start succeed');
+ $tpl->assign('pgpoolStatus', 'pgpool start succeed');
} else {
- $tpl->assign('pgpoolStatus', 'Pgpool start failed. Pgpool.pid not found');
+ $tpl->assign('pgpoolStatus', 'pgpool start failed. pgpool.pid not found');
}
$tpl->assign('pgpoolMessage', $ret['SUCCESS']);
}
@@ -115,9 +115,9 @@ switch ($action) {
}
}
if(DoesPgpoolPidExist()) {
- $tpl->assign('pgpoolStatus', 'Pgpool stop failed. pgpool.pid exists.');
+ $tpl->assign('pgpoolStatus', 'pgpool stop failed. pgpool.pid exists.');
} else {
- $tpl->assign('pgpoolStatus', 'Pgpool stop succeed');
+ $tpl->assign('pgpoolStatus', 'pgpool stop succeed');
}
}
@@ -125,7 +125,7 @@ switch ($action) {
case 'restart':
/**
- * Stop Pgpool
+ * Stop pgpool
*/
$m = $_POST['restart_mode'];
@@ -146,12 +146,12 @@ switch ($action) {
}
if(DoesPgpoolPidExist() ) {
- $tpl->assign('pgpoolStatus', 'pgpool restart failed. Pgpool.pid exists.');
+ $tpl->assign('pgpoolStatus', 'pgpool restart failed. pgpool.pid exists.');
break;
}
/**
- * Start Pgpool
+ * Start pgpool
*/
$args = ' ';
@@ -173,19 +173,19 @@ switch ($action) {
$ret = execPcp('PCP_START_PGPOOL', $args);
if(!array_key_exists('SUCCESS', $ret)) {
- $tpl->assign('pgpoolStatus', 'Pgpool restart failed.');
+ $tpl->assign('pgpoolStatus', 'pgpool restart failed.');
$tpl->assign('pgpoolMessage', $ret);
} else {
for($i=0; $i<10; $i++) {
if(DoesPgpoolPidExist()) {
- $tpl->assign('pgpoolStatus', 'Pgpool restart succeed');
+ $tpl->assign('pgpoolStatus', 'pgpool restart succeed');
break;
} else {
sleep(1);
}
}
if(!DoesPgpoolPidExist()) {
- $tpl->assign('pgpoolStatus', 'Pgpool restart failed. Pgpool.pid not found');
+ $tpl->assign('pgpoolStatus', 'pgpool restart failed. pgpool.pid not found');
}
$tpl->assign('pgpoolMessage', $ret['SUCCESS']);
}
@@ -196,7 +196,7 @@ switch ($action) {
/**
- * Start Pgpool
+ * Start pgpool
*/
$args = ' ';
diff --git a/templates/help/en/config.tpl b/templates/help/en/config.tpl
index 4a92dcc..cc7cfcb 100644
--- a/templates/help/en/config.tpl
+++ b/templates/help/en/config.tpl
@@ -40,14 +40,14 @@
<td>When starting pgpool, the query cache is cleared.</td>
</tr>
<tr><td>{$message.strCmdN|escape}(-n)</td>
- <td>Pgpool can be run in non-daemon mode. For display of pgpool log in this pool, it is necessary to turn on this item. </td>
+ <td>pgpool can be run in non-daemon mode. For display of pgpool log in this pool, it is necessary to turn on this item. </td>
</tr>
<tr><td>{$message.strCmdD|escape}(-d)</td>
- <td>Pgpool can be run in debug mode. When the debugging log is necessary, it turns it on.</td>
+ <td>pgpool can be run in debug mode. When the debugging log is necessary, it turns it on.</td>
</tr>
<tr>
<tr><td>{$message.strCmdM|escape}(-d)</td>
- <td>All the processes of pgpool are stopped. The pgpool stop option is displayed, when "Pgpool Stop" is pushed. There are stop mode for pgpool as follows.
+ <td>All the processes of pgpool are stopped. The pgpool stop option is displayed, when "pgpool Stop" is pushed. There are stop mode for pgpool as follows.
<ul>
<li>smart</li>
<li>fast</li>