-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added translations for catalan language and updated docs
- Loading branch information
Showing
4 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { TranslationsType } from './utils' | ||
|
||
const ca: TranslationsType = { | ||
save: 'Guardar', | ||
selectSingle: 'Seleccionar data', | ||
selectMultiple: 'Seleccionar dates', | ||
selectRange: 'Seleccionar període', | ||
notAccordingToDateFormat: (inputFormat) => | ||
`El format de la data ha de ser ${inputFormat}`, | ||
mustBeHigherThan: (date) => `Ha de ser posterior a ${date}`, | ||
mustBeLowerThan: (date) => `Ha de ser anterior a ${date}`, | ||
mustBeBetween: (startDate, endDate) => | ||
`Ha d'estar entre ${startDate} - ${endDate}`, | ||
dateIsDisabled: 'Dia no permès', | ||
previous: 'Anterior', | ||
next: 'Següent', | ||
typeInDate: 'Escriu la data', | ||
pickDateFromCalendar: 'Seleccionar la data del calendari', | ||
close: 'Tancar', | ||
} | ||
export default ca |