2017-04-01 86 views
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 

在產品展示頁面,它顯示的文字:

最小起訂量(數量)

如何將此文字更改爲「最小訂單」?

+0

你的'with_quantity_text'輔助方法是怎樣的?你的應用使用'I18n'嗎? – spickermann

回答

0

根據您定製的Sharetribe的數量,您應該在/config/locales/en.yml的密鑰listings.show.price.per_quantity_unit下找到該字符串。

with_quantity_text結束了here,並使用I18n來抓住字符串。 YMMV如果你已經在這裏定製了任何助手。