diff --git a/resources/lang/de.json b/resources/lang/de.json index f7ee8902..88188a97 100644 --- a/resources/lang/de.json +++ b/resources/lang/de.json @@ -811,5 +811,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "Bitte schreibe einen detaillierten und verständlichen Bewerbungstext, damit die Abstimmung über eine mögliche Unterstützung stattfinden kann.", "Voting": "Abstimmung", "Reason": "Ablehnungsgrund", - "not voted yet": "bisher nicht abgestimmt" + "not voted yet": "bisher nicht abgestimmt", + "Entitled voters": "Stimmberechtigte", + "Other voters": "Alle anderen" } diff --git a/resources/lang/en.json b/resources/lang/en.json index 0531825f..7be0891b 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -808,5 +808,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/es.json b/resources/lang/es.json index 6838fe0e..a0ff7953 100644 --- a/resources/lang/es.json +++ b/resources/lang/es.json @@ -808,5 +808,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/fr.json b/resources/lang/fr.json index beafe0d3..ab35bc94 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/hr.json b/resources/lang/hr.json index 404786df..27d2052f 100644 --- a/resources/lang/hr.json +++ b/resources/lang/hr.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/it.json b/resources/lang/it.json index b7fa791a..d8495b26 100644 --- a/resources/lang/it.json +++ b/resources/lang/it.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/mk.json b/resources/lang/mk.json index 558057de..aae5ecae 100644 --- a/resources/lang/mk.json +++ b/resources/lang/mk.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/pl.json b/resources/lang/pl.json index b9910436..0c72ff2e 100644 --- a/resources/lang/pl.json +++ b/resources/lang/pl.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/pt.json b/resources/lang/pt.json index 013f50bf..58283ede 100644 --- a/resources/lang/pt.json +++ b/resources/lang/pt.json @@ -809,5 +809,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/sv.json b/resources/lang/sv.json index 8589b447..3e5364e3 100644 --- a/resources/lang/sv.json +++ b/resources/lang/sv.json @@ -771,5 +771,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/lang/tr.json b/resources/lang/tr.json index 8288f6b0..9010ae9b 100644 --- a/resources/lang/tr.json +++ b/resources/lang/tr.json @@ -783,5 +783,7 @@ "Please write a detailed and understandable application text, so that the vote on a possible support can take place.": "", "Voting": "", "Reason": "", - "not voted yet": "" + "not voted yet": "", + "Entitled voters": "", + "Other voters": "" } \ No newline at end of file diff --git a/resources/views/livewire/project-proposal/project-proposal-voting.blade.php b/resources/views/livewire/project-proposal/project-proposal-voting.blade.php index d01757a4..d1c38318 100644 --- a/resources/views/livewire/project-proposal/project-proposal-voting.blade.php +++ b/resources/views/livewire/project-proposal/project-proposal-voting.blade.php @@ -44,7 +44,7 @@ x-data="{ yes: [{{ $entitledVoters->pluck('votes')->collapse()->where('value', 1)->count() }},{{ $otherVoters->pluck('votes')->collapse()->where('value', 1)->count() }}], no: [{{ $entitledVoters->pluck('votes')->collapse()->where('value', 0)->count() }},{{ $otherVoters->pluck('votes')->collapse()->where('value', 0)->count() }}], - labels: ['Entitled voters', 'Other voters',], + labels: ['{{ __('Entitled voters') }}', '{{ __('Other voters') }}',], init() { let chart = new ApexCharts(this.$refs.chart, this.options) chart.render() @@ -84,7 +84,7 @@