Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
i18n patch so that Jurgen works again. Fixes #905.
git-svn-id: http://svn.osgeo.org/qgis/trunk@7974 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Jan 15, 2008
1 parent 0afc67d commit e7198c7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Expand Up @@ -10,6 +10,9 @@
# a blank image will be displayed.
# Images are read out of $PREFIX/share/qgis/images/developers/
# ---------------------------------------------------------
#
# ALWAYS USE UTF-8 WHEN WRITING THIS FILE!
#
Gary E.Sherman <sherman at mrcc dot com>
Steve Halasz <stevehalasz at users.sourceforge.net>
Marco Hugentobler <mhugent at users.sourceforge.net>
Expand Down
4 changes: 4 additions & 0 deletions SPONSORS
Expand Up @@ -8,6 +8,10 @@
# name|<website>
# This list should be sorted by first name. The
# website entry is optional.
# -------------------------------------------------------
#
# ALWAYS USE UTF-8 WHEN WRITING THIS FILE!
#
Aaron Racicoti, Ecotrust|www.ecotrust.org
Adam Lane
Albin Blaschka|www.albinblaschka.info
Expand Down
5 changes: 3 additions & 2 deletions src/app/qgsabout.cpp
Expand Up @@ -61,9 +61,8 @@ void QgsAbout::init()
#endif
if ( file.open( QIODevice::ReadOnly ) ) {
QTextStream stream( &file );
#ifdef Q_OS_DARWIN
// Always use UTF-8
stream.setCodec("UTF-8");
#endif
QString line;
#ifdef QGISDEBUG
int i = 1;
Expand Down Expand Up @@ -118,6 +117,8 @@ void QgsAbout::init()
+ "</th><th>" + tr("Name") + "</th><th>" + tr("Website") + "</th></tr>";
QString website;
QTextStream sponsorStream( &sponsorFile );
// Always use UTF-8
sponsorStream.setCodec("UTF-8");
QString sline;
int count = 0;
while ( !sponsorStream.atEnd() )
Expand Down

0 comments on commit e7198c7

Please sign in to comment.