diff options
Diffstat (limited to 'hildon/hildon-font-selection-dialog.c')
-rw-r--r-- | hildon/hildon-font-selection-dialog.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/hildon/hildon-font-selection-dialog.c b/hildon/hildon-font-selection-dialog.c index 175edc2..f69899b 100644 --- a/hildon/hildon-font-selection-dialog.c +++ b/hildon/hildon-font-selection-dialog.c @@ -49,6 +49,7 @@ #include "hildon-caption.h" #include "hildon-color-button.h" #include "hildon-font-selection-dialog-private.h" +#include "hildon-stock.h" /* These are what we use as the standard font sizes, for the size list */ @@ -764,8 +765,7 @@ hildon_font_selection_dialog_init (HildonFontSelectionDialog *font /* Add dialog buttons */ gtk_dialog_add_button (GTK_DIALOG (fontseldiag), - _("wdgt_bd_done"), - GTK_RESPONSE_OK); + HILDON_STOCK_DONE, GTK_RESPONSE_OK); #if 0 preview_button = gtk_button_new_with_label (_("ecdg_bd_font_dialog_preview")); @@ -1148,11 +1148,8 @@ hildon_font_selection_dialog_show_preview (HildonFontSelectionDialog *font /* preview dialog init */ preview_dialog = gtk_dialog_new_with_buttons (_("ecdg_ti_preview_font"), NULL, - GTK_DIALOG_MODAL | - GTK_DIALOG_DESTROY_WITH_PARENT | - GTK_DIALOG_NO_SEPARATOR, - _("wdgt_bd_done"), - GTK_RESPONSE_ACCEPT, + GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR, + HILDON_STOCK_DONE, GTK_RESPONSE_ACCEPT, NULL); str = (show_ref) ? g_strconcat (_("ecdg_fi_preview_font_preview_reference"), priv->preview_text, 0) : |