Skip to content

Commit

Permalink
chore: correct spelling mistake (#3471)
Browse files Browse the repository at this point in the history
  • Loading branch information
BRaimbault authored Feb 20, 2025
1 parent 409f1d6 commit 4a4995a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/layers/thematiclayer.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ context('Thematic Layers', () => {
cy.get('input[value="SINGLE"]').should('not.be.disabled')
cy.get('input[value="TIMELINE"]').should('be.disabled')
cy.get('div').contains('Timeline').realHover()
cy.contains('Remove the exiting timeline to add a new one.').should(
cy.contains('Remove the existing timeline to add a new one.').should(
'be.visible'
)
cy.get('input[value="SPLIT_BY_PERIOD"]').should('be.disabled')
Expand Down
8 changes: 4 additions & 4 deletions i18n/en.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"POT-Creation-Date: 2025-02-04T11:20:55.610Z\n"
"PO-Revision-Date: 2025-02-04T11:20:55.610Z\n"
"POT-Creation-Date: 2025-02-20T13:37:02.693Z\n"
"PO-Revision-Date: 2025-02-20T13:37:02.693Z\n"

msgid "2020"
msgstr "2020"
Expand Down Expand Up @@ -930,8 +930,8 @@ msgstr "Start/end dates"
msgid "Select at least {{number}} periods or 1 multi-period."
msgstr "Select at least {{number}} periods or 1 multi-period."

msgid "Remove the exiting timeline to add a new one."
msgstr "Remove the exiting timeline to add a new one."
msgid "Remove the existing timeline to add a new one."
msgstr "Remove the existing timeline to add a new one."

msgid ""
"Only up to a total of {{number}} periods (including those in multi-periods) "
Expand Down
2 changes: 1 addition & 1 deletion src/components/periods/RenderingStrategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const RenderingStrategy = ({
{ number: MULTIMAP_MIN_PERIODS }
)
: hasOtherTimelineLayers
? i18n.t('Remove the exiting timeline to add a new one.')
? i18n.t('Remove the existing timeline to add a new one.')
: undefined,
[RENDERING_STRATEGY_SPLIT_BY_PERIOD]:
totalPeriods < MULTIMAP_MIN_PERIODS
Expand Down

0 comments on commit 4a4995a

Please sign in to comment.