mirror of
https://github.com/we-promise/sure.git
synced 2026-05-27 14:34:56 +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>
118 lines
6.6 KiB
Plaintext
118 lines
6.6 KiB
Plaintext
<%= turbo_frame_tag "modal" do %>
|
|
<%= render DS::Dialog.new do |dialog| %>
|
|
<% dialog.with_header(title: t(".link_enable_banking_title")) %>
|
|
<% dialog.with_body do %>
|
|
<% items = local_assigns[:enable_banking_items] || @enable_banking_items || Current.family.enable_banking_items.where.not(client_certificate: nil) %>
|
|
<% if items&.any? %>
|
|
<%
|
|
# Find the first item with valid session to use for "Add Connection" button
|
|
item_for_new_connection = items.find(&:session_valid?)
|
|
# Check if any item needs initial connection (configured but no session yet)
|
|
item_needing_connection = items.find { |i| !i.session_valid? && !i.session_expired? }
|
|
%>
|
|
<div class="border-t border-primary pt-4 space-y-3">
|
|
<% items.each do |item| %>
|
|
<div class="flex items-center justify-between p-3 rounded-lg bg-container border border-primary">
|
|
<div class="flex items-center gap-3">
|
|
<% if item.session_valid? %>
|
|
<div class="w-2 h-2 bg-success rounded-full"></div>
|
|
<div>
|
|
<p class="text-sm font-medium text-primary"><%= item.aspsp_name || t(".connected_bank") %></p>
|
|
<p class="text-xs text-secondary">
|
|
<%= t(".session_expires") %>: <%= item.session_expires_at&.strftime("%b %d, %Y") || t(".unknown") %>
|
|
</p>
|
|
</div>
|
|
<% elsif item.session_expired? %>
|
|
<div class="w-2 h-2 bg-warning rounded-full"></div>
|
|
<div>
|
|
<p class="text-sm font-medium text-primary"><%= item.aspsp_name || t(".connection") %></p>
|
|
<p class="text-xs text-destructive"><%= t(".session_expired") %></p>
|
|
</div>
|
|
<% else %>
|
|
<div class="w-2 h-2 bg-secondary rounded-full"></div>
|
|
<div>
|
|
<p class="text-sm font-medium text-primary"><%= t(".configured") %></p>
|
|
<p class="text-xs text-secondary"><%= t(".ready_to_connect") %></p>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-2">
|
|
<% if item.session_valid? %>
|
|
<%= button_to sync_enable_banking_item_path(item),
|
|
method: :post,
|
|
class: "inline-flex items-center justify-center rounded-lg px-3 py-1.5 text-xs font-medium text-primary bg-container border border-primary hover:bg-surface-inset transition-colors",
|
|
data: { turbo: false } do %>
|
|
<%= t(".sync") %>
|
|
<% end %>
|
|
<% elsif item.session_expired? %>
|
|
<%= button_to reauthorize_enable_banking_item_path(item),
|
|
method: :post,
|
|
class: "inline-flex items-center justify-center rounded-lg px-3 py-1.5 text-xs font-medium text-white bg-warning hover:opacity-90 transition-colors",
|
|
data: { turbo: false } do %>
|
|
<%= t(".reconnect") %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to select_bank_enable_banking_item_path(item),
|
|
class: "inline-flex items-center justify-center rounded-lg px-3 py-1.5 text-xs font-medium text-inverse button-bg-primary hover:button-bg-primary-hover transition-colors",
|
|
data: { turbo_frame: "modal" } do %>
|
|
<%= t(".connect_bank") %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= button_to enable_banking_item_path(item),
|
|
method: :delete,
|
|
class: "inline-flex items-center justify-center rounded-lg px-3 py-1.5 text-xs font-medium text-destructive hover:bg-destructive/10 transition-colors",
|
|
data: { turbo_confirm: t(".remove_confirm") } do %>
|
|
<%= t(".remove") %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%# Add Connection button below the list - only show if we have a valid session to copy credentials from %>
|
|
<% if item_for_new_connection %>
|
|
<div class="flex justify-center pt-2">
|
|
<%= button_to new_connection_enable_banking_item_path(item_for_new_connection),
|
|
method: :post,
|
|
class: "inline-flex items-center gap-2 justify-center rounded-lg px-4 py-2 text-sm font-medium text-inverse button-bg-primary hover:button-bg-primary-hover transition-colors",
|
|
data: { turbo_frame: "modal" } do %>
|
|
<%= icon "plus", size: "sm" %>
|
|
<%= t(".add_connection") %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% else %>
|
|
<div class="space-y-4">
|
|
<div class="flex items-start gap-3">
|
|
<%= icon("alert-circle", class: "text-warning w-5 h-5 shrink-0 mt-0.5") %>
|
|
<div class="text-sm text-secondary">
|
|
<p class="font-medium text-primary mb-2"><%= t(".not_configured") %></p>
|
|
<p><%= t(".not_configured_description") %></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="bg-surface rounded-lg p-4 space-y-2 text-sm">
|
|
<p class="font-medium text-primary"><%= t(".setup_steps_title") %></p>
|
|
<ol class="list-decimal list-inside space-y-1 text-secondary">
|
|
<li><%= t(".setup_step_1_html") %></li>
|
|
<li><%= t(".setup_step_2_html") %></li>
|
|
<li><%= t(".setup_step_3") %></li>
|
|
<li><%= t(".setup_step_4") %></li>
|
|
</ol>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<%= link_to settings_providers_path,
|
|
class: "w-full inline-flex items-center justify-center rounded-lg font-medium whitespace-nowrap rounded-lg hidden md:inline-flex px-3 py-2 text-sm text-inverse bg-inverse hover:bg-inverse-hover disabled:bg-gray-500 theme-dark:disabled:bg-gray-400",
|
|
data: { turbo: false } do %>
|
|
<%= t(".go_to_provider_settings") %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|