fix forgotten i18n string (affects foodcoops#137)

This commit is contained in:
wvengen 2013-12-06 23:08:28 +01:00
parent 111c061efa
commit 112fa3be23
3 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,8 @@
%p %p
= simple_fields_for "stock_taking[stock_change_attributes][]", stock_change do |form| = simple_fields_for "stock_taking[stock_change_attributes][]", stock_change do |form|
= form.hidden_field :stock_article_id = form.hidden_field :stock_article_id
= "Menge (#{stock_change.stock_article.quantity_available})" = t '.amount'
(#{stock_change.stock_article.quantity_available})
= form.text_field :quantity, :size => 5, :autocomplete => 'off' = form.text_field :quantity, :size => 5, :autocomplete => 'off'
%span{:data => {:toggle => :tooltip, :title => render(:partial => 'shared/article_price_info', :locals => {:article => stock_change.stock_article})}} %span{:data => {:toggle => :tooltip, :title => render(:partial => 'shared/article_price_info', :locals => {:article => stock_change.stock_article})}}
%b= stock_change.stock_article.name %b= stock_change.stock_article.name

View file

@ -1392,6 +1392,7 @@ de:
new_inventory: Neue Inventur anlegen new_inventory: Neue Inventur anlegen
title: Inventurübersicht title: Inventurübersicht
new: new:
amount: Menge
create: anlegen create: anlegen
stock_articles: Lagerartikel stock_articles: Lagerartikel
temp_inventory: vorläufigen Lagerbestand temp_inventory: vorläufigen Lagerbestand

View file

@ -1398,6 +1398,7 @@ en:
new_inventory: Create new inventory new_inventory: Create new inventory
title: Inventory overview title: Inventory overview
new: new:
amount: Amount
create: create create: create
stock_articles: Stock articles stock_articles: Stock articles
temp_inventory: temporary inventory temp_inventory: temporary inventory