Skip to content

Commit

Permalink
Merge pull request #2460 from ORCID/lmendoza/404-fixes
Browse files Browse the repository at this point in the history
404-fixes
  • Loading branch information
leomendoza123 authored Jan 30, 2025
2 parents e16273d + f6cd4c3 commit 1f622d9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,13 @@ const routes: Routes = [
import('./developer-tools/developer-tools.module').then(
(m) => m.DeveloperToolsModule
),
},
{
path: '404',
loadChildren: () =>
import('./page-not-found-404/page-not-found-404.module').then(
(m) => m.PageNotFound404Module
),
},
{
path: '**',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2 class="orc-font-heading-small" i18n="@@record.notFound">
<p i18n="@@record.pleaseCheck">
Please check the URL or link for typos or mistakes. If you are
looking for a specific ORCID record make sure the ORCID iD - the
16-digit number at the end of the URL - is right.A
16-digit number at the end of the URL - is right. A
correctly-formatted ORCID iD URL looks like this:
https://orcid.org/1234-5678-9101-1121
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/locale/properties/record/record.en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ record.notFound=We’re really sorry, we can’t find the page you’re looking
record.whatHappened=What happened?
record.whatToDo=What to do next
record.ifYouTyped=If you typed in a URL or link by hand
record.pleaseCheck=Please check the URL or link for typos or mistakes. If you are looking for a specific ORCID record make sure the ORCID iD - the 16-digit number at the end of the URL - is right.A correctly-formatted ORCID iD URL looks like this: https://orcid.org/1234-5678-9101-1121
record.pleaseCheck=Please check the URL or link for typos or mistakes. If you are looking for a specific ORCID record make sure the ORCID iD - the 16-digit number at the end of the URL - is right. A correctly-formatted ORCID iD URL looks like this: https://orcid.org/1234-5678-9101-1121
record.ifYouFollowed=If you followed a link to this record from another site or service
record.pleaseReport=Please report the broken link to the site or service you came from so they can fix it.
record.unidentifiedOrganization=Unidentified organization
Expand Down

0 comments on commit 1f622d9

Please sign in to comment.