<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-15">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <font size="-1">Oh well, thanks guys. The rnotes Code has worked in
      CentOS 5.x, i already did that there...<br>
      <br>
      The code i refer to in the new progress_gui.py is that:<br>
      <br>
          def _getRnotes(self):<br>
              langs = []<br>
              pixmaps = []<br>
              if (os.environ.has_key('LANG')):<br>
                  langs = language.expandLangs(os.environ['LANG'])<br>
              langs.append('')<br>
      <br>
              pixmaps = []<br>
              paths = ("/tmp/product/pixmaps/rnotes/%s/*.png",<br>
                       "/usr/share/anaconda/pixmaps/rnotes/%s/*.png")<br>
              for p in paths:<br>
                  for lang in langs:<br>
                      path = p % lang<br>
                      pixmaps = glob.glob(path)<br>
                      if len(pixmaps) > 0:<br>
                          break<br>
      <br>
              if len(pixmaps) > 0:<br>
                  files = pixmaps<br>
              else:<br>
                  files = ["progress_first.png"]<br>
      <br>
              return files<br>
              <br>
      <br>
          def getScreen (self, anaconda):<br>
          self.intf = anaconda.intf<br>
          if anaconda.dir == DISPATCH_BACK:<br>
              self.intf.icw.prevClicked()<br>
              return<br>
      <br>
              self.pixmaps = self._getRnotes() <br>
      <br>
      It looked to me that creating a folder, let's say rnotes/de/ and
      putting .png's in there would do the trick, but it won't. Maybe i
      try to use the old progress_guy.py file or just try to use the old
      code snippet ..<br>
    </font>
  </body>
</html>