~ubuntu-branches/ubuntu/precise/gnome-orca/precise-proposed

« back to all changes in this revision

Viewing changes to src/orca/orca_gui_prefs.py

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2011-09-23 11:53:49 UTC
  • mfrom: (0.9.41 upstream)
  • Revision ID: package-import@ubuntu.com-20110923115349-9mv0aw0lw19v7puu
Tags: 3.1.92-0ubuntu1
* New upstream release
  - General:
    + Fix for bug 659054 - Orca fails to present decimal values of
      GtkScale widgets in Gtk+ 3
    + Fix for bug 659379 - Orca is not presenting panel menus and menu
      items in fallback mode
    + Fix for bug 659264 - Return in onFocus if the object is not focused
    + Fix for bug 659122 - Unicode decode error traceback with speech
      generation if I using hungarian locale
    + Fix for bug 617833 - Orca should indicate state of NumLock key
    + Fix for bug 652485 - Gtk+ Deprecations (Remainder of the work)
    + Fix for bug 659015 - The mnemonic widget property on the voice page
      is absent for several widgets
    + Fix for bug 658134 - Lines with unexpected characters are not always
      displayed in braille by Orca
    + Fix for bug 658781 - Some text not spoken at all since gobject
      introspection changes in orca 3.1.9x.
    + Fix for bug 658993 - Two GtkGrid spacing issues
  - Build:
    + Fix for bug 659092 - Do not reference non-existing doc figures
  - New and updated translations (THANKS EVERYONE!!!):
    + ast        Asturian                        Xandru Armesto
    + bg         Bulgarian                       Alexander Shopov
    + ca         Catalan                         Pau Iranzo
    + cs         Czech                           Marek Černocký
    + da         Danish                          Kenneth Nielsen
    + de         German                          Christian Kirbach
    + en_GB      British English                 Bruce Cowan
    + es         Spanish                         Jorge González,
                                                 Daniel Mustieles
    + fi         Finnish                         Timo Jyrinki
    + fr         French                          Bruno Brouard
    + gl         Galician                        Fran Diéguez
    + hu         Hungarian                       Attila Hammer
    + it         Italian                         Luca Ferretti
    + lt         Lithuanian                      Aurimas Černius
    + lv         Latvian                         Rudolfs Mazurs
    + pa         Punjabi                         Amanpreet Singh Alam
    + pl         Polish                          Piotr Drąg
    + pt         Portuguese                      Rui Batista
    + ru         Russian                         Yuri Myasoedov
    + sl         Slovenian                       Matej Urbančič
    + sv         Swedish                         Daniel Nylander
    + ta         Tamil                           Dr.T.Vasudevan
    + zh_CN      Simplified Chinese              Yinghua Wang
    + zh_HK      Traditional Chinese - HongKong  Chao-Hsiung Liao
    + zh_TW      Traditional Chinese - Taiwan    Chao-Hsiung Liao
* Dropped patches, applied upstream:
  - 03_Fix-for-bug-658781-Some-text-not-spoken-at-all-since.patch
  - 04_Fix-for-bug-658134-Lines-with-unexpected-characters-.patch
* debian/control: Bump at-spi build dep to >= 2.1.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
2375
2375
 
2376
2376
    def rateValueChanged(self, widget):
2377
2377
        """Signal handler for the "value_changed" signal for the rateScale
2378
 
           GtkHScale widget. The user has changed the current rate value.
 
2378
           GtkScale widget. The user has changed the current rate value.
2379
2379
           Save the new rate value based on the currently selected voice
2380
2380
           type.
2381
2381
 
2392
2392
 
2393
2393
    def pitchValueChanged(self, widget):
2394
2394
        """Signal handler for the "value_changed" signal for the pitchScale
2395
 
           GtkHScale widget. The user has changed the current pitch value.
 
2395
           GtkScale widget. The user has changed the current pitch value.
2396
2396
           Save the new pitch value based on the currently selected voice
2397
2397
           type.
2398
2398
 
2409
2409
 
2410
2410
    def volumeValueChanged(self, widget):
2411
2411
        """Signal handler for the "value_changed" signal for the voiceScale
2412
 
           GtkHScale widget. The user has changed the current volume value.
 
2412
           GtkScale widget. The user has changed the current volume value.
2413
2413
           Save the new volume value based on the currently selected voice
2414
2414
           type.
2415
2415