bsw@1710: #!/usr/bin/env lua bsw@1710: local translations = loadcached(encode.file_path(WEBMCP_BASE_PATH, "locale", "translations.en.lua"))() bsw@1710: bsw@1710: local additional_translations = { bsw@1710: ["Abandon unit and area delegations for this issue"] = "Abandon city and subject area delegations for this issue"; bsw@1710: ["Abandon unit delegation"] = "Abandon city delegation"; bsw@1710: ["Abandon unit delegation for this area"] = "Abandon city delegation for this subject area"; bsw@1710: ["All units"] = "All cities"; bsw@1710: ["Apply unit delegation for this area (Currently: #{delegate_name} [#{scope}])"] = "Apply city delegation for this subject area (Currently: #{delegate_name} [#{scope}])"; bsw@1710: ["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: ["Create new unit"] = "Create new city"; bsw@1710: ["Current unit and area delegations need confirmation"] = "Current city and subject area delegations need confirmation"; bsw@1710: ["Delegate unit"] = "Delegate city"; bsw@1710: ["I want to delegate this organizational unit"] = "I want to delegate this city"; bsw@1710: ["I want to take a look at other organizational units"] = "I want to take a look at other cities"; bsw@1710: ["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: ["New organizational unit"] = "New organizational city"; bsw@1710: ["Organizational unit"] = "City"; bsw@1710: ["Organizational units"] = "Cities"; bsw@1710: ["Organizational units and subject areas"] = "Cities and subject areas"; bsw@1710: ["Parent unit"] = "Parent city"; bsw@1710: ["Select unit first"] = "Select city first"; bsw@1710: ["Set unit delegation"] = "Set city delegation"; bsw@1710: ["Trustee has no voting right in this unit"] = "Trustee has no voting right in this city"; bsw@1710: ["Unit"] = "City"; bsw@1710: ["Unit delegation"] = "City delegation"; bsw@1710: ["Unit list"] = "City list"; bsw@1710: ["You are not entitled to vote in this unit"] = "You are not entitled to vote in this city"; bsw@1710: ["You delegated this organizational unit"] = "You delegated this city"; bsw@1710: ["You delegated this unit"] = "You delegated this city"; bsw@1710: ["[event mail] Unit: #{name}"] = " City: #{name}"; bsw@1710: ["[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: ["[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: ["change/revoke delegation of organizational unit"] = "change/revoke delegation of city"; bsw@1710: ["in my units"] = "in my cities"; bsw@1710: ["new unit created"] = "new city created"; bsw@1727: ["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: ["show all units"] = "Show all cities"; bsw@1710: ["unit"] = "city"; bsw@1710: ["unit updated"] = "city updated"; bsw@1710: ["update unit"] = "update city"; bsw@1710: } bsw@1710: bsw@1710: for k, v in pairs(additional_translations) do bsw@1710: translations[k] = v bsw@1710: end bsw@1710: return translations;