Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in polish translation #36

Open
klebaniukp opened this issue Jan 31, 2024 · 0 comments
Open

Error in polish translation #36

klebaniukp opened this issue Jan 31, 2024 · 0 comments

Comments

@klebaniukp
Copy link

This is how polish translation file is looking right now:

`/**

  • Polish translation for js-year-calendar
  • Robert 'Wooya' Gaudyn
    */

Calendar.locales['pl'] = {
days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piatek", "Sobota"],
daysShort: ["Nie", "Pon", "Wto", "Śro", "Czw", "Pią", "Sob"],
daysMin: ["Ni", "Po", "Wt", "Śr", "Cz", "Pi", "So"],
months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"],
monthsShort: ["Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru"],
weekShort: 'W',
weekStart: 1
};`

the weekShort should be 'T' becaouse it's called 'Tydzień' not 'Week' so the file should look like this:

`/**

  • Polish translation for js-year-calendar
  • Robert 'Wooya' Gaudyn
    */

Calendar.locales['pl'] = {
days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piatek", "Sobota"],
daysShort: ["Nie", "Pon", "Wto", "Śro", "Czw", "Pią", "Sob"],
daysMin: ["Ni", "Po", "Wt", "Śr", "Cz", "Pi", "So"],
months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"],
monthsShort: ["Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru"],
weekShort: 'T',
weekStart: 1
};`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant