From 5e9f4eea451a77ba3b93db3747841ed2bd969e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 30 Sep 2018 14:09:20 +0200 Subject: New upstream version 0.30.1 --- src/Dialogs.vala | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/Dialogs.vala') diff --git a/src/Dialogs.vala b/src/Dialogs.vala index 2ca2678..d99ac9f 100644 --- a/src/Dialogs.vala +++ b/src/Dialogs.vala @@ -46,6 +46,21 @@ public bool confirm_warn_developer_changed(int number) { return response == Gtk.ResponseType.YES; } +#if ENABLE_FACES + +public bool confirm_delete_face(Face face) { + int count = face.get_sources_count(); + string msg = ngettext( + "This will remove the face “%s” from one photo. Continue?", + "This will remove the face “%s” from %d photos. Continue?", + count).printf(face.get_name(), count); + + return AppWindow.negate_affirm_question(msg, _("_Cancel"), _("_Delete"), + Resources.DELETE_FACE_TITLE); +} + +#endif + } namespace ExportUI { @@ -133,7 +148,6 @@ public Gtk.ResponseType export_error_dialog(File dest, bool photos_remaining) { return response; } - namespace ImportUI { private const int REPORT_FAILURE_COUNT = 4; internal const string SAVE_RESULTS_BUTTON_NAME = _("Save Details…"); @@ -644,7 +658,6 @@ public string build_alert_body_text(string? primary_text, string? secondary_text guarded_markup_escape_text(primary_text), secondary_text); } - public class EventRenameDialog : TextEntryDialogMediator { public EventRenameDialog(string? event_name) { base (_("Rename Event"), _("Name:"), event_name); -- cgit v1.2.3