# HG changeset patch # User bsw # Date 1460955327 -7200 # Node ID 8e0f30273edb9030d864b44cbbcbe4e605df8aa1 # Parent 3f725cfd4547d661fa76cbc23c5a78a6e1bf4902 Changed wording for notification setting diff -r 3f725cfd4547 -r 8e0f30273edb app/main/member/settings_notification.lua --- a/app/main/member/settings_notification.lua Sun Apr 17 17:28:23 2016 +0200 +++ b/app/main/member/settings_notification.lua Mon Apr 18 06:55:27 2016 +0200 @@ -50,6 +50,8 @@ slot.put("
") ui.container{ attr = { style = "margin-left: 3em;" }, content = function() + + ui.container{ content = _"You will receive status update notification on issue phase changes. Additionally you can subscribe for a regular digest including updates on initiative drafts and new suggestions." } ui.container{ content = function() ui.tag{ @@ -62,7 +64,7 @@ } ui.tag{ tag = "label", attr = { ['for'] = "digest_on" }, - content = _"Send me updates on issue phase changes and a regular digest" + content = _"I want to receive a regular digest. Send the digest at:" } end } @@ -96,7 +98,7 @@ for i = 0, 23 do foreign_records[#foreign_records+1] = { id = i, - name = string.format("%02d - %02d", i, i+1), + name = string.format("%02d:00 - %02d:59", i, i), } end ui.field.select{ @@ -121,7 +123,7 @@ } ui.tag{ tag = "label", attr = { ['for'] = "digest_off" }, - content = _"Send me only updates on issue phase changes" + content = _"Don't send me digest" } end } end } @@ -139,7 +141,7 @@ } ui.tag{ tag = "label", attr = { ['for'] = "notify_level_none" }, - content = _"I do not like to receive notifications by email" + content = _"Don't send me notification by email" } end }