-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalization.ts
More file actions
96 lines (95 loc) · 3.73 KB
/
localization.ts
File metadata and controls
96 lines (95 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
export const mainTranslations = {
pl: {
greeting: "Witaj w Congregation Planner",
adminLoginButton: "Logowanie administratora",
preacherLoginButton: "Logowanie głosiciela",
all: "Wszystkie",
myAssignments: "Moje przydziały",
emptyField: "Pole jest wymagane",
invalidEmail: "Nieprawidłowy adres email",
settingsLabel: "Ustawienia",
confirmIdentity: 'Potwierdź swoją tożsamość, by dokonano automatycznego logowania',
chooseColor: "Wybierz główny kolor aplikacji",
addToCalendar: "Dodaj do kalendarza",
newCong: "Nowe zbory",
registeredCong: "Zarejestrowane zbory",
successfullyAddedEventMessage: "Poprawnie dodano wydarzenie z kalendarza",
alreadyAddedEvent: "Dodałeś już to wydarzenie do kalendarza",
pdfInfo: "Zaloguj się w aplikacji internetowej, by wygenerowac plik do druku",
chooseMonth: "Wybierz miesiąc",
january: "Styczeń",
february: "Luty",
march: "Marzec",
april: "Kwiecień",
yes: "Tak",
no: "Nie",
may: "Maj",
june: "Czerwiec",
july: "Lipiec",
august: "Sierpień",
september: "Wrzesień",
october: "Październik",
november: "Listopad",
december: "Grudzień",
monday: "Pon",
tuesday: "Wt",
wednesday: "Śro",
thursday: "Czw",
friday: "Pt",
saturday: "Sob",
sunday: "Nd",
today: "(dzisiaj)",
calendarPermission: "Ta aplikacja do przydatnych dla Ciebie funkcji potrzebuje dostępu do kalendarza",
reminderIOSPermission: "Pozwól $(PRODUCT_NAME) na dostęp do przypomnień",
faceIDPermission: "Pozwól $(PRODUCT_NAME) na używanie Face ID.",
generatePDFError: "Nie udało się wygenerować pliku PDF.",
dateLabel: "Data",
dataInfo: "Dane osobiste wykorzystywane tylko do korespodencji mailowej i nie są przechowywane na żadnym serwerze"
},
en: {
greeting: "Welcome to Congregation Planner",
adminLoginButton: "Admin login",
preacherLoginButton: "Preacher login",
emptyField: "Field is required",
invalidEmail: "Invalid address email",
settingsLabel: "Settings",
chooseMonth: "Choose month",
newCong: "New congregations",
registeredCong: "Registered congregations",
alreadyAddedEvent: "You have already added this event to calendar ",
confirmIdentity: 'Confirm your identity for automatic login',
all: "All",
myAssignments: "My assignments",
yes: "Yes",
no: "No",
addToCalendar: "Add to calendar",
successfullyAddedEventMessage: "Successfully added event to calendar",
pdfInfo: "Log in to web app to generate pdf",
january: "January",
february: "February",
march: "March",
april: "April",
may: "May",
june: "June",
july: "July",
august: "August",
september: "September",
october: "October",
november: "November",
december: "December",
monday: "Mon",
tuesday: "Tue",
wednesday: "Wed",
thursday: "Thu",
friday: "Fri",
saturday: "Sat",
sunday: "Sun",
today: "(today)",
calendarPermission: "This app for helpful functions need permission to calendar",
reminderIOSPermission: "Let $(PRODUCT_NAME) for accessing reminders",
faceIDPermission: "Let $(PRODUCT_NAME) for using Face ID.",
generatePDFError: "We could not generate PDF.",
dateLabel: "Date",
dataInfo: "Personal data used only for email conversation and not stored on any server"
}
}