~ubuntu-installer/ubiquity/trunk

« back to all changes in this revision

Viewing changes to ubiquity/plugins/ubi-language.py

  • Committer: Dmitrijs Ledkovs
  • Date: 2012-11-26 14:07:06 UTC
  • mfrom: (5770.1.8 r-proposed-2)
  • Revision ID: dmitrijs.ledkovs@canonical.com-20121126140706-4n92ta12sguzqol6
* Clear "Read release notes or update the installer" if neither action
  are possible. (LP: #1066302)
* If there is only one disk & use_device recipe is used, change next step
  button to "Install Now". (LP: #1050044)
* When auto-partitioning is not possible, allow to manually partition
  the same drive installation medium is on. (LP: #1053030)
* Fix the question_dialog height-for-width (LP: #862270)
* Fonconfig-voodoo is gone, not sure if some other "fontconfig"ury
  should be called instead. (LP: #1043031)

Show diffs side-by-side

added added

removed removed

Lines of Context:
350
350
            elif self.update_installer:
351
351
                text = i18n.get_string('update_installer_only', lang)
352
352
                self.release_notes_label.set_markup(text)
 
353
            else:
 
354
                self.release_notes_label.set_markup('')
353
355
 
354
356
    def set_oem_id(self, text):
355
357
        return self.oem_id_entry.set_text(text)
745
747
                    locale.setlocale(locale.LC_ALL, '')
746
748
                except locale.Error:
747
749
                    pass
748
 
            # fontconfig configuration needs to be adjusted based on the
749
 
            # selected locale (from language-selector-common.postinst). Ignore
750
 
            # errors.
751
 
            misc.execute(
752
 
                'chroot', target, 'fontconfig-voodoo',
753
 
                '--auto', '--force', '--quiet')
754
750
        return rv