init
This commit is contained in:
commit
135b14c868
35 changed files with 1363 additions and 0 deletions
19
config/locales/models.lit.de.yml
Normal file
19
config/locales/models.lit.de.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
de:
|
||||
activerecord:
|
||||
models:
|
||||
|
||||
### GROUPS
|
||||
|
||||
group/root:
|
||||
one: Hauptgruppe
|
||||
other: Hauptgruppen
|
||||
|
||||
|
||||
### ROLES
|
||||
|
||||
group/root/leader:
|
||||
one: Leitung
|
||||
description: Leitungspersonen verwalten die Applikation.
|
||||
group/root/member:
|
||||
one: Mitglied
|
||||
description: Mitglieder sind alle anderen.
|
||||
12
config/routes.rb
Normal file
12
config/routes.rb
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# encoding: utf-8
|
||||
|
||||
Rails.application.routes.draw do
|
||||
|
||||
extend LanguageRouteScope
|
||||
|
||||
language_scope do
|
||||
# Define wagon routes here
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
17
config/settings.yml
Normal file
17
config/settings.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
# Settings relevant for the hitobito_lit wagon
|
||||
# Overrides settings from the main application
|
||||
application:
|
||||
languages:
|
||||
de: Deutsch
|
||||
|
||||
# non UI languages for assigning to person#language
|
||||
# additional_languages:
|
||||
# en: Englisch
|
||||
|
||||
# The person with this email has root access to everything
|
||||
# This person should only be used by the operators of the application,
|
||||
# not the customers.
|
||||
# Initially, a password reset token may be mailed from the application
|
||||
# to this address to set a password.
|
||||
root_email: hitobito-lit@puzzle.ch
|
||||
3
config/spring.rb
Normal file
3
config/spring.rb
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# encoding: utf-8
|
||||
|
||||
Spring.application_root = '../hitobito'
|
||||
Reference in a new issue