Removing Exclamation mark from the Welcome to overleaf translations. (#16098)

* removing ! from en.json

* fixing tests

* fixing

GitOrigin-RevId: 40c9a036df6b100743454e9e5109182edd90894a
This commit is contained in:
Davinder Singh 2023-12-07 11:45:09 +00:00 committed by Copybot
parent 4763cfd59e
commit 3ee74b247f
4 changed files with 4 additions and 4 deletions

View file

@ -2073,7 +2073,7 @@
"webinars": "Webinars",
"website_status": "Website status",
"wed_love_you_to_stay": "Wed love you to stay",
"welcome_to_sl": "Welcome to __appName__!",
"welcome_to_sl": "Welcome to __appName__",
"were_in_the_process_of_reducing_compile_timeout_which_may_affect_this_project": "Were in the process of <0>reducing the compile timeout limit</0> on our free plan, which may affect this project in future.",
"were_in_the_process_of_reducing_compile_timeout_which_may_affect_your_project": "Were in the process of <0>reducing the compile timeout limit</0> on our free plan, which may affect your project in future.",
"were_performing_maintenance": "Were performing maintenance on Overleaf and you need to wait a moment. Sorry for any inconvenience. The editor will refresh automatically in __seconds__ seconds.",

View file

@ -75,7 +75,7 @@ describe('<ProjectListRoot />', function () {
})
it('the welcome page is displayed', async function () {
screen.getByRole('heading', { name: 'Welcome to Overleaf!' })
screen.getByRole('heading', { name: 'Welcome to Overleaf' })
})
it('the email confirmation alert is not displayed', async function () {

View file

@ -10,7 +10,7 @@ describe('<WelcomeMessageNew />', function () {
it('renders welcome page correctly', function () {
render(<WelcomeMessageNew />)
screen.getByText('Welcome to Overleaf!')
screen.getByText('Welcome to Overleaf')
screen.getByText('Create a new project')
screen.getByText('Learn LaTeX with a tutorial')
screen.getByText('Browse templates')

View file

@ -17,7 +17,7 @@ describe('i18n', function () {
return <div>{t('welcome_to_sl')}</div>
}
cy.mount(<Test />)
cy.findByText('Welcome to Overleaf!')
cy.findByText('Welcome to Overleaf')
})
it('uses values', function () {