Update print cc and bcc header label names to match others

This commit is contained in:
Michael Gratton 2018-09-30 23:35:57 +10:00
parent 70d56b179a
commit 8b7e0ef6d8

View file

@ -816,11 +816,11 @@ public class ConversationEmail : Gtk.Box, Geary.BaseInterface {
builder.add_string_value(this.email.to.to_string());
}
if (this.email.cc != null) {
builder.set_member_name(_("CC:"));
builder.set_member_name(_("Cc:"));
builder.add_string_value(this.email.cc.to_string());
}
if (this.email.bcc != null) {
builder.set_member_name(_("BCC:"));
builder.set_member_name(_("Bcc:"));
builder.add_string_value(this.email.bcc.to_string());
}
if (this.email.date != null) {