refactor(lang): ensure all strings are converted into localization keys #75
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
src/
├── components│ ├── AffiliationCard.test.tsx│ ├── AffiliationCard.tsx│ ├── AffiliationSearch.test.tsx│ ├── AffiliationSearch.tsx│ ├── Affiliations.test.tsx│ ├── Affiliations.tsx│ ├── AuthGuard.tsx│ ├── CallToAction.tsx│ ├── CollectionCard.tsx│ ├── CollectionHeader.tsx│ ├── CollectionSubmissionEditor.tsx│ ├── CollectionViewHeader.tsx│ ├── ContributorEnum.tsx│ ├── ContributorManagementModal.tsx│ ├── CustomHeader.tsx│ ├── DecisionSelect.tsx│ ├── DeleteAccountModal.tsx│ ├── DraftCard.tsx│ ├── EditingCard.tsx│ ├── Editor.tsx│ ├── EditorAuthGuard.tsx│ ├── EmailVerificationStatus.tsx│ ├── EmptyState.test.tsx│ ├── EmptyState.tsx│ ├── FeaturesCarbon.tsx│ ├── Footer.tsx│ ├── HeroExample.tsx│ ├── HomepageSection.tsx│ ├── LinkCard.tsx│ ├── LinkSearch.tsx│ ├── LinkSettings.tsx│ ├── ListView.test.tsx│ ├── ListView.tsx│ ├── Map.tsx│ ├── MapPlural.tsx│ ├── MetadataCollection.tsx│ ├── MetadataCollectionViewer.tsx│ ├── MetadataDraft.tsx│ ├── NewEdgeTile.tsx│ ├── NewSubmissionTile.tsx│ ├── OrganizationCard.test.tsx│ ├── OrganizationCard.tsx│ ├── OutputActions.tsx│ ├── OutputCard.tsx│ ├── OutputDraftHeader.tsx│ ├── OutputHeader.tsx│ ├── PaginationGeneric.test.tsx│ ├── PaginationGeneric.tsx│ ├── PidRow.tsx│ ├── RefreshRedirect.tsx│ ├── RefreshToken.tsx│ ├── SearchGeneric.tsx│ ├── Settings2FA.tsx│ ├── SettingsSection.test.tsx│ ├── SettingsSection.tsx│ ├── StateHelperCollectionEdit.tsx│ ├── StateHelperOutputDraft.tsx│ ├── StatsGrid.tsx│ ├── SubmissionCard.tsx│ ├── SubmissionCardViewer.tsx│ ├── TopHeader.tsx│ ├── UserCard.test.tsx│ ├── UserCard.tsx│ ├── admin│ │ └── AdminUpdateOutput.tsx│ ├── blocks│ │ ├── ExcelBlock.tsx│ │ ├── HtmlBlock.css│ │ ├── HtmlBlock.tsx│ │ ├── OfficeBlocks.css│ │ ├── PdfBlock.css│ │ ├── PdfBlock.tsx│ │ ├── PowerPointBlock.tsx│ │ └── WordBlock.tsx│ ├── forms│ │ ├── AvatarUploader.tsx│ │ ├── EmailVerification.tsx│ │ ├── ImageUploader.tsx│ │ ├── InvitationHandler.tsx│ │ ├── LoginForm.tsx│ │ ├── OtpVerificationForm.tsx│ │ ├── RegistrationForm.tsx│ │ ├── RequestPasswordResetForm.tsx│ │ ├── ResetPasswordForm.tsx│ │ ├── SettingsOrcid.tsx│ │ ├── SettingsPassword.tsx│ │ └── SettingsProfile.tsx│ ├── layouts│ │ ├── AuthFormLayout.tsx│ │ ├── GlobalLayout.astro│ │ └── GlobalLayoutNoRefresh.astro│ ├── modals│ │ └── DeleteModal.tsx│ └── ui│ ├── PageHeader.tsx│ ├── RemoteMarkdown.tsx│ ├── TabsBody.tsx│ ├── TabsCollection.tsx│ ├── TabsCollectionViewer.tsx│ ├── TabsDraft.tsx│ ├── TabsOrganization.tsx│ ├── TabsOutput.tsx│ ├── TabsPeople.tsx│ ├── TabsProfile.tsx│ ├── TabsSettings.tsx│ ├── VersionHistoryTable.tsx│ └── tabs│ ├── Backlinks.tsx│ ├── OrgIsland.astro│ ├── OrganizationsIsland.astro│ ├── SettingsIsland.astro│ └── UserIsland.astro├── content.config.js├── i18n│ ├── apc-PS.json│ ├── en.json│ ├── index.ts│ └── nl-NL.json├── index.scss├── pages│ ├── 404.astro│ ├── @[username]│ │ └── links.astro│ ├── @[username].astro│ ├── [...locale]│ │ ├── @[username].astro│ │ ├── index.astro│ │ ├── login-otp.astro│ │ ├── login.astro│ │ ├── organizations.astro│ │ ├── outputs.astro│ │ ├── people.astro│ │ ├── settings.astro│ │ ├── signup.astro│ │ ├── sources.astro│ │ └── verify-email.astro│ ├── admin.astro│ ├── collections│ │ ├── [id]│ │ │ └── edit.astro│ │ ├── [id].astro│ │ ├── editing.astro│ │ └── new.astro│ ├── collections.astro│ ├── faq.astro│ ├── index.astro│ ├── invitation.astro│ ├── legal│ │ ├── data-processing-agreement.astro│ │ ├── poison-pill.astro│ │ ├── privacy.astro│ │ ├── right-of-withdrawal.astro│ │ ├── security.astro│ │ ├── server-rules.astro│ │ └── terms.astro│ ├── login-otp.astro│ ├── login.astro│ ├── organizations│ │ ├── [slug]│ │ │ └── links.astro│ │ └── [slug].astro│ ├── organizations.astro│ ├── outputs│ │ ├── [id]│ │ │ └── draft.astro│ │ ├── [id].astro│ │ ├── drafts.astro│ │ └── new.astro│ ├── outputs.astro│ ├── password-reset-sent.astro│ ├── people.astro│ ├── refresh.astro│ ├── request-password-reset.astro│ ├── reset-password.astro│ ├── robots.txt.ts│ ├── settings│ │ ├── affiliations.astro│ │ ├── bio.astro│ │ ├── links.astro│ │ ├── profile.astro│ │ └── security.astro│ ├── settings.astro│ ├── signup.astro│ ├── sitemap.xml.ts│ ├── success.astro│ ├── verify-email.astro│ └── versions│ └── [id].astro├── static.ts├── tests│ ├── README.md│ ├── example.spec.ts│ ├── vite-setup.ts│ └── vitest.d.ts└── utils├── ReactMarkdownHelper.tsx└── config.ts