Migrated hard coded strings to locales

This commit is contained in:
2026-01-21 20:49:54 -05:00
parent 2aeb3fa028
commit 35e303d54b
2 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<div class="form-check"> <div class="form-check">
<%= check_box_tag "select-all-invoices", "1", false, id: "select-all-invoices" %> <%= check_box_tag "select-all-invoices", "1", false, id: "select-all-invoices" %>
<%= label_tag "select-all-invoices", "Select All Invioces" %> <%= label_tag "select-all-invoices", t(:label_select_all) %>
</div> </div>
<hr> <hr>
@@ -16,7 +16,7 @@
</div> </div>
<% end %> <% end %>
<%= form.submit "Bulk PDF" %> <%= form.submit t(:button_bulk_pdf) %>
<% end %> <% end %>
<% else %> <% else %>

View File

@@ -94,3 +94,5 @@ en:
label_create_estimate: "Create Estimate" label_create_estimate: "Create Estimate"
label_syncing: "Syncing Quickbooks" label_syncing: "Syncing Quickbooks"
label_sandbox: "Sandbox" label_sandbox: "Sandbox"
button_bulk_pdf: "Bulk PDF"
label_select_all: "Select All"