gnome-specimen r69 - in branches/import-from-bzr: . data po specimen



Author: wbolster
Date: Tue Jun 17 18:53:02 2008
New Revision: 69
URL: http://svn.gnome.org/viewvc/gnome-specimen?rev=69&view=rev

Log:
* data/gnome-specimen.desktop.in.in:
* data/gnome-specimen.glade:
* specimen/specimenwindow.py:
  - Use correct application name as window name, in the
    about box and in the desktop file. The application is
    now called "Specimen Font Previewer" in the menu, but is
    called GNOME Specimen in the about box (which is the
    real name).

* po/nl.po:
  - Updated Dutch translations


Modified:
   branches/import-from-bzr/   (props changed)
   branches/import-from-bzr/data/gnome-specimen.desktop.in.in
   branches/import-from-bzr/data/gnome-specimen.glade
   branches/import-from-bzr/po/nl.po
   branches/import-from-bzr/specimen/specimenwindow.py

Modified: branches/import-from-bzr/data/gnome-specimen.desktop.in.in
==============================================================================
--- branches/import-from-bzr/data/gnome-specimen.desktop.in.in	(original)
+++ branches/import-from-bzr/data/gnome-specimen.desktop.in.in	Tue Jun 17 18:53:02 2008
@@ -1,6 +1,6 @@
 [Desktop Entry]
 Encoding=UTF-8
-_Name=Specimen Font Preview
+_Name=Specimen Font Previewer
 _GenericName=Font Previewer
 _Comment=Preview and compare fonts
 Exec=gnome-specimen

Modified: branches/import-from-bzr/data/gnome-specimen.glade
==============================================================================
--- branches/import-from-bzr/data/gnome-specimen.glade	(original)
+++ branches/import-from-bzr/data/gnome-specimen.glade	Tue Jun 17 18:53:02 2008
@@ -5,7 +5,7 @@
 <requires lib="gnome"/>
 
 <widget class="GtkWindow" id="main-window">
-  <property name="title" translatable="yes">GNOME Specimen</property>
+  <property name="title" translatable="yes">Specimen Font Previewer</property>
   <property name="type">GTK_WINDOW_TOPLEVEL</property>
   <property name="window_position">GTK_WIN_POS_NONE</property>
   <property name="modal">False</property>

Modified: branches/import-from-bzr/specimen/specimenwindow.py
==============================================================================
--- branches/import-from-bzr/specimen/specimenwindow.py	(original)
+++ branches/import-from-bzr/specimen/specimenwindow.py	Tue Jun 17 18:53:02 2008
@@ -588,13 +588,15 @@
             self.about_dialog
 
         except (AttributeError):
-            name = _('GNOME Specimen')
+            name = 'GNOME Specimen'
             version = config.VERSION
             comments = _('Preview and compare fonts')
             copyright = u'Copyright \u00A9 2006 Wouter Bolsterlee'
             authors = ['Wouter Bolsterlee (wbolster gnome org)']
-            translators = _('translator-credits')
             pixmap = gtk.gdk.pixbuf_new_from_file(os.path.join(config.PKGDATADIR, 'gnome-specimen.png'))
+            # Note to translators: translate this into your full name. It will
+            # be displayed in the application's about dialog.
+            translators = _('translator-credits')
 
             self.about_dialog = gtk.AboutDialog()
             self.about_dialog.set_transient_for(self.window)
@@ -603,8 +605,8 @@
             self.about_dialog.set_comments(comments)
             self.about_dialog.set_copyright(copyright)
             self.about_dialog.set_authors(authors)
-            self.about_dialog.set_translator_credits(translators)
             self.about_dialog.set_logo(pixmap)
+            self.about_dialog.set_translator_credits(translators)
 
             # just hide the about_dialog after first usage
             self.about_dialog.connect('response', lambda widget, response: widget.hide())



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]