1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

B #3095: Change misleading non persistent message

(cherry picked from commit d8541c1239fe65458394e0589795127262d0e95c)
This commit is contained in:
Tino Vazquez 2019-04-03 16:22:54 +02:00
parent 5a8364e31c
commit 40f6dffc69
No known key found for this signature in database
GPG Key ID: 2FE9C32E94AEABBE

View File

@ -162,11 +162,11 @@ define(function(require){
if (persistent){
$("label", diskContext).append("<i class=\"disk-resize-icon has-tip left fas fa-lg fa-floppy-o\" title=\"" +
Locale.tr("Persistent image. The changes will be saved back to the datastore after the VM is shut down") + "\"></i>");
Locale.tr("Persistent image. The changes will be saved back to the datastore after the VM is terminated (ie goes into DONE state)") + "\"></i>");
}else{
$("label", diskContext).append("<i class=\"disk-resize-icon has-tip left fas fa-lg fa-recycle\" title=\"" +
Locale.tr("Non-persistent disk. The changes will be lost once the VM is shut down") + "\"></i>");
Locale.tr("Non-persistent disk. The changes will be lost once the VM is terminated (ie goes into DONE state)") + "\"></i>");
}