~vcs-imports/balsa/master

« back to all changes in this revision

Viewing changes to src/ab-window.c

  • Committer: Peter Bloomfield
  • Author(s): Piotr Drąg
  • Date: 2016-11-23 01:07:26 UTC
  • Revision ID: git-v1:55746ccf7e59a9f001eb797cc38808b9bbb94af6
Clean some translatable strings

Typo fixes, correct capitalization, double spaces, etc.

Signed-off-by: Peter Bloomfield <PeterBloomfield@bellsouth.net>

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
 
190
190
    renderer = gtk_cell_renderer_text_new();
191
191
    column =
192
 
        gtk_tree_view_column_new_with_attributes(_("E-Mail Address"),
 
192
        gtk_tree_view_column_new_with_attributes(_("Email Address"),
193
193
                                                 renderer,
194
194
                                                 "text",
195
195
                                                 LIST_COLUMN_ADDRESS_STRING,
329
329
    gtk_container_add(GTK_CONTAINER(hbox), w);
330
330
    gtk_widget_show(GTK_WIDGET(w));
331
331
 
332
 
    w = gtk_button_new_with_mnemonic(_("_Re-Import"));
 
332
    w = gtk_button_new_with_mnemonic(_("_Re-import"));
333
333
    g_signal_connect(G_OBJECT(w), "clicked",
334
334
                     G_CALLBACK(balsa_ab_window_reload),
335
335
                       ab);