Skip to content

Commit

Permalink
Change wording: Clear All → Select None
Browse files Browse the repository at this point in the history
  • Loading branch information
silviot committed Feb 4, 2024
1 parent 2b3ce67 commit 98735a1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/translations/src/dict/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
"Deadline": "Deadline",
"SelectAthletes": "Select Athletes",
"SelectAll": "Select All",
"ClearAll": "Clear All"
"SelectNone": "Select None"
},

"Validations": {
Expand Down
4 changes: 2 additions & 2 deletions packages/translations/src/dict/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@
"OrganizationName": "Nome Dell'Organizzazione",
"Deadline": "Scadenza",
"SelectAthletes": "Selezionare Gli Atleti",
"SelectAll": "Seleziona Tutto",
"ClearAll": "Cancella Tutto"
"SelectAll": "Seleziona Tutti",
"SelectNone": "Seleziona Nessuno"
},

"Validations": {
Expand Down
2 changes: 1 addition & 1 deletion packages/translations/src/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export enum MessageTemplateLabel {
Deadline = "MessageTemplateLabel.Deadline",
SelectAthletes = "MessageTemplateLabel.SelectAthletes",
SelectAll = "MessageTemplateLabel.SelectAll",
ClearAll = "MessageTemplateLabel.ClearAll",
SelectNone = "MessageTemplateLabel.SelectNone",
}

export enum BookingNotesForm {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CustomerList: React.FC<Props> = ({
onClick={onClearAll}
type="button"
>
{t(MessageTemplateLabel.ClearAll)}
{t(MessageTemplateLabel.SelectNone)}
</button>
</div>
{customers.map((customer) => (
Expand Down

0 comments on commit 98735a1

Please sign in to comment.