more i18n cleanup (affects foodcoops#137)
This commit is contained in:
parent
a475a27f79
commit
111c061efa
2 changed files with 3 additions and 6 deletions
|
@ -7,11 +7,11 @@ module StockitHelper
|
||||||
|
|
||||||
def link_to_stock_change_reason(stock_change)
|
def link_to_stock_change_reason(stock_change)
|
||||||
if stock_change.delivery_id
|
if stock_change.delivery_id
|
||||||
link_to t('.delivery'), supplier_delivery_path(stock_change.delivery.supplier, stock_change.delivery)
|
link_to Delivery.model_name.human, supplier_delivery_path(stock_change.delivery.supplier, stock_change.delivery)
|
||||||
elsif stock_change.order_id
|
elsif stock_change.order_id
|
||||||
link_to t('.order'), order_path(stock_change.order)
|
link_to Order.model_name.human, order_path(stock_change.order)
|
||||||
elsif stock_change.stock_taking_id
|
elsif stock_change.stock_taking_id
|
||||||
link_to t('.stock_taking'), stock_taking_path(stock_change.stock_taking)
|
link_to StockTaking.model_name.human, stock_taking_path(stock_change.stock_taking)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1447,12 +1447,9 @@ en:
|
||||||
show:
|
show:
|
||||||
change_quantity: Change
|
change_quantity: Change
|
||||||
datetime: Time
|
datetime: Time
|
||||||
delivery: Delivery
|
|
||||||
new_quantity: New quantity
|
new_quantity: New quantity
|
||||||
order: Order
|
|
||||||
reason: Reason
|
reason: Reason
|
||||||
stock_changes: Stock quantity changes
|
stock_changes: Stock quantity changes
|
||||||
stock_taking: Inventory
|
|
||||||
stock_create:
|
stock_create:
|
||||||
notice: Stock article was created.
|
notice: Stock article was created.
|
||||||
stock_update:
|
stock_update:
|
||||||
|
|
Loading…
Reference in a new issue