~ubuntu-branches/debian/lenny/evolution/lenny

« back to all changes in this revision

Viewing changes to plugins/itip-formatter/itip-view.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-06-19 10:52:49 UTC
  • Revision ID: james.westby@ubuntu.com-20070619105249-g8exw8g89lmp94b6
Tags: upstream-2.11.4
ImportĀ upstreamĀ versionĀ 2.11.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1009
1009
        priv->rsvp_box = gtk_vbox_new (FALSE, 12);
1010
1010
        gtk_box_pack_start (GTK_BOX (vbox), priv->rsvp_box, FALSE, FALSE, 0);
1011
1011
 
1012
 
        priv->rsvp_check = gtk_check_button_new_with_mnemonic ("Send _reply to sender");
 
1012
        priv->rsvp_check = gtk_check_button_new_with_mnemonic (_("Send _reply to sender"));
1013
1013
        gtk_widget_show (priv->rsvp_check);
1014
1014
        gtk_box_pack_start (GTK_BOX (priv->rsvp_box), priv->rsvp_check, FALSE, FALSE, 0);
1015
1015
 
1037
1037
        priv->update_box = gtk_vbox_new (FALSE, 12);
1038
1038
        gtk_box_pack_start (GTK_BOX (vbox), priv->update_box, FALSE, FALSE, 0);
1039
1039
 
1040
 
        priv->update_check = gtk_check_button_new_with_mnemonic (_("Send u_pdates to attendees"));
 
1040
        priv->update_check = gtk_check_button_new_with_mnemonic (_("Send _updates to attendees"));
1041
1041
        gtk_widget_show (priv->update_check);
1042
1042
        gtk_box_pack_start (GTK_BOX (priv->update_box), priv->update_check, FALSE, FALSE, 0);
1043
1043
 
1046
1046
        gtk_widget_show (priv->recur_box);
1047
1047
        gtk_box_pack_start (GTK_BOX (vbox), priv->recur_box, FALSE, FALSE, 0);
1048
1048
 
1049
 
        priv->recur_check = gtk_check_button_new_with_mnemonic (_("A_pply to all instances"));
 
1049
        priv->recur_check = gtk_check_button_new_with_mnemonic (_("_Apply to all instances"));
1050
1050
        gtk_box_pack_start (GTK_BOX (priv->recur_box), priv->recur_check, FALSE, FALSE, 0);
1051
1051
 
1052
1052
        g_signal_connect (priv->recur_check, "toggled", G_CALLBACK (recur_toggled_cb), view);