[office/skrooge] skroogecompanion/qml: Skrooge Companion
Stéphane MANKOWSKI <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 438b53ac6f99950735620ed2d1dbfdb661585db7 by Stéphane MANKOWSKI.
Committed on 01/08/2026 at 21:10.
Pushed by smankowski into branch 'master'.
Skrooge Companion
M +1 -1 skroogecompanion/qml/AccountListItem.qml
M +3 -3 skroogecompanion/qml/SubTransactionListItem.qml
M +3 -3 skroogecompanion/qml/TransactionListItem.qml
https://invent.kde.org/office/skrooge/-/commit/438b53ac6f99950735620ed2d1dbfdb661585db7
diff --git a/skroogecompanion/qml/AccountListItem.qml b/skroogecompanion/qml/AccountListItem.qml
index e5c2dc7d2..da484f405 100644
--- a/skroogecompanion/qml/AccountListItem.qml
+++ b/skroogecompanion/qml/AccountListItem.qml
@@ -82,7 +82,7 @@ Item {
Label {
Layout.fillWidth: true
- text: root.isTypeTotal ? i18nc("@info:total by account type", "%1 - %2", root.rowModel.type, root.rowModel.name) : root.rowModel.name
+ text: root.isTypeTotal ? i18nc("@info", "%1 - %2", root.rowModel.type, root.rowModel.name) : root.rowModel.name
font.bold: true
elide: Label.ElideRight
}
diff --git a/skroogecompanion/qml/SubTransactionListItem.qml b/skroogecompanion/qml/SubTransactionListItem.qml
index a4f2573e5..852de2aff 100644
--- a/skroogecompanion/qml/SubTransactionListItem.qml
+++ b/skroogecompanion/qml/SubTransactionListItem.qml
@@ -21,7 +21,7 @@ Frame {
Label {
Layout.fillWidth: true
- text: i18nc("@info:subtransaction first line", "%1 - %2", root.rowModel.date, root.rowModel.payee !== "" ? root.rowModel.payee : i18nc("@label", "Sub-transaction"))
+ text: i18nc("@info", "%1 - %2", root.rowModel.date, root.rowModel.payee !== "" ? root.rowModel.payee : i18nc("@label", "Sub-transaction"))
font.bold: true
elide: Label.ElideRight
}
@@ -36,7 +36,7 @@ Frame {
Label {
Layout.fillWidth: true
text: root.rowModel.comment !== ""
- ? i18nc("@info:subtransaction second line", "%1 - %2", root.rowModel.category, root.rowModel.comment)
+ ? i18nc("@info", "%1 - %2", root.rowModel.category, root.rowModel.comment)
: root.rowModel.category
opacity: 0.7
elide: Label.ElideRight
@@ -46,7 +46,7 @@ Frame {
Layout.fillWidth: true
text: root.rowModel.number !== ""
? (root.rowModel.mode !== ""
- ? i18nc("@info:subtransaction third line", "%1 - %2", root.rowModel.mode, root.rowModel.number)
+ ? i18nc("@info", "%1 - %2", root.rowModel.mode, root.rowModel.number)
: root.rowModel.number)
: root.rowModel.mode
opacity: 0.7
diff --git a/skroogecompanion/qml/TransactionListItem.qml b/skroogecompanion/qml/TransactionListItem.qml
index 985ae8efe..0378bfbf8 100644
--- a/skroogecompanion/qml/TransactionListItem.qml
+++ b/skroogecompanion/qml/TransactionListItem.qml
@@ -23,7 +23,7 @@ Frame {
Label {
Layout.fillWidth: true
- text: i18nc("@info:transaction first line", "%1 - %2", root.rowModel.date, root.rowModel.payee !== "" ? root.rowModel.payee : i18nc("@label", "Transaction"))
+ text: i18nc("@info", "%1 - %2", root.rowModel.date, root.rowModel.payee !== "" ? root.rowModel.payee : i18nc("@label", "Transaction"))
font.bold: true
elide: Label.ElideRight
}
@@ -44,7 +44,7 @@ Frame {
Label {
Layout.fillWidth: true
text: root.rowModel.comment !== ""
- ? i18nc("@info:transaction second line", "%1 - %2", root.rowModel.category, root.rowModel.comment)
+ ? i18nc("@info", "%1 - %2", root.rowModel.category, root.rowModel.comment)
: root.rowModel.category
opacity: 0.7
elide: Label.ElideRight
@@ -54,7 +54,7 @@ Frame {
Layout.fillWidth: true
text: root.rowModel.number !== ""
? (root.rowModel.mode !== ""
- ? i18nc("@info:transaction third line", "%1 - %2", root.rowModel.mode, root.rowModel.number)
+ ? i18nc("@info", "%1 - %2", root.rowModel.mode, root.rowModel.number)
: root.rowModel.number)
: root.rowModel.mode
opacity: 0.7