diff --git a/meinberlin/apps/budgeting/assets/BudgetingProposalList.jsx b/meinberlin/apps/budgeting/assets/BudgetingProposalList.jsx index b70003c31e..8a0b03d890 100644 --- a/meinberlin/apps/budgeting/assets/BudgetingProposalList.jsx +++ b/meinberlin/apps/budgeting/assets/BudgetingProposalList.jsx @@ -15,6 +15,7 @@ export const BudgetingProposalList = (props) => { const countText = django.ngettext('you have 1 vote left.', 'you have %s votes left.', votes) return django.interpolate(countText, [votes]) } + const noResults = django.gettext('Nothing to show') const fetchProposals = () => { const url = props.proposals_api_url + location.search @@ -96,7 +97,9 @@ export const BudgetingProposalList = (props) => {