Add polls plugin
This commit is contained in:
parent
42e0ce86a8
commit
d476993321
29 changed files with 787 additions and 0 deletions
67
plugins/polls/config/locales/de.yml
Normal file
67
plugins/polls/config/locales/de.yml
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
de:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
choices: Wahlmöglichkeiten
|
||||
created_at: Erstellt am
|
||||
created_by: Erstellt von
|
||||
description: Beschreibung
|
||||
ends: Endet am
|
||||
name: Name
|
||||
max_points: Maximalpunkte
|
||||
min_points: Minimalpunkte
|
||||
multi_select_count: Maximale Anzahl
|
||||
one_vote_per_ordergroup: Nur eine Stimme pro Bestellgruppe
|
||||
starts: Läuft vom
|
||||
voting_method: Umfragetyp
|
||||
voting_methods:
|
||||
event: Termin
|
||||
single_select: Einzelauswahl
|
||||
multi_select: Mehrfachauswahl
|
||||
points: Punkte
|
||||
resistance_points: Widerstandspunkte
|
||||
poll_vote:
|
||||
name: Name
|
||||
note: Notiz
|
||||
updated_at: Zuletzt aktualisierst
|
||||
models:
|
||||
poll: Umfrage
|
||||
config:
|
||||
hints:
|
||||
use_polls: Einfache Umfragen aktivieren
|
||||
keys:
|
||||
use_polls: Umfragen aktivieren
|
||||
navigation:
|
||||
polls: Umfragen
|
||||
polls:
|
||||
choice:
|
||||
remove: Löschen
|
||||
create:
|
||||
error: 'Umfrage konnte nicht erstellt werden: %{error}'
|
||||
notice: Umfrage wurde erstellt
|
||||
edit:
|
||||
title: Umfrage bearbeiten
|
||||
form:
|
||||
already_voted: Die Wahlmöglichkeiten können icht mehr geändert werden, da bereits Stimmen abgegeben wurden.
|
||||
new_choice: Zusätzliche Wahlmöglichkeit
|
||||
required_ordergroup_custom_field: '''%{label}'' von Bestellgruppe darf nicht leer sein'
|
||||
required_user_custom_field: '''%{label}'' von Benutzer_in darf nicht leer sein'
|
||||
destroy:
|
||||
error: 'Umfrage konnte nicht gelöscht werden: %{error}'
|
||||
no_right: Du hast nicht genügend Rechte um die Umfrage zu löschen
|
||||
notice: Umfrage wurde gelöscht
|
||||
index:
|
||||
new_poll: Neue Umfrage
|
||||
title: Umfragen
|
||||
new:
|
||||
title: Umfrage erstellen
|
||||
polls:
|
||||
vote: Abstimmen
|
||||
show:
|
||||
vote: Abstimmen
|
||||
update:
|
||||
error: 'Umfrage konnte nicht aktualisiert werden: %{error}'
|
||||
notice: Umfrage wurde aktualisiert
|
||||
vote:
|
||||
submit: Abstimmen
|
||||
no_right: Du kannst bei dieser Umfrage nicht teilnehmen
|
||||
67
plugins/polls/config/locales/en.yml
Normal file
67
plugins/polls/config/locales/en.yml
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
en:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
choices: Choices
|
||||
created_at: Created at
|
||||
created_by: Created by
|
||||
description: Description
|
||||
ends: Ends at
|
||||
name: Name
|
||||
max_points: Maximal points
|
||||
min_points: Minimal points
|
||||
multi_select_count: Maximal number
|
||||
one_vote_per_ordergroup: Only one vote for every ordergroup
|
||||
starts: Starts at
|
||||
voting_method: Voting method
|
||||
voting_methods:
|
||||
event: Event
|
||||
single_select: Single select
|
||||
multi_select: Muliple selections
|
||||
points: Points
|
||||
resistance_points: Resistance points
|
||||
poll_vote:
|
||||
name: Name
|
||||
note: Note
|
||||
updated_at: Last updated
|
||||
models:
|
||||
poll: Poll
|
||||
config:
|
||||
hints:
|
||||
use_polls: Enable simple polls.
|
||||
keys:
|
||||
use_polls: Enable polls
|
||||
navigation:
|
||||
polls: Polls
|
||||
polls:
|
||||
choice:
|
||||
remove: Delete
|
||||
create:
|
||||
error: 'Poll could not be created: %{error}'
|
||||
notice: Poll has been created
|
||||
edit:
|
||||
title: Edit poll
|
||||
form:
|
||||
already_voted: The choices can not be changed, since there have been votes already.
|
||||
new_choice: Additional choice
|
||||
required_ordergroup_custom_field: '''%{label}'' of ordergroup must not be empty'
|
||||
required_user_custom_field: '''%{label}'' of use must not be empty'
|
||||
destroy:
|
||||
error: 'Poll could not be deleted: %{error}'
|
||||
no_right: You do not have enough rights to delte this poll
|
||||
notice: Poll has been deleted
|
||||
index:
|
||||
new_poll: New poll
|
||||
title: Polls
|
||||
new:
|
||||
title: New poll
|
||||
polls:
|
||||
vote: Vote
|
||||
show:
|
||||
vote: Vote
|
||||
update:
|
||||
error: 'Poll could not be updated: %{error}'
|
||||
notice: Poll has been updated
|
||||
vote:
|
||||
submit: Vote
|
||||
no_right: You can not participate in this poll
|
||||
Loading…
Add table
Add a link
Reference in a new issue