diff --git a/plugins/disks/disks.cs b/plugins/disks/disks.cs index 7fa7e38..5d2204f 100644 --- a/plugins/disks/disks.cs +++ b/plugins/disks/disks.cs @@ -7,6 +7,7 @@ + @@ -17,3 +18,26 @@ + + +
+ + + + + + +
+

+ unencrypted volumes:
+ disk_symbol - deactivated + disk_symbol - activated +

+

+ encrypted volumes:
+ disk_symbol - deactivated + disk_symbol - activated +

+ +
+ diff --git a/plugins/disks/disks.css b/plugins/disks/disks.css new file mode 100644 index 0000000..b65ca9a --- /dev/null +++ b/plugins/disks/disks.css @@ -0,0 +1,7 @@ +.legend img { + width: 64px; + height: 64px; + padding: 10px 5px 10px 25px; + margin-bottom:20px; + vertical-align: middle; +} diff --git a/plugins/disks/language.hdf b/plugins/disks/language.hdf index 80acea4..461cf53 100644 --- a/plugins/disks/language.hdf +++ b/plugins/disks/language.hdf @@ -2,9 +2,13 @@ Name = Disk overview Link = Disks Title = Available disks +Help.Disks = All available disks appear in this frame. To divide several disks from each other, their names and sizes are written below. Reload this page after you've connected a new device. Click on a disk symbol to activate or format it or for getting detailed information. It's good practice to give your volumes identifying names before you use them. AdviceMessage { NoDisksAvailable { Text = No available disks were found! } } + +Legend = Icon legend +Help.Legend = Here you see all used disk icons and next to each its correlating meaning. Just to make sure: "unencrypted" means that anyone who get's this disk in his/her fingers will be able to read all data stored on it! The options "activated" and "deactivated" are describing the status of the disk inside the CryptoBox and so in your network. If a disk is "activated" its content is available in your network. So if you "activated" an "encrypted" disk, you can access its data in your network. This is symbolized by an opened lock icon. diff --git a/src/cryptobox/core/container.py b/src/cryptobox/core/container.py index 106e277..6e6e652 100644 --- a/src/cryptobox/core/container.py +++ b/src/cryptobox/core/container.py @@ -92,7 +92,7 @@ class CryptoBoxContainer: def set_name(self, new_name): - """Define a humanly readable name of this container. + """Define a human readable name of this container. this also manages the name database Available since: 0.3.0 @@ -108,7 +108,7 @@ class CryptoBoxContainer: raise CBInvalidName("the supplied new name contains illegal characters") ## check for another partition with the same name if self.cbox.get_container_list(filter_name=new_name): - raise CBNameIsInUse("the supplied new name is already in use for anonther partition") + raise CBNameIsInUse("the supplied new name is already in use for another partition") ## maybe there a is an entry in the volumes database (but the partition is not active) try: ## remove possibly existing inactive database item diff --git a/www-data/cryptobox.css b/www-data/cryptobox.css index 01e981e..c09054d 100644 --- a/www-data/cryptobox.css +++ b/www-data/cryptobox.css @@ -365,8 +365,8 @@ div.volume { } div.volume img { - width: 48px; - height: 48px; + width: 64px; + height: 64px; } /* -------------=-=-=- help -=-=-=------------------ */ @@ -450,8 +450,8 @@ table#volume_area td.volume_plugin_active img, table#volume_area td.volume_plugi a.disk_symbol img { margin-left: 20px; - width: 64px; - height: 64px; + width: 48px; + height: 48px; } div#pane_div {