Hi
Attached typo fixes a typo in a translatable string
of the GTK GUI.
Regards
Dominique
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/gui_gtk.c b/src/gui_gtk.c
index 6decec0..55d1000 100644
--- a/src/gui_gtk.c
+++ b/src/gui_gtk.c
@@ -1661,7 +1661,7 @@ dialog_add_buttons(GtkDialog *dialog, char_u *button_string)
else if (button_equal(label, "Ok")) label = _("OK");
else if (button_equal(label, "Yes")) label = _("Yes");
else if (button_equal(label, "No")) label = _("No");
- else if (button_equal(label, "Cancel")) label = _("Canccl");
+ else if (button_equal(label, "Cancel")) label = _("Cancel");
# else
if (button_equal(label, ok[0])) label = GTK_STOCK_OK;
else if (button_equal(label, ync[0])) label = GTK_STOCK_YES;