# HG changeset patch # User bsw # Date 1414407438 -3600 # Node ID 286bbd976e84533dcc5142362c5c832c77caf0f7 # Parent 34625fb8983cf84638be8d60f77cc91d106c3614 Added missing translation for "no delegation set" diff -r 34625fb8983c -r 286bbd976e84 app/main/delegation/show.lua --- a/app/main/delegation/show.lua Mon Oct 27 11:51:23 2014 +0100 +++ b/app/main/delegation/show.lua Mon Oct 27 11:57:18 2014 +0100 @@ -149,7 +149,7 @@ local record if issue then local delegate_name = "" - local scope = "no delegation set" + local scope = _"no delegation set" local area_delegation = Delegation:by_pk(app.session.member_id, nil, issue.area_id) if area_delegation then delegate_name = area_delegation.trustee and area_delegation.trustee.name or _"abandoned" @@ -177,7 +177,7 @@ } elseif area then local delegate_name = "" - local scope = "no delegation set" + local scope = _"no delegation set" local unit_delegation = Delegation:by_pk(app.session.member_id, area.unit_id) if unit_delegation then delegate_name = unit_delegation.trustee.name diff -r 34625fb8983c -r 286bbd976e84 locale/translations.de.lua --- a/locale/translations.de.lua Mon Oct 27 11:51:23 2014 +0100 +++ b/locale/translations.de.lua Mon Oct 27 11:57:18 2014 +0100 @@ -988,4 +988,5 @@ ["you have #{count} incoming delegations"] = "#{count} eingehende Delegationen"; ["you restricted your support by rating suggestions as must or must not"] = "deine Untersützung ist aufgrund von 'muss'- oder 'darf nicht'-Verbesserungsvorschlägen beschränkt"; ["you voted"] = "du hast abgestimmt"; +["no delegation set"] = "nicht delegiert"; }