After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 324988 - String issues and pyGTK version requirements
String issues and pyGTK version requirements
Status: RESOLVED FIXED
Product: gnome-schedule
Classification: Other
Component: general
0.9.0
Other All
: Normal normal
: ---
Assigned To: GNOME Schedule Maintainers
GNOME Schedule Maintainers
Depends on:
Blocks: 324135
 
 
Reported: 2005-12-25 22:23 UTC by Frank Arnold
Modified: 2005-12-26 14:49 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Proposed patch for string issues (3.12 KB, patch)
2005-12-25 22:25 UTC, Frank Arnold
committed Details | Review

Description Frank Arnold 2005-12-25 22:23:38 UTC
gnome-schedule.py and scheduleapplet.py:

print _("You need to install pyGTK or GTKv2, ")
print _("or set your PYTHONPATH correctly.")
print _("try: export PYTHONPATH= ")

This results in three separate strings for translation. Translators possibly don't see the context between these strings. Better:

print _("You need to install pyGTK or GTKv2,\n"
        "or set your PYTHONPATH correctly.\n"
        "try: export PYTHONPATH= ")


crontab.py:
"Must be between %(min)s and %(max)s"

Two strings with usage of dictionaries, but parameters not given as dictionary. One string without usage of dictionary.


configure.ac:
pyGTK version requirement should be at least 2.6, because we use gtk.AboutDialog now.
Comment 1 Frank Arnold 2005-12-25 22:25:27 UTC
Created attachment 56391 [details] [review]
Proposed patch for string issues
Comment 2 Gaute Hope 2005-12-26 12:52:09 UTC
Applied.
Comment 3 Gaute Hope 2005-12-26 14:49:25 UTC
configure.ac: now checking for 2.6