From 9e5264fa842f7111dc2e1ca41e10474c3fe3abb3 Mon Sep 17 00:00:00 2001 From: Yomi Date: Mon, 23 Feb 2015 15:26:00 -0500 Subject: [PATCH] Fixed tense in presentation mode notifications. Summary: Fixed tense in presentation mode notifications. Reviewers: zmike Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2020 --- src/modules/notification/e_mod_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/notification/e_mod_main.c b/src/modules/notification/e_mod_main.c index 925381ee1..f0b6543b6 100644 --- a/src/modules/notification/e_mod_main.c +++ b/src/modules/notification/e_mod_main.c @@ -46,15 +46,15 @@ _notification_show_presentation(Eina_Bool enabled) if (enabled) { - summary = _("Enter Presentation Mode"); - body = _("Enlightenment is in presentation mode." + summary = _("Entered Presentation Mode"); + body = _("Enlightenment has now entered presentation mode." "
During presentation mode, screen saver, lock and " "power saving will be disabled so you are not interrupted."); } else { summary = _("Exited Presentation Mode"); - body = _("Presentation mode is over." + body = _("Presentation mode has been exited." "
Now screen saver, lock and " "power saving settings will be restored."); }