Skip to content

Commit 35392e2

Browse files
committed
Keep letter case consistent
1 parent 662f2f2 commit 35392e2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

web/bulk/restore/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
} else {
3737
$_SESSION['error_msg'] = implode('<br>', $output);
3838
if (empty($_SESSION['error_msg'])) {
39-
$_SESSION['error_msg'] = _('Error: hestia did not return any output.');
39+
$_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
4040
}
4141
if ($return_var == 4) {
4242
$_SESSION['error_msg'] = _('RESTORE_EXISTS');

web/schedule/backup/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
} else {
1919
$_SESSION['error_msg'] = implode('<br>', $output);
2020
if (empty($_SESSION['error_msg'])) {
21-
$_SESSION['error_msg'] = _('Error: hestia did not return any output.');
21+
$_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
2222
}
2323

2424
if ($return_var == 4) {

web/schedule/restore/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
} else {
4141
$_SESSION['error_msg'] = implode('<br>', $output);
4242
if (empty($_SESSION['error_msg'])) {
43-
$_SESSION['error_msg'] = _('Error: hestia did not return any output.');
43+
$_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
4444
}
4545
if ($return_var == 4) {
4646
$_SESSION['error_msg'] = _('RESTORE_EXISTS');

web/unsuspend/dns/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
exec (HESTIA_CMD."v-unsuspend-dns-domain ".$v_username." ".$v_domain, $output, $return_var);
1919
if ($return_var != 0) {
2020
$error = implode('<br>', $output);
21-
if (empty($error)) $error = _('Error: hestia did not return any output.');
21+
if (empty($error)) $error = _('Error: Hestia did not return any output.');
2222
$_SESSION['error_msg'] = $error;
2323
}
2424
unset($output);
@@ -39,7 +39,7 @@
3939
exec (HESTIA_CMD."v-unsuspend-dns-record ".$v_username." ".$v_domain." ".$v_record_id, $output, $return_var);
4040
if ($return_var != 0) {
4141
$error = implode('<br>', $output);
42-
if (empty($error)) $error = _('Error: hestia did not return any output.');
42+
if (empty($error)) $error = _('Error: Hestia did not return any output.');
4343
$_SESSION['error_msg'] = $error;
4444
}
4545
unset($output);

web/unsuspend/mail/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
exec (HESTIA_CMD."v-unsuspend-mail-domain ".$v_username." ".$v_domain, $output, $return_var);
1919
if ($return_var != 0) {
2020
$error = implode('<br>', $output);
21-
if (empty($error)) $error = _('Error: hestia did not return any output.');
21+
if (empty($error)) $error = _('Error: Hestia did not return any output.');
2222
$_SESSION['error_msg'] = $error;
2323
}
2424
unset($output);
@@ -39,7 +39,7 @@
3939
exec (HESTIA_CMD."v-unsuspend-mail-account ".$v_username." ".$v_domain." ".$v_account, $output, $return_var);
4040
if ($return_var != 0) {
4141
$error = implode('<br>', $output);
42-
if (empty($error)) $error = _('Error: hestia did not return any output.');
42+
if (empty($error)) $error = _('Error: Hestia did not return any output.');
4343
$_SESSION['error_msg'] = $error;
4444
}
4545
unset($output);

0 commit comments

Comments
 (0)