Change "New Manga" to "New..."

Since it shows a dialog box it's better to indicate that with `...'.
This commit is contained in:
Tom Willemsen 2012-10-24 00:22:22 +02:00
parent f33ee443de
commit 5849e3d2e4

View file

@ -102,7 +102,7 @@ add_menu(EomMainWindow *window)
appmenu = HILDON_APP_MENU(hildon_app_menu_new());
new_button = hildon_gtk_button_new(HILDON_SIZE_AUTO);
gtk_button_set_label(GTK_BUTTON(new_button), "New Manga");
gtk_button_set_label(GTK_BUTTON(new_button), "New...");
g_signal_connect_after(new_button, "clicked", G_CALLBACK(on_new),
GTK_WINDOW(window));
hildon_app_menu_append(appmenu, GTK_BUTTON(new_button));