Moved strings on console page to locale file
This commit is contained in:
parent
57613fb2ae
commit
a916625d57
|
@ -88,7 +88,7 @@ table.vpslist tr:hover
|
||||||
|
|
||||||
table.console th
|
table.console th
|
||||||
{
|
{
|
||||||
width: 100px;
|
width: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.clickable a
|
.clickable a
|
||||||
|
|
|
@ -27,6 +27,7 @@ title-overview; Overview
|
||||||
title-login; Login to your VPS panel
|
title-login; Login to your VPS panel
|
||||||
title-reinstall; Reinstall your VPS
|
title-reinstall; Reinstall your VPS
|
||||||
title-password; Set new root password
|
title-password; Set new root password
|
||||||
|
title-console; Out-of-band console
|
||||||
|
|
||||||
button-login; Login
|
button-login; Login
|
||||||
button-reinstall; Reinstall
|
button-reinstall; Reinstall
|
||||||
|
@ -91,3 +92,11 @@ reinstall-patience; (be patient; this may take a while)
|
||||||
|
|
||||||
password-field-password; New root password
|
password-field-password; New root password
|
||||||
password-field-confirm; Confirm password
|
password-field-confirm; Confirm password
|
||||||
|
|
||||||
|
console-introduction; If you cannot access your container for some reason, you can use the out-of-band console (also known as shell dropper) to invoke a root shell.
|
||||||
|
console-step1; To use the out-of-band console, connect through SSH using the following details:
|
||||||
|
console-step2; After logging in with the above details, you will have to enter your VPS panel login details, after which you can select a container to invoke a root shell on.
|
||||||
|
console-title-hostname; Hostname
|
||||||
|
console-title-port; Port
|
||||||
|
console-title-username; Username
|
||||||
|
console-title-password; Password
|
||||||
|
|
|
@ -1,26 +1,26 @@
|
||||||
<h2>Out-of-band console</h2>
|
<h2><%!title-console></h2>
|
||||||
|
|
||||||
<p>If you cannot access your container for some reason, you can use the out-of-band console (also known as shell dropper) to invoke a root shell.</p>
|
<p><%!console-introduction></p>
|
||||||
|
|
||||||
<p>To use the out-of-band console, connect through SSH as follows:</p>
|
<p><%!console-step1></p>
|
||||||
|
|
||||||
<table class="console vertical">
|
<table class="console vertical">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Hostname</th>
|
<th><%!console-title-hostname></th>
|
||||||
<td><%?host></td>
|
<td><%?host></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Port</th>
|
<th><%!console-title-port></th>
|
||||||
<td>22</td>
|
<td>22</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Username</th>
|
<th><%!console-title-username></th>
|
||||||
<td>vz</td>
|
<td>vz</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Password</th>
|
<th><%!console-title-password></th>
|
||||||
<td>vz</td>
|
<td>vz</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<p>After logging in with the above details, you will have to enter your VPS panel login details, after which you can select a container to invoke a root shell on.</p>
|
<p><%!console-step2></p>
|
||||||
|
|
Loading…
Reference in a new issue