liquid_feedback_frontend
view locale/translations.en-city.lua @ 1820:2e5b303ea68e
Better handling of use terms, added view for privacy policy
| author | bsw | 
|---|---|
| date | Wed Jan 26 00:33:21 2022 +0100 (2022-01-26) | 
| parents | 9b739047ec33 | 
| children | 
 line source
     1 #!/usr/bin/env lua
     2 local translations = loadcached(encode.file_path(WEBMCP_BASE_PATH, "locale", "translations.en.lua"))()
     4 local additional_translations = {
     5 ["Abandon unit and area delegations for this issue"] = "Abandon city and subject area delegations for this issue";
     6 ["Abandon unit delegation"] = "Abandon city delegation";
     7 ["Abandon unit delegation for this area"] = "Abandon city delegation for this subject area";
     8 ["All units"] = "All cities";
     9 ["Apply unit delegation for this area (Currently: #{delegate_name} [#{scope}])"] = "Apply city delegation for this subject area (Currently: #{delegate_name} [#{scope}])";
    10 ["Apply unit or area delegation for this issue (Currently: #{delegate_name} [#{scope}])"] = "Apply city or subject area delegation for this issue (Currently: #{delegate_name} [#{scope}])";
    11 ["Create new unit"] = "Create new city";
    12 ["Current unit and area delegations need confirmation"] = "Current city and subject area delegations need confirmation";
    13 ["Delegate unit"] = "Delegate city";
    14 ["I want to delegate this organizational unit"] = "I want to delegate this city";
    15 ["I want to take a look at other organizational units"] = "I want to take a look at other cities";
    16 ["Minimum number of supporters relative to the number of active participants in the organizational unit."] = "Minimum number of supporters relative to the number of active participants in the city.";
    17 ["New organizational unit"] = "New organizational city";
    18 ["Organizational unit"] = "City";
    19 ["Organizational units"] = "Cities";
    20 ["Organizational units and subject areas"] = "Cities and subject areas";
    21 ["Parent unit"] = "Parent city";
    22 ["Select unit first"] = "Select city first";
    23 ["Set unit delegation"] = "Set city delegation";
    24 ["Trustee has no voting right in this unit"] = "Trustee has no voting right in this city";
    25 ["Unit"] = "City";
    26 ["Unit delegation"] = "City delegation";
    27 ["Unit list"] = "City list";
    28 ["You are not entitled to vote in this unit"] = "You are not entitled to vote in this city";
    29 ["You delegated this organizational unit"] = "You delegated this city";
    30 ["You delegated this unit"] = "You delegated this city";
    31 ["[event mail]      Unit: #{name}"] = "      City: #{name}";
    32 ["[introduction] organizational units"] = "To allow discussions and decisions by sub groups of participants (e.g. by the members of a subdivision of an organization), participants can be assigned to different units. Every organizational unit can have its own subject areas.";
    33 ["[introduction] vote delegation"] = "Delegations allow for a dynamic division of labor. A delegation is a proxy statement (voting power under a power of attorney), can be altered at any time, is not bound to directives and can be delegated onward. Delegations can be used for a whole organizational unit, for a subject area within an organizational unit, or for a specific issue. More specific delegations overrule more general delegations. Delegations are used in both the discourse (phase 1 to 3) and the voting phase. Any activity suspends existing delegations for the given activity.";
    34 ["change/revoke delegation of organizational unit"] = "change/revoke delegation of city";
    35 ["in my units"] = "in my cities";
    36 ["new unit created"] = "new city created";
    37 ["open the organizational unit, subject area or issue you like to delegate and follow the instruction on that page."] = "open the city, subject area or issue you want to delegate and follow the instruction on that page.";
    38 ["show all units"] = "Show all cities";
    39 ["unit"] = "city";
    40 ["unit updated"] = "city updated";
    41 ["update unit"] = "update city";
    42 }
    44 for k, v in pairs(additional_translations) do
    45   translations[k] = v
    46 end
    47 return translations;
