diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2015-08-25 11:08:09 +1000 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2015-08-31 14:58:14 +1000 |
commit | b4d338c2ae40f16091a4bb4a0cc4f2e322f4f4b9 (patch) | |
tree | 8deb44f8945302b0ef9d42b9eb15443bc98a8411 /lib | |
parent | 70907c3fc4b344d00ce900e6a536e9cc16a35216 (diff) | |
download | petitboot-b4d338c2ae40f16091a4bb4a0cc4f2e322f4f4b9.zip petitboot-b4d338c2ae40f16091a4bb4a0cc4f2e322f4f4b9.tar.gz |
Consolidate display string for optical devices
Instead of using 'Optical' in some places and 'CD/DVD' in others, simply
use 'CD/DVD' for all cases.
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types/types.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/types/types.c b/lib/types/types.c index 611f2a1..63045e1 100644 --- a/lib/types/types.c +++ b/lib/types/types.c @@ -30,7 +30,7 @@ const char *device_type_display_name(enum device_type type) case DEVICE_TYPE_USB: return _("USB"); case DEVICE_TYPE_OPTICAL: - return _("Optical"); + return _("CD/DVD"); case DEVICE_TYPE_NETWORK: return _("Network"); case DEVICE_TYPE_ANY: |