You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, def terms_of_use_path and def how_to_manage_your_data_path exist in application_helper.rb for providing en/fr localized routes. However, the usage of these localized routes is inconsistent.
The file _create_account_form.html.erb uses terms_of_use_path. However, the file _footer.html.erb is hardcoded with <a href="/terms"><%= _('Terms of use') %></a>.
The file help.html.erb uses how_to_manage_your_data_path. However, the file _welcome.html.erb is hardcoded with <a href="https://portagenetwork.ca/tools-and-resources/dmp-assistant/how-to-manage-your-data/">How to Manage Your Data</a>.
The text was updated successfully, but these errors were encountered:
Currently,
def terms_of_use_path
anddef how_to_manage_your_data_path
exist inapplication_helper.rb
for providing en/fr localized routes. However, the usage of these localized routes is inconsistent.The file
_create_account_form.html.erb
usesterms_of_use_path
. However, the file_footer.html.erb
is hardcoded with<a href="/terms"><%= _('Terms of use') %></a>
.The file
help.html.erb
useshow_to_manage_your_data_path
. However, the file_welcome.html.erb
is hardcoded with<a href="https://portagenetwork.ca/tools-and-resources/dmp-assistant/how-to-manage-your-data/">How to Manage Your Data</a>
.The text was updated successfully, but these errors were encountered: