liquid_feedback_frontend
diff locale/translations.en-city.lua @ 1710:62b8c3e17112
Added translation file with city instead of unit
author | bsw |
---|---|
date | Mon Sep 27 12:06:15 2021 +0200 (2021-09-27) |
parents | |
children | 9b739047ec33 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/locale/translations.en-city.lua Mon Sep 27 12:06:15 2021 +0200 1.3 @@ -0,0 +1,47 @@ 1.4 +#!/usr/bin/env lua 1.5 +local translations = loadcached(encode.file_path(WEBMCP_BASE_PATH, "locale", "translations.en.lua"))() 1.6 + 1.7 +local additional_translations = { 1.8 +["Abandon unit and area delegations for this issue"] = "Abandon city and subject area delegations for this issue"; 1.9 +["Abandon unit delegation"] = "Abandon city delegation"; 1.10 +["Abandon unit delegation for this area"] = "Abandon city delegation for this subject area"; 1.11 +["All units"] = "All cities"; 1.12 +["Apply unit delegation for this area (Currently: #{delegate_name} [#{scope}])"] = "Apply city delegation for this subject area (Currently: #{delegate_name} [#{scope}])"; 1.13 +["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}])"; 1.14 +["Create new unit"] = "Create new city"; 1.15 +["Current unit and area delegations need confirmation"] = "Current city and subject area delegations need confirmation"; 1.16 +["Delegate unit"] = "Delegate city"; 1.17 +["I want to delegate this organizational unit"] = "I want to delegate this city"; 1.18 +["I want to take a look at other organizational units"] = "I want to take a look at other cities"; 1.19 +["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."; 1.20 +["New organizational unit"] = "New organizational city"; 1.21 +["Organizational unit"] = "City"; 1.22 +["Organizational units"] = "Cities"; 1.23 +["Organizational units and subject areas"] = "Cities and subject areas"; 1.24 +["Parent unit"] = "Parent city"; 1.25 +["Select unit first"] = "Select city first"; 1.26 +["Set unit delegation"] = "Set city delegation"; 1.27 +["Trustee has no voting right in this unit"] = "Trustee has no voting right in this city"; 1.28 +["Unit"] = "City"; 1.29 +["Unit delegation"] = "City delegation"; 1.30 +["Unit list"] = "City list"; 1.31 +["You are not entitled to vote in this unit"] = "You are not entitled to vote in this city"; 1.32 +["You delegated this organizational unit"] = "You delegated this city"; 1.33 +["You delegated this unit"] = "You delegated this city"; 1.34 +["[event mail] Unit: #{name}"] = " City: #{name}"; 1.35 +["[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."; 1.36 +["[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."; 1.37 +["change/revoke delegation of organizational unit"] = "change/revoke delegation of city"; 1.38 +["in my units"] = "in my cities"; 1.39 +["new unit created"] = "new city created"; 1.40 +["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 like to delegate and follow the instruction on that page."; 1.41 +["show all units"] = "Show all cities"; 1.42 +["unit"] = "city"; 1.43 +["unit updated"] = "city updated"; 1.44 +["update unit"] = "update city"; 1.45 +} 1.46 + 1.47 +for k, v in pairs(additional_translations) do 1.48 + translations[k] = v 1.49 +end 1.50 +return translations;