started implementing teams

This commit is contained in:
Hauke Klement
2015-01-28 12:28:09 +01:00
parent cf346e2271
commit dd624b26c8
25 changed files with 355 additions and 3 deletions

View File

@ -27,6 +27,8 @@ de:
maximum_score: Erreichbare Punktzahl
public: Öffentlich
reference_implementation: Reference Implementation
team: Team
team_id: Team
template_code: Template Code
template_test_code: Template Test Code
test_code: Test Code
@ -77,6 +79,9 @@ de:
files: Dateien
score: Punktzahl
user: Autor
team:
internal_user_ids: Mitglieder
name: Name
models:
consumer:
one: Konsument
@ -108,6 +113,9 @@ de:
submission:
one: Abgabe
other: Abgaben
team:
one: Team
other: Teams
errors:
messages:
together: 'muss zusammen mit %{attribute} definiert werden'

View File

@ -27,6 +27,8 @@ en:
maximum_score: Maximum Score
public: Public
reference_implementation: Reference Implementation
team: Team
team_id: Team
template_code: Template Code
template_test_code: Template Test Code
test_code: Test Code
@ -77,6 +79,9 @@ en:
files: Files
score: Score
user: Author
team:
internal_user_ids: Members
name: Name
models:
consumer:
one: Consumer
@ -108,6 +113,9 @@ en:
submission:
one: Submission
other: Submissions
team:
one: Team
other: Teams
errors:
messages:
together: 'has to be set along with %{attribute}'

View File

@ -61,4 +61,6 @@ Rails.application.routes.draw do
get 'test/:filename', as: :test, constraints: {filename: FILENAME_REGEXP}, to: :test
end
end
resources :teams
end