You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/src/main/java/com/blogspot/e_kanivets/moneytracker/activity/account/edit/fragment/AccountOperationsFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ class AccountOperationsFragment : BaseFragment() {
59
59
val type =if (it.fromAccountId == account.id) Record.TYPE_EXPENSEelseRecord.TYPE_INCOME
60
60
val title = constructRecordTitle(type, it)
61
61
val category =Category(getString(R.string.transfer).toLowerCase())
62
-
val notes ="Account Transfer"
62
+
val notes =getString(R.string.account_transfer)
63
63
val price =if (type ==Record.TYPE_EXPENSE) it.fromAmount else it.toAmount
64
64
val decimals =if (type ==Record.TYPE_EXPENSE) it.fromDecimals else it.toDecimals
0 commit comments