Update other trash/delete menu items for consistency
This commit is contained in:
parent
e7372ea1cb
commit
c5d0561c00
2 changed files with 9 additions and 9 deletions
|
|
@ -151,8 +151,8 @@ public class MainToolbar : Gtk.Box {
|
|||
this.selected_conversations
|
||||
);
|
||||
this.archive_button.tooltip_text = ngettext(
|
||||
"Archive conversation (A)",
|
||||
"Archive conversations (A)",
|
||||
"Archive conversation",
|
||||
"Archive conversations",
|
||||
this.selected_conversations
|
||||
);
|
||||
|
||||
|
|
@ -160,16 +160,16 @@ public class MainToolbar : Gtk.Box {
|
|||
this.trash_delete_button.action_name = "win."+Application.Controller.ACTION_TRASH_CONVERSATION;
|
||||
this.trash_delete_button.image = trash_image;
|
||||
this.trash_delete_button.tooltip_text = ngettext(
|
||||
"Move conversation to Trash (Delete, Backspace)",
|
||||
"Move conversations to Trash (Delete, Backspace)",
|
||||
"Move conversation to Trash",
|
||||
"Move conversations to Trash",
|
||||
this.selected_conversations
|
||||
);
|
||||
} else {
|
||||
this.trash_delete_button.action_name = "win."+Application.Controller.ACTION_DELETE_CONVERSATION;
|
||||
this.trash_delete_button.image = delete_image;
|
||||
this.trash_delete_button.tooltip_text = ngettext(
|
||||
"Delete conversation (Shift+Delete)",
|
||||
"Delete conversations (Shift+Delete)",
|
||||
"Delete conversation",
|
||||
"Delete conversations",
|
||||
this.selected_conversations
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,15 +46,15 @@
|
|||
<section id="email_menu_trash">
|
||||
<item>
|
||||
<!-- Translators: Menu item to move a single, specific message
|
||||
to the trash -->
|
||||
<attribute name="label" translatable="yes">_Trash</attribute>
|
||||
to the trash folder -->
|
||||
<attribute name="label" translatable="yes">Move message to _Trash</attribute>
|
||||
<attribute name="action">eml.trash_msg</attribute>
|
||||
</item>
|
||||
</section>
|
||||
<section id="email_menu_delete">
|
||||
<item>
|
||||
<!-- Translators: Menu item to delete a single, specific message -->
|
||||
<attribute name="label" translatable="yes">_Delete…</attribute>
|
||||
<attribute name="label" translatable="yes">_Delete message…</attribute>
|
||||
<attribute name="action">eml.delete_msg</attribute>
|
||||
</item>
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue