summaryrefslogtreecommitdiff
path: root/web/share
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-09 11:35:07 +0300
committerDevaev Maxim <[email protected]>2020-09-09 11:35:07 +0300
commit04284584fecb279c5a1872d64697a3b26d04318c (patch)
tree9e68aa2959618e1e92bf59b2cb0b857a27ba087e /web/share
parent669fc608ed6a1851f799c99c4998143b8dcfc126 (diff)
rename
Diffstat (limited to 'web/share')
-rw-r--r--web/share/js/kvm/msd.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/share/js/kvm/msd.js b/web/share/js/kvm/msd.js
index c3e5c8ae..28227b2d 100644
--- a/web/share/js/kvm/msd.js
+++ b/web/share/js/kvm/msd.js
@@ -114,7 +114,7 @@ export function Msd() {
var __uploadStateChange = function() {
if (__upload_http.readyState === 4) {
if (__upload_http.status !== 200) {
- wm.error("Can't upload image to the Mass Storage Device:<br>", __upload_http.responseText);
+ wm.error("Can't upload image to the Mass Storage Drive:<br>", __upload_http.responseText);
}
$("msd-select-new-image-file").value = "";
__image_file = null;
@@ -156,7 +156,7 @@ export function Msd() {
let el_input = $("msd-select-new-image-file");
let image_file = (el_input.files.length ? el_input.files[0] : null);
if (image_file && image_file.size > __state.storage.size) {
- wm.error("New image is too big for your Mass Storage Device.<br>Maximum:", tools.formatSize(__state.storage.size));
+ wm.error("New image is too big for your Mass Storage Drive.<br>Maximum:", tools.formatSize(__state.storage.size));
el_input.value = "";
image_file = null;
}
@@ -165,7 +165,7 @@ export function Msd() {
};
var __clickResetButton = function() {
- wm.confirm("Are you sure you want to reset Mass Storage Device?").then(function(ok) {
+ wm.confirm("Are you sure you want to reset Mass Storage Drive?").then(function(ok) {
if (ok) {
let http = tools.makeRequest("POST", "/api/msd/reset", function() {
if (http.readyState === 4) {