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

Fixed lang json errors #295

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
},
"tasks": "Tasks"
},
"donation": {
"paymentMethods": {
"noMethod": "Please select a payment method."
}
},
"donations": {
"batchEdit": {
"confirmMsg": "Are you sure you wish to permanently delete this batch and all donations within it?",
Expand Down Expand Up @@ -475,19 +480,19 @@
}
},
"person": {
"address": "Address",
"address": "Address",
"age": "Age",
"anniversary": "Anniversary",
"birthDate": "Birth Date",
"city": "City",
"city": "City",
"country": "Country",
"displayName": "Display Name",
"divorced": "Divorced",
"email": "Email",
"female": "Female",
"firstName": "First Name",
"gender": "Gender",
"inactive": "Inactive",
"inactive": "Inactive",
"lastName": "Last Name",
"line1": "Line 1",
"line2": "Line 2",
Expand All @@ -502,7 +507,7 @@
"person": "Person",
"phone": "Phone",
"prefix": "Prefix",
"regularAttendee": "Regular Attendee",
"regularAttendee": "Regular Attendee",
"single": "Single",
"staff": "Staff",
"state": "State/Province",
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/automations/components/AutomationDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const AutomationDetails = (props: Props) => {
<div><b>{Locale.label("common.name")}:</b> {automation?.title}</div>
<div><b>{Locale.label("tasks.automationDetails.rep")}:</b> {automation?.recurs}</div>
<br />
<span style={{ float: "right" }}><SmallButton icon="add" onClick={() => { setEditAction({ automationId: automation.id, actionType: "task" }) }} /></span><b>{Locale.label("tasks.automationDetails.act")}:</b>
<span style={{ float: "right" }}><SmallButton icon="add" onClick={() => { setEditAction({ automationId: automation.id, actionType: "task" }) }} /></span><b>{Locale.label("tasks.automationDetails.acts")}:</b>
<hr />
<ul>
{getActions()}
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/automations/components/ConjunctionEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const ConjunctionEdit = (props: Props) => {
<InputBox headerIcon="settings_suggest" headerText={Locale.label("tasks.conjunctionEdit.conjEdit")} saveFunction={handleSave} cancelFunction={props.onCancel} help="chums/automations">
<ErrorMessages errors={errors} />
<Select fullWidth label={Locale.label("tasks.conjunctionEdit.conjType")} value={conjunction?.groupType} name="groupType" onChange={handleChange}>
<MenuItem value="and">{Locale.label("tasks.conjunctionEdit.add")}</MenuItem>
<MenuItem value="and">{Locale.label("tasks.conjunctionEdit.and")}</MenuItem>
<MenuItem value="or">{Locale.label("tasks.conjunctionEdit.or")}</MenuItem>
</Select>
</InputBox>
Expand Down
Loading