fix i18n buglets (closes #167)
This commit is contained in:
parent
9922c0322a
commit
12c0636941
8 changed files with 13 additions and 8 deletions
|
@ -5,7 +5,7 @@
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th= sort_link_helper t('.name'), "name", :per_page => @per_page
|
%th= sort_link_helper t('.name'), "name", :per_page => @per_page
|
||||||
%th Kontakt
|
%th= t '.contact'
|
||||||
%th.numeric= sort_link_helper t('.account_balance'), "account_balance", :per_page => @per_page
|
%th.numeric= sort_link_helper t('.account_balance'), "account_balance", :per_page => @per_page
|
||||||
%th
|
%th
|
||||||
%tbody
|
%tbody
|
||||||
|
@ -17,4 +17,4 @@
|
||||||
%td
|
%td
|
||||||
= link_to t('.new_transaction'), 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 t('.account_statement'), finance_ordergroup_transactions_path(ordergroup), class: 'btn btn-mini'
|
= link_to t('.account_statement'), finance_ordergroup_transactions_path(ordergroup), class: 'btn btn-mini'
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
%pre
|
%pre
|
||||||
* #{t '.help.list_item_1'}
|
* #{t '.help.list_item_1'}
|
||||||
%pre
|
%pre
|
||||||
** #{t '.help_list_item_2'}
|
** #{t '.help.list_item_2'}
|
||||||
%tr
|
%tr
|
||||||
%td= t '.help.ordered_list'
|
%td= t '.help.ordered_list'
|
||||||
%td
|
%td
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
= f.input :date
|
= f.input :date
|
||||||
= f.input :note
|
= f.input :note
|
||||||
= f.submit
|
= f.submit
|
||||||
= link_to t('ui.cancel'), stock_takings_path
|
= link_to t('ui.or_cancel'), stock_takings_path
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
= render :partial => 'stock_change', :collection => @stock_taking.stock_changes
|
= render :partial => 'stock_change', :collection => @stock_taking.stock_changes
|
||||||
.form-actions
|
.form-actions
|
||||||
= f.submit class: 'btn'
|
= f.submit class: 'btn'
|
||||||
= link_to t('ui.cancel'), stock_takings_path
|
= link_to t('ui.or_cancel'), stock_takings_path
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
- title "Lager (#{StockArticle.available.count})"
|
- title t('.title', article_count: StockArticle.available.count)
|
||||||
- content_for :javascript do
|
- content_for :javascript do
|
||||||
:javascript
|
:javascript
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
- content_for :sidebar do
|
- content_for :sidebar do
|
||||||
.well.well-small
|
.well.well-small
|
||||||
%ul.nav.nav-list
|
%ul.nav.nav-list
|
||||||
%li.nav-header Seiten
|
%li.nav-header= t '.pages'
|
||||||
%li= link_to t('.my_tasks'), user_tasks_path
|
%li= link_to t('.my_tasks'), user_tasks_path
|
||||||
%li= link_to t('.all_tasks'), tasks_path
|
%li= link_to t('.all_tasks'), tasks_path
|
||||||
%li= link_to t('.archive'), archive_tasks_path
|
%li= link_to t('.archive'), archive_tasks_path
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
- title "Meine Aufgaben"
|
- title t('.title')
|
||||||
= render 'nav'
|
= render 'nav'
|
||||||
|
|
||||||
- unless @unaccepted_tasks.empty?
|
- unless @unaccepted_tasks.empty?
|
||||||
|
|
|
@ -719,6 +719,7 @@ de:
|
||||||
ordergroups:
|
ordergroups:
|
||||||
account_balance: Kontostand
|
account_balance: Kontostand
|
||||||
account_statement: Kontoauszug
|
account_statement: Kontoauszug
|
||||||
|
contact: Kontakt
|
||||||
name: Name
|
name: Name
|
||||||
new_transaction: Neue Transaktion
|
new_transaction: Neue Transaktion
|
||||||
update:
|
update:
|
||||||
|
@ -1602,6 +1603,7 @@ de:
|
||||||
contact_person: Kontaktperson
|
contact_person: Kontaktperson
|
||||||
contact_phone: Telefon
|
contact_phone: Telefon
|
||||||
ignore_apple_restriction: Bestellstop bei zu wenig Äpfeln ignorieren
|
ignore_apple_restriction: Bestellstop bei zu wenig Äpfeln ignorieren
|
||||||
|
name: Name
|
||||||
page:
|
page:
|
||||||
body: Inhalt
|
body: Inhalt
|
||||||
parent_id: Oberseite
|
parent_id: Oberseite
|
||||||
|
@ -1743,6 +1745,7 @@ de:
|
||||||
show_stock_takings: Inventurübersicht
|
show_stock_takings: Inventurübersicht
|
||||||
stock_count: ! 'Artikelanzahl:'
|
stock_count: ! 'Artikelanzahl:'
|
||||||
stock_worth: ! 'Aktueller Lagerwert:'
|
stock_worth: ! 'Aktueller Lagerwert:'
|
||||||
|
title: Lager (%{article_count})
|
||||||
toggle_unavailable: Nicht verfügbare Artikel zeigen/verstecken
|
toggle_unavailable: Nicht verfügbare Artikel zeigen/verstecken
|
||||||
view_options: Ansichtsoptionen
|
view_options: Ansichtsoptionen
|
||||||
new:
|
new:
|
||||||
|
@ -1829,6 +1832,7 @@ de:
|
||||||
who: Wer machts?
|
who: Wer machts?
|
||||||
who_hint: (Wie viele werden noch benötigt?)
|
who_hint: (Wie viele werden noch benötigt?)
|
||||||
nav:
|
nav:
|
||||||
|
pages: Seiten
|
||||||
all_tasks: Alle Aufgaben
|
all_tasks: Alle Aufgaben
|
||||||
archive: Erledigte Aufgaben (Archiv)
|
archive: Erledigte Aufgaben (Archiv)
|
||||||
group_tasks: Gruppenaufgaben
|
group_tasks: Gruppenaufgaben
|
||||||
|
@ -1852,6 +1856,7 @@ de:
|
||||||
notice: Aufgabe wurde aktualisiert
|
notice: Aufgabe wurde aktualisiert
|
||||||
notice_converted: Aufgabe wurde aktualisiert und in eine gewöhnliche Aufgabe umgewandelt
|
notice_converted: Aufgabe wurde aktualisiert und in eine gewöhnliche Aufgabe umgewandelt
|
||||||
user:
|
user:
|
||||||
|
title: Meine Aufgaben
|
||||||
more: Nichts zu tun? %{tasks_link} gibt es bestimmt Arbeit
|
more: Nichts zu tun? %{tasks_link} gibt es bestimmt Arbeit
|
||||||
tasks_link: Hier
|
tasks_link: Hier
|
||||||
title: Meine Aufgaben
|
title: Meine Aufgaben
|
||||||
|
|
Loading…
Reference in a new issue