]> git.ipfire.org Git - ipfire.org.git/commitdiff
releases: Rename CD images to ISO images and drop remark
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Oct 2018 10:48:13 +0000 (11:48 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Oct 2018 10:48:13 +0000 (11:48 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/backend/releases.py

index 2ed6db052d9627be29f7ae2eefa949a9f290f838..9001700f975b98ac7fb1b94489ea1e9075f627f0 100644 (file)
@@ -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")