Skip to content

Commit

Permalink
Translate 5 more strings
Browse files Browse the repository at this point in the history
  • Loading branch information
domcorbex committed Aug 10, 2017
1 parent b8896a2 commit 700a6d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/gnome2/dialog.c
Expand Up @@ -253,19 +253,19 @@ static GtkWidget *create_dialog_alert(GS_DIALOG *info)
#if GTK_CHECK_VERSION(3, 10, 0)
if (info->ok)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
"_Ok", GTK_RESPONSE_OK);
_("_Ok"), GTK_RESPONSE_OK);
if (info->yes)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
"_Yes", GTK_RESPONSE_YES);
_("_Yes"), GTK_RESPONSE_YES);
if (info->save)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
"_Save", GTK_RESPONSE_YES);
_("_Save"), GTK_RESPONSE_YES);
if (info->no)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
"_No", GTK_RESPONSE_NO);
_("_No"), GTK_RESPONSE_NO);
if (info->cancel)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
"_Cancel", GTK_RESPONSE_CANCEL);
_("_Cancel"), GTK_RESPONSE_CANCEL);
#else
if (info->ok)
gtk_dialog_add_button(GTK_DIALOG(dialog_alert),
Expand Down
2 changes: 1 addition & 1 deletion ui/export-dialog.gtkbuilder
Expand Up @@ -32,7 +32,7 @@
<property name="layout_style">end</property>
<child>
<object class="GtkButton" id="cancelbutton1">
<property name="label">_Cancel</property>
<property name="label" translatable="yes">_Cancel</property>
<property name="use_action_appearance">False</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
Expand Down

0 comments on commit 700a6d9

Please sign in to comment.