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 707488 - Typo in error message in gtkfilechooserdefault.c
Typo in error message in gtkfilechooserdefault.c
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: .General
3.9.x
Other All
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2013-09-04 16:39 UTC by Jiro Matsuzawa
Modified: 2013-09-04 23:44 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix the typo (838 bytes, patch)
2013-09-04 16:41 UTC, Jiro Matsuzawa
none Details | Review

Description Jiro Matsuzawa 2013-09-04 16:39:04 UTC
There seems to be a typo in gtkfilechooserdefault.c. See the following patch:
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c
index 7f52872..2438b8b 100644
--- a/gtk/gtkfilechooserdefault.c
+++ b/gtk/gtkfilechooserdefault.c
@@ -769,7 +769,7 @@ static void
 error_filename_to_long_dialog (GtkFileChooserDefault *impl)
 {
   error_message (impl,
-                 _("Cannot create file as the filename is to long"),
+                 _("Cannot create file as the filename is too long"),
                  _("Try using a shorter name."));
 }
Comment 1 Jiro Matsuzawa 2013-09-04 16:41:53 UTC
Created attachment 254109 [details] [review]
Fix the typo