From: Michael Tremer Date: Wed, 10 Oct 2018 10:48:13 +0000 (+0100) Subject: releases: Rename CD images to ISO images and drop remark X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a47f3c789a10490822498594c5b9a9d8ceff1754;p=ipfire.org.git releases: Rename CD images to ISO images and drop remark Signed-off-by: Michael Tremer --- diff --git a/src/backend/releases.py b/src/backend/releases.py index 2ed6db05..9001700f 100644 --- a/src/backend/releases.py +++ b/src/backend/releases.py @@ -102,7 +102,7 @@ class File(Object): descriptions = { "armv5tel" : _("Flash Image"), "armv5tel-scon" : _("Flash Image with serial console"), - "iso" : _("CD Image"), + "iso" : _("ISO Image"), "torrent" : _("Torrent File"), "flash" : _("Flash Image"), "alix" : _("Flash Image with serial console"), @@ -137,28 +137,6 @@ class File(Object): except KeyError: return 999 - @property - def rem(self): - _ = lambda x: x - - remarks = { - "armv5tel" : _("This image runs on many ARM-based boards"), - "armv5tel-scon" : _("This image runs on ARM boards with a serial console"), - "iso" : _("Use this image to burn a CD and install IPFire from it."), - "torrent" : _("Download the CD image from the torrent network."), - "flash" : _("An image that is meant to run on embedded devices."), - "alix" : _("Flash image where a serial console is enabled by default."), - "usbfdd" : _("Install IPFire from a floppy-formated USB key."), - "usbhdd" : _("If the floppy image doesn't work, use this image instead."), - "xen" : _("A ready-to-run image for Xen."), - "xen-downloader": _("Generator for creating a Xen image."), - } - - try: - return remarks[self.type] - except KeyError: - return _("Unknown image type") - @property def sha1(self): return self.data.get("sha1")