-
-
Notifications
You must be signed in to change notification settings - Fork 939
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add months, days and few other minor strings to es (#1320)
Co-authored-by: Pablo León Manzano <[email protected]> Co-authored-by: Pablo León Manzano <[email protected]>
- Loading branch information
1 parent
cc15d9e
commit ebb4e2c
Showing
10 changed files
with
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,4 +128,5 @@ export default [ | |
'Reus', | ||
'Calahorra', | ||
'Inca', | ||
'Aýna', | ||
]; |
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,14 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { DateDefinitions } from '../../..'; | ||
import month from './month'; | ||
import weekday from './weekday'; | ||
|
||
const date: DateDefinitions = { | ||
month, | ||
weekday, | ||
}; | ||
|
||
export default date; |
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,47 @@ | ||
// Sources: https://www.unicode.org/cldr/cldr-aux/charts/28/summary/es.html and https://www.wikilengua.org/index.php/Abreviaciones_en_fechas | ||
export default { | ||
wide: [ | ||
'enero', | ||
'febrero', | ||
'marzo', | ||
'abril', | ||
'mayo', | ||
'junio', | ||
'julio', | ||
'agosto', | ||
'septiembre', | ||
'octubre', | ||
'noviembre', | ||
'diciembre', | ||
], | ||
abbr: [ | ||
'ene', | ||
'feb', | ||
'mar', | ||
'abr', | ||
'may', | ||
'jun', | ||
'jul', | ||
'ago', | ||
'sep', | ||
'oct', | ||
'nov', | ||
'dic', | ||
], | ||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
abbr_context: [ | ||
'en.', | ||
'febr.', | ||
'mzo.', | ||
'abr.', | ||
'my.', | ||
'jun.', | ||
'jul.', | ||
'ag.', | ||
'sept.', | ||
'oct.', | ||
'nov.', | ||
'dic.', | ||
], | ||
}; |
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,16 @@ | ||
// Sources: https://www.unicode.org/cldr/cldr-aux/charts/28/summary/es.html and https://www.wikilengua.org/index.php/Abreviaciones_en_fechas | ||
export default { | ||
wide: [ | ||
'domingo', | ||
'lunes', | ||
'martes', | ||
'miércoles', | ||
'jueves', | ||
'viernes', | ||
'sábado', | ||
], | ||
abbr: ['dom', 'lun', 'mar', 'mié', 'jue', 'vie', 'sáb'], | ||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
abbr_context: ['dom.', 'lun.', 'mart.', 'miérc.', 'juev.', 'vier.', 'sáb.'], | ||
}; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export default ['com', 'es', 'info', 'com.es', 'org']; | ||
export default ['com', 'es', 'info', 'com.es', 'org', 'eus', 'cat']; |
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ export default [ | |
'Matilde', | ||
'Jennifer', | ||
'Roser', | ||
'María de los Ángeles', | ||
]; |
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 |
---|---|---|
|
@@ -15,4 +15,8 @@ export default [ | |
'Carles', | ||
'Jordi', | ||
'Manuel', | ||
'Pío', | ||
'Pablo', | ||
'Juan Ramón', | ||
'Hermenegildo', | ||
]; |