Plugin.MailMerge: Add some missing comments to translators
This commit is contained in:
parent
3f5f4a4ac4
commit
ee53621d3b
1 changed files with 9 additions and 1 deletions
|
|
@ -195,6 +195,8 @@ public class Plugin.MailMerge :
|
|||
);
|
||||
composer.register_action(load_action);
|
||||
composer.append_menu_item(
|
||||
/// Translators: Menu item label for invoking mail
|
||||
/// merge in composer
|
||||
new Actionable(_("Mail Merge"), load_action)
|
||||
);
|
||||
}
|
||||
|
|
@ -202,9 +204,15 @@ public class Plugin.MailMerge :
|
|||
|
||||
private async void load_composer_data(Composer composer) {
|
||||
var chooser = new Gtk.FileChooserNative(
|
||||
_("Mail Merge"), null, OPEN, _("_Open"), _("_Cancel")
|
||||
/// Translators: File chooser title after invoking mail
|
||||
/// merge in composer
|
||||
_("Mail Merge"),
|
||||
null, OPEN,
|
||||
_("_Open"),
|
||||
_("_Cancel")
|
||||
);
|
||||
var csv_filter = new Gtk.FileFilter();
|
||||
/// Translators: File chooser filer label
|
||||
csv_filter.set_filter_name(_("Comma separated values (CSV)"));
|
||||
csv_filter.add_mime_type("text/csv");
|
||||
chooser.add_filter(csv_filter);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue