Skip to content

Commit

Permalink
fix: update tooltip text
Browse files Browse the repository at this point in the history
  • Loading branch information
simonadomnisoru committed Feb 10, 2025
1 parent 77951a1 commit 153c5a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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-10T15:51:26.000Z\n"
"PO-Revision-Date: 2025-02-10T15:51:26.000Z\n"
"POT-Creation-Date: 2025-02-10T15:54:20.259Z\n"
"PO-Revision-Date: 2025-02-10T15:54:20.260Z\n"

msgid "Choose one or more dates..."
msgstr "Choose one or more dates..."
Expand Down Expand Up @@ -1419,8 +1419,8 @@ msgstr "Choose a {{linkableStageLabel}} event"
msgid "Choose a {{linkableStageLabel}}"
msgstr "Choose a {{linkableStageLabel}}"

msgid "{{ linkableStageLabel }} can only have only event"
msgstr "{{ linkableStageLabel }} can only have only event"
msgid "{{ linkableStageLabel }} can only have one event"
msgstr "{{ linkableStageLabel }} can only have one event"

msgid "{{ linkableStageLabel }} has no linkable events"
msgstr "{{ linkableStageLabel }} has no linkable events"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Schedule = ({
if (disabled) {
tooltipContent = disabledMessage;
} else {
tooltipContent = i18n.t('{{ linkableStageLabel }} can only have only event', {
tooltipContent = i18n.t('{{ linkableStageLabel }} can only have one event', {
linkableStageLabel: programStage.stageForm.name,
interpolation: { escapeValue: false },
});
Expand Down Expand Up @@ -105,7 +105,7 @@ const EnterData = ({
if (disabled) {
tooltipContent = disabledMessage;
} else {
tooltipContent = i18n.t('{{ linkableStageLabel }} can only have only event', {
tooltipContent = i18n.t('{{ linkableStageLabel }} can only have one event', {
linkableStageLabel: programStage.stageForm.name,
interpolation: { escapeValue: false },
});
Expand Down

0 comments on commit 153c5a6

Please sign in to comment.