Added i18n strings.
This commit is contained in:
parent
abe7c7181d
commit
c27127c745
6 changed files with 24 additions and 17 deletions
|
@ -18,7 +18,7 @@ class Task < ActiveRecord::Base
|
||||||
validates :required_users, :presence => true
|
validates :required_users, :presence => true
|
||||||
validates_numericality_of :duration, :required_users, :only_integer => true, :greater_than => 0
|
validates_numericality_of :duration, :required_users, :only_integer => true, :greater_than => 0
|
||||||
validates_length_of :description, maximum: 250
|
validates_length_of :description, maximum: 250
|
||||||
validates :done, exclusion: { in: [true], message: 'erledigte Aufgaben können nicht wöchentlich wiederholt werden' }, if: :periodic?, on: :create
|
validates :done, exclusion: { in: [true] }, if: :periodic?, on: :create
|
||||||
|
|
||||||
before_save :exclude_from_periodic_task_group, if: :changed?, unless: :new_record?
|
before_save :exclude_from_periodic_task_group, if: :changed?, unless: :new_record?
|
||||||
after_save :update_ordergroup_stats
|
after_save :update_ordergroup_stats
|
||||||
|
|
|
@ -27,5 +27,5 @@
|
||||||
.form-actions
|
.form-actions
|
||||||
= f.submit class: 'btn btn-primary'
|
= f.submit class: 'btn btn-primary'
|
||||||
- if @task.new_record?
|
- if @task.new_record?
|
||||||
= f.submit 'Wöchentliche Aufgabe erstellen', name: 'periodic', class: 'btn'
|
= f.submit t('.submit.periodic'), name: 'periodic', class: 'btn'
|
||||||
= link_to t('ui.or_cancel'), :back
|
= link_to t('ui.or_cancel'), :back
|
||||||
|
|
|
@ -30,5 +30,5 @@
|
||||||
= link_to t('ui.delete'), task_path(@task), :method => :delete, :confirm => "Die Aufgabe wirklich löschen?",
|
= link_to t('ui.delete'), task_path(@task), :method => :delete, :confirm => "Die Aufgabe wirklich löschen?",
|
||||||
class: 'btn btn-danger'
|
class: 'btn btn-danger'
|
||||||
- if @task.periodic?
|
- if @task.periodic?
|
||||||
= link_to 'Aufgabe und folgende löschen', task_path(@task, periodic: true), method: :delete,
|
= link_to t('.delete_group'), task_path(@task, periodic: true), method: :delete,
|
||||||
confirm: "Diese und alle folgenden wöchentlichen Aufgaben wirklich löschen?", class: 'btn btn-danger'
|
confirm: t('.confirm_delete_group'), class: 'btn btn-danger'
|
||||||
|
|
|
@ -81,6 +81,11 @@ de:
|
||||||
too_long: ist zu lang (nicht mehr als %{count} Zeichen)
|
too_long: ist zu lang (nicht mehr als %{count} Zeichen)
|
||||||
too_short: ist zu kurz (nicht weniger als %{count} Zeichen)
|
too_short: ist zu kurz (nicht weniger als %{count} Zeichen)
|
||||||
wrong_length: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
wrong_length: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
||||||
|
models:
|
||||||
|
task:
|
||||||
|
attributes:
|
||||||
|
done:
|
||||||
|
exclusion: erledigte Aufgaben können nicht wöchentlich wiederholt werden
|
||||||
template:
|
template:
|
||||||
body: ! 'Bitte überprüfen Sie die folgenden Felder:'
|
body: ! 'Bitte überprüfen Sie die folgenden Felder:'
|
||||||
header:
|
header:
|
||||||
|
@ -1628,12 +1633,6 @@ de:
|
||||||
role_finance: Finanzen
|
role_finance: Finanzen
|
||||||
role_orders: Bestellverwaltung
|
role_orders: Bestellverwaltung
|
||||||
role_suppliers: Lieferanten
|
role_suppliers: Lieferanten
|
||||||
task_description: Beschreibung
|
|
||||||
task_duration: Vor. Dauer in Stunden
|
|
||||||
task_name: Name für Job
|
|
||||||
task_required_users: Benötige Verantwortliche
|
|
||||||
weekday: Wochentag
|
|
||||||
weekly_task: Monatlichen Job definieren?
|
|
||||||
'no': Nein
|
'no': Nein
|
||||||
required:
|
required:
|
||||||
mark: ! '*'
|
mark: ! '*'
|
||||||
|
@ -1764,6 +1763,8 @@ de:
|
||||||
hint: Nach Nutzerin suchen
|
hint: Nach Nutzerin suchen
|
||||||
noresult: Keine Nutzerin gefunden
|
noresult: Keine Nutzerin gefunden
|
||||||
placeholder: Suche ...
|
placeholder: Suche ...
|
||||||
|
submit:
|
||||||
|
periodic: Wöchentliche Aufgabe speichern
|
||||||
index:
|
index:
|
||||||
show_group_tasks: Gruppenaufgaben anzeigen
|
show_group_tasks: Gruppenaufgaben anzeigen
|
||||||
title: Aufgaben
|
title: Aufgaben
|
||||||
|
@ -1791,6 +1792,8 @@ de:
|
||||||
notice: Aufgabenstatus wurde aktualisiert
|
notice: Aufgabenstatus wurde aktualisiert
|
||||||
show:
|
show:
|
||||||
accept_task: Aufgabe übernehmen
|
accept_task: Aufgabe übernehmen
|
||||||
|
confirm_delete_group: Diese und alle folgenden wöchentlichen Aufgaben wirklich löschen?
|
||||||
|
delete_group: Aufgabe und folgende löschen
|
||||||
due_date: Fälligkeitsdatum
|
due_date: Fälligkeitsdatum
|
||||||
hours: ! '%{count}h'
|
hours: ! '%{count}h'
|
||||||
mark_done: Als erledigt markieren
|
mark_done: Als erledigt markieren
|
||||||
|
@ -1807,11 +1810,6 @@ de:
|
||||||
workgroup:
|
workgroup:
|
||||||
title: Aufgaben für %{workgroup}
|
title: Aufgaben für %{workgroup}
|
||||||
title_all: Alle Aufgaben der Gruppe
|
title_all: Alle Aufgaben der Gruppe
|
||||||
weekly:
|
|
||||||
desc: ! '<p>Jeden <b>%{weekday}</b> hat diese Arbeitsgruppe folgenden Job: <b>%{task}</b></p> <p>Die Wochenaufgaben werden von der Foodsoft automatisch erstellt. Eintragen müsst Ihr Euch aber selber.</p>'
|
|
||||||
edit: Wöchentliche Aufgaben anpassen
|
|
||||||
empty: Noch keine Wochenaufgaben angelegt.
|
|
||||||
title: Wöchentliche Aufgaben
|
|
||||||
time:
|
time:
|
||||||
am: vormittags
|
am: vormittags
|
||||||
formats:
|
formats:
|
||||||
|
|
|
@ -81,6 +81,11 @@ en:
|
||||||
too_long: is too long (no more than %{count} characters)
|
too_long: is too long (no more than %{count} characters)
|
||||||
too_short: is too short (use more than %{count} characters)
|
too_short: is too short (use more than %{count} characters)
|
||||||
wrong_length: is the wrong length (has to have exactly %{count} characters)
|
wrong_length: is the wrong length (has to have exactly %{count} characters)
|
||||||
|
models:
|
||||||
|
task:
|
||||||
|
attributes:
|
||||||
|
done:
|
||||||
|
exclusion: finished tasks may not be repeated weekly
|
||||||
template:
|
template:
|
||||||
body: ! 'Please check the following fields:'
|
body: ! 'Please check the following fields:'
|
||||||
header:
|
header:
|
||||||
|
@ -1765,6 +1770,8 @@ en:
|
||||||
hint: Search for user
|
hint: Search for user
|
||||||
noresult: No user found
|
noresult: No user found
|
||||||
placeholder: Search ...
|
placeholder: Search ...
|
||||||
|
submit:
|
||||||
|
periodic: Save weekly task
|
||||||
index:
|
index:
|
||||||
show_group_tasks: Show group tasks
|
show_group_tasks: Show group tasks
|
||||||
title: Tasks
|
title: Tasks
|
||||||
|
@ -1792,6 +1799,8 @@ en:
|
||||||
notice: The state of the task has been updated
|
notice: The state of the task has been updated
|
||||||
show:
|
show:
|
||||||
accept_task: Accept task
|
accept_task: Accept task
|
||||||
|
confirm_delete_group: Really delete this and all subsequent tasks?
|
||||||
|
delete_group: Delete task and subsequent
|
||||||
due_date: Due date
|
due_date: Due date
|
||||||
hours: ! '%{count}h'
|
hours: ! '%{count}h'
|
||||||
mark_done: Mark task as done
|
mark_done: Mark task as done
|
||||||
|
|
Loading…
Reference in a new issue