liquid_feedback_frontend

diff app/main/timeline/_constants.lua @ 11:77d58efe99fd

Version beta7

Important security fixes:
- Added missing HTML encoding to postal address of member
- Link to discussion URL only if it starts with http(s)://

Other bugfixes:
- Fixed wrong display of 2nd level delegating voters for an initiative
- Do not display invited initiators as initiators while voting
- Added missing translation

New features:
- Public message of the day
- Both direct and indirect supporter count is shown in tab heads
- Support shown in initiative lists

Language chooser at the login page has been added (again)
author bsw
date Fri Jan 22 12:00:00 2010 +0100 (2010-01-22)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/app/main/timeline/_constants.lua	Fri Jan 22 12:00:00 2010 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +event_names = {
     1.5 +  issue_created                 = _"New issue",
     1.6 +  issue_canceled                = _"Issue canceled",
     1.7 +  issue_accepted                = _"Issue accepted",
     1.8 +  issue_half_frozen             = _"Issue frozen",
     1.9 +  issue_finished_without_voting = _"Issue finished without voting",
    1.10 +  issue_voting_started          = _"Voting started",
    1.11 +  issue_finished_after_voting   = _"Issue finished",
    1.12 +  initiative_created            = _"New initiative",
    1.13 +  initiative_revoked            = _"Initiative revoked",
    1.14 +  draft_created                 = _"New draft",
    1.15 +  suggestion_created            = _"New suggestion"
    1.16 +}
    1.17 +
    1.18 +filter_names = {
    1.19 +  contact = _"Saved as contact",
    1.20 +  interested = _"Interested",
    1.21 +  supporter = _"Supported",
    1.22 +  potential_supporter = _"Potential supported",
    1.23 +  initiator = _"Initiated",
    1.24 +  membership = _"Member of area"
    1.25 +}
    1.26 +
    1.27 +option_names = {}
    1.28 +for key, val in pairs(event_names) do
    1.29 +  option_names[key] = val
    1.30 +end
    1.31 +for key, val in pairs(filter_names) do
    1.32 +  option_names[key] = val
    1.33 +end
    1.34 +

Impressum / About Us