1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-26 06:50:09 +03:00

Feature #2746: Improve image/file type tooltip

This commit is contained in:
Carlos Martín 2014-03-11 12:52:19 +01:00
parent c780256979
commit 5c50b896a0
2 changed files with 9 additions and 2 deletions

View File

@ -52,7 +52,10 @@ var create_file_tmpl ='<div class="row">\
<div class="row">\
<div class="large-12 columns">\
<label for="file_type">'+tr("Type")+
'<span class="tip">'+tr("Type of the file, explained in detail in the following section. If omitted, the default value is the one defined in oned.conf (install default is OS).")+'</span>'+
'<span class="tip">'+tr("Type of the file.")+'<br/><br/>'
+ tr(" KERNEL & RAMDISK files can be used in the OS Booting section of the Template wizard.")+'<br/><br/>'
+ tr(" CONTEXT files can be included in the context CD-ROM, from the Context/Files section of the Template wizard.")+
'</span>'+
'</label>\
<select name="file_type" id="file_type">\
<option value="KERNEL">'+tr("Kernel")+'</option>\

View File

@ -56,7 +56,11 @@ var create_image_tmpl ='<div class="row">\
<div class="row">\
<div class="large-12 columns">\
<label for="img_type">'+tr("Type")+
'<span class="tip">'+tr("Type of the image, explained in detail in the following section. If omitted, the default value is the one defined in oned.conf (install default is OS).")+'</span>'+
'<span class="tip">'+tr("Type of the image.")+'<br/><br/>'
+ tr(" OS images contain a working operative system.")+'<br/><br/>'
+ tr(" CDROM images are readonly data.")+'<br/><br/>'
+ tr(" DATABLOCK images are a storage for data. They can be created from previous existing data, or as an empty drive.")+
'</span>'+
'</label>\
<select name="img_type" id="img_type">\
<option value="OS">'+tr("OS")+'</option>\