fix: auto translate failed when there is a new file in english (#19671)

This commit is contained in:
Joel
2025-05-14 16:01:35 +08:00
committed by GitHub
parent 1b4fea1794
commit 1c91736a6d
237 changed files with 7543 additions and 23 deletions

View File

@@ -1,3 +1,37 @@
const translation = {}
const translation = {
daysInWeek: {
Thu: 'Czw',
Tue: 'Wtorek',
Mon: 'Mon',
Sun: 'Słońce',
Fri: 'Wolny',
Sat: 'Sat',
Wed: 'Środa',
},
months: {
July: 'lipiec',
January: 'Styczeń',
August: 'Sierpień',
February: 'Luty',
October: 'Październik',
April: 'Kwiecień',
December: 'Grudzień',
March: 'Marzec',
May: 'Maj',
September: 'Wrzesień',
June: 'Czerwiec',
November: 'Listopad',
},
operation: {
cancel: 'Anuluj',
pickDate: 'Wybierz datę',
now: 'Teraz',
ok: 'OK',
},
title: {
pickTime: 'Wybierz czas',
},
defaultPlaceholder: 'Wybierz czas...',
}
export default translation