| rev | 
   line source | 
| 
bsw@1710
 | 
     1 #!/usr/bin/env lua
 | 
| 
bsw@1710
 | 
     2 local translations = loadcached(encode.file_path(WEBMCP_BASE_PATH, "locale", "translations.en.lua"))()
 | 
| 
bsw@1710
 | 
     3 
 | 
| 
bsw@1710
 | 
     4 local additional_translations = {
 | 
| 
bsw@1710
 | 
     5 ["Abandon unit and area delegations for this issue"] = "Abandon city and subject area delegations for this issue";
 | 
| 
bsw@1710
 | 
     6 ["Abandon unit delegation"] = "Abandon city delegation";
 | 
| 
bsw@1710
 | 
     7 ["Abandon unit delegation for this area"] = "Abandon city delegation for this subject area";
 | 
| 
bsw@1710
 | 
     8 ["All units"] = "All cities";
 | 
| 
bsw@1710
 | 
     9 ["Apply unit delegation for this area (Currently: #{delegate_name} [#{scope}])"] = "Apply city delegation for this subject area (Currently: #{delegate_name} [#{scope}])";
 | 
| 
bsw@1710
 | 
    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}])";
 | 
| 
bsw@1710
 | 
    11 ["Create new unit"] = "Create new city";
 | 
| 
bsw@1710
 | 
    12 ["Current unit and area delegations need confirmation"] = "Current city and subject area delegations need confirmation";
 | 
| 
bsw@1710
 | 
    13 ["Delegate unit"] = "Delegate city";
 | 
| 
bsw@1710
 | 
    14 ["I want to delegate this organizational unit"] = "I want to delegate this city";
 | 
| 
bsw@1710
 | 
    15 ["I want to take a look at other organizational units"] = "I want to take a look at other cities";
 | 
| 
bsw@1710
 | 
    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.";
 | 
| 
bsw@1710
 | 
    17 ["New organizational unit"] = "New organizational city";
 | 
| 
bsw@1710
 | 
    18 ["Organizational unit"] = "City";
 | 
| 
bsw@1710
 | 
    19 ["Organizational units"] = "Cities";
 | 
| 
bsw@1710
 | 
    20 ["Organizational units and subject areas"] = "Cities and subject areas";
 | 
| 
bsw@1710
 | 
    21 ["Parent unit"] = "Parent city";
 | 
| 
bsw@1710
 | 
    22 ["Select unit first"] = "Select city first";
 | 
| 
bsw@1710
 | 
    23 ["Set unit delegation"] = "Set city delegation";
 | 
| 
bsw@1710
 | 
    24 ["Trustee has no voting right in this unit"] = "Trustee has no voting right in this city";
 | 
| 
bsw@1710
 | 
    25 ["Unit"] = "City";
 | 
| 
bsw@1710
 | 
    26 ["Unit delegation"] = "City delegation";
 | 
| 
bsw@1710
 | 
    27 ["Unit list"] = "City list";
 | 
| 
bsw@1710
 | 
    28 ["You are not entitled to vote in this unit"] = "You are not entitled to vote in this city";
 | 
| 
bsw@1710
 | 
    29 ["You delegated this organizational unit"] = "You delegated this city";
 | 
| 
bsw@1710
 | 
    30 ["You delegated this unit"] = "You delegated this city";
 | 
| 
bsw@1710
 | 
    31 ["[event mail]      Unit: #{name}"] = "      City: #{name}";
 | 
| 
bsw@1710
 | 
    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.";
 | 
| 
bsw@1710
 | 
    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.";
 | 
| 
bsw@1710
 | 
    34 ["change/revoke delegation of organizational unit"] = "change/revoke delegation of city";
 | 
| 
bsw@1710
 | 
    35 ["in my units"] = "in my cities";
 | 
| 
bsw@1710
 | 
    36 ["new unit created"] = "new city created";
 | 
| 
bsw@1727
 | 
    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.";
 | 
| 
bsw@1710
 | 
    38 ["show all units"] = "Show all cities";
 | 
| 
bsw@1710
 | 
    39 ["unit"] = "city";
 | 
| 
bsw@1710
 | 
    40 ["unit updated"] = "city updated";
 | 
| 
bsw@1710
 | 
    41 ["update unit"] = "update city";
 | 
| 
bsw@1710
 | 
    42 }
 | 
| 
bsw@1710
 | 
    43 
 | 
| 
bsw@1710
 | 
    44 for k, v in pairs(additional_translations) do
 | 
| 
bsw@1710
 | 
    45   translations[k] = v
 | 
| 
bsw@1710
 | 
    46 end
 | 
| 
bsw@1710
 | 
    47 return translations;
 |