updated locale

This commit is contained in:
2026-03-17 20:45:21 -04:00
parent 9fd1f4fb7d
commit 8c0ce8ce48
2 changed files with 9 additions and 7 deletions

View File

@@ -8,15 +8,15 @@
<div class="issue details"> <div class="attributes"> <div class="issue details"> <div class="attributes">
<div class="splitcontent"> <div class="splitcontent">
<div class="splitcontentleft"> <div class="splitcontentleft">
<p><strong>SKU:</strong> <%= @item.sku.presence || "-" %></p> <p><strong><%=t(:field_sku)%>:</strong> <%= @item.sku.presence || "-" %></p>
<p><strong>Type:</strong> <%= @item.type.presence || "-" %></p> <p><strong><%=t(:label_type)%>:</strong> <%= @item.type.presence || "-" %></p>
<p><strong>Unit Price:</strong> <%= number_to_currency(@item.unit_price) %></p> <p><strong><%=t(:field_unit_price)%>:</strong> <%= number_to_currency(@item.unit_price) %></p>
</div> </div>
<div class="splitcontentleft"> <div class="splitcontentleft">
<p><strong>Account:</strong> <%= @item.account&.name || "-" %></p> <p><strong><%=t(:label_account)%>:</strong> <%= @item.account&.name || "-" %></p>
<p> <p>
<strong>Taxable:</strong> <strong><%=t(:field_taxable)%>:</strong>
<% if @item.taxable %> <% if @item.taxable %>
<span class="icon icon-ok" style="color: green;"><%=t(:yes)%></span> <span class="icon icon-ok" style="color: green;"><%=t(:yes)%></span>
<% else %> <% else %>
@@ -24,7 +24,7 @@
<% end %> <% end %>
</p> </p>
<p> <p>
<strong>Active:</strong> <strong><%=t(:label_active)%>:</strong>
<% if @item.active %> <% if @item.active %>
<span class="icon icon-ok" style="color: green;"><%=t(:yes)%></span> <span class="icon icon-ok" style="color: green;"><%=t(:yes)%></span>
<% else %> <% else %>
@@ -36,7 +36,7 @@
<hr /> <hr />
<p><strong>Description:</strong></p> <p><strong><%=t(:label_description)%>:</strong></p>
<div class="wiki" style="padding-left: 20px;"> <div class="wiki" style="padding-left: 20px;">
<%= @item.description.presence || "<em>No description provided</em>".html_safe %> <%= @item.description.presence || "<em>No description provided</em>".html_safe %>
</div> </div>

View File

@@ -16,6 +16,7 @@ en:
field_taxable: "Taxable" field_taxable: "Taxable"
field_unit_price: "Unit Price" field_unit_price: "Unit Price"
label_active: "Activie"
label_account: "Account" label_account: "Account"
label_accounts: "Accounts" label_accounts: "Accounts"
label_account_count: "Number of Accounts:" label_account_count: "Number of Accounts:"
@@ -32,6 +33,7 @@ en:
label_remove: "Remove" label_remove: "Remove"
label_sync_now_accounts: "Sync Accounts" label_sync_now_accounts: "Sync Accounts"
label_sync_now_items: "Sync Items" label_sync_now_items: "Sync Items"
label_type: "Type"
label_total: "Total" label_total: "Total"
label_yes: "Yes" label_yes: "Yes"