Skip to content

Commit 6ae0d88

Browse files
committed
Adjust DateLanguageData
1 parent 98d57da commit 6ae0d88

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: .codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See: https://github.com/codespell-project/codespell#using-a-config-file
22
[codespell]
33
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
4-
ignore-words-list = leapyears,vie
4+
ignore-words-list = leapyears,
55
check-filenames =
66
check-hidden =
77
skip = ./.git

Diff for: NTPClient.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@
2424
const DateLanguageData EnglishData = {
2525
{"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"},
2626
{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
27-
{"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"},
27+
{"Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Sept", "Oct", "Nov", "Dec"},
2828
{"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}
2929
};
3030

3131
const DateLanguageData SpanishData = {
32-
{"Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"},
32+
{"Dom", "Lun", "Mart", "Miérc", "Juev", "Vier", "Sáb"},
3333
{"Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"},
34-
{"Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"},
35-
{"Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"}
34+
{"ene", "feb", "mar", "abr", "mayo", "jun", "jul", "ago", "sept", "oct", "nov", "dic"},
35+
{"enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"}
3636
};
3737

3838
const DateLanguageData PortugueseData = {
3939
{"Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"},
4040
{"Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"},
41-
{"Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"},
42-
{"Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"}
41+
{"jan", "fev", "mar", "abr", "maio", "jun", "jul", "ago", "set", "out", "nov", "dez"},
42+
{"janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"}
4343
};
4444

4545
// Language map definition

0 commit comments

Comments
 (0)