@churchapps/apphelper 0.4.49 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/FormCardPayment.d.ts +1 -1
- package/dist/components/FormCardPayment.d.ts.map +1 -1
- package/dist/components/FormCardPayment.js +27 -10
- package/dist/components/FormCardPayment.js.map +1 -1
- package/dist/components/Loading.js +36 -36
- package/dist/components/notes/Notes.js +27 -27
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/index.d.ts.map +1 -1
- package/dist/helpers/index.js +1 -1
- package/dist/helpers/index.js.map +1 -1
- package/dist/public/css/cropper.css +309 -309
- package/dist/public/css/styles.css +111 -111
- package/package.json +72 -73
- package/public/css/cropper.css +309 -309
- package/public/css/styles.css +111 -111
- package/public/locales/de.json +269 -269
- package/public/locales/en.json +276 -276
- package/public/locales/es.json +272 -272
- package/public/locales/fr.json +269 -269
- package/public/locales/hi.json +269 -269
- package/public/locales/it.json +269 -269
- package/public/locales/ko.json +269 -269
- package/public/locales/no.json +269 -269
- package/public/locales/pt.json +269 -269
- package/public/locales/ru.json +269 -269
- package/public/locales/tl.json +269 -269
- package/public/locales/zh.json +269 -269
- package/src/components/DisplayBox.tsx +83 -83
- package/src/components/ErrorMessages.tsx +28 -28
- package/src/components/ExportLink.tsx +81 -81
- package/src/components/FloatingSupport.tsx +18 -18
- package/src/components/FormCardPayment.tsx +184 -169
- package/src/components/FormSubmissionEdit.tsx +168 -168
- package/src/components/HelpIcon.tsx +12 -12
- package/src/components/ImageEditor.tsx +161 -161
- package/src/components/InputBox.tsx +96 -96
- package/src/components/Loading.tsx +77 -77
- package/src/components/PageHeader.tsx +110 -110
- package/src/components/PersonAvatar.tsx +77 -77
- package/src/components/QuestionEdit.tsx +99 -99
- package/src/components/SmallButton.tsx +42 -42
- package/src/components/SupportModal.tsx +32 -32
- package/src/components/TabPanel.tsx +28 -28
- package/src/components/gallery/GalleryModal.tsx +173 -173
- package/src/components/gallery/StockPhotos.tsx +95 -95
- package/src/components/gallery/index.ts +1 -1
- package/src/components/header/Banner.tsx +11 -11
- package/src/components/header/PrimaryMenu.tsx +100 -100
- package/src/components/header/SecondaryMenu.tsx +23 -23
- package/src/components/header/SecondaryMenuAlt.tsx +40 -40
- package/src/components/header/SiteHeader.tsx +207 -207
- package/src/components/header/SupportDrawer.tsx +111 -111
- package/src/components/header/index.tsx +2 -2
- package/src/components/index.tsx +20 -20
- package/src/components/notes/AddNote.tsx +180 -180
- package/src/components/notes/Note.tsx +68 -68
- package/src/components/notes/Notes.tsx +208 -208
- package/src/components/notes/index.ts +3 -3
- package/src/components/wrapper/AppList.tsx +19 -19
- package/src/components/wrapper/ChurchList.tsx +154 -154
- package/src/components/wrapper/NavItem.tsx +47 -47
- package/src/components/wrapper/NewPrivateMessage.tsx +253 -253
- package/src/components/wrapper/Notifications.tsx +223 -223
- package/src/components/wrapper/PrivateMessageDetails.tsx +112 -112
- package/src/components/wrapper/PrivateMessages.tsx +576 -576
- package/src/components/wrapper/UserMenu.tsx +383 -383
- package/src/components/wrapper/index.tsx +8 -8
- package/src/helpers/AnalyticsHelper.ts +32 -32
- package/src/helpers/AppearanceHelper.ts +73 -73
- package/src/helpers/ArrayHelper.ts +87 -87
- package/src/helpers/CurrencyHelper.ts +10 -10
- package/src/helpers/DateHelper.ts +104 -104
- package/src/helpers/ErrorHelper.ts +43 -43
- package/src/helpers/EventHelper.ts +49 -49
- package/src/helpers/FileHelper.ts +31 -31
- package/src/helpers/Locale.ts +457 -457
- package/src/helpers/NotificationService.ts +296 -296
- package/src/helpers/PersonHelper.ts +62 -62
- package/src/helpers/SlugHelper.ts +37 -37
- package/src/helpers/SocketHelper.ts +296 -296
- package/src/helpers/UniqueIdHelper.ts +36 -36
- package/src/helpers/UserHelper.ts +104 -104
- package/src/helpers/createEmotionCache.ts +17 -17
- package/src/helpers/index.ts +58 -50
- package/src/hooks/index.ts +3 -3
- package/src/hooks/useMountedState.ts +16 -16
- package/src/hooks/useNotifications.ts +93 -93
- package/src/index.ts +2 -2
- package/src/types/interface-extensions.d.ts +12 -0
- package/tsconfig.json +31 -31
- package/dist/public/locales/de.json +0 -270
- package/dist/public/locales/en.json +0 -277
- package/dist/public/locales/es.json +0 -272
- package/dist/public/locales/fr.json +0 -270
- package/dist/public/locales/hi.json +0 -270
- package/dist/public/locales/it.json +0 -270
- package/dist/public/locales/ko.json +0 -270
- package/dist/public/locales/no.json +0 -270
- package/dist/public/locales/pt.json +0 -270
- package/dist/public/locales/ru.json +0 -270
- package/dist/public/locales/tl.json +0 -270
- package/dist/public/locales/zh.json +0 -270
package/src/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./helpers";
|
|
2
|
-
export * from "./components";
|
|
1
|
+
export * from "./helpers";
|
|
2
|
+
export * from "./components";
|
|
3
3
|
export * from "./hooks";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// Interface extensions for donation functionality - DISABLED DUE TO TYPESCRIPT CONFLICT
|
|
2
|
+
// The module augmentation breaks TypeScript's ability to resolve exports from @churchapps/helpers
|
|
3
|
+
|
|
4
|
+
// declare module "@churchapps/helpers" {
|
|
5
|
+
// interface PaymentMethodInterface {
|
|
6
|
+
// gatewayId?: string;
|
|
7
|
+
// }
|
|
8
|
+
|
|
9
|
+
// interface SubscriptionInterface {
|
|
10
|
+
// gatewayId?: string;
|
|
11
|
+
// }
|
|
12
|
+
// }
|
package/tsconfig.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "ESNext",
|
|
4
|
-
"esModuleInterop": true,
|
|
5
|
-
"lib": ["ES2021", "DOM"],
|
|
6
|
-
"typeRoots": ["node_modules/@types"],
|
|
7
|
-
"experimentalDecorators": true,
|
|
8
|
-
"emitDecoratorMetadata": true,
|
|
9
|
-
"target": "ES2020",
|
|
10
|
-
"noImplicitAny":
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"sourceMap": true,
|
|
13
|
-
"outDir": "dist",
|
|
14
|
-
"baseUrl": ".",
|
|
15
|
-
"strict": false,
|
|
16
|
-
"allowSyntheticDefaultImports": true,
|
|
17
|
-
"declaration": true,
|
|
18
|
-
"declarationMap": true,
|
|
19
|
-
"jsx": "react-jsx",
|
|
20
|
-
"skipLibCheck": true,
|
|
21
|
-
"forceConsistentCasingInFileNames":
|
|
22
|
-
"resolveJsonModule": true,
|
|
23
|
-
"isolatedModules": true
|
|
24
|
-
},
|
|
25
|
-
"include": [
|
|
26
|
-
"src/**/*"
|
|
27
|
-
],
|
|
28
|
-
"exclude": [
|
|
29
|
-
"node_modules",
|
|
30
|
-
"dist"
|
|
31
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ESNext",
|
|
4
|
+
"esModuleInterop": true,
|
|
5
|
+
"lib": ["ES2021", "DOM"],
|
|
6
|
+
"typeRoots": ["node_modules/@types"],
|
|
7
|
+
"experimentalDecorators": true,
|
|
8
|
+
"emitDecoratorMetadata": true,
|
|
9
|
+
"target": "ES2020",
|
|
10
|
+
"noImplicitAny": false,
|
|
11
|
+
"moduleResolution": "node",
|
|
12
|
+
"sourceMap": true,
|
|
13
|
+
"outDir": "dist",
|
|
14
|
+
"baseUrl": ".",
|
|
15
|
+
"strict": false,
|
|
16
|
+
"allowSyntheticDefaultImports": true,
|
|
17
|
+
"declaration": true,
|
|
18
|
+
"declarationMap": true,
|
|
19
|
+
"jsx": "react-jsx",
|
|
20
|
+
"skipLibCheck": true,
|
|
21
|
+
"forceConsistentCasingInFileNames": false,
|
|
22
|
+
"resolveJsonModule": true,
|
|
23
|
+
"isolatedModules": true
|
|
24
|
+
},
|
|
25
|
+
"include": [
|
|
26
|
+
"src/**/*"
|
|
27
|
+
],
|
|
28
|
+
"exclude": [
|
|
29
|
+
"node_modules",
|
|
30
|
+
"dist"
|
|
31
|
+
]
|
|
32
32
|
}
|
|
@@ -1,270 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"b1Share": {
|
|
3
|
-
"comment": "Kommentar",
|
|
4
|
-
"commentPlaceholder": "Fügen Sie Ihrem Beitrag einen Kommentar hinzu.",
|
|
5
|
-
"contentShared": "Geteilter Inhalt",
|
|
6
|
-
"group": "Gruppe",
|
|
7
|
-
"sharingToGroup": "Teilen von {} mit der B1-Gruppe",
|
|
8
|
-
"validate": {
|
|
9
|
-
"addComment": "Bitte fügen Sie einen Kommentar hinzu.",
|
|
10
|
-
"loginFirst": "Bitte loggen Sie sich zuerst ein.",
|
|
11
|
-
"notMember": "Sie sind derzeit in keiner Gruppe auf B1 Mitglied.",
|
|
12
|
-
"selectGroup": "Bitte wählen Sie eine Gruppe aus."
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"common": {
|
|
16
|
-
"add": "Hinzufügen",
|
|
17
|
-
"cancel": "Stornieren",
|
|
18
|
-
"close": "Schließen",
|
|
19
|
-
"date": "Datum",
|
|
20
|
-
"delete": "Löschen",
|
|
21
|
-
"edit": "Bearbeiten",
|
|
22
|
-
"error": "Fehler",
|
|
23
|
-
"pleaseWait": "Bitte warten...",
|
|
24
|
-
"save": "Speichern",
|
|
25
|
-
"search": "Suchen",
|
|
26
|
-
"submit": "Einreichen",
|
|
27
|
-
"update": "Aktualisieren"
|
|
28
|
-
},
|
|
29
|
-
"createPerson": {
|
|
30
|
-
"addNewPerson": "Fügen Sie eine neue Person hinzu",
|
|
31
|
-
"firstName": "Vorname",
|
|
32
|
-
"lastName": "Familienname, Nachname"
|
|
33
|
-
},
|
|
34
|
-
"donation": {
|
|
35
|
-
"bankForm": {
|
|
36
|
-
"accountNumber": "Accountnummer",
|
|
37
|
-
"added": "Bankkonto hinzugefügt. ",
|
|
38
|
-
"company": "Unternehmen",
|
|
39
|
-
"firstDeposit": "Erste Einzahlung",
|
|
40
|
-
"holderName": "Der Name des Kontoinhabers ist erforderlich.",
|
|
41
|
-
"individual": "Individuell",
|
|
42
|
-
"name": "Name des Kontoinhabers",
|
|
43
|
-
"needVerified": "Bankkonten müssen vor jeder Spende überprüft werden. ",
|
|
44
|
-
"routingNumber": "Routing-Nummer",
|
|
45
|
-
"secondDeposit": "Zweite Einzahlung",
|
|
46
|
-
"twoDeposits": "Geben Sie die beiden Einzahlungen ein, die Sie auf Ihrem Konto erhalten haben, um die Verifizierung Ihres Bankkontos abzuschließen.",
|
|
47
|
-
"updated": "Bankkonto aktualisiert.",
|
|
48
|
-
"verified": "Bankkonto verifiziert.",
|
|
49
|
-
"validate": {
|
|
50
|
-
"accountNumber": "Bankleitzahl und Kontonummer sind erforderlich.",
|
|
51
|
-
"holderName": "Der Name des Kontoinhabers ist erforderlich."
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"cardForm": {
|
|
55
|
-
"addNew": "Neue Karte hinzufügen",
|
|
56
|
-
"added": "Karte erfolgreich hinzugefügt.",
|
|
57
|
-
"expirationMonth": "Monat des Ablaufens:",
|
|
58
|
-
"expirationYear": "Ablaufjahr:",
|
|
59
|
-
"updated": "Karte erfolgreich aktualisiert."
|
|
60
|
-
},
|
|
61
|
-
"donationForm": {
|
|
62
|
-
"annually": "Jährlich",
|
|
63
|
-
"biWeekly": "Zweiwöchentlich",
|
|
64
|
-
"cancelled": "Wiederkehrende Spende abgesagt.",
|
|
65
|
-
"confirmDelete": "Sind Sie sicher, dass Sie diese wiederkehrende Spende löschen möchten?",
|
|
66
|
-
"cover": "Ich füge großzügig {} hinzu, um die Transaktionsgebühren zu decken, damit Sie 100 % meiner Spende behalten können.",
|
|
67
|
-
"donate": "Spenden",
|
|
68
|
-
"editRecurring": "Bearbeiten Sie die wiederkehrende Spende",
|
|
69
|
-
"fees": "Es fallen Transaktionsgebühren von {} an.",
|
|
70
|
-
"frequency": "Frequenz",
|
|
71
|
-
"fund": "Fonds",
|
|
72
|
-
"funds": "Mittel",
|
|
73
|
-
"make": "Spenden",
|
|
74
|
-
"makeRecurring": "Machen Sie eine wiederkehrende Spende",
|
|
75
|
-
"method": "Methode",
|
|
76
|
-
"monthly": "Monatlich",
|
|
77
|
-
"notes": "Anmerkungen",
|
|
78
|
-
"preview": "Vorschau der Spende",
|
|
79
|
-
"quarterly": "Vierteljährlich",
|
|
80
|
-
"recurringUpdated": "Wiederkehrende Spende aktualisiert.",
|
|
81
|
-
"startDate": "Startdatum",
|
|
82
|
-
"thankYou": "Vielen Dank für Ihre Spende!",
|
|
83
|
-
"tooLow": "Der Spendenbetrag muss mehr als 0,50 $ betragen",
|
|
84
|
-
"total": "Gesamtspendenbetrag",
|
|
85
|
-
"validate": {
|
|
86
|
-
"amount": "Der Betrag darf nicht 0 $ betragen.",
|
|
87
|
-
"email": "Geben Sie bitte Ihre Email-Adresse ein.",
|
|
88
|
-
"firstName": "Bitte geben Sie Ihren Vornamen ein.",
|
|
89
|
-
"lastName": "Bitte geben Sie ihren Nachnamen ein.",
|
|
90
|
-
"validEmail": "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
|
91
|
-
},
|
|
92
|
-
"weekly": "Wöchentlich"
|
|
93
|
-
},
|
|
94
|
-
"fundDonations": {
|
|
95
|
-
"addMore": "Weitere hinzufügen",
|
|
96
|
-
"amount": "Menge",
|
|
97
|
-
"fund": "Fonds"
|
|
98
|
-
},
|
|
99
|
-
"paymentMethods": {
|
|
100
|
-
"addBank": "Bankkonto hinzufügen",
|
|
101
|
-
"addCard": "Karte hinzufügen",
|
|
102
|
-
"confirmDelete": "Sind Sie sicher, dass Sie diese Zahlungsmethode löschen möchten?",
|
|
103
|
-
"deleted": "Zahlungsmethode gelöscht.",
|
|
104
|
-
"noMethods": "Keine Zahlungsmethoden. ",
|
|
105
|
-
"verify": "Konto überprüfen"
|
|
106
|
-
},
|
|
107
|
-
"page": {
|
|
108
|
-
"amount": "Menge",
|
|
109
|
-
"batch": "Charge",
|
|
110
|
-
"date": "Datum",
|
|
111
|
-
"fund": "Fonds",
|
|
112
|
-
"method": "Methode",
|
|
113
|
-
"willAppear": "Spenden werden angezeigt, sobald eine Spende eingegeben wurde."
|
|
114
|
-
},
|
|
115
|
-
"preview": {
|
|
116
|
-
"date": "Spendedatum",
|
|
117
|
-
"donate": "Spenden",
|
|
118
|
-
"every": "Alles wiederkehrend",
|
|
119
|
-
"fee": "Transaktionsgebühr",
|
|
120
|
-
"funds": "Mittel",
|
|
121
|
-
"method": "Spendenmethode",
|
|
122
|
-
"notes": "Anmerkungen",
|
|
123
|
-
"startingOn": "Beginnt am",
|
|
124
|
-
"total": "Gesamt",
|
|
125
|
-
"type": "Spendenart"
|
|
126
|
-
},
|
|
127
|
-
"recurring": {
|
|
128
|
-
"amount": "Menge",
|
|
129
|
-
"every": "Jeden",
|
|
130
|
-
"interval": "Intervall",
|
|
131
|
-
"notFound": "Zahlungsmethode nicht gefunden.",
|
|
132
|
-
"paymentMethod": "Bezahlverfahren",
|
|
133
|
-
"startDate": "Startdatum"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"formSubmissionEdit": {
|
|
137
|
-
"confirmDelete": "Sind Sie sicher, dass Sie diese Formulardaten löschen möchten?",
|
|
138
|
-
"editForm": "Formular bearbeiten",
|
|
139
|
-
"isRequired": "ist erforderlich",
|
|
140
|
-
"submit": "Einreichen"
|
|
141
|
-
},
|
|
142
|
-
"gallery": {
|
|
143
|
-
"aspectRatio": "Seitenverhältnis",
|
|
144
|
-
"confirmDelete": "Sind Sie sicher, dass Sie dieses Bild aus der Galerie löschen möchten?",
|
|
145
|
-
"freeForm": "Freie Form"
|
|
146
|
-
},
|
|
147
|
-
"iconPicker": {
|
|
148
|
-
"iconsAvailable": "Symbole verfügbar",
|
|
149
|
-
"matchingResults": "passende Ergebnisse",
|
|
150
|
-
"search": "Suchsymbole..."
|
|
151
|
-
},
|
|
152
|
-
"login": {
|
|
153
|
-
"createAccount": "Ein Konto erstellen",
|
|
154
|
-
"email": "Email",
|
|
155
|
-
"forgot": "Passwort vergessen",
|
|
156
|
-
"goLogin": "Gehen Sie zu Anmelden",
|
|
157
|
-
"login": "Anmeldung",
|
|
158
|
-
"password": "Passwort",
|
|
159
|
-
"register": "Registrieren",
|
|
160
|
-
"registerThankYou": "Danke für die Registrierung! ",
|
|
161
|
-
"reset": "Zurücksetzen",
|
|
162
|
-
"resetInstructions": "Geben Sie Ihre E-Mail-Adresse ein, um eine Passwortzurücksetzung anzufordern.",
|
|
163
|
-
"resetPassword": "Passwort zurücksetzen",
|
|
164
|
-
"resetSent": "E-Mail zum Zurücksetzen des Passworts gesendet!",
|
|
165
|
-
"setPassword": "Passwort festlegen",
|
|
166
|
-
"signIn": "Anmelden",
|
|
167
|
-
"signInTitle": "Bitte einloggen",
|
|
168
|
-
"verifyPassword": "Passwort bestätigen",
|
|
169
|
-
"validate": {
|
|
170
|
-
"email": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
|
|
171
|
-
"firstName": "Bitte geben Sie Ihren Vornamen ein.",
|
|
172
|
-
"invalid": "Ungültiger Login. ",
|
|
173
|
-
"lastName": "Bitte geben Sie ihren Nachnamen ein.",
|
|
174
|
-
"password": "Bitte Passwort eingeben.",
|
|
175
|
-
"passwordLength": "Das Passwort muss mindestens 8 Zeichen lang sein.",
|
|
176
|
-
"passwordMatch": "Passwörter stimmen nicht überein.",
|
|
177
|
-
"selectingChurch": "Fehler bei der Auswahl der Kirche. "
|
|
178
|
-
},
|
|
179
|
-
"welcomeBack": "Willkommen zurück",
|
|
180
|
-
"welcomeName": "Willkommen zurück, <b>{}</b>! "
|
|
181
|
-
},
|
|
182
|
-
"markdownEditor": {
|
|
183
|
-
"content": "Inhalt",
|
|
184
|
-
"markdownEditor": "Markdown-Editor",
|
|
185
|
-
"markdownGuide": "Markdown-Leitfaden"
|
|
186
|
-
},
|
|
187
|
-
"month": {
|
|
188
|
-
"april": "April",
|
|
189
|
-
"august": "August",
|
|
190
|
-
"december": "Dezember",
|
|
191
|
-
"february": "Februar",
|
|
192
|
-
"january": "Januar",
|
|
193
|
-
"july": "Juli",
|
|
194
|
-
"june": "Juni",
|
|
195
|
-
"march": "Marsch",
|
|
196
|
-
"may": "Mai",
|
|
197
|
-
"november": "November",
|
|
198
|
-
"october": "Oktober",
|
|
199
|
-
"september": "September"
|
|
200
|
-
},
|
|
201
|
-
"notes": {
|
|
202
|
-
"comment": "Kommentar",
|
|
203
|
-
"comments": "Kommentare",
|
|
204
|
-
"notes": "Anmerkungen",
|
|
205
|
-
"startConversation": "Eine Konversation beginnen",
|
|
206
|
-
"validate": {
|
|
207
|
-
"content": "Bitte geben Sie eine Notiz ein."
|
|
208
|
-
},
|
|
209
|
-
"viewAll": "Alle ansehen"
|
|
210
|
-
},
|
|
211
|
-
"person": {
|
|
212
|
-
"email": "Email",
|
|
213
|
-
"firstName": "Vorname",
|
|
214
|
-
"lastName": "Familienname, Nachname",
|
|
215
|
-
"name": "Name",
|
|
216
|
-
"person": "Person",
|
|
217
|
-
"years": "Jahre"
|
|
218
|
-
},
|
|
219
|
-
"reporting": {
|
|
220
|
-
"downloadOptions": "Download-Optionen",
|
|
221
|
-
"noData": "Es sind keine Daten zum Anzeigen vorhanden.",
|
|
222
|
-
"runReport": "Bericht ausführen",
|
|
223
|
-
"useFilter": "Verwenden Sie den Filter, um den Bericht auszuführen."
|
|
224
|
-
},
|
|
225
|
-
"selectChurch": {
|
|
226
|
-
"address1": "Anschrift Zeile 1",
|
|
227
|
-
"address2": "Adresszeile 2",
|
|
228
|
-
"another": "Wählen Sie eine andere Kirche",
|
|
229
|
-
"city": "Stadt",
|
|
230
|
-
"confirmRegister": "Sind Sie sicher, dass Sie eine neue Kirche registrieren möchten?",
|
|
231
|
-
"country": "Land",
|
|
232
|
-
"name": "Kirchenname",
|
|
233
|
-
"noMatches": "Keine Treffer gefunden.",
|
|
234
|
-
"register": "Registrieren Sie eine neue Kirche",
|
|
235
|
-
"selectChurch": "Wählen Sie eine Kirche aus",
|
|
236
|
-
"state": "Staat/Provinz",
|
|
237
|
-
"zip": "Postleitzahl",
|
|
238
|
-
"validate": {
|
|
239
|
-
"address": "Die Adresse darf nicht leer sein.",
|
|
240
|
-
"city": "Stadt darf nicht leer sein.",
|
|
241
|
-
"country": "Das Land darf nicht leer sein.",
|
|
242
|
-
"name": "Der Name der Kirche darf nicht leer sein.",
|
|
243
|
-
"state": "Bundesland/Provinz darf nicht leer sein.",
|
|
244
|
-
"zip": "Postleitzahl/Postleitzahl darf nicht leer sein."
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
"stockPhotos": {
|
|
248
|
-
"photoBy": "Foto von:",
|
|
249
|
-
"providedBy": "Archivfotos bereitgestellt von"
|
|
250
|
-
},
|
|
251
|
-
"support": {
|
|
252
|
-
"email": "Email",
|
|
253
|
-
"knowledge base": "Wissensbasis",
|
|
254
|
-
"messenger": "Bote",
|
|
255
|
-
"phone": "Telefon"
|
|
256
|
-
},
|
|
257
|
-
"wrapper": {
|
|
258
|
-
"chatWith": "Plaudern mit",
|
|
259
|
-
"deleteChurch": "Kirche aus der Liste löschen",
|
|
260
|
-
"logout": "Ausloggen",
|
|
261
|
-
"newPrivateMessage": "Neue private Nachricht",
|
|
262
|
-
"privateMessage": "Private Nachricht",
|
|
263
|
-
"profile": "Profil",
|
|
264
|
-
"searchForPerson": "Suche nach einer Person",
|
|
265
|
-
"support": "Unterstützung",
|
|
266
|
-
"sureRemoveChurch": "Sind Sie sicher, dass Sie {} aus der Liste löschen möchten?",
|
|
267
|
-
"switchApp": "App wechseln",
|
|
268
|
-
"switchChurch": "Kirche wechseln"
|
|
269
|
-
}
|
|
270
|
-
}
|
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"b1Share": {
|
|
3
|
-
"comment": "Comment",
|
|
4
|
-
"commentPlaceholder": "Include a comment with your post.",
|
|
5
|
-
"contentShared": "Content Shared",
|
|
6
|
-
"group": "Group",
|
|
7
|
-
"sharingToGroup": "Sharing {} to B1 Group",
|
|
8
|
-
"validate": {
|
|
9
|
-
"addComment": "Please add a comment.",
|
|
10
|
-
"loginFirst": "Please login first.",
|
|
11
|
-
"notMember": "You are not currently a member of any groups on B1.",
|
|
12
|
-
"selectGroup": "Please select a group."
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"common": {
|
|
16
|
-
"add": "Add",
|
|
17
|
-
"cancel": "Cancel",
|
|
18
|
-
"close": "Close",
|
|
19
|
-
"date": "Date",
|
|
20
|
-
"delete": "Delete",
|
|
21
|
-
"edit": "Edit",
|
|
22
|
-
"error": "Error",
|
|
23
|
-
"pleaseWait": "Please wait...",
|
|
24
|
-
"save": "Save",
|
|
25
|
-
"search": "Search",
|
|
26
|
-
"submit": "Submit",
|
|
27
|
-
"update": "Update"
|
|
28
|
-
},
|
|
29
|
-
"createPerson": {
|
|
30
|
-
"addNewPerson": "Add a New Person",
|
|
31
|
-
"firstName": "First Name",
|
|
32
|
-
"lastName": "Last Name",
|
|
33
|
-
"email": "Email"
|
|
34
|
-
},
|
|
35
|
-
"donation": {
|
|
36
|
-
"bankForm": {
|
|
37
|
-
"accountNumber": "Account Number",
|
|
38
|
-
"added": "Bank account added. Verify your bank account to make a donation.",
|
|
39
|
-
"company": "Company",
|
|
40
|
-
"firstDeposit": "First Deposit",
|
|
41
|
-
"holderName": "Account holder name is required.",
|
|
42
|
-
"individual": "Individual",
|
|
43
|
-
"name": "Account Holder Name",
|
|
44
|
-
"needVerified": "Bank accounts will need to be verified before making any donations. Your account will receive two small deposits in approximately 1-3 business days. You will need to enter those deposit amounts to finish verifying your account by selecting the verify account link next to your bank account under the payment methods section.",
|
|
45
|
-
"routingNumber": "Routing Number",
|
|
46
|
-
"secondDeposit": "Second Deposit",
|
|
47
|
-
"twoDeposits": "Enter the two deposits you received in your account to finish verifying your bank account.",
|
|
48
|
-
"updated": "Bank account updated.",
|
|
49
|
-
"verified": "Bank account verified.",
|
|
50
|
-
"validate": {
|
|
51
|
-
"accountNumber": "Routing and account number are required.",
|
|
52
|
-
"holderName": "Account holder name is required."
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
"cardForm": {
|
|
56
|
-
"addNew": "Add New Card",
|
|
57
|
-
"added": "Card added successfully.",
|
|
58
|
-
"expirationMonth": "Expiration Month:",
|
|
59
|
-
"expirationYear": "Expiration Year:",
|
|
60
|
-
"updated": "Card updated successfully."
|
|
61
|
-
},
|
|
62
|
-
"donationForm": {
|
|
63
|
-
"annually": "Annually",
|
|
64
|
-
"biWeekly": "Bi-Weekly",
|
|
65
|
-
"cancelled": "Recurring donation cancelled.",
|
|
66
|
-
"confirmDelete": "Are you sure you wish to delete this recurring donation?",
|
|
67
|
-
"cover": "I'll generously add {} to cover the transaction fees so you can keep 100% of my donation.",
|
|
68
|
-
"donate": "Donate",
|
|
69
|
-
"editRecurring": "Edit Recurring Donation",
|
|
70
|
-
"fees": "Transaction fees of {} are applied.",
|
|
71
|
-
"frequency": "Frequency",
|
|
72
|
-
"fund": "Fund",
|
|
73
|
-
"funds": "Funds",
|
|
74
|
-
"make": "Make a Donation",
|
|
75
|
-
"makeRecurring": "Make a Recurring Donation",
|
|
76
|
-
"method": "Method",
|
|
77
|
-
"monthly": "Monthly",
|
|
78
|
-
"notes": "Notes",
|
|
79
|
-
"preview": "Preview Donation",
|
|
80
|
-
"quarterly": "Quarterly",
|
|
81
|
-
"recurringUpdated": "Recurring donation updated.",
|
|
82
|
-
"startDate": "Start Date",
|
|
83
|
-
"thankYou": "Thank you for your donation!",
|
|
84
|
-
"tooLow": "Donation amount must be greater than $0.50",
|
|
85
|
-
"total": "Total Donation Amount",
|
|
86
|
-
"validate": {
|
|
87
|
-
"amount": "Ammount cannot be $0.",
|
|
88
|
-
"email": "Please enter your email address.",
|
|
89
|
-
"firstName": "Please enter your first name.",
|
|
90
|
-
"lastName": "Please enter your last name.",
|
|
91
|
-
"validEmail": "Please enter a valid email address."
|
|
92
|
-
},
|
|
93
|
-
"weekly": "Weekly"
|
|
94
|
-
},
|
|
95
|
-
"fundDonations": {
|
|
96
|
-
"addMore": "Add More",
|
|
97
|
-
"amount": "Amount",
|
|
98
|
-
"fund": "Fund"
|
|
99
|
-
},
|
|
100
|
-
"paymentMethods": {
|
|
101
|
-
"addBank": "Add Bank Account",
|
|
102
|
-
"addCard": "Add Card",
|
|
103
|
-
"confirmDelete": "Are you sure you wish to delete this payment method?",
|
|
104
|
-
"deleted": "Payment method deleted.",
|
|
105
|
-
"noMethods": "No payment methods. Add a payment method to make a donation.",
|
|
106
|
-
"verify": "Verify Account"
|
|
107
|
-
},
|
|
108
|
-
"page": {
|
|
109
|
-
"amount": "Amount",
|
|
110
|
-
"batch": "Batch",
|
|
111
|
-
"date": "Date",
|
|
112
|
-
"fund": "Fund",
|
|
113
|
-
"method": "Method",
|
|
114
|
-
"willAppear": "Donations will appear once a donation has been entered."
|
|
115
|
-
},
|
|
116
|
-
"preview": {
|
|
117
|
-
"date": "Donation Date",
|
|
118
|
-
"donate": "Donate",
|
|
119
|
-
"every": "Recurring Everyth",
|
|
120
|
-
"fee": "Transaction Fee",
|
|
121
|
-
"funds": "Funds",
|
|
122
|
-
"method": "Donation Method",
|
|
123
|
-
"notes": "Notes",
|
|
124
|
-
"startingOn": "Starting On",
|
|
125
|
-
"total": "Total",
|
|
126
|
-
"type": "Donation Type"
|
|
127
|
-
},
|
|
128
|
-
"recurring": {
|
|
129
|
-
"amount": "Amount",
|
|
130
|
-
"every": "Every",
|
|
131
|
-
"interval": "Interval",
|
|
132
|
-
"notFound": "Payment method not found.",
|
|
133
|
-
"paymentMethod": "Payment Method",
|
|
134
|
-
"startDate": "Start Date"
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"formSubmissionEdit": {
|
|
138
|
-
"confirmDelete": "Are you sure you wish to delete this form data?",
|
|
139
|
-
"editForm": "Edit Form",
|
|
140
|
-
"isRequired": "is required",
|
|
141
|
-
"submit": "Submit"
|
|
142
|
-
},
|
|
143
|
-
"gallery": {
|
|
144
|
-
"aspectRatio": "Aspect Ratio",
|
|
145
|
-
"confirmDelete": "Are you sure you wish to delete this image from gallery?",
|
|
146
|
-
"freeForm": "Free Form"
|
|
147
|
-
},
|
|
148
|
-
"iconPicker": {
|
|
149
|
-
"iconsAvailable": "icons available",
|
|
150
|
-
"matchingResults": "matching results",
|
|
151
|
-
"search": "Search icons..."
|
|
152
|
-
},
|
|
153
|
-
"login": {
|
|
154
|
-
"createAccount": "Create an Account",
|
|
155
|
-
"email": "Email",
|
|
156
|
-
"expiredLink": "The current link is expired.",
|
|
157
|
-
"forgot": "Forgot Password",
|
|
158
|
-
"goLogin": "Go to Login",
|
|
159
|
-
"login": "Login",
|
|
160
|
-
"password": "Password",
|
|
161
|
-
"register": "Register",
|
|
162
|
-
"registerThankYou": "Thank you for registering! Please check your email to verify your account.",
|
|
163
|
-
"requestLink": "Request a new reset link",
|
|
164
|
-
"reset": "Reset",
|
|
165
|
-
"resetInstructions": "Enter your email address to request a password reset.",
|
|
166
|
-
"resetPassword": "Reset Password",
|
|
167
|
-
"resetSent": "Password reset email sent!",
|
|
168
|
-
"setPassword": "Set Password",
|
|
169
|
-
"signIn": "Sign In",
|
|
170
|
-
"signInTitle": "Please Sign In",
|
|
171
|
-
"verifyPassword": "Verify Password",
|
|
172
|
-
"validate": {
|
|
173
|
-
"email": "Please enter a valid email address.",
|
|
174
|
-
"firstName": "Please enter your first name.",
|
|
175
|
-
"invalid": "Invalid login. Please check your email or password.",
|
|
176
|
-
"lastName": "Please enter your last name.",
|
|
177
|
-
"password": "Please enter a password.",
|
|
178
|
-
"passwordLength": "Password must be at least 8 characters long.",
|
|
179
|
-
"passwordMatch": "Passwords do not match.",
|
|
180
|
-
"selectingChurch": "Error in selecting church. Please verify and try again"
|
|
181
|
-
},
|
|
182
|
-
"welcomeBack": "Welcome back",
|
|
183
|
-
"welcomeName": "Welcome back, <b>{}</b>! Please wait while we load your data."
|
|
184
|
-
},
|
|
185
|
-
"markdownEditor": {
|
|
186
|
-
"content": "Content",
|
|
187
|
-
"markdownEditor": "Markdown Editor",
|
|
188
|
-
"markdownGuide": "Markdown Guide"
|
|
189
|
-
},
|
|
190
|
-
"month": {
|
|
191
|
-
"april": "April",
|
|
192
|
-
"august": "August",
|
|
193
|
-
"december": "December",
|
|
194
|
-
"february": "February",
|
|
195
|
-
"january": "January",
|
|
196
|
-
"july": "July",
|
|
197
|
-
"june": "June",
|
|
198
|
-
"march": "March",
|
|
199
|
-
"may": "May",
|
|
200
|
-
"november": "November",
|
|
201
|
-
"october": "October",
|
|
202
|
-
"september": "September"
|
|
203
|
-
},
|
|
204
|
-
"notes": {
|
|
205
|
-
"comment": "comment",
|
|
206
|
-
"comments": "comments",
|
|
207
|
-
"notes": "Notes",
|
|
208
|
-
"startConversation": "Start a conversation",
|
|
209
|
-
"validate": {
|
|
210
|
-
"content": "Please enter a note."
|
|
211
|
-
},
|
|
212
|
-
"viewAll": "View all"
|
|
213
|
-
},
|
|
214
|
-
"person": {
|
|
215
|
-
"email": "Email",
|
|
216
|
-
"firstName": "First Name",
|
|
217
|
-
"lastName": "Last Name",
|
|
218
|
-
"name": "Name",
|
|
219
|
-
"person": "Person",
|
|
220
|
-
"years": "years",
|
|
221
|
-
"noRec": "Don't have a person record?"
|
|
222
|
-
},
|
|
223
|
-
"reporting": {
|
|
224
|
-
"detailed": "Detailed Report",
|
|
225
|
-
"summary": "Summary",
|
|
226
|
-
"sampleTemplate": "Sample Word Template",
|
|
227
|
-
"downloadOptions": "Download Options",
|
|
228
|
-
"noData": "There is no data to display.",
|
|
229
|
-
"runReport": "Run Report",
|
|
230
|
-
"useFilter": "Use the filter to run the report."
|
|
231
|
-
},
|
|
232
|
-
"selectChurch": {
|
|
233
|
-
"address1": "Address Line 1",
|
|
234
|
-
"address2": "Address Line 2",
|
|
235
|
-
"another": "Choose another church",
|
|
236
|
-
"city": "City",
|
|
237
|
-
"confirmRegister": "Are you sure you wish to register a new church?",
|
|
238
|
-
"country": "Country",
|
|
239
|
-
"name": "Church Name",
|
|
240
|
-
"noMatches": "No matches found.",
|
|
241
|
-
"register": "Register a New Church",
|
|
242
|
-
"selectChurch": "Select a Church",
|
|
243
|
-
"state": "State / Province",
|
|
244
|
-
"zip": "Zip / Postal Code",
|
|
245
|
-
"validate": {
|
|
246
|
-
"address": "Address cannot be blank.",
|
|
247
|
-
"city": "City cannot be blank.",
|
|
248
|
-
"country": "Country cannot be blank.",
|
|
249
|
-
"name": "Church name cannot be blank.",
|
|
250
|
-
"state": "State/Province cannot be blank.",
|
|
251
|
-
"zip": "Zip/Postal code cannot be blank."
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
"stockPhotos": {
|
|
255
|
-
"photoBy": "Photo by:",
|
|
256
|
-
"providedBy": "Stock photos provided by"
|
|
257
|
-
},
|
|
258
|
-
"support": {
|
|
259
|
-
"documentation": "Documentation",
|
|
260
|
-
"discussions": "Support Forum"
|
|
261
|
-
},
|
|
262
|
-
"wrapper": {
|
|
263
|
-
"chatWith": "Chat with",
|
|
264
|
-
"deleteChurch": "Delete",
|
|
265
|
-
"logout": "Logout",
|
|
266
|
-
"messages": "Messages",
|
|
267
|
-
"newPrivateMessage": "New Private Message",
|
|
268
|
-
"notifications": "Notifications",
|
|
269
|
-
"privateMessage": "Private Message",
|
|
270
|
-
"profile": "Profile",
|
|
271
|
-
"searchForPerson": "Search for a person",
|
|
272
|
-
"support": "Support",
|
|
273
|
-
"sureRemoveChurch": "Are you sure you wish to delete this church? You no longer will be a member of {}.",
|
|
274
|
-
"switchApp": "Switch App",
|
|
275
|
-
"switchChurch": "Switch Church"
|
|
276
|
-
}
|
|
277
|
-
}
|