2
在views app/views/listings/show.haml
,我有這樣的代碼:Sharetribe:改變「最小訂購量」到「最小訂單」
- if @listing.price
.row
.col-12
.listing-price
%span.listing-price-amount
= humanized_money_with_symbol(@listing.price).upcase
- with_quantity_text(@current_community, @listing) do |text|
%span.listing-price-quantity
= text
在產品展示頁面,它顯示的文字:
最小起訂量(數量)
如何將此文字更改爲「最小訂單」?
你的'with_quantity_text'輔助方法是怎樣的?你的應用使用'I18n'嗎? – spickermann