Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions app/views/state_file/landing_page/edit.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
<p class="h2">
<%= t(".#{@state_code}.closed_html") %>
</p>
<p class="h2">
<%= t(".were_you_rejected_html", sign_in_url: StateFile::StateFilePagesController.to_path_helper(action: :login_options)) %>
</p>
<% if app_time.before?(Rails.configuration.state_file_end_of_in_progress_intakes) %>
<p class="h2">
<%= t(".were_you_rejected_html", sign_in_url: StateFile::StateFilePagesController.to_path_helper(action: :login_options)) %>
</p>
<% end %>
<p class="h2">
<%= t(".already_filed_html") %>
</p>
Expand Down
7 changes: 4 additions & 3 deletions app/views/state_file/state_file_pages/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
<% if I18n.locale != :es %>
<%= link_to_spanish(class: "toolbar__item text--small") %>
<% end %>

<%= link_to t("general.sign_in"), login_options_path, class: "toolbar__item text--small" %>
<% if app_time.before?(Rails.configuration.state_file_end_of_in_progress_intakes) %>
<%= link_to t("general.sign_in"), login_options_path, class: "toolbar__item text--small" %>
<% end %>
</div>
<a data-component="ClientMenuTrigger" class="client-menu-trigger is-desktop-hidden toolbar__item text--small">Menu</a>
<a class="is-desktop-hidden client-menu-closer" data-component="ClientMenuCloser">
<%= image_tag "icons/close.svg"%>
</a>
</div>
</div>
</div>
6 changes: 5 additions & 1 deletion app/views/state_file/state_file_pages/about_page.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@
</div>
<% else %>
<div>
<%= t(".closed_subheader_html", sign_in_url: StateFile::StateFilePagesController.to_path_helper(action: :login_options)) %>
<% if app_time.after?(Rails.configuration.state_file_end_of_in_progress_intakes) %>
<%= t(".end_of_in_progress_intakes_subheader_html", sign_in_url: StateFile::StateFilePagesController.to_path_helper(action: :login_options)) %>
<% else %>
<%= t(".closed_subheader_html", sign_in_url: StateFile::StateFilePagesController.to_path_helper(action: :login_options)) %>
<% end %>
<p>
<%= t(".looking_for_return_html", link: state_file_archived_intakes_edit_email_address_path )%>
</p>
Expand Down
4 changes: 4 additions & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4723,6 +4723,10 @@ en:
We're closed for the tax season. Unfortunately, you can no longer file your state return with us this year.<br /><br />
<strong>Was the state return you filed with FileYourStateTaxes rejected?</strong> <a href="%{sign_in_url}">Sign in here</a> to correct and resubmit your return.<br /><br />
download_return_button: Download your 2024 return
end_of_in_progress_intakes_subheader_html: |
<strong>FileYourStateTaxes</strong> integrates with IRS Direct File to help you complete your state tax return for free.<br/><br/>
We're closed for the tax season. Unfortunately, you can no longer file your state return with us this year.<br /><br />
<strong>Already filed your state taxes with us?</strong> You can download a copy of your 2024 state return below.<br /><br />
faq_prior_year_returns: Visit our FAQ for questions about prior year returns
header: A free state filing service for taxpayers using IRS Direct File
helper_heading_html: "<strong>How does this service work? </strong>"
Expand Down
4 changes: 4 additions & 0 deletions config/locales/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4695,6 +4695,10 @@ es:
Nuestro servicio ya está cerrado para esta temporada de impuestos. Desafortunadamente, ya no puedes presentar tu declaración estatal con nosotros este año.<br /><br />
<strong>¿La declaración estatal que presentaste con FileYourStateTaxes fue rechazada?</strong> <a href="%{sign_in_url}">Inicia sesión aquí</a> para corregir y volver a enviar tu declaración.<br /><br />
download_return_button: Descarga tu 2024 declaración
end_of_in_progress_intakes_subheader_html: |
<strong>FileYourStateTaxes</strong> se conecta con el servicio Direct File del IRS para ayudarte a completar tu declaración de impuestos estatal sin costo.<br/><br/>
Nuestro servicio ya está cerrado para esta temporada de impuestos. Desafortunadamente, ya no puedes presentar tu declaración estatal con nosotros este año.<br /><br />
<strong>¿Ya presentaste tus impuestos estatales con nosotros?</strong> Puedes descargar una copia de tu declaración estatal a continuación. <br /><br />
faq_prior_year_returns: Visita nuestra sección de preguntas frecuentes si tienes dudas sobre declaraciones de años anteriores.
header: Un servicio sin costo para declarar los impuestos estatales para las personas que usaron IRS Direct File
helper_heading_html: "<strong>¿Cómo funciona este servicio?</strong>"
Expand Down
Loading