discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9e5264fa842f7111dc2e1ca41e10474c3fe3abb3
commit 9e5264fa842f7111dc2e1ca41e10474c3fe3abb3 Author: Yomi <abyo...@gmail.com> Date: Mon Feb 23 15:26:00 2015 -0500 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 925381e..f0b6543 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 <b>presentation</b> mode." + summary = _("Entered Presentation Mode"); + body = _("Enlightenment has now entered <b>presentation</b> mode." "<br>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." "<br>Now screen saver, lock and " "power saving settings will be restored."); } --