Merge branch 'ita-localization' of github.com:scollovati/spliit into scollovati-ita-localization

# Conflicts:
#	messages/de-DE.json
#	messages/fr-FR.json
#	messages/it-IT.json
#	messages/nl-NL.json
#	messages/pl-PL.json
This commit is contained in:
Peter Smit
2025-09-04 19:59:53 +02:00
5 changed files with 16 additions and 14 deletions

View File

@@ -44,7 +44,8 @@
"ExpenseCard": { "ExpenseCard": {
"paidBy": "Paid by <strong>{paidBy}</strong> for <paidFor></paidFor>", "paidBy": "Paid by <strong>{paidBy}</strong> for <paidFor></paidFor>",
"receivedBy": "Received by <strong>{paidBy}</strong> for <paidFor></paidFor>", "receivedBy": "Received by <strong>{paidBy}</strong> for <paidFor></paidFor>",
"yourBalance": "Your balance:" "yourBalance": "Your balance:",
"notInvolved": "You are not involved"
}, },
"Groups": { "Groups": {
"myGroups": "My groups", "myGroups": "My groups",

View File

@@ -171,6 +171,15 @@
"weekly": "Semanal", "weekly": "Semanal",
"monthly": "Mensual" "monthly": "Mensual"
}, },
"recurrenceRule": {
"label": "Recurrencia",
"description": "Seleccione con qué frecuencia debe repetirse el gasto.",
"none": "Ninguno",
"daily": "Diario",
"weekly": "Semanal",
"monthly": "Mensual"
},
"paidFor": { "paidFor": {
"title": "Pagado para", "title": "Pagado para",
"description": "Seleccione para quién se pagó el gasto." "description": "Seleccione para quién se pagó el gasto."

View File

@@ -43,7 +43,8 @@
"ExpenseCard": { "ExpenseCard": {
"paidBy": "Pagato da <strong>{paidBy}</strong> per <paidFor></paidFor>", "paidBy": "Pagato da <strong>{paidBy}</strong> per <paidFor></paidFor>",
"receivedBy": "Ricevuto da <strong>{paidBy}</strong> per <paidFor></paidFor>", "receivedBy": "Ricevuto da <strong>{paidBy}</strong> per <paidFor></paidFor>",
"yourBalance": "Il tuo saldo:" "yourBalance": "Il tuo saldo:",
"notInvolved": "Non sei coinvolto"
}, },
"Groups": { "Groups": {
"myGroups": "I miei gruppi", "myGroups": "I miei gruppi",

View File

@@ -176,15 +176,7 @@
"description": "Wybierz kogo dotyczył wydatek." "description": "Wybierz kogo dotyczył wydatek."
}, },
"splitModeDescription": "Wybierz jak podzielić wydatek.", "splitModeDescription": "Wybierz jak podzielić wydatek.",
"attachDescription": "Zobacz i załącz rachunki do wydatku.", "attachDescription": "Zobacz i załącz rachunki do wydatku."
"recurrenceRule": {
"description": "Wybierz jak często powtarza się dany wydatek.",
"none": "Brak",
"daily": "Codziennie",
"weekly": "Co tydzień",
"monthly": "Co miesiąc",
"label": "Powtarzający się wydatek"
}
}, },
"amountField": { "amountField": {
"label": "Suma" "label": "Suma"
@@ -380,8 +372,7 @@
"Gifts": "Prezenty", "Gifts": "Prezenty",
"Insurance": "Ubezpieczenie", "Insurance": "Ubezpieczenie",
"Medical Expenses": "Wydatki medyczne", "Medical Expenses": "Wydatki medyczne",
"Taxes": "Podatki", "Taxes": "Podatki"
"Donation": "Darowizna"
}, },
"Transportation": { "Transportation": {
"heading": "Transport", "heading": "Transport",

View File

@@ -18,7 +18,7 @@ export function ActiveUserBalance({ groupId, currency, expense }: Props) {
} }
const balances = getBalances([expense]) const balances = getBalances([expense])
let fmtBalance = <>You are not involved</> let fmtBalance = <>{t('notInvolved')}</>
if (Object.hasOwn(balances, activeUserId)) { if (Object.hasOwn(balances, activeUserId)) {
const balance = balances[activeUserId] const balance = balances[activeUserId]
let balanceDetail = <></> let balanceDetail = <></>