mirror of
https://github.com/we-promise/sure.git
synced 2026-05-30 07:49:01 +00:00
* Extract hardcoded strings to i18n
Replace numerous hardcoded English strings with I18n lookups (t / I18n.t) across controllers, views, helpers, and components, and convert model validation error messages to symbol keys. Added multiple locale files under config/locales for models and views. This centralizes user-facing notices/alerts, UI text, import/validation messages, and prepares the app for localization and easier translation maintenance.
* Update en.yml
* Update preview-cleanup.yml
* Revert "Update preview-cleanup.yml"
This reverts commit 1ba6d3c34c.
* test: align i18n assertions with translated messages
* Standardize balance error key and tweak locales
Replace SophtronAccount's :requires_balance error key with :no_balance and update related locale strings for sophtron, plaid, and simplefin accounts to use the new key and clearer copy. Also switch the QIF upload redirect notice to use a relative translation key (t('.qif_uploaded')), remove an unused SSO providers help line, and fix a trailing-newline/whitespace issue in the subscriptions locale. These changes standardize validation keys and improve translation consistency and messaging.
---------
Co-authored-by: KiloClaw <kiloclaw@openclaw.ai>
105 lines
4.2 KiB
Plaintext
105 lines
4.2 KiB
Plaintext
<%# locals: (account:) %>
|
|
|
|
<%= turbo_frame_tag dom_id(account, "entries") do %>
|
|
<div class="bg-container px-3 py-4 lg:p-4 shadow-border-xs rounded-xl">
|
|
<div class="flex items-center justify-between mb-4" data-testid="activity-menu">
|
|
<%= tag.h2 t(".title"), class: "font-medium text-lg" %>
|
|
<% unless @account.linked? %>
|
|
<% if @account.permission_for(Current.user).in?([ :owner, :full_control ]) %>
|
|
<%= render DS::Menu.new(variant: "button") do |menu| %>
|
|
<% menu.with_button(text: t(".new"), variant: "secondary", icon: "plus") %>
|
|
|
|
<% menu.with_item(
|
|
variant: "link",
|
|
text: t(".new_balance"),
|
|
icon: "circle-dollar-sign",
|
|
href: new_valuation_path(account_id: @account.id),
|
|
data: { turbo_frame: :modal }) %>
|
|
|
|
<% if @account.supports_trades? %>
|
|
<% menu.with_item(
|
|
variant: "link",
|
|
text: t(".new_trade"),
|
|
icon: "credit-card",
|
|
href: new_trade_path(account_id: @account.id),
|
|
data: { turbo_frame: :modal }) %>
|
|
<% elsif !@account.crypto? %>
|
|
<% menu.with_item(
|
|
variant: "link",
|
|
text: t(".new_transaction"),
|
|
icon: "credit-card",
|
|
href: new_transaction_path(account_id: @account.id),
|
|
data: { turbo_frame: :modal }) %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div>
|
|
<%= form_with url: account_path(account),
|
|
id: "entries-search",
|
|
scope: :q,
|
|
method: :get,
|
|
data: { controller: "auto-submit-form" } do |form| %>
|
|
<div class="flex gap-2 mb-4">
|
|
<div class="grow">
|
|
<div class="flex items-center px-3 py-2 gap-2 border border-secondary rounded-lg focus-within:border-primary">
|
|
<%= icon("search") %>
|
|
<%= hidden_field_tag :account_id, @account.id %>
|
|
<%= form.search_field :search,
|
|
placeholder: t(".search_placeholder"),
|
|
value: @q[:search],
|
|
class: "form-field__input placeholder:text-sm placeholder:text-secondary",
|
|
"data-auto-submit-form-target": "auto" %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if @entries.empty? %>
|
|
<p class="text-secondary text-sm p-4"><%= t(".no_entries") %></p>
|
|
<% else %>
|
|
<%= tag.div id: dom_id(@account, "entries_bulk_select"),
|
|
data: {
|
|
controller: "bulk-select checkbox-toggle",
|
|
bulk_select_singular_label_value: t(".entry"),
|
|
bulk_select_plural_label_value: t(".entries")
|
|
} do %>
|
|
<div id="entry-selection-bar" data-bulk-select-target="selectionBar" class="flex justify-center hidden">
|
|
<%= render "entries/selection_bar" %>
|
|
</div>
|
|
|
|
<div class="grid bg-container-inset rounded-xl grid-cols-12 items-center uppercase text-xs font-medium text-secondary px-5 py-3 mb-4">
|
|
<div class="pl-0.5 col-span-8 flex items-center gap-4">
|
|
<%= check_box_tag "selection_entry",
|
|
class: "checkbox checkbox--light hidden lg:block",
|
|
data: {
|
|
action: "bulk-select#togglePageSelection",
|
|
checkbox_toggle_target: "selectionEntry"
|
|
} %>
|
|
<p><%= t(".date") %></p>
|
|
</div>
|
|
<%= tag.p t(".amount"), class: "col-span-2 justify-self-end" %>
|
|
<%= tag.p t(".balance"), class: "col-span-2 justify-self-end" %>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="space-y-4">
|
|
<%= entries_by_date(@entries) do |entries| %>
|
|
<% entries.each_with_index do |entry, index| %>
|
|
<%= render entry, view_ctx: "account" %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="p-4 bg-container rounded-bl-lg rounded-br-lg">
|
|
<%= render "shared/pagination", pagy: @pagy %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|