~ubuntu-branches/debian/sid/xiphos/sid

« back to all changes in this revision

Viewing changes to src/gnome2/about_xiphos.c

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2014-07-12 17:08:46 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20140712170846-ja9jzhgt51d3fkrd
Tags: 3.2.2+dfsg1-1
* New upstream release.
* Bump standards version.
* Switch uscan to sf.net redirector.
* Unpack waf in get-orig-source target.
* Bump to debhelper 9.
* Add uuid-dev build-dep.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Xiphos Bible Study Tool
3
3
 * about_xiphos.c - Xiphos about dialog
4
4
 *
5
 
 * Copyright (C) 2000-2011 Xiphos Developer Team
 
5
 * Copyright (C) 2000-2014 Xiphos Developer Team
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
107
107
        GtkWidget *about1;
108
108
        gchar versionbuild[128];
109
109
 
110
 
        snprintf
111
 
            (versionbuild, 120, "%s-%s", VERSION,
112
 
#ifdef USE_WEBKIT  
113
 
             "webkit"
114
 
#else    
115
 
  #ifdef USE_GTKMOZEMBED
116
 
             "mozembed"
117
 
  #else    
118
 
             "gtkhtml3"
119
 
  #endif
120
 
#endif
121
 
                );
 
110
        snprintf(versionbuild, 120, "%s", VERSION);
122
111
 
123
112
        about1_logo_pixbuf = pixbuf_finder("about.png", 0, NULL);
124
113
 
130
119
            (GTK_ABOUT_DIALOG (about1), versionbuild);
131
120
        gtk_about_dialog_set_copyright
132
121
            (GTK_ABOUT_DIALOG (about1),
133
 
             _("Copyright © 2000-2011 Xiphos Development Team"));
 
122
             _("Copyright © 2000-2014 Xiphos Development Team"));
134
123
        gtk_about_dialog_set_comments
135
124
            (GTK_ABOUT_DIALOG (about1),
136
125
             _("(formerly known as GnomeSword)\n\nPowered by The SWORD Project.\nWe would like to thank Troy Griffitts and all the other folks who have given us The SWORD Project."));
137
 
#ifndef WIN32
138
126
        gtk_about_dialog_set_website
139
127
            (GTK_ABOUT_DIALOG (about1), "http://xiphos.org/");
140
 
#endif
141
128
        gtk_about_dialog_set_authors
142
129
            (GTK_ABOUT_DIALOG (about1), authors);
143
130
        gtk_about_dialog_set_documenters