Onboarding Data Collection - Adding new translations text (#28587)

* adding new translations

* removing the .

* adding the correft quote ’

* changing an e2e test

* changing translation key

GitOrigin-RevId: 099a633dca177ea1d14d055109a24eaa71ba0994
This commit is contained in:
Davinder Singh
2025-09-22 11:28:48 +01:00
committed by Copybot
parent 9cc0f7343c
commit 1a29026023
4 changed files with 12 additions and 6 deletions

View File

@@ -2037,6 +2037,7 @@
"use_saml_metadata_to_configure_sso_with_idp": "",
"use_your_own_machine": "",
"used_latex_before": "",
"used_latex_response_familiar": "",
"used_latex_response_never": "",
"used_latex_response_occasionally": "",
"used_latex_response_often": "",

View File

@@ -79,6 +79,10 @@
}
.onboarding-step-2 {
.radio-group {
height: 240px;
}
.form-check {
margin: 0;

View File

@@ -1438,7 +1438,7 @@
"newsletter_info_summary": "Every few months we send a newsletter out summarizing the new features available.",
"newsletter_info_title": "Newsletter Preferences",
"newsletter_info_unsubscribed": "You are currently <0>unsubscribed</0> to the __appName__ newsletter.",
"newsletter_onboarding_accept": "Id like emails about product offers and company news and events.",
"newsletter_onboarding_accept": "Id like emails about feature updates, offers, and user feedback opportunities.",
"next": "Next",
"next_page": "Next page",
"next_payment_of_x_collectected_on_y": "The next payment of <0>__paymentAmmount__</0> will be collected on <1>__collectionDate__</1>.",
@@ -2575,10 +2575,11 @@
"use_a_different_password": "Please use a different password",
"use_saml_metadata_to_configure_sso_with_idp": "Use the Overleaf SAML metadata to configure SSO with your Identity Provider.",
"use_your_own_machine": "Use your own machine, with your own setup",
"used_latex_before": "Have you ever used LaTeX before?",
"used_latex_response_never": "No, never",
"used_latex_response_occasionally": "Yes, occasionally",
"used_latex_response_often": "Yes, very often",
"used_latex_before": "How familiar are you with LaTeX?",
"used_latex_response_familiar": "Ive heard of it, but never used it",
"used_latex_response_never": "Ive never heard of it",
"used_latex_response_occasionally": "Ive used it occasionally",
"used_latex_response_often": "I use it often",
"used_when_referring_to_the_figure_elsewhere_in_the_document": "Used when referring to the figure elsewhere in the document",
"user_administration": "User administration",
"user_already_added": "User already added",

View File

@@ -1,4 +1,4 @@
export type UsedLatex = 'never' | 'occasionally' | 'often'
export type UsedLatex = 'never' | 'occasionally' | 'often' | 'aware'
export type Occupation =
| 'university'
| 'company'