Page initiativtext
This commit is contained in:
@@ -9,6 +9,8 @@ de:
|
||||
donation: Spenden
|
||||
sign_in: Anmelden
|
||||
sign_out: Abmelden
|
||||
initiative_text: Der Initiativtext im Wortlaut
|
||||
initiative: Die Initiative
|
||||
counter:
|
||||
supporters: "Unterstützer:"
|
||||
amount_of_supporters: Zurzeit haben wir %{amount} Unterstützer.
|
||||
@@ -60,8 +62,14 @@ de:
|
||||
my_data: Meine Daten
|
||||
|
||||
pages:
|
||||
show:
|
||||
not_found: Die Seite konnte nicht gefunden werden.
|
||||
|
||||
thanks:
|
||||
title: Besten Dank für deine Unterstützung!
|
||||
|
||||
routes:
|
||||
initiative_text: initiativtext
|
||||
|
||||
mongoid:
|
||||
models:
|
||||
|
||||
@@ -14,6 +14,8 @@ fr:
|
||||
donation: Donation
|
||||
sign_out: déconnecter
|
||||
sign_in: Connexion
|
||||
initiative: l' initiative
|
||||
initiative_text: L'initiative propose (DE)
|
||||
|
||||
welcome_email:
|
||||
subject: Merci beaucoup pour ton soutien!
|
||||
@@ -58,9 +60,15 @@ fr:
|
||||
my_data: Mes données
|
||||
|
||||
pages:
|
||||
show:
|
||||
not_found: La page n'a pas été trouvé.
|
||||
|
||||
thanks:
|
||||
title: Merci beaucoup pour ton soutien!
|
||||
|
||||
|
||||
routes:
|
||||
initiative_text: "l_initiative_propose"
|
||||
|
||||
mongoid:
|
||||
models:
|
||||
supporter: compte
|
||||
|
||||
+10
-1
@@ -11,6 +11,9 @@ it:
|
||||
donation: Donazione
|
||||
sign_out: Disconnettersi
|
||||
sign_in: Registro
|
||||
initiative_text: Il testo dell’iniziativa
|
||||
initiative: l'iniziativa
|
||||
|
||||
counter:
|
||||
supporters: "Sostenitore:"
|
||||
amount_of_supporters: Al momento abbiamo %{amount} sostenitori.
|
||||
@@ -62,7 +65,13 @@ it:
|
||||
pages:
|
||||
thanks:
|
||||
title: Grazie mille per il tuo sostegno!
|
||||
|
||||
|
||||
show:
|
||||
not_found: La pagina non è stata trovata.
|
||||
|
||||
routes:
|
||||
initiative_text: il_testo_dell_iniziativa
|
||||
|
||||
mongoid:
|
||||
attributes:
|
||||
supporter:
|
||||
|
||||
+9
-1
@@ -2,11 +2,19 @@ Rails.application.routes.draw do
|
||||
devise_for :supporters
|
||||
root to: 'supporters#new'
|
||||
|
||||
mount RailsAdmin::Engine => '/admin', as: 'rails_admin'
|
||||
|
||||
get "/pages/:page" => "pages#show"
|
||||
|
||||
namespace :admin do
|
||||
get '/map', to: 'pages#map', as: :map
|
||||
# resources :supporters, only: :index
|
||||
end
|
||||
mount RailsAdmin::Engine => '/admin', as: 'rails_admin'
|
||||
|
||||
|
||||
localized do
|
||||
get '/initiative_text', to: 'pages#show', as: :initiative_text, page: 'initiative_text'
|
||||
end
|
||||
|
||||
get '/cities_autocomplete', to: 'cities_autocomplete#index', as: :cities_autocomplete
|
||||
scope '/:locale' do
|
||||
|
||||
Reference in New Issue
Block a user