diff --git a/app/views/items/index.html.erb b/app/views/items/index.html.erb index d35186e..9b3d4e9 100644 --- a/app/views/items/index.html.erb +++ b/app/views/items/index.html.erb @@ -26,10 +26,18 @@
Taxable: <% if @item.taxable %> - Yes + <%=t(:yes)%> <% else %> - No + <%=t(:no)%> <% end %>
Active: <% if @item.active %> - Yes + <%=t(:yes)%> <% else %> - No + <%=t(:no)%> <% end %>
diff --git a/config/locales/en.yml b/config/locales/en.yml index 90cc89e..300e11e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -27,11 +27,13 @@ en: label_line_items: "Line Items" label_price: "Unit Price" label_item_new: "New Item" + label_no: "No" label_qty: "Quantity" label_remove: "Remove" label_sync_now_accounts: "Sync Accounts" label_sync_now_items: "Sync Items" label_total: "Total" + label_yes: "Yes" notice_added_from: "Added from issue #" \ No newline at end of file