mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-04 20:06:11 +01:00
Fix missing translation string in de-DE (#382)
* Fix missing translation string in de-DE * Make placeholder for "paid by" field translatable
This commit is contained in:
@@ -137,15 +137,6 @@
|
|||||||
"label": "Empfangen von",
|
"label": "Empfangen von",
|
||||||
"description": "Wähle das Mitglied, das die Einnahme erhalten hat."
|
"description": "Wähle das Mitglied, das die Einnahme erhalten hat."
|
||||||
},
|
},
|
||||||
"recurrenceRule": {
|
|
||||||
"label": "Expense Recurrence",
|
|
||||||
"description": "Select how often the expense should repeat.",
|
|
||||||
|
|
||||||
"none": "None",
|
|
||||||
"daily": "Daily",
|
|
||||||
"weekly": "Weekly",
|
|
||||||
"monthly": "Monthly"
|
|
||||||
},
|
|
||||||
"paidFor": {
|
"paidFor": {
|
||||||
"title": "Empfangen für",
|
"title": "Empfangen für",
|
||||||
"description": "Wähle für wen die Einnahme empfangen wurde."
|
"description": "Wähle für wen die Einnahme empfangen wurde."
|
||||||
@@ -168,8 +159,18 @@
|
|||||||
"categoryFieldDescription": "Wähle eine Kategorie für die Ausgabe.",
|
"categoryFieldDescription": "Wähle eine Kategorie für die Ausgabe.",
|
||||||
"paidByField": {
|
"paidByField": {
|
||||||
"label": "Gezahlt von",
|
"label": "Gezahlt von",
|
||||||
|
"placeholder": "Wähle ein Mitglied",
|
||||||
"description": "Wähle das Mitglied, das die Ausgabe bezahlt hat."
|
"description": "Wähle das Mitglied, das die Ausgabe bezahlt hat."
|
||||||
},
|
},
|
||||||
|
"recurrenceRule": {
|
||||||
|
"label": "Wiederkehrende Ausgabe",
|
||||||
|
"description": "Wähle, wie oft sich die Ausgabe wiederholen soll.",
|
||||||
|
|
||||||
|
"none": "Nicht wiederkehrend",
|
||||||
|
"daily": "Täglich",
|
||||||
|
"weekly": "Wöchentlich",
|
||||||
|
"monthly": "Monatlich"
|
||||||
|
},
|
||||||
"paidFor": {
|
"paidFor": {
|
||||||
"title": "Gezahlt für",
|
"title": "Gezahlt für",
|
||||||
"description": "Wähle für wen die Ausgabe gezahlt wurde."
|
"description": "Wähle für wen die Ausgabe gezahlt wurde."
|
||||||
@@ -396,4 +397,4 @@
|
|||||||
"Water": "Wasser"
|
"Water": "Wasser"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -160,6 +160,7 @@
|
|||||||
"categoryFieldDescription": "Select the expense category.",
|
"categoryFieldDescription": "Select the expense category.",
|
||||||
"paidByField": {
|
"paidByField": {
|
||||||
"label": "Paid by",
|
"label": "Paid by",
|
||||||
|
"placeholder": "Select a participant",
|
||||||
"description": "Select the participant who paid the expense."
|
"description": "Select the participant who paid the expense."
|
||||||
},
|
},
|
||||||
"recurrenceRule": {
|
"recurrenceRule": {
|
||||||
@@ -397,4 +398,4 @@
|
|||||||
"Water": "Water"
|
"Water": "Water"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -474,7 +474,7 @@ export function ExpenseForm({
|
|||||||
defaultValue={getSelectedPayer(field)}
|
defaultValue={getSelectedPayer(field)}
|
||||||
>
|
>
|
||||||
<SelectTrigger>
|
<SelectTrigger>
|
||||||
<SelectValue placeholder="Select a participant" />
|
<SelectValue placeholder={t(`${sExpense}.paidByField.placeholder`)} />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{group.participants.map(({ id, name }) => (
|
{group.participants.map(({ id, name }) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user