i18n finance ordergroups
This commit is contained in:
parent
d2cd5b2b02
commit
0065c44b74
3 changed files with 17 additions and 7 deletions
|
@ -4,9 +4,9 @@
|
||||||
%table.table.table-striped
|
%table.table.table-striped
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th= sort_link_helper "Name", "name", :per_page => @per_page
|
%th= sort_link_helper t('.name'), "name", :per_page => @per_page
|
||||||
%th Kontakt
|
%th Kontakt
|
||||||
%th.numeric= sort_link_helper "Kontostand", "account_balance", :per_page => @per_page
|
%th.numeric= sort_link_helper t('.account_balance'), "account_balance", :per_page => @per_page
|
||||||
%th
|
%th
|
||||||
%tbody
|
%tbody
|
||||||
- for ordergroup in @ordergroups
|
- for ordergroup in @ordergroups
|
||||||
|
@ -15,6 +15,6 @@
|
||||||
%td= ordergroup.contact
|
%td= ordergroup.contact
|
||||||
%td.numeric= number_to_currency(ordergroup.account_balance)
|
%td.numeric= number_to_currency(ordergroup.account_balance)
|
||||||
%td
|
%td
|
||||||
= link_to "Neue Transaktion", new_finance_ordergroup_transaction_path(ordergroup), class: 'btn btn-mini'
|
= link_to t('.new_transaction'), new_finance_ordergroup_transaction_path(ordergroup), class: 'btn btn-mini'
|
||||||
= link_to "Kontoauszug", finance_ordergroup_transactions_path(ordergroup), class: 'btn btn-mini'
|
= link_to t('.account_statement'), finance_ordergroup_transactions_path(ordergroup), class: 'btn btn-mini'
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
- title "Konten verwalten"
|
- title t('.title')
|
||||||
|
|
||||||
- content_for :actionbar do
|
- content_for :actionbar do
|
||||||
= link_to "Neue Überweisungen eingeben", finance_new_transaction_collection_path, class: 'btn btn-primary'
|
= link_to t('.new_transaction'), finance_new_transaction_collection_path, class: 'btn btn-primary'
|
||||||
|
|
||||||
.well.well-small
|
.well.well-small
|
||||||
= form_tag finance_ordergroups_path, :method => :get, :remote => true,
|
= form_tag finance_ordergroups_path, :method => :get, :remote => true,
|
||||||
'data-submit-onchange' => true, class: 'form-search' do
|
'data-submit-onchange' => true, class: 'form-search' do
|
||||||
= text_field_tag :query, params[:query], class: 'input-medium search-query',
|
= text_field_tag :query, params[:query], class: 'input-medium search-query',
|
||||||
placeholder: 'Suchen ...'
|
placeholder: t('.search_placeholder')
|
||||||
|
|
||||||
#ordergroupsTable
|
#ordergroupsTable
|
||||||
= render :partial => "ordergroups"
|
= render :partial => "ordergroups"
|
|
@ -134,4 +134,14 @@ de:
|
||||||
amount_change_for: 'Mengenänderung für %{article}'
|
amount_change_for: 'Mengenänderung für %{article}'
|
||||||
close: 'Schließen'
|
close: 'Schließen'
|
||||||
save: "Speichern"
|
save: "Speichern"
|
||||||
|
ordergroups:
|
||||||
|
ordergroups:
|
||||||
|
name: "Name"
|
||||||
|
account_balance: "Kontostand"
|
||||||
|
new_transaction: "Neue Transaktion"
|
||||||
|
account_statement: "Kontoauszug"
|
||||||
|
index:
|
||||||
|
title: "Konten verwalten"
|
||||||
|
new_transaction: "Neue Überweisungen eingeben"
|
||||||
|
search_placeholder: 'Suchen ...'
|
||||||
|
|
Loading…
Reference in a new issue