diff --git a/addon/www/index.html b/addon/www/index.html index 51bc449..700d67e 100644 --- a/addon/www/index.html +++ b/addon/www/index.html @@ -319,7 +319,7 @@ along with this program. If not, see . } function get_partitions() { - $('#dimmer-partition-info').addClass('active'); + $('#dimmer-volume-info').addClass('active'); rest("GET", "/get_partitions", null, function(data) { var disks = {}; data.forEach(function(partition) { @@ -335,7 +335,7 @@ along with this program. If not, see . disks[partition.disk_device].usr_local_on_disk = true; } }); - $('#partition-info tbody').empty(); + $('#volume-info tbody').empty(); for (var disk_device in disks) { parts = Object.keys(disks[disk_device].partitions); parts.sort(); @@ -364,7 +364,7 @@ along with this program. If not, see . if (partition.partition == 0) { var st = "border:none; border-top: 2px solid #aaafaf"; - $("#partition-info tbody").append($('').append( + $("#volume-info tbody").append($('').append( $('').append($('')), $(''), $('').append($('')), @@ -376,7 +376,7 @@ along with this program. If not, see . if (partition.filesystem_usage && partition.filesystem_usage >= 0) { usage = (parseFloat(partition.filesystem_usage) * 100).toFixed(0) + '%' } - $("#partition-info tbody").append($('').append( + $("#volume-info tbody").append($('').append( $('').append($('')), $('').append($('')), $('').append($('')), @@ -389,7 +389,7 @@ along with this program. If not, see . } $('.dropdown').dropdown({}); } - $('#dimmer-partition-info').removeClass('active'); + $('#dimmer-volume-info').removeClass('active'); }); } @@ -589,7 +589,7 @@ along with this program. If not, see . sure_to_shutdown_system: 'Are you sure you want to shutdown the system now?', system_is_rebooting: 'System is going down for reboot now.', system_is_shutting_down: 'System is going down for shutdown now.', - partitions: 'Partitions', + volumes: 'Volumes', device: 'Device', partition_number: 'Partition', filesystem_type: 'Filesystem', @@ -659,7 +659,7 @@ along with this program. If not, see . sure_to_shutdown_system: 'Soll das System jetzt heruntergefahren werden?', system_is_rebooting: 'Das System wird neu gestartet.', system_is_shutting_down: 'Das System wird heruntergefahren.', - partitions: 'Partitionen', + volumes: 'Datenträger', device: 'Gerät', partition_number: 'Partition', filesystem_type: 'Dateisystem', @@ -794,14 +794,14 @@ along with this program. If not, see .

-
+

-
+
- +