~ubuntu-branches/ubuntu/trusty/gnomeradio/trusty

« back to all changes in this revision

Viewing changes to .pc/gnomeradio-non_modal.patch/src/gui.c

  • Committer: Package Import Robot
  • Author(s): POJAR GEORGE
  • Date: 2013-09-11 15:06:44 UTC
  • Revision ID: package-import@ubuntu.com-20130911150644-l8x3ubsyqmrvnkh8
Tags: 1.8-2ubuntu20
* Updated debian/patches/gnomeradio-station_list.patch: Prevent to parse
  malformed/incomplete/invalid XML file.
* Updated debian/patches/gnomeradio-auto_device.patch:
  - Automatically detect radio device when users type auto in settings field.
  - Updated error messages to be clear and precise.
* Updated debian/patches/gnomeradio-alsamixer.patch: Make presets list the
  default widget when open settings dialog. Presets are the most common
  settings for users than devices settings.
* Updated debian/patches/gnomeradio-about.patch: It is not safe in principle
  to write raw UTF-8 in narrow string literals, made to be multibyte
  encodings.
* debian/patches/gnomeradio-prefs.patch: Renamed to
  debian/patches/gnomeradio-about.patch.
* debian/patches/gnomeradio-preferences.patch: Make sentence capitalization in
  text and increased preferences dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
817
817
static void about_button_clicked_cb(GtkButton *button, gpointer data)
818
818
{
819
819
        static GtkWidget *about;
820
 
        const char *authors[] = {"Jörgen Scheibengruber <mfcn@gmx.de>", NULL};
 
820
        const char *authors[] = {"J\xc3\xb6rgen Scheibengruber <mfcn@gmx.de>", NULL};
821
821
        
822
822
        /* Feel free to put your names here translators :-) */
823
823
        char *translators = _("TRANSLATORS");
831
831
        
832
832
        gtk_show_about_dialog (NULL,
833
833
                               "version", VERSION,
834
 
                               "copyright", _("Copyright \xc2\xa9 2001 - 2006 Jörgen Scheibengruber"),
 
834
                               "copyright", _("Copyright \xc2\xa9 2001 - 2006 J\xc3\xb6rgen Scheibengruber"),
835
835
                               "comments", _("Listen to FM radio"),
836
836
                               "authors", authors,
837
837
                               "translator-credits", strcmp("TRANSLATORS", translators) ? translators : NULL,