annotate app/main/admin/_action/policy_update.lua @ 631:a9fd951b67bb
Updated englisch, esperanto and french translation file for new strings
 | author | 
 bsw | 
 | date | 
 Mon Jun 25 16:50:30 2012 +0200 (2012-06-25) | 
 | parents | 
 bc6934411019  | 
 | children | 
 54e32e34be01  | 
 
 | rev | 
   line source | 
| 
bsw@194
 | 
     1 local policy = Policy:by_id(param.get_id()) or Policy:new()
 | 
| 
bsw@194
 | 
     2 
 | 
| 
bsw@194
 | 
     3 param.update(
 | 
| 
bsw@194
 | 
     4   policy, 
 | 
| 
bsw@194
 | 
     5   "index", "name", "description", "active", 
 | 
| 
bsw@194
 | 
     6   "admission_time", "discussion_time", "verification_time", "voting_time", 
 | 
| 
bsw@194
 | 
     7   "issue_quorum_num", "issue_quorum_den", 
 | 
| 
bsw@194
 | 
     8   "initiative_quorum_num", "initiative_quorum_den", 
 | 
| 
bsw@282
 | 
     9   "direct_majority_num", "direct_majority_den", "direct_majority_strict", "direct_majority_positive", "direct_majority_non_negative",
 | 
| 
bsw@282
 | 
    10   "indirect_majority_num", "indirect_majority_den", "indirect_majority_strict", "indirect_majority_positive", "indirect_majority_non_negative",
 | 
| 
bsw@282
 | 
    11   "no_reverse_beat_path", "no_multistage_majority"
 | 
| 
bsw@194
 | 
    12 )
 | 
| 
bsw@194
 | 
    13 
 | 
| 
bsw@194
 | 
    14 policy:save()
 |