mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-25 08:54:52 +01:00
Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
635f87a8ad | ||
|
|
1a073ba53d | ||
|
|
5412e5b12c | ||
|
|
2103ba1b38 | ||
|
|
04fb15224c | ||
|
|
2fc526beac | ||
|
|
cc3ca4f4a3 | ||
|
|
8d3844c431 | ||
|
|
5e7e918085 | ||
|
|
c3f02320b5 | ||
|
|
da8bbbfb0b | ||
|
|
e3f74538d2 | ||
|
|
d8234950c6 | ||
|
|
58f19ce1ca | ||
|
|
ef5f3580a0 | ||
|
|
efe0f99cb4 | ||
|
|
dccb5079ad | ||
|
|
6c90150661 | ||
|
|
c33d6fab69 | ||
|
|
c0c57a6d77 | ||
|
|
f19d58a2bd | ||
|
|
dfe99093e9 | ||
|
|
d737e573cc | ||
|
|
805d3f419e | ||
|
|
9777aac746 | ||
|
|
61b782104d | ||
|
|
79dec2b515 | ||
|
|
db23e162c4 | ||
|
|
d81d89d9f6 | ||
|
|
6826cfe79a | ||
|
|
0832ec75ca | ||
|
|
3090f632de |
@@ -29,15 +29,15 @@ Managing money can feel unnecessarily complex, but it doesn’t have to be. WYGI
|
||||
|
||||
By sticking to this straightforward approach, you avoid dipping into your savings while still keeping tabs on where your money goes.
|
||||
|
||||
While this philosophy is simple, finding tools to make it work wasn’t. I initially used a spreadsheet, which served me well for years—until it became unwieldy as I started managing multiple currencies, accounts, and investments. I tried various financial management apps, but none met my key requirements:
|
||||
While this philosophy is simple, finding tools to make it work wasn’t. I initially used a spreadsheet, which served me well for years, until it became unwieldy as I started managing multiple currencies, accounts, and investments. I tried various financial management apps, but none met my key requirements:
|
||||
|
||||
1. **Multi-currency support** to track income and expenses in different currencies.
|
||||
2. **Not a budgeting app** — as I dislike budgeting constraints.
|
||||
2. **Not a budgeting app** as I dislike budgeting constraints.
|
||||
3. **Web app usability** (ideally with mobile support, though optional).
|
||||
4. **Automation-ready API** to integrate with other tools and services.
|
||||
5. **Custom transaction rules** for credit card billing cycles or similar quirks.
|
||||
|
||||
Frustrated by the lack of comprehensive options, I set out to build **WYGIWYH** — an opinionated yet powerful tool that I believe will resonate with like-minded users.
|
||||
Frustrated by the lack of comprehensive options, I set out to build **WYGIWYH**, an opinionated yet powerful tool that I believe will resonate with like-minded users.
|
||||
|
||||
# Key Features
|
||||
|
||||
|
||||
@@ -37,6 +37,7 @@ class ArbitraryDecimalDisplayNumberInput(forms.TextInput):
|
||||
"x-data": "",
|
||||
"x-mask:dynamic": f"$money($input, '{get_format('DECIMAL_SEPARATOR')}', "
|
||||
f"'{get_format('THOUSAND_SEPARATOR')}', '30')",
|
||||
"x-on:keyup": "$el.dispatchEvent(new Event('input'))",
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
@@ -91,6 +91,8 @@ def get_transactions(request, include_unpaid=True, include_silent=False):
|
||||
transactions = transactions.filter(is_paid=True)
|
||||
|
||||
if not include_silent:
|
||||
transactions = transactions.exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
transactions = transactions.exclude(
|
||||
Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True)
|
||||
)
|
||||
|
||||
return transactions
|
||||
|
||||
@@ -260,6 +260,7 @@ def emergency_fund(request):
|
||||
reference_date__gte=start_date,
|
||||
reference_date__lte=end_date,
|
||||
category__mute=False,
|
||||
mute=False,
|
||||
)
|
||||
.values("reference_date", "account__currency")
|
||||
.annotate(monthly_total=Sum("amount"))
|
||||
|
||||
@@ -109,7 +109,7 @@ def monthly_summary(request, month: int, year: int):
|
||||
# Base queryset with all required filters
|
||||
base_queryset = Transaction.objects.filter(
|
||||
reference_date__year=year, reference_date__month=month, account__is_asset=False
|
||||
).exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
).exclude(Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True))
|
||||
|
||||
data = calculate_currency_totals(base_queryset, ignore_empty=True)
|
||||
percentages = calculate_percentage_distribution(data)
|
||||
@@ -143,7 +143,7 @@ def monthly_account_summary(request, month: int, year: int):
|
||||
base_queryset = Transaction.objects.filter(
|
||||
reference_date__year=year,
|
||||
reference_date__month=month,
|
||||
).exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
).exclude(Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True))
|
||||
|
||||
account_data = calculate_account_totals(transactions_queryset=base_queryset.all())
|
||||
account_percentages = calculate_percentage_distribution(account_data)
|
||||
@@ -168,7 +168,7 @@ def monthly_currency_summary(request, month: int, year: int):
|
||||
base_queryset = Transaction.objects.filter(
|
||||
reference_date__year=year,
|
||||
reference_date__month=month,
|
||||
).exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
).exclude(Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True))
|
||||
|
||||
currency_data = calculate_currency_totals(base_queryset.all(), ignore_empty=True)
|
||||
currency_percentages = calculate_percentage_distribution(currency_data)
|
||||
|
||||
@@ -290,11 +290,15 @@ class QuickTransactionForm(forms.ModelForm):
|
||||
"category",
|
||||
"tags",
|
||||
"entities",
|
||||
"mute",
|
||||
]
|
||||
widgets = {
|
||||
"notes": forms.Textarea(attrs={"rows": 3}),
|
||||
"account": TomSelect(clear_button=False, group_by="group"),
|
||||
}
|
||||
help_texts = {
|
||||
"mute": _("Muted transactions won't be displayed on monthly summaries")
|
||||
}
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
@@ -356,6 +360,7 @@ class QuickTransactionForm(forms.ModelForm):
|
||||
css_class="form-row",
|
||||
),
|
||||
"notes",
|
||||
Switch("mute"),
|
||||
)
|
||||
|
||||
if self.instance and self.instance.pk:
|
||||
@@ -616,6 +621,7 @@ class TransferForm(forms.Form):
|
||||
description=description,
|
||||
category=from_category,
|
||||
notes=notes,
|
||||
mute=True,
|
||||
)
|
||||
from_transaction.tags.set(self.cleaned_data.get("from_tags", []))
|
||||
|
||||
@@ -630,6 +636,7 @@ class TransferForm(forms.Form):
|
||||
description=description,
|
||||
category=to_category,
|
||||
notes=notes,
|
||||
mute=True,
|
||||
)
|
||||
to_transaction.tags.set(self.cleaned_data.get("to_tags", []))
|
||||
|
||||
@@ -868,7 +875,7 @@ class TransactionCategoryForm(forms.ModelForm):
|
||||
fields = ["name", "mute", "active"]
|
||||
labels = {"name": _("Category name")}
|
||||
help_texts = {
|
||||
"mute": _("Muted categories won't count towards your monthly total")
|
||||
"mute": _("Muted categories won't be displayed on monthly summaries")
|
||||
}
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
||||
18
app/apps/transactions/migrations/0045_transaction_mute.py
Normal file
18
app/apps/transactions/migrations/0045_transaction_mute.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.11 on 2025-07-19 18:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('transactions', '0044_alter_quicktransaction_unique_together'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='transaction',
|
||||
name='mute',
|
||||
field=models.BooleanField(default=False, verbose_name='Mute'),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.11 on 2025-07-19 18:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('transactions', '0045_transaction_mute'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='quicktransaction',
|
||||
name='mute',
|
||||
field=models.BooleanField(default=False, verbose_name='Mute'),
|
||||
),
|
||||
]
|
||||
@@ -299,6 +299,7 @@ class Transaction(OwnedObject):
|
||||
is_paid = models.BooleanField(default=True, verbose_name=_("Paid"))
|
||||
date = models.DateField(verbose_name=_("Date"))
|
||||
reference_date = MonthYearModelField(verbose_name=_("Reference Date"))
|
||||
mute = models.BooleanField(default=False, verbose_name=_("Mute"))
|
||||
|
||||
amount = models.DecimalField(
|
||||
max_digits=42,
|
||||
@@ -918,6 +919,7 @@ class QuickTransaction(OwnedObject):
|
||||
verbose_name=_("Type"),
|
||||
)
|
||||
is_paid = models.BooleanField(default=True, verbose_name=_("Paid"))
|
||||
mute = models.BooleanField(default=False, verbose_name=_("Mute"))
|
||||
|
||||
amount = models.DecimalField(
|
||||
max_digits=42,
|
||||
|
||||
@@ -66,6 +66,11 @@ urlpatterns = [
|
||||
views.transaction_pay,
|
||||
name="transaction_pay",
|
||||
),
|
||||
path(
|
||||
"transaction/<int:transaction_id>/mute/",
|
||||
views.transaction_mute,
|
||||
name="transaction_mute",
|
||||
),
|
||||
path(
|
||||
"transaction/<int:transaction_id>/delete/",
|
||||
views.transaction_delete,
|
||||
@@ -342,4 +347,9 @@ urlpatterns = [
|
||||
views.quick_transaction_add_as_transaction,
|
||||
name="quick_transaction_add_as_transaction",
|
||||
),
|
||||
path(
|
||||
"transactions/<int:transaction_id>/add-as-quick-transaction/",
|
||||
views.quick_transaction_add_as_quick_transaction,
|
||||
name="quick_transaction_add_as_quick_transaction",
|
||||
),
|
||||
]
|
||||
|
||||
@@ -129,7 +129,15 @@ def quick_transaction_add_as_transaction(request, quick_transaction_id):
|
||||
|
||||
quick_transaction_data = model_to_dict(
|
||||
quick_transaction,
|
||||
exclude=["id", "name", "owner", "account", "category", "tags", "entities"],
|
||||
exclude=[
|
||||
"id",
|
||||
"name",
|
||||
"owner",
|
||||
"account",
|
||||
"category",
|
||||
"tags",
|
||||
"entities",
|
||||
],
|
||||
)
|
||||
|
||||
new_transaction = Transaction(**quick_transaction_data)
|
||||
@@ -152,3 +160,70 @@ def quick_transaction_add_as_transaction(request, quick_transaction_id):
|
||||
"HX-Trigger": "updated, hide_offcanvas",
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
@only_htmx
|
||||
@login_required
|
||||
@require_http_methods(["GET"])
|
||||
def quick_transaction_add_as_quick_transaction(request, transaction_id):
|
||||
transaction: Transaction = get_object_or_404(Transaction, pk=transaction_id)
|
||||
|
||||
if (
|
||||
transaction.description
|
||||
and QuickTransaction.objects.filter(
|
||||
name__startswith=transaction.description
|
||||
).exists()
|
||||
) or QuickTransaction.objects.filter(
|
||||
name__startswith=_("Quick Transaction")
|
||||
).exists():
|
||||
if transaction.description:
|
||||
count = QuickTransaction.objects.filter(
|
||||
name__startswith=transaction.description
|
||||
).count()
|
||||
qt_name = transaction.description + f" ({count + 1})"
|
||||
else:
|
||||
count = QuickTransaction.objects.filter(
|
||||
name__startswith=_("Quick Transaction")
|
||||
).count()
|
||||
qt_name = _("Quick Transaction") + f" ({count + 1})"
|
||||
else:
|
||||
qt_name = transaction.description or _("Quick Transaction")
|
||||
|
||||
transaction_data = model_to_dict(
|
||||
transaction,
|
||||
exclude=[
|
||||
"id",
|
||||
"name",
|
||||
"owner",
|
||||
"account",
|
||||
"category",
|
||||
"tags",
|
||||
"entities",
|
||||
"date",
|
||||
"reference_date",
|
||||
"installment_plan",
|
||||
"installment_id",
|
||||
"recurring_transaction",
|
||||
"deleted",
|
||||
"deleted_at",
|
||||
],
|
||||
)
|
||||
|
||||
new_quick_transaction = QuickTransaction(**transaction_data)
|
||||
new_quick_transaction.account = transaction.account
|
||||
new_quick_transaction.category = transaction.category
|
||||
|
||||
new_quick_transaction.name = qt_name
|
||||
|
||||
new_quick_transaction.save()
|
||||
new_quick_transaction.tags.set(transaction.tags.all())
|
||||
new_quick_transaction.entities.set(transaction.entities.all())
|
||||
|
||||
messages.success(request, _("Item added successfully"))
|
||||
|
||||
return HttpResponse(
|
||||
status=204,
|
||||
headers={
|
||||
"HX-Trigger": "toasts",
|
||||
},
|
||||
)
|
||||
|
||||
@@ -4,7 +4,7 @@ from copy import deepcopy
|
||||
from django.contrib import messages
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.core.paginator import Paginator
|
||||
from django.db.models import Q
|
||||
from django.db.models import Q, When, Case, Value, IntegerField
|
||||
from django.http import HttpResponse, JsonResponse
|
||||
from django.shortcuts import render, get_object_or_404
|
||||
from django.utils import timezone
|
||||
@@ -388,6 +388,26 @@ def transaction_pay(request, transaction_id):
|
||||
return response
|
||||
|
||||
|
||||
@only_htmx
|
||||
@login_required
|
||||
@require_http_methods(["GET"])
|
||||
def transaction_mute(request, transaction_id):
|
||||
transaction = get_object_or_404(Transaction, pk=transaction_id)
|
||||
|
||||
new_mute = False if transaction.mute else True
|
||||
transaction.mute = new_mute
|
||||
transaction.save()
|
||||
transaction_updated.send(sender=transaction)
|
||||
|
||||
response = render(
|
||||
request,
|
||||
"transactions/fragments/item.html",
|
||||
context={"transaction": transaction, **request.GET},
|
||||
)
|
||||
response.headers["HX-Trigger"] = "selective_update"
|
||||
return response
|
||||
|
||||
|
||||
@login_required
|
||||
@require_http_methods(["GET"])
|
||||
def transaction_all_index(request):
|
||||
@@ -586,11 +606,26 @@ def get_recent_transactions(request, filter_type=None):
|
||||
# Get search term from query params
|
||||
search_term = request.GET.get("q", "").strip()
|
||||
|
||||
today = timezone.localdate(timezone.now())
|
||||
yesterday = today - timezone.timedelta(days=1)
|
||||
tomorrow = today + timezone.timedelta(days=1)
|
||||
|
||||
# Base queryset with selected fields
|
||||
queryset = (
|
||||
Transaction.objects.filter(deleted=False)
|
||||
.annotate(
|
||||
date_order=Case(
|
||||
When(date=today, then=Value(0)),
|
||||
When(date=tomorrow, then=Value(1)),
|
||||
When(date=yesterday, then=Value(2)),
|
||||
When(date__gt=tomorrow, then=Value(3)),
|
||||
When(date__lt=yesterday, then=Value(4)),
|
||||
default=Value(5),
|
||||
output_field=IntegerField(),
|
||||
)
|
||||
)
|
||||
.select_related("account", "category")
|
||||
.order_by("-created_at")
|
||||
.order_by("date_order", "date", "id")
|
||||
)
|
||||
|
||||
if filter_type:
|
||||
|
||||
@@ -75,7 +75,7 @@ def yearly_overview_by_currency(request, year: int):
|
||||
|
||||
transactions = (
|
||||
Transaction.objects.filter(**filter_params)
|
||||
.exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
.exclude(Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True))
|
||||
.order_by("account__currency__name")
|
||||
)
|
||||
|
||||
@@ -141,7 +141,7 @@ def yearly_overview_by_account(request, year: int):
|
||||
|
||||
transactions = (
|
||||
Transaction.objects.filter(**filter_params)
|
||||
.exclude(Q(category__mute=True) & ~Q(category=None))
|
||||
.exclude(Q(Q(category__mute=True) & ~Q(category=None)) | Q(mute=True))
|
||||
.order_by(
|
||||
"account__group__name",
|
||||
"account__name",
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-05-23 17:16+0000\n"
|
||||
"Last-Translator: JHoh <jean-luc.hoh@gmx.de>\n"
|
||||
"Language-Team: German <https://translations.herculino.com/projects/wygiwyh/"
|
||||
@@ -28,10 +28,10 @@ msgstr "Gruppe Name"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Aktualisierung"
|
||||
@@ -42,9 +42,9 @@ msgstr "Aktualisierung"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Neuer Saldo"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Kategorie"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Tags"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -172,9 +172,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
@@ -471,7 +471,7 @@ msgstr "Suffix"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -682,11 +682,11 @@ msgstr "Dienst erfolgreich in die Warteschlange eingereiht"
|
||||
msgid "Create transaction"
|
||||
msgstr "Erstelle Transaktion"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr "Startkonto"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr "Zielkonto"
|
||||
|
||||
@@ -713,7 +713,7 @@ msgstr "Verknüpfe Transaktion"
|
||||
msgid "You must provide an account."
|
||||
msgstr "Du musst ein Konto angeben."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr "Start- und Zielkonten müssen unterschiedlich sein."
|
||||
|
||||
@@ -732,9 +732,9 @@ msgstr "Startwährung"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr "Notizen"
|
||||
|
||||
@@ -797,7 +797,7 @@ msgid "Users"
|
||||
msgstr "Nutzer"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -815,23 +815,23 @@ msgstr "Kategorien"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr "Entitäten"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr "Wiederkehrende Transaktionen"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -849,7 +849,7 @@ msgstr "Automatische Umrechnungskurse"
|
||||
msgid "Rules"
|
||||
msgstr "Regeln"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr "DCA"
|
||||
|
||||
@@ -884,7 +884,7 @@ msgstr "Aktion der Transaktions-Regel bearbeiten"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Aktualisierung oder Erstellung von Transaktions-Aktionen"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1071,16 +1071,16 @@ msgstr "Bediener"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1088,34 +1088,34 @@ msgstr "Bezahlt"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr "Referenzdatum"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr "Betrag"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr "Interne Notiz"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr "Interne ID"
|
||||
|
||||
@@ -1248,8 +1248,8 @@ msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr ""
|
||||
"\"Transaktions-Aktualisierung oder -Erstellung\"-Aktion erfolgreich gelöscht"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1296,41 +1296,48 @@ msgstr "Speichern und ähnliches hinzufügen"
|
||||
msgid "Save and add another"
|
||||
msgstr "Speichern und etwas neu hinzufügen"
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr "Startbetrag"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr "Zielbetrag"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr "Transfer"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr "Tagname"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr "Entitätsname"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr "Kategoriename"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
#, fuzzy
|
||||
#| msgid "Muted categories won't count towards your monthly total"
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "Ausgeblendete Kategorien zählen nicht zu deiner Monatsübersicht"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "Enddatum sollte hinter dem Startdatum liegen"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr "Deaktivieren"
|
||||
|
||||
@@ -1373,7 +1380,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Entität"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1385,7 +1392,7 @@ msgstr "Entität"
|
||||
msgid "Income"
|
||||
msgstr "Einnahme"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1396,136 +1403,141 @@ msgstr "Einnahme"
|
||||
msgid "Expense"
|
||||
msgstr "Ausgabe"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr "Ratenzahlungs-Plan"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Wiederkehrende Transaktion"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr "Gelöscht"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr "Gelöscht am"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr "Transaktion"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr "Keine Tags"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr "Keine Kategorie"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr "Keine Beschreibung"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr "Jährlich"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr "Wöchentlich"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr "Täglich"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr "Anzahl von Ratenzahlungen"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr "Start der Ratenzahlung"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr ""
|
||||
"Die Zahl mit der bei der Zählung der Ratenzahlungen begonnen werden soll"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr "Startdatum"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr "Enddatum"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr "Regelmäßigkeit"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr "Ratenzahlungs-Wert"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Beschreibung zu Transaktionen hinzufügen"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Notizen zu Transaktionen hinzufügen"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr "Tag(e)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr "Woche(n)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr "Monat(e)"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr "Jahr(e)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr "Pausiert"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Regelmäßigkeit"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Wiederholungsintervall"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Letztes generiertes Datum"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Letztes generiertes Referenzdatum"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Edit Transaction"
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Transaktion bearbeiten"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
#, fuzzy
|
||||
@@ -1618,7 +1630,8 @@ msgstr "Ratenzahlungs-Plan erfolgreich aktualisiert"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Ratenzahlungs-Plan erfolgreich gelöscht"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
#, fuzzy
|
||||
#| msgid "Rule added successfully"
|
||||
msgid "Item added successfully"
|
||||
@@ -1636,7 +1649,7 @@ msgstr "Regel erfolgreich aktualisiert"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Regel erfolgreich gelöscht"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1923,8 +1936,8 @@ msgstr "Aktionen"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1947,10 +1960,10 @@ msgstr "Bearbeiten"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1974,10 +1987,10 @@ msgstr "Löschen"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -2004,10 +2017,10 @@ msgstr "Bist du sicher?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2026,8 +2039,8 @@ msgstr "Dies kann nicht rückgängig gemacht werden!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2188,8 +2201,29 @@ msgstr "Suche"
|
||||
msgid "Select"
|
||||
msgstr "Auswahl"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
#, fuzzy
|
||||
#| msgid "No category"
|
||||
msgid "Controlled by category"
|
||||
msgstr "Keine Kategorie"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
#, fuzzy
|
||||
#| msgid "Add recurring transaction"
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Wiederkehrende Transaktion hinzufügen"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
@@ -2229,17 +2263,17 @@ msgid "final total"
|
||||
msgstr "Gesamtbilanz"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr "Alle abwählen"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Ja, löschen!"
|
||||
|
||||
@@ -2250,49 +2284,49 @@ msgstr "Ja, löschen!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr "kopiert!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Auswahlliste umschalten"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr "Bruttosumme"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr "Nettosumme"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr "Mittelwert"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr "Maximum"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr "Minimum"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr "Anzahl"
|
||||
|
||||
@@ -2311,11 +2345,11 @@ msgstr "Wiederkehrend"
|
||||
msgid "Balance"
|
||||
msgstr "Saldo"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Als unbezahlt markieren"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr "Als bezahlt markieren"
|
||||
|
||||
@@ -3019,25 +3053,25 @@ msgstr "Älteste zuerst"
|
||||
msgid "Newest first"
|
||||
msgstr "Neueste zuerst"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr "Nach Währung"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr "Zusammengefasst"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr "Nach Konto"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Verlauf nach Währung"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr "Verlauf nach Konto"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -27,10 +27,10 @@ msgstr ""
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
@@ -41,9 +41,9 @@ msgstr ""
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -77,10 +77,10 @@ msgstr ""
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -91,10 +91,10 @@ msgstr ""
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -104,7 +104,7 @@ msgstr ""
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -168,9 +168,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -461,7 +461,7 @@ msgstr ""
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -664,11 +664,11 @@ msgstr ""
|
||||
msgid "Create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -693,7 +693,7 @@ msgstr ""
|
||||
msgid "You must provide an account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr ""
|
||||
|
||||
@@ -712,9 +712,9 @@ msgstr ""
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
@@ -777,7 +777,7 @@ msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -795,23 +795,23 @@ msgstr ""
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -829,7 +829,7 @@ msgstr ""
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr ""
|
||||
|
||||
@@ -864,7 +864,7 @@ msgstr ""
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1049,16 +1049,16 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1066,34 +1066,34 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1219,8 +1219,8 @@ msgstr ""
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1267,41 +1267,46 @@ msgstr ""
|
||||
msgid "Save and add another"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
msgid "From Amount"
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr ""
|
||||
|
||||
@@ -1338,7 +1343,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1350,7 +1355,7 @@ msgstr ""
|
||||
msgid "Income"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1361,133 +1366,138 @@ msgstr ""
|
||||
msgid "Expense"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
msgid "Quick Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
msgid "Quick Transactions"
|
||||
@@ -1578,7 +1588,8 @@ msgstr ""
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
msgid "Item added successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1590,7 +1601,7 @@ msgstr ""
|
||||
msgid "Item deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1872,8 +1883,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1896,10 +1907,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1923,10 +1934,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1953,10 +1964,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -1975,8 +1986,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2137,8 +2148,25 @@ msgstr ""
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
msgid "Controlled by category"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
msgid "Add as quick transaction"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -2178,17 +2206,17 @@ msgid "final total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr ""
|
||||
|
||||
@@ -2199,49 +2227,49 @@ msgstr ""
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
@@ -2260,11 +2288,11 @@ msgstr ""
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr ""
|
||||
|
||||
@@ -2950,25 +2978,25 @@ msgstr ""
|
||||
msgid "Newest first"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-06-27 23:16+0000\n"
|
||||
"Last-Translator: ichi135 <ichi135@hotmail.com>\n"
|
||||
"Language-Team: Spanish <https://translations.herculino.com/projects/wygiwyh/"
|
||||
@@ -28,10 +28,10 @@ msgstr "Nombre del Grupo"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
@@ -42,9 +42,9 @@ msgstr "Actualizar"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Nuevo balance"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Categoría"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Etiquetas"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -170,9 +170,9 @@ msgstr "Las cuentas archivadas no aparecen ni cuentan para su patrimonio neto"
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Cuenta"
|
||||
|
||||
@@ -481,7 +481,7 @@ msgstr "Sufijo"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -718,12 +718,12 @@ msgstr "Services queued successfully"
|
||||
msgid "Create transaction"
|
||||
msgstr "Create transaction"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
#, fuzzy
|
||||
msgid "From Account"
|
||||
msgstr "From Account"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
#, fuzzy
|
||||
msgid "To Account"
|
||||
msgstr "To Account"
|
||||
@@ -754,7 +754,7 @@ msgstr "Link transaction"
|
||||
msgid "You must provide an account."
|
||||
msgstr "You must provide an account."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
#, fuzzy
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr "From and To accounts must be different."
|
||||
@@ -776,9 +776,9 @@ msgstr "Payment Currency"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
#, fuzzy
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
@@ -856,7 +856,7 @@ msgid "Users"
|
||||
msgstr "Users"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -876,17 +876,17 @@ msgstr "Categories"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
#, fuzzy
|
||||
msgid "Entities"
|
||||
msgstr "Entities"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
#, fuzzy
|
||||
@@ -894,7 +894,7 @@ msgid "Recurring Transactions"
|
||||
msgstr "Recurring Transactions"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
#, fuzzy
|
||||
@@ -915,7 +915,7 @@ msgstr "Automatic Exchange Rates"
|
||||
msgid "Rules"
|
||||
msgstr "Rules"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
#, fuzzy
|
||||
msgid "DCA"
|
||||
msgstr "DCA"
|
||||
@@ -958,7 +958,7 @@ msgstr "Edit transaction action"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Update or create transaction actions"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1179,17 +1179,17 @@ msgstr "Operator"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
#, fuzzy
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
#, fuzzy
|
||||
@@ -1198,16 +1198,16 @@ msgstr "Paid"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
#, fuzzy
|
||||
msgid "Reference Date"
|
||||
msgstr "Reference Date"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
#, fuzzy
|
||||
msgid "Amount"
|
||||
@@ -1215,21 +1215,21 @@ msgstr "Amount"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
#, fuzzy
|
||||
msgid "Internal Note"
|
||||
msgstr "Internal Note"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
#, fuzzy
|
||||
msgid "Internal ID"
|
||||
msgstr "Internal ID"
|
||||
@@ -1388,8 +1388,8 @@ msgstr "Update or Create Transaction action updated successfully"
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr "Update or Create Transaction action deleted successfully"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1445,49 +1445,54 @@ msgstr ""
|
||||
msgid "Save and add another"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#, fuzzy
|
||||
msgid "From Amount"
|
||||
msgstr "From Amount"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
#, fuzzy
|
||||
msgid "To Amount"
|
||||
msgstr "To Amount"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
#, fuzzy
|
||||
msgid "Transfer"
|
||||
msgstr "Transfer"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
#, fuzzy
|
||||
msgid "Tag name"
|
||||
msgstr "Tag name"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
#, fuzzy
|
||||
msgid "Entity name"
|
||||
msgstr "Entity name"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
#, fuzzy
|
||||
msgid "Category name"
|
||||
msgstr "Category name"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
#: apps/transactions/forms.py:878
|
||||
#, fuzzy
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "Muted categories won't count towards your monthly total"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
#, fuzzy
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "End date should be after the start date"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
#, fuzzy
|
||||
msgid "Mute"
|
||||
msgstr "Mute"
|
||||
@@ -1537,7 +1542,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Entity"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1550,7 +1555,7 @@ msgstr "Entity"
|
||||
msgid "Income"
|
||||
msgstr "Income"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1562,164 +1567,169 @@ msgstr "Income"
|
||||
msgid "Expense"
|
||||
msgstr "Expense"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
#, fuzzy
|
||||
msgid "Installment Plan"
|
||||
msgstr "Installment Plan"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
#, fuzzy
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Recurring Transaction"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
#, fuzzy
|
||||
msgid "Deleted"
|
||||
msgstr "Deleted"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
#, fuzzy
|
||||
msgid "Deleted At"
|
||||
msgstr "Deleted At"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
#, fuzzy
|
||||
msgid "Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
#, fuzzy
|
||||
msgid "No tags"
|
||||
msgstr "No tags"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
#, fuzzy
|
||||
msgid "No category"
|
||||
msgstr "No category"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
#, fuzzy
|
||||
msgid "No description"
|
||||
msgstr "No description"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
#, fuzzy
|
||||
msgid "Yearly"
|
||||
msgstr "Yearly"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
#, fuzzy
|
||||
msgid "Monthly"
|
||||
msgstr "Monthly"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
#, fuzzy
|
||||
msgid "Weekly"
|
||||
msgstr "Weekly"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
#, fuzzy
|
||||
msgid "Daily"
|
||||
msgstr "Daily"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
#, fuzzy
|
||||
msgid "Number of Installments"
|
||||
msgstr "Number of Installments"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
#, fuzzy
|
||||
msgid "Installment Start"
|
||||
msgstr "Installment Start"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
#, fuzzy
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr "The installment number to start counting from"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
#, fuzzy
|
||||
msgid "Start Date"
|
||||
msgstr "Start Date"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
#, fuzzy
|
||||
msgid "End Date"
|
||||
msgstr "End Date"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
#, fuzzy
|
||||
msgid "Recurrence"
|
||||
msgstr "Recurrence"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
#, fuzzy
|
||||
msgid "Installment Amount"
|
||||
msgstr "Installment Amount"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
#, fuzzy
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Add description to transactions"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
#, fuzzy
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Add notes to transactions"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
#, fuzzy
|
||||
msgid "day(s)"
|
||||
msgstr "day(s)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
#, fuzzy
|
||||
msgid "week(s)"
|
||||
msgstr "week(s)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
#, fuzzy
|
||||
msgid "month(s)"
|
||||
msgstr "month(s)"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
#, fuzzy
|
||||
msgid "year(s)"
|
||||
msgstr "year(s)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
#, fuzzy
|
||||
msgid "Paused"
|
||||
msgstr "Paused"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
#, fuzzy
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Recurrence Type"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
#, fuzzy
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Recurrence Interval"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
#, fuzzy
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Last Generated Date"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
#, fuzzy
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Last Generated Reference Date"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
#, fuzzy
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Edit Transaction"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
#, fuzzy
|
||||
@@ -1821,7 +1831,8 @@ msgstr "Installment Plan refreshed successfully"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Installment Plan deleted successfully"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
#, fuzzy
|
||||
msgid "Item added successfully"
|
||||
msgstr "Rule added successfully"
|
||||
@@ -1836,7 +1847,7 @@ msgstr "Rule updated successfully"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Rule deleted successfully"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
#, fuzzy
|
||||
@@ -2166,8 +2177,8 @@ msgstr "Actions"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -2191,10 +2202,10 @@ msgstr "Edit"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -2219,10 +2230,10 @@ msgstr "Delete"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -2250,10 +2261,10 @@ msgstr "Are you sure?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2273,8 +2284,8 @@ msgstr "You won't be able to revert this!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2466,8 +2477,28 @@ msgstr "Search"
|
||||
msgid "Select"
|
||||
msgstr "Select"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
#, fuzzy
|
||||
msgid "Controlled by category"
|
||||
msgstr "No category"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
#, fuzzy
|
||||
#| msgid "Add quick transaction"
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Agregar transacción rápida"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
#, fuzzy
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicate"
|
||||
@@ -2515,19 +2546,19 @@ msgid "final total"
|
||||
msgstr "final total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
#, fuzzy
|
||||
msgid "Select All"
|
||||
msgstr "Select All"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
#, fuzzy
|
||||
msgid "Unselect All"
|
||||
msgstr "Unselect All"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
#, fuzzy
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Yes, delete them!"
|
||||
@@ -2539,56 +2570,56 @@ msgstr "Yes, delete them!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
#, fuzzy
|
||||
msgid "copied!"
|
||||
msgstr "copied!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
#, fuzzy
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Toggle Dropdown"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
#, fuzzy
|
||||
msgid "Flat Total"
|
||||
msgstr "Flat Total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
#, fuzzy
|
||||
msgid "Real Total"
|
||||
msgstr "Real Total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
#, fuzzy
|
||||
msgid "Mean"
|
||||
msgstr "Mean"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
#, fuzzy
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
#, fuzzy
|
||||
msgid "Min"
|
||||
msgstr "Min"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
#, fuzzy
|
||||
msgid "Count"
|
||||
msgstr "Count"
|
||||
@@ -2611,12 +2642,12 @@ msgstr "Recurring"
|
||||
msgid "Balance"
|
||||
msgstr "Balance"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
#, fuzzy
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Mark as unpaid"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
#, fuzzy
|
||||
msgid "Mark as paid"
|
||||
msgstr "Mark as paid"
|
||||
@@ -3447,25 +3478,25 @@ msgstr "Lo más antiguo primero"
|
||||
msgid "Newest first"
|
||||
msgstr "Lo más nuevo primero"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr "Por moneda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr "Consolidado"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr "Por cuenta"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Evolución por moneda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr "Evolución por cuenta"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-04-27 19:12+0000\n"
|
||||
"Last-Translator: ThomasE <thomas-evano@hotmail.fr>\n"
|
||||
"Language-Team: French <https://translations.herculino.com/projects/wygiwyh/"
|
||||
@@ -28,10 +28,10 @@ msgstr "Nom de groupe"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Mise à jour"
|
||||
@@ -42,9 +42,9 @@ msgstr "Mise à jour"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Nouveau solde"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Catégorie"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Balises"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -172,9 +172,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
@@ -472,7 +472,7 @@ msgstr "Suffixe"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -683,11 +683,11 @@ msgstr "Services ajouté à la file avec succès"
|
||||
msgid "Create transaction"
|
||||
msgstr "Créer une transaction"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr "Compte originateur"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr "Compte bénéficiaire"
|
||||
|
||||
@@ -712,7 +712,7 @@ msgstr "Lié transaction"
|
||||
msgid "You must provide an account."
|
||||
msgstr "Vous devez fournir un compte."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr ""
|
||||
"Le compte originateur et le compte bénéficiaire doivent être différent."
|
||||
@@ -732,9 +732,9 @@ msgstr "Devise de paiement"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
@@ -797,7 +797,7 @@ msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -815,23 +815,23 @@ msgstr "Catégories"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr "Entités"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr "Transactions récurrentes"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -849,7 +849,7 @@ msgstr "Taux de change automatique"
|
||||
msgid "Rules"
|
||||
msgstr "Règles"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr "DCA"
|
||||
|
||||
@@ -884,7 +884,7 @@ msgstr "Modifier l'action de transaction"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Mettre à jour ou créer des actions de transaction"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1071,16 +1071,16 @@ msgstr "Opérateur"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1088,34 +1088,34 @@ msgstr "Payé"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr "Date de référence"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr "Montant"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr "Note interne"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr "ID interne"
|
||||
|
||||
@@ -1245,8 +1245,8 @@ msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr ""
|
||||
"Mis à jour ou Création de l'action de Transaction supprimée avec succès"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1293,41 +1293,48 @@ msgstr "Enregistrer et ajouter des semblables"
|
||||
msgid "Save and add another"
|
||||
msgstr "Enregistrer et ajouter un autre"
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr "Montant de départ"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr "Montant d'arrivée"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr "Transfère"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr "Nom de balise"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr "Nom d'entité"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr "Nom de catégorie"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
#, fuzzy
|
||||
#| msgid "Muted categories won't count towards your monthly total"
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "Catégories ignorées ne compteront pas dans votre total mensuel"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "La date de fin doit être ultérieure à la date de début"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr "Silencieux"
|
||||
|
||||
@@ -1370,7 +1377,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Entité"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1382,7 +1389,7 @@ msgstr "Entité"
|
||||
msgid "Income"
|
||||
msgstr "Revenue"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1393,135 +1400,140 @@ msgstr "Revenue"
|
||||
msgid "Expense"
|
||||
msgstr "Dépense"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr "Plan d'aménagement"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Transaction récurrente"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr "Supprimé"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr "Supprimé à"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
#, fuzzy
|
||||
msgid "Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr "Pas de balises"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr "Pas de catégorie"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr "Pas de description"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr "Annuel"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr "Mensuel"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr "Hebdomadaire"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr "Quotidien"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr "Nombre d'aménagements"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr "Début de l'aménagement"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr "Le numéro d'aménagement à partir duquel compter"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr "Date de début"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr "Date de fin"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr "Récurrence"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr "Montant d'aménagement"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Rajouter une description à la transaction"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Ajouter des notes aux transactions"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr "jour(s)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr "semaine(s)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr "mois"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr "année(s)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr "Interrompu"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Type de récurrence"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Interval de récurrence"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Dernière date générée"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Dernière date de référence générée"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
#, fuzzy
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Edit Transaction"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
#, fuzzy
|
||||
@@ -1619,7 +1631,8 @@ msgstr "Installment Plan refreshed successfully"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Installment Plan deleted successfully"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
#, fuzzy
|
||||
msgid "Item added successfully"
|
||||
msgstr "Rule added successfully"
|
||||
@@ -1635,7 +1648,7 @@ msgstr "Rule updated successfully"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Règle supprimée avec succès"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
#, fuzzy
|
||||
@@ -1965,8 +1978,8 @@ msgstr "Actions"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1990,10 +2003,10 @@ msgstr "Edit"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -2018,10 +2031,10 @@ msgstr "Delete"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -2049,10 +2062,10 @@ msgstr "Are you sure?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2072,8 +2085,8 @@ msgstr "You won't be able to revert this!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2265,8 +2278,28 @@ msgstr "Search"
|
||||
msgid "Select"
|
||||
msgstr "Select"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
#, fuzzy
|
||||
#| msgid "No category"
|
||||
msgid "Controlled by category"
|
||||
msgstr "Pas de catégorie"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
#, fuzzy
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Add recurring transaction"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
#, fuzzy
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicate"
|
||||
@@ -2314,19 +2347,19 @@ msgid "final total"
|
||||
msgstr "final total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
#, fuzzy
|
||||
msgid "Select All"
|
||||
msgstr "Select All"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
#, fuzzy
|
||||
msgid "Unselect All"
|
||||
msgstr "Unselect All"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
#, fuzzy
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Yes, delete them!"
|
||||
@@ -2338,56 +2371,56 @@ msgstr "Yes, delete them!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
#, fuzzy
|
||||
msgid "copied!"
|
||||
msgstr "copied!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
#, fuzzy
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Toggle Dropdown"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
#, fuzzy
|
||||
msgid "Flat Total"
|
||||
msgstr "Flat Total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
#, fuzzy
|
||||
msgid "Real Total"
|
||||
msgstr "Real Total"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
#, fuzzy
|
||||
msgid "Mean"
|
||||
msgstr "Mean"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
#, fuzzy
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
#, fuzzy
|
||||
msgid "Min"
|
||||
msgstr "Min"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
#, fuzzy
|
||||
msgid "Count"
|
||||
msgstr "Count"
|
||||
@@ -2410,12 +2443,12 @@ msgstr "Recurring"
|
||||
msgid "Balance"
|
||||
msgstr "Balance"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
#, fuzzy
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Mark as unpaid"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
#, fuzzy
|
||||
msgid "Mark as paid"
|
||||
msgstr "Mark as paid"
|
||||
@@ -3257,29 +3290,29 @@ msgstr "Oldest first"
|
||||
msgid "Newest first"
|
||||
msgstr "Newest first"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
#, fuzzy
|
||||
msgid "By currency"
|
||||
msgstr "By currency"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
#, fuzzy
|
||||
msgid "Consolidated"
|
||||
msgstr "Consolidated"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
#, fuzzy
|
||||
msgid "By account"
|
||||
msgstr "By account"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
#, fuzzy
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Evolution by currency"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
#, fuzzy
|
||||
msgid "Evolution by account"
|
||||
msgstr "Evolution by account"
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"PO-Revision-Date: 2025-06-21 16:16+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-07-20 09:17+0000\n"
|
||||
"Last-Translator: Dimitri Decrock <dj.flashpower@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://translations.herculino.com/projects/wygiwyh/"
|
||||
"app/nl/>\n"
|
||||
@@ -17,7 +17,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.11.4\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#: apps/accounts/forms.py:24
|
||||
msgid "Group name"
|
||||
@@ -28,10 +28,10 @@ msgstr "Groepsnaam"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Bijwerken"
|
||||
@@ -42,9 +42,9 @@ msgstr "Bijwerken"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Nieuw saldo"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Categorie"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Labels"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -173,9 +173,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Rekening"
|
||||
|
||||
@@ -472,7 +472,7 @@ msgstr "Achtervoegsel"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -684,11 +684,11 @@ msgstr "Diensten succesvol in de wachtrij geplaatst"
|
||||
msgid "Create transaction"
|
||||
msgstr "Maak verrichtingen"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr "Van rekening"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr "Naar rekening"
|
||||
|
||||
@@ -714,7 +714,7 @@ msgstr "Koppel verrichting"
|
||||
msgid "You must provide an account."
|
||||
msgstr "Je moet een account opgeven."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr "Van en Naar rekening moeten verschillend zijn."
|
||||
|
||||
@@ -733,9 +733,9 @@ msgstr "Betaal Munteenheid"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr "Opmerkingen"
|
||||
|
||||
@@ -798,7 +798,7 @@ msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -816,23 +816,23 @@ msgstr "Categorieën"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr "Bedrijven"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr "Terugkerende Verrichtingen"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -850,7 +850,7 @@ msgstr "Automatische Wisselkoersen"
|
||||
msgid "Rules"
|
||||
msgstr "Regels"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr "DCA"
|
||||
|
||||
@@ -885,7 +885,7 @@ msgstr "Bewerk verrichtingsactie"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Bewerk of maak verrichtingsregel acties"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1072,16 +1072,16 @@ msgstr "Operator"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr "Soort"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1089,34 +1089,34 @@ msgstr "Betaald"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr "Referentiedatum"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr "Interne opmerking"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr "Interne ID"
|
||||
|
||||
@@ -1244,8 +1244,8 @@ msgstr "Verrichting Bijwerken Of Maken succesvol bijgewerkt"
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr "Verrichting Bijwerken Of Maken succesvol verwijderd"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1292,41 +1292,46 @@ msgstr "Opslaan en vergelijkbaar toevoegen"
|
||||
msgid "Save and add another"
|
||||
msgstr "Opslaan en een andere toevoegen"
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr "Gedempte transacties worden niet weergegeven in maandoverzichten"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr "Van Bedrag"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr "Naar Bedrag"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr "Overschrijving"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr "Labelnaam"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr "Naam van bedrijf"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr "Naam van categorie"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
msgstr "Gedempte categorieën tellen niet mee voor je maandtotaal"
|
||||
#: apps/transactions/forms.py:878
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "Gedempte categorieën worden niet weergegeven in maandoverzichten"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "De einddatum moet na de begindatum vallen"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr "Dempen"
|
||||
|
||||
@@ -1369,7 +1374,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1381,7 +1386,7 @@ msgstr "Bedrijf"
|
||||
msgid "Income"
|
||||
msgstr "Ontvangsten Transactie"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1392,133 +1397,138 @@ msgstr "Ontvangsten Transactie"
|
||||
msgid "Expense"
|
||||
msgstr "Uitgave"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr "Afbetalingsplan"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Terugkerende verrichting"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr "Verwijderd"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr "Verwijderd Op"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr "Verrichting"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr "Geen labels"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr "Geen categorie"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr "Geen Beschrijving"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr "Jaarlijks"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr "Maandelijks"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr "Wekelijks"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr "Dagelijks"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr "Aantal aflossingen"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr "Begin afbetaling"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr "Het nummer van de aflevering om mee te beginnen"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr "Startdatum"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr "Einddatum"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr "Terugkeerpatroon"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr "Termijnbedrag"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Beschrijving toevoegen aan verrichting"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Notities toevoegen aan verrichting"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr "dag(en)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr "we(e)k(en)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr "maand(en)"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr "ja(a)r(en)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr "Gepauzeerd"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Type Terugkeerpatroon"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Terugkeer Interval"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Laatste Gegenereerde Datum"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Laatste Gegenereerde Referentiedatum"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Snelle verrichting"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
msgid "Quick Transactions"
|
||||
@@ -1609,7 +1619,8 @@ msgstr "Afbetalingsplan succesvol vernieuwd"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Afbetalingsplan succesvol verwijderd"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
msgid "Item added successfully"
|
||||
msgstr "Item succesvol toegevoegd"
|
||||
|
||||
@@ -1621,7 +1632,7 @@ msgstr "Item succesvol bijgewerkt"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Item succesvol verwijderd"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1846,7 +1857,7 @@ msgstr "Kalender"
|
||||
|
||||
#: apps/users/models.py:480
|
||||
msgid "Volume"
|
||||
msgstr ""
|
||||
msgstr "Volume"
|
||||
|
||||
#: apps/users/models.py:499
|
||||
msgid "Language"
|
||||
@@ -1910,8 +1921,8 @@ msgstr "Acties"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1934,10 +1945,10 @@ msgstr "Bewerken"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1961,10 +1972,10 @@ msgstr "Verwijderen"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1991,10 +2002,10 @@ msgstr "Weet je het zeker?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2013,8 +2024,8 @@ msgstr "Je kunt dit niet meer terugdraaien!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2175,8 +2186,25 @@ msgstr "Zoeken"
|
||||
msgid "Select"
|
||||
msgstr "Selecteer"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr "Toon op samenvattingen"
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
msgid "Controlled by category"
|
||||
msgstr "Gecontroleerd door categorie"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr "Verbergen in samenvattingen"
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Toevoegen als snelle transactie"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr "Dupliceren"
|
||||
|
||||
@@ -2216,17 +2244,17 @@ msgid "final total"
|
||||
msgstr "eindtotaal"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr "Alles selecteren"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr "Alles deselecteren"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Ja, verwijder ze!"
|
||||
|
||||
@@ -2237,49 +2265,49 @@ msgstr "Ja, verwijder ze!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr "gekopieerd!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "In- Uitklapbaar"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr "Vast Totaal"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr "Werkelijk Totaal"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr "Gemiddelde"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr "Maximaal"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr "Minimaal"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr "Rekenen"
|
||||
|
||||
@@ -2298,11 +2326,11 @@ msgstr "Terugkerende"
|
||||
msgid "Balance"
|
||||
msgstr "Saldo"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Markeren als niet betaald"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr "Markeren als betaald"
|
||||
|
||||
@@ -2673,10 +2701,8 @@ msgid "Calculator"
|
||||
msgstr "Rekenmachine"
|
||||
|
||||
#: templates/includes/navbar/user_menu.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Import Profiles"
|
||||
msgid "Profile"
|
||||
msgstr "Profielen importeren"
|
||||
msgstr "Profiel"
|
||||
|
||||
#: templates/includes/navbar/user_menu.html:15
|
||||
msgid "Settings"
|
||||
@@ -3000,25 +3026,25 @@ msgstr "Oudste eerst"
|
||||
msgid "Newest first"
|
||||
msgstr "Nieuwste eerst"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr "Op munteenheid"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr "Samengevoegd"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr "Op rekening"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Evolutie per munteenheid"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr "Evolutie per rekening"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-04-13 08:16+0000\n"
|
||||
"Last-Translator: Herculino Trotta <netotrotta@gmail.com>\n"
|
||||
"Language-Team: Portuguese <https://translations.herculino.com/projects/"
|
||||
@@ -28,10 +28,10 @@ msgstr "Nome do grupo"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Atualizar"
|
||||
@@ -42,9 +42,9 @@ msgstr "Atualizar"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Novo saldo"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Categoria"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Tags"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -172,9 +172,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
@@ -470,7 +470,7 @@ msgstr "Sufixo"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -683,11 +683,11 @@ msgstr "Serviços marcados para execução com sucesso"
|
||||
msgid "Create transaction"
|
||||
msgstr "Criar transação"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr "Conta de origem"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr "Conta de destino"
|
||||
|
||||
@@ -712,7 +712,7 @@ msgstr "Conectar transação"
|
||||
msgid "You must provide an account."
|
||||
msgstr "Você deve informar uma conta."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr "As contas De e Para devem ser diferentes."
|
||||
|
||||
@@ -731,9 +731,9 @@ msgstr "Moeda de pagamento"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
@@ -796,7 +796,7 @@ msgid "Users"
|
||||
msgstr "Usuários"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -814,23 +814,23 @@ msgstr "Categorias"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr "Entidades"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr "Transações Recorrentes"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -848,7 +848,7 @@ msgstr "Taxas de Câmbio Automáticas"
|
||||
msgid "Rules"
|
||||
msgstr "Regras"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr "CMP"
|
||||
|
||||
@@ -883,7 +883,7 @@ msgstr "Ação de editar de transação"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Ações de atualizar ou criar transação"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1070,16 +1070,16 @@ msgstr "Operador"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1087,34 +1087,34 @@ msgstr "Pago"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr "Data de Referência"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr "Quantia"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr "Nota Interna"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr "ID Interna"
|
||||
|
||||
@@ -1242,8 +1242,8 @@ msgstr "Ação Atualizar ou Criar Transação atualizada com sucesso"
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr "Ação Atualizar ou Criar Transação apagada com sucesso"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1290,41 +1290,48 @@ msgstr ""
|
||||
msgid "Save and add another"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr "Quantia de origem"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr "Quantia de destino"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr "Transferir"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr "Nome da Tag"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr "Nome da entidade"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr "Nome da Categoria"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
#, fuzzy
|
||||
#| msgid "Muted categories won't count towards your monthly total"
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "As categorias silenciadas não serão contabilizadas em seu total mensal"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "Data final deve ser após data inicial"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr "Silenciada"
|
||||
|
||||
@@ -1366,7 +1373,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Entidade"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1378,7 +1385,7 @@ msgstr "Entidade"
|
||||
msgid "Income"
|
||||
msgstr "Renda"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1389,135 +1396,140 @@ msgstr "Renda"
|
||||
msgid "Expense"
|
||||
msgstr "Despesa"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr "Parcelamento"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Transação Recorrente"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr "Apagado"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr "Apagado Em"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr "Transação"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr "Nenhuma tag"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr "Sem categoria"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr "Sem descrição"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr "Anual"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr "Mensal"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr "Semanal"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr "Diária"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr "Número de Parcelas"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr "Parcela inicial"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr "O número da parcela a partir do qual se inicia a contagem"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr "Data de Início"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr "Data Final"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr "Recorrência"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr "Valor da Parcela"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Adicionar descrição às transações"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Adicionar notas às transações"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr "dia(s)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr "semana(s)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr "mês(es)"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr "ano(s)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr "Pausado"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Tipo de recorrência"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Intervalo de recorrência"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Última data gerada"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Última data de referência gerada"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
#, fuzzy
|
||||
#| msgid "Edit Transaction"
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Editar Transação"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
#, fuzzy
|
||||
@@ -1610,7 +1622,8 @@ msgstr "Parcelamento atualizado com sucesso"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Parcelamento apagado com sucesso"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
#, fuzzy
|
||||
#| msgid "Rule added successfully"
|
||||
msgid "Item added successfully"
|
||||
@@ -1628,7 +1641,7 @@ msgstr "Regra atualizada com sucesso"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Regra apagada com sucesso"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1917,8 +1930,8 @@ msgstr "Ações"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1941,10 +1954,10 @@ msgstr "Editar"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1968,10 +1981,10 @@ msgstr "Apagar"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1998,10 +2011,10 @@ msgstr "Tem certeza?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2020,8 +2033,8 @@ msgstr "Você não será capaz de reverter isso!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2182,8 +2195,29 @@ msgstr "Buscar"
|
||||
msgid "Select"
|
||||
msgstr "Selecionar"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
#, fuzzy
|
||||
#| msgid "No category"
|
||||
msgid "Controlled by category"
|
||||
msgstr "Sem categoria"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
#, fuzzy
|
||||
#| msgid "Add recurring transaction"
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Adicionar transação recorrente"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
@@ -2223,17 +2257,17 @@ msgid "final total"
|
||||
msgstr "total final"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr "Selecionar todos"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr "Desmarcar todos"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Sim, apague!"
|
||||
|
||||
@@ -2244,49 +2278,49 @@ msgstr "Sim, apague!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr "copiado!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Alternar menu suspenso"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr "Total Fixo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr "Total Real"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr "Média"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr "Máximo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr "Minímo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr "Contagem"
|
||||
|
||||
@@ -2305,11 +2339,11 @@ msgstr "Recorrência"
|
||||
msgid "Balance"
|
||||
msgstr "Balancear"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Marcar como não pago"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr "Marcar como pago"
|
||||
|
||||
@@ -3009,25 +3043,25 @@ msgstr "Mais antigas primeiro"
|
||||
msgid "Newest first"
|
||||
msgstr "Mais novas primeiro"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr "Por moeda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr "Consolidado"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr "Por conta"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Evolução por moeda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr "Evolução por conta"
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 19:29+0000\n"
|
||||
"PO-Revision-Date: 2025-06-29 19:34+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-07-19 21:17+0000\n"
|
||||
"Last-Translator: Herculino Trotta <netotrotta@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translations.herculino.com/"
|
||||
"projects/wygiwyh/app/pt_BR/>\n"
|
||||
@@ -28,10 +28,10 @@ msgstr "Nome do grupo"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Atualizar"
|
||||
@@ -42,9 +42,9 @@ msgstr "Atualizar"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr "Novo saldo"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr "Categoria"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr "Tags"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -172,9 +172,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
@@ -470,7 +470,7 @@ msgstr "Sufixo"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -683,11 +683,11 @@ msgstr "Serviços marcados para execução com sucesso"
|
||||
msgid "Create transaction"
|
||||
msgstr "Criar transação"
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr "Conta de origem"
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr "Conta de destino"
|
||||
|
||||
@@ -712,7 +712,7 @@ msgstr "Conectar transação"
|
||||
msgid "You must provide an account."
|
||||
msgstr "Você deve informar uma conta."
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr "As contas De e Para devem ser diferentes."
|
||||
|
||||
@@ -731,9 +731,9 @@ msgstr "Moeda de pagamento"
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
@@ -796,7 +796,7 @@ msgid "Users"
|
||||
msgstr "Usuários"
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -814,23 +814,23 @@ msgstr "Categorias"
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr "Entidades"
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr "Transações Recorrentes"
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -848,7 +848,7 @@ msgstr "Taxas de Câmbio Automáticas"
|
||||
msgid "Rules"
|
||||
msgstr "Regras"
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr "CMP"
|
||||
|
||||
@@ -883,7 +883,7 @@ msgstr "Ação de editar de transação"
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr "Ações de atualizar ou criar transação"
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1070,16 +1070,16 @@ msgstr "Operador"
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1087,34 +1087,34 @@ msgstr "Pago"
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr "Data de Referência"
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr "Quantia"
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr "Nota Interna"
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr "ID Interna"
|
||||
|
||||
@@ -1242,8 +1242,8 @@ msgstr "Ação Atualizar ou Criar Transação atualizada com sucesso"
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr "Ação Atualizar ou Criar Transação apagada com sucesso"
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1290,41 +1290,46 @@ msgstr "Salvar e adicionar similar"
|
||||
msgid "Save and add another"
|
||||
msgstr "Salvar e adicionar outra"
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr "Transações silenciadas não apareceram nos sumários mensais"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr "Quantia de origem"
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr "Quantia de destino"
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr "Transferir"
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr "Nome da Tag"
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr "Nome da entidade"
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr "Nome da Categoria"
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
msgstr "As categorias silenciadas não serão contabilizadas em seu total mensal"
|
||||
#: apps/transactions/forms.py:878
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr "Categorias silenciadas não apareceram nos sumários mensais"
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr "Data final deve ser após data inicial"
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr "Silenciada"
|
||||
|
||||
@@ -1366,7 +1371,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr "Entidade"
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1378,7 +1383,7 @@ msgstr "Entidade"
|
||||
msgid "Income"
|
||||
msgstr "Renda"
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1389,133 +1394,138 @@ msgstr "Renda"
|
||||
msgid "Expense"
|
||||
msgstr "Despesa"
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr "Parcelamento"
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr "Transação Recorrente"
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr "Apagado"
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr "Apagado Em"
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr "Transação"
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr "Nenhuma tag"
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr "Sem categoria"
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr "Sem descrição"
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr "Anual"
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr "Mensal"
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr "Semanal"
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr "Diária"
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr "Número de Parcelas"
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr "Parcela inicial"
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr "O número da parcela a partir do qual se inicia a contagem"
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr "Data de Início"
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr "Data Final"
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr "Recorrência"
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr "Valor da Parcela"
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr "Adicionar descrição às transações"
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr "Adicionar notas às transações"
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr "dia(s)"
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr "semana(s)"
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr "mês(es)"
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr "ano(s)"
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr "Pausado"
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr "Tipo de recorrência"
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr "Intervalo de recorrência"
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr "Última data gerada"
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr "Última data de referência gerada"
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
msgid "Quick Transaction"
|
||||
msgstr "Transação Rápida"
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
msgid "Quick Transactions"
|
||||
@@ -1606,7 +1616,8 @@ msgstr "Parcelamento atualizado com sucesso"
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr "Parcelamento apagado com sucesso"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
msgid "Item added successfully"
|
||||
msgstr "Item adicionado com sucesso"
|
||||
|
||||
@@ -1618,7 +1629,7 @@ msgstr "Item atualizado com sucesso"
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Item apagado com sucesso"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1909,8 +1920,8 @@ msgstr "Ações"
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1933,10 +1944,10 @@ msgstr "Editar"
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1960,10 +1971,10 @@ msgstr "Apagar"
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1990,10 +2001,10 @@ msgstr "Tem certeza?"
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -2012,8 +2023,8 @@ msgstr "Você não será capaz de reverter isso!"
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2174,8 +2185,25 @@ msgstr "Buscar"
|
||||
msgid "Select"
|
||||
msgstr "Selecionar"
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr "Mostrar nos sumários"
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
msgid "Controlled by category"
|
||||
msgstr "Controlado pela categoria"
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr "Esconder dos sumários"
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
msgid "Add as quick transaction"
|
||||
msgstr "Adicionar como transação rápida"
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
@@ -2215,17 +2243,17 @@ msgid "final total"
|
||||
msgstr "total final"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr "Selecionar todos"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr "Desmarcar todos"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr "Sim, apague!"
|
||||
|
||||
@@ -2236,49 +2264,49 @@ msgstr "Sim, apague!"
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr "copiado!"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Alternar menu suspenso"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr "Total Fixo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr "Total Real"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr "Média"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr "Máximo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr "Minímo"
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr "Contagem"
|
||||
|
||||
@@ -2297,11 +2325,11 @@ msgstr "Recorrência"
|
||||
msgid "Balance"
|
||||
msgstr "Balancear"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr "Marcar como não pago"
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr "Marcar como pago"
|
||||
|
||||
@@ -2997,25 +3025,25 @@ msgstr "Mais antigas primeiro"
|
||||
msgid "Newest first"
|
||||
msgstr "Mais novas primeiro"
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr "Por moeda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr "Consolidado"
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr "Por conta"
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr "Evolução por moeda"
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr "Evolução por conta"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-04-14 06:16+0000\n"
|
||||
"Last-Translator: Emil <emil.bjorkroth@gmail.com>\n"
|
||||
"Language-Team: Swedish <https://translations.herculino.com/projects/wygiwyh/"
|
||||
@@ -28,10 +28,10 @@ msgstr ""
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Uppdatera"
|
||||
@@ -42,9 +42,9 @@ msgstr "Uppdatera"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -78,10 +78,10 @@ msgstr ""
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -92,10 +92,10 @@ msgstr ""
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -105,7 +105,7 @@ msgstr ""
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -169,9 +169,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -462,7 +462,7 @@ msgstr ""
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -665,11 +665,11 @@ msgstr ""
|
||||
msgid "Create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -694,7 +694,7 @@ msgstr ""
|
||||
msgid "You must provide an account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr ""
|
||||
|
||||
@@ -713,9 +713,9 @@ msgstr ""
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
@@ -778,7 +778,7 @@ msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -796,23 +796,23 @@ msgstr ""
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -830,7 +830,7 @@ msgstr ""
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr ""
|
||||
|
||||
@@ -865,7 +865,7 @@ msgstr ""
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1050,16 +1050,16 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1067,34 +1067,34 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1220,8 +1220,8 @@ msgstr ""
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1268,41 +1268,46 @@ msgstr ""
|
||||
msgid "Save and add another"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
msgid "From Amount"
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr ""
|
||||
|
||||
@@ -1339,7 +1344,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1351,7 +1356,7 @@ msgstr ""
|
||||
msgid "Income"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1362,133 +1367,138 @@ msgstr ""
|
||||
msgid "Expense"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
msgid "Quick Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
msgid "Quick Transactions"
|
||||
@@ -1579,7 +1589,8 @@ msgstr ""
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
msgid "Item added successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1591,7 +1602,7 @@ msgstr ""
|
||||
msgid "Item deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1873,8 +1884,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1897,10 +1908,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1924,10 +1935,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1954,10 +1965,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -1976,8 +1987,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2138,8 +2149,25 @@ msgstr ""
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
msgid "Controlled by category"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
msgid "Add as quick transaction"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -2179,17 +2207,17 @@ msgid "final total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr ""
|
||||
|
||||
@@ -2200,49 +2228,49 @@ msgstr ""
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
@@ -2261,11 +2289,11 @@ msgstr ""
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr ""
|
||||
|
||||
@@ -2951,25 +2979,25 @@ msgstr ""
|
||||
msgid "Newest first"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-29 17:42+0000\n"
|
||||
"POT-Creation-Date: 2025-07-19 19:24+0000\n"
|
||||
"PO-Revision-Date: 2025-05-12 14:16+0000\n"
|
||||
"Last-Translator: Felix <xnovaua@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://translations.herculino.com/projects/"
|
||||
@@ -29,10 +29,10 @@ msgstr "Назва групи"
|
||||
#: apps/currencies/forms.py:142 apps/dca/forms.py:49 apps/dca/forms.py:224
|
||||
#: apps/import_app/forms.py:34 apps/rules/forms.py:51 apps/rules/forms.py:93
|
||||
#: apps/rules/forms.py:365 apps/transactions/forms.py:204
|
||||
#: apps/transactions/forms.py:369 apps/transactions/forms.py:416
|
||||
#: apps/transactions/forms.py:776 apps/transactions/forms.py:819
|
||||
#: apps/transactions/forms.py:851 apps/transactions/forms.py:886
|
||||
#: apps/transactions/forms.py:1038 apps/users/forms.py:215
|
||||
#: apps/transactions/forms.py:374 apps/transactions/forms.py:421
|
||||
#: apps/transactions/forms.py:783 apps/transactions/forms.py:826
|
||||
#: apps/transactions/forms.py:858 apps/transactions/forms.py:893
|
||||
#: apps/transactions/forms.py:1045 apps/users/forms.py:215
|
||||
#: apps/users/forms.py:377
|
||||
msgid "Update"
|
||||
msgstr "Оновлення"
|
||||
@@ -43,9 +43,9 @@ msgstr "Оновлення"
|
||||
#: apps/dca/forms.py:57 apps/dca/forms.py:232 apps/import_app/forms.py:42
|
||||
#: apps/rules/forms.py:59 apps/rules/forms.py:101 apps/rules/forms.py:373
|
||||
#: apps/transactions/forms.py:189 apps/transactions/forms.py:213
|
||||
#: apps/transactions/forms.py:378 apps/transactions/forms.py:784
|
||||
#: apps/transactions/forms.py:827 apps/transactions/forms.py:859
|
||||
#: apps/transactions/forms.py:894 apps/transactions/forms.py:1046
|
||||
#: apps/transactions/forms.py:383 apps/transactions/forms.py:791
|
||||
#: apps/transactions/forms.py:834 apps/transactions/forms.py:866
|
||||
#: apps/transactions/forms.py:901 apps/transactions/forms.py:1053
|
||||
#: apps/users/forms.py:223 apps/users/forms.py:385
|
||||
#: templates/account_groups/fragments/list.html:9
|
||||
#: templates/accounts/fragments/list.html:9
|
||||
@@ -79,10 +79,10 @@ msgstr "Новий баланс"
|
||||
#: apps/insights/forms.py:118 apps/rules/forms.py:174 apps/rules/forms.py:189
|
||||
#: apps/rules/models.py:38 apps/rules/models.py:286
|
||||
#: apps/transactions/forms.py:42 apps/transactions/forms.py:256
|
||||
#: apps/transactions/forms.py:450 apps/transactions/forms.py:457
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:317 apps/transactions/models.py:500
|
||||
#: apps/transactions/models.py:700 apps/transactions/models.py:936
|
||||
#: apps/transactions/forms.py:455 apps/transactions/forms.py:462
|
||||
#: apps/transactions/forms.py:664 apps/transactions/forms.py:925
|
||||
#: apps/transactions/models.py:318 apps/transactions/models.py:501
|
||||
#: apps/transactions/models.py:701 apps/transactions/models.py:938
|
||||
#: templates/insights/fragments/category_overview/index.html:63
|
||||
#: templates/insights/fragments/category_overview/index.html:420
|
||||
msgid "Category"
|
||||
@@ -93,10 +93,10 @@ msgstr "Категорія"
|
||||
#: apps/rules/forms.py:177 apps/rules/forms.py:186 apps/rules/models.py:39
|
||||
#: apps/rules/models.py:290 apps/transactions/filters.py:74
|
||||
#: apps/transactions/forms.py:50 apps/transactions/forms.py:264
|
||||
#: apps/transactions/forms.py:466 apps/transactions/forms.py:474
|
||||
#: apps/transactions/forms.py:650 apps/transactions/forms.py:911
|
||||
#: apps/transactions/models.py:323 apps/transactions/models.py:502
|
||||
#: apps/transactions/models.py:704 apps/transactions/models.py:942
|
||||
#: apps/transactions/forms.py:471 apps/transactions/forms.py:479
|
||||
#: apps/transactions/forms.py:657 apps/transactions/forms.py:918
|
||||
#: apps/transactions/models.py:324 apps/transactions/models.py:503
|
||||
#: apps/transactions/models.py:705 apps/transactions/models.py:944
|
||||
#: templates/includes/navbar.html:110
|
||||
#: templates/insights/fragments/category_overview/index.html:35
|
||||
#: templates/tags/fragments/list.html:5 templates/tags/pages/index.html:4
|
||||
@@ -106,7 +106,7 @@ msgstr "Мітки"
|
||||
#: apps/accounts/models.py:12 apps/accounts/models.py:29 apps/dca/models.py:13
|
||||
#: apps/import_app/models.py:14 apps/rules/models.py:13
|
||||
#: apps/transactions/models.py:210 apps/transactions/models.py:235
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:905
|
||||
#: apps/transactions/models.py:259 apps/transactions/models.py:906
|
||||
#: templates/account_groups/fragments/list.html:25
|
||||
#: templates/accounts/fragments/list.html:25
|
||||
#: templates/categories/fragments/table.html:16
|
||||
@@ -173,9 +173,9 @@ msgstr ""
|
||||
#: apps/accounts/models.py:70 apps/rules/forms.py:166 apps/rules/forms.py:179
|
||||
#: apps/rules/models.py:30 apps/rules/models.py:242
|
||||
#: apps/transactions/forms.py:62 apps/transactions/forms.py:276
|
||||
#: apps/transactions/forms.py:642 apps/transactions/forms.py:903
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:460
|
||||
#: apps/transactions/models.py:682 apps/transactions/models.py:911
|
||||
#: apps/transactions/forms.py:649 apps/transactions/forms.py:910
|
||||
#: apps/transactions/models.py:290 apps/transactions/models.py:461
|
||||
#: apps/transactions/models.py:683 apps/transactions/models.py:912
|
||||
msgid "Account"
|
||||
msgstr "Рахунок"
|
||||
|
||||
@@ -475,7 +475,7 @@ msgstr "Суфікс"
|
||||
|
||||
#: apps/currencies/forms.py:69 apps/dca/models.py:158 apps/rules/forms.py:169
|
||||
#: apps/rules/forms.py:182 apps/rules/models.py:33 apps/rules/models.py:254
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:478
|
||||
#: apps/transactions/forms.py:66 apps/transactions/forms.py:483
|
||||
#: apps/transactions/models.py:300
|
||||
#: templates/dca/fragments/strategy/details.html:52
|
||||
#: templates/exchange_rates/fragments/table.html:10
|
||||
@@ -678,11 +678,11 @@ msgstr ""
|
||||
msgid "Create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:425
|
||||
#: apps/dca/forms.py:70 apps/transactions/forms.py:430
|
||||
msgid "From Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:430
|
||||
#: apps/dca/forms.py:76 apps/transactions/forms.py:435
|
||||
msgid "To Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -707,7 +707,7 @@ msgstr ""
|
||||
msgid "You must provide an account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:592
|
||||
#: apps/dca/forms.py:312 apps/transactions/forms.py:597
|
||||
msgid "From and To accounts must be different."
|
||||
msgstr ""
|
||||
|
||||
@@ -726,9 +726,9 @@ msgstr ""
|
||||
|
||||
#: apps/dca/models.py:26 apps/dca/models.py:181 apps/rules/forms.py:173
|
||||
#: apps/rules/forms.py:188 apps/rules/models.py:37 apps/rules/models.py:270
|
||||
#: apps/transactions/forms.py:494 apps/transactions/models.py:313
|
||||
#: apps/transactions/models.py:509 apps/transactions/models.py:710
|
||||
#: apps/transactions/models.py:932
|
||||
#: apps/transactions/forms.py:499 apps/transactions/models.py:314
|
||||
#: apps/transactions/models.py:510 apps/transactions/models.py:711
|
||||
#: apps/transactions/models.py:934
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
@@ -791,7 +791,7 @@ msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:32 apps/export_app/forms.py:137
|
||||
#: apps/transactions/models.py:374 templates/includes/navbar.html:57
|
||||
#: apps/transactions/models.py:375 templates/includes/navbar.html:57
|
||||
#: templates/includes/navbar.html:106
|
||||
#: templates/recurring_transactions/fragments/list_transactions.html:5
|
||||
#: templates/recurring_transactions/fragments/table.html:37
|
||||
@@ -809,23 +809,23 @@ msgstr ""
|
||||
#: apps/rules/forms.py:178 apps/rules/forms.py:187 apps/rules/models.py:40
|
||||
#: apps/rules/models.py:282 apps/transactions/filters.py:81
|
||||
#: apps/transactions/forms.py:58 apps/transactions/forms.py:272
|
||||
#: apps/transactions/forms.py:665 apps/transactions/forms.py:926
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:328
|
||||
#: apps/transactions/models.py:505 apps/transactions/models.py:707
|
||||
#: apps/transactions/models.py:947 templates/entities/fragments/list.html:5
|
||||
#: apps/transactions/forms.py:672 apps/transactions/forms.py:933
|
||||
#: apps/transactions/models.py:273 apps/transactions/models.py:329
|
||||
#: apps/transactions/models.py:506 apps/transactions/models.py:708
|
||||
#: apps/transactions/models.py:949 templates/entities/fragments/list.html:5
|
||||
#: templates/entities/pages/index.html:4 templates/includes/navbar.html:112
|
||||
msgid "Entities"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:56 apps/export_app/forms.py:140
|
||||
#: apps/transactions/models.py:744 templates/includes/navbar.html:76
|
||||
#: apps/transactions/models.py:745 templates/includes/navbar.html:76
|
||||
#: templates/recurring_transactions/fragments/list.html:5
|
||||
#: templates/recurring_transactions/pages/index.html:4
|
||||
msgid "Recurring Transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:62 apps/export_app/forms.py:138
|
||||
#: apps/transactions/models.py:523 templates/includes/navbar.html:74
|
||||
#: apps/transactions/models.py:524 templates/includes/navbar.html:74
|
||||
#: templates/installment_plans/fragments/list.html:5
|
||||
#: templates/installment_plans/pages/index.html:4
|
||||
msgid "Installment Plans"
|
||||
@@ -843,7 +843,7 @@ msgstr ""
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:57
|
||||
#: apps/export_app/forms.py:86 templates/cotton/transaction/item.html:55
|
||||
msgid "DCA"
|
||||
msgstr ""
|
||||
|
||||
@@ -878,7 +878,7 @@ msgstr ""
|
||||
msgid "Update or create transaction actions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:159
|
||||
#: apps/export_app/forms.py:185 templates/cotton/transaction/item.html:172
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:47
|
||||
#: templates/export_app/fragments/restore.html:5
|
||||
#: templates/export_app/pages/index.html:24
|
||||
@@ -1063,16 +1063,16 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:167 apps/rules/forms.py:180 apps/rules/models.py:31
|
||||
#: apps/rules/models.py:246 apps/transactions/models.py:297
|
||||
#: apps/transactions/models.py:465 apps/transactions/models.py:688
|
||||
#: apps/transactions/models.py:918
|
||||
#: apps/transactions/models.py:466 apps/transactions/models.py:689
|
||||
#: apps/transactions/models.py:919
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:168 apps/rules/forms.py:181 apps/rules/models.py:32
|
||||
#: apps/rules/models.py:250 apps/transactions/filters.py:23
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:920
|
||||
#: templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32
|
||||
#: apps/transactions/models.py:299 apps/transactions/models.py:921
|
||||
#: templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:12
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:16
|
||||
msgid "Paid"
|
||||
@@ -1080,34 +1080,34 @@ msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:170 apps/rules/forms.py:183 apps/rules/models.py:34
|
||||
#: apps/rules/models.py:258 apps/transactions/forms.py:70
|
||||
#: apps/transactions/forms.py:481 apps/transactions/forms.py:671
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:483
|
||||
#: apps/transactions/models.py:712
|
||||
#: apps/transactions/forms.py:486 apps/transactions/forms.py:678
|
||||
#: apps/transactions/models.py:301 apps/transactions/models.py:484
|
||||
#: apps/transactions/models.py:713
|
||||
msgid "Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:171 apps/rules/forms.py:184 apps/rules/models.py:35
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:306
|
||||
#: apps/transactions/models.py:693 apps/transactions/models.py:925
|
||||
#: apps/rules/models.py:262 apps/transactions/models.py:307
|
||||
#: apps/transactions/models.py:694 apps/transactions/models.py:927
|
||||
#: templates/insights/fragments/sankey.html:95
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:172 apps/rules/forms.py:185 apps/rules/models.py:14
|
||||
#: apps/rules/models.py:36 apps/rules/models.py:266
|
||||
#: apps/transactions/forms.py:485 apps/transactions/models.py:311
|
||||
#: apps/transactions/models.py:467 apps/transactions/models.py:696
|
||||
#: apps/transactions/models.py:930
|
||||
#: apps/transactions/forms.py:490 apps/transactions/models.py:312
|
||||
#: apps/transactions/models.py:468 apps/transactions/models.py:697
|
||||
#: apps/transactions/models.py:932
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:175 apps/rules/forms.py:190 apps/rules/models.py:274
|
||||
#: apps/transactions/models.py:350 apps/transactions/models.py:952
|
||||
#: apps/transactions/models.py:351 apps/transactions/models.py:954
|
||||
msgid "Internal Note"
|
||||
msgstr ""
|
||||
|
||||
#: apps/rules/forms.py:176 apps/rules/forms.py:191 apps/rules/models.py:278
|
||||
#: apps/transactions/models.py:352 apps/transactions/models.py:954
|
||||
#: apps/transactions/models.py:353 apps/transactions/models.py:956
|
||||
msgid "Internal ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1233,8 +1233,8 @@ msgstr ""
|
||||
msgid "Update or Create Transaction action deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:22
|
||||
#: templates/cotton/transaction/item.html:32 templates/includes/navbar.html:46
|
||||
#: apps/transactions/filters.py:24 templates/cotton/transaction/item.html:20
|
||||
#: templates/cotton/transaction/item.html:30 templates/includes/navbar.html:46
|
||||
#: templates/insights/fragments/category_overview/index.html:46
|
||||
#: templates/transactions/widgets/paid_toggle_button.html:8
|
||||
#: templates/transactions/widgets/unselectable_paid_toggle_button.html:12
|
||||
@@ -1281,41 +1281,46 @@ msgstr ""
|
||||
msgid "Save and add another"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:437
|
||||
msgid "From Amount"
|
||||
#: apps/transactions/forms.py:300
|
||||
msgid "Muted transactions won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:442
|
||||
msgid "From Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:447
|
||||
msgid "To Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:559
|
||||
#: apps/transactions/forms.py:564
|
||||
#: templates/cotton/ui/quick_transactions_buttons.html:40
|
||||
#: templates/cotton/ui/transactions_fab.html:44
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:805
|
||||
#: apps/transactions/forms.py:812
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:837
|
||||
#: apps/transactions/forms.py:844
|
||||
msgid "Entity name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:869
|
||||
#: apps/transactions/forms.py:876
|
||||
msgid "Category name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:871
|
||||
msgid "Muted categories won't count towards your monthly total"
|
||||
#: apps/transactions/forms.py:878
|
||||
msgid "Muted categories won't be displayed on monthly summaries"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/forms.py:1057
|
||||
#: apps/transactions/forms.py:1064
|
||||
msgid "End date should be after the start date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:211
|
||||
#: apps/transactions/models.py:211 apps/transactions/models.py:302
|
||||
#: apps/transactions/models.py:922
|
||||
msgid "Mute"
|
||||
msgstr ""
|
||||
|
||||
@@ -1352,7 +1357,7 @@ msgstr ""
|
||||
msgid "Entity"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:898
|
||||
#: apps/transactions/models.py:284 apps/transactions/models.py:899
|
||||
#: templates/calendar_view/fragments/list.html:42
|
||||
#: templates/calendar_view/fragments/list.html:44
|
||||
#: templates/calendar_view/fragments/list.html:52
|
||||
@@ -1364,7 +1369,7 @@ msgstr ""
|
||||
msgid "Income"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:899
|
||||
#: apps/transactions/models.py:285 apps/transactions/models.py:900
|
||||
#: templates/calendar_view/fragments/list.html:46
|
||||
#: templates/calendar_view/fragments/list.html:48
|
||||
#: templates/calendar_view/fragments/list.html:56
|
||||
@@ -1375,133 +1380,138 @@ msgstr ""
|
||||
msgid "Expense"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:339 apps/transactions/models.py:522
|
||||
#: apps/transactions/models.py:340 apps/transactions/models.py:523
|
||||
msgid "Installment Plan"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:348 apps/transactions/models.py:743
|
||||
#: apps/transactions/models.py:349 apps/transactions/models.py:744
|
||||
msgid "Recurring Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:356
|
||||
#: apps/transactions/models.py:357
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:361
|
||||
#: apps/transactions/models.py:362
|
||||
msgid "Deleted At"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:373
|
||||
#: apps/transactions/models.py:374
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:445 templates/tags/fragments/table.html:71
|
||||
#: apps/transactions/models.py:446 templates/tags/fragments/table.html:71
|
||||
msgid "No tags"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:446
|
||||
#: apps/transactions/models.py:447
|
||||
msgid "No category"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:448
|
||||
#: apps/transactions/models.py:449
|
||||
msgid "No description"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:454
|
||||
#: apps/transactions/models.py:455
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:455 apps/users/models.py:464
|
||||
#: apps/transactions/models.py:456 apps/users/models.py:464
|
||||
#: templates/includes/navbar.html:26
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:456
|
||||
#: apps/transactions/models.py:457
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:457
|
||||
#: apps/transactions/models.py:458
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:470
|
||||
#: apps/transactions/models.py:471
|
||||
msgid "Number of Installments"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:475
|
||||
#: apps/transactions/models.py:476
|
||||
msgid "Installment Start"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:476
|
||||
#: apps/transactions/models.py:477
|
||||
msgid "The installment number to start counting from"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:481 apps/transactions/models.py:716
|
||||
#: apps/transactions/models.py:482 apps/transactions/models.py:717
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:485 apps/transactions/models.py:717
|
||||
#: apps/transactions/models.py:486 apps/transactions/models.py:718
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:490
|
||||
#: apps/transactions/models.py:491
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:493
|
||||
#: apps/transactions/models.py:494
|
||||
msgid "Installment Amount"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:512 apps/transactions/models.py:733
|
||||
#: apps/transactions/models.py:513 apps/transactions/models.py:734
|
||||
msgid "Add description to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:515 apps/transactions/models.py:736
|
||||
#: apps/transactions/models.py:516 apps/transactions/models.py:737
|
||||
msgid "Add notes to transactions"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:675
|
||||
#: apps/transactions/models.py:676
|
||||
msgid "day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:676
|
||||
#: apps/transactions/models.py:677
|
||||
msgid "week(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:677
|
||||
#: apps/transactions/models.py:678
|
||||
msgid "month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:678
|
||||
#: apps/transactions/models.py:679
|
||||
msgid "year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:680
|
||||
#: apps/transactions/models.py:681
|
||||
#: templates/recurring_transactions/fragments/list.html:24
|
||||
msgid "Paused"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:719
|
||||
#: apps/transactions/models.py:720
|
||||
msgid "Recurrence Type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:722
|
||||
#: apps/transactions/models.py:723
|
||||
msgid "Recurrence Interval"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:726
|
||||
#: apps/transactions/models.py:727
|
||||
msgid "Last Generated Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:729
|
||||
#: apps/transactions/models.py:730
|
||||
msgid "Last Generated Reference Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:964 templates/cotton/ui/transactions_fab.html:59
|
||||
#: apps/transactions/models.py:966
|
||||
#: apps/transactions/views/quick_transactions.py:177
|
||||
#: apps/transactions/views/quick_transactions.py:186
|
||||
#: apps/transactions/views/quick_transactions.py:188
|
||||
#: apps/transactions/views/quick_transactions.py:190
|
||||
#: templates/cotton/ui/transactions_fab.html:59
|
||||
msgid "Quick Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/models.py:965 templates/includes/navbar.html:72
|
||||
#: apps/transactions/models.py:967 templates/includes/navbar.html:72
|
||||
#: templates/quick_transactions/pages/index.html:5
|
||||
#: templates/quick_transactions/pages/index.html:11
|
||||
msgid "Quick Transactions"
|
||||
@@ -1592,7 +1602,8 @@ msgstr ""
|
||||
msgid "Installment Plan deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:45 apps/users/views.py:152
|
||||
#: apps/transactions/views/quick_transactions.py:45
|
||||
#: apps/transactions/views/quick_transactions.py:222 apps/users/views.py:152
|
||||
msgid "Item added successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1606,7 +1617,7 @@ msgstr ""
|
||||
msgid "Item deleted successfully"
|
||||
msgstr "Рахунок успішно видалено"
|
||||
|
||||
#: apps/transactions/views/quick_transactions.py:147
|
||||
#: apps/transactions/views/quick_transactions.py:155
|
||||
#: apps/transactions/views/transactions.py:52
|
||||
#: apps/transactions/views/transactions.py:148
|
||||
msgid "Transaction added successfully"
|
||||
@@ -1888,8 +1899,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:36
|
||||
#: templates/accounts/fragments/list.html:41
|
||||
#: templates/categories/fragments/table.html:29
|
||||
#: templates/cotton/transaction/item.html:131
|
||||
#: templates/cotton/ui/transactions_action_bar.html:49
|
||||
#: templates/cotton/transaction/item.html:129
|
||||
#: templates/cotton/ui/transactions_action_bar.html:52
|
||||
#: templates/currencies/fragments/list.html:37
|
||||
#: templates/dca/fragments/strategy/details.html:67
|
||||
#: templates/dca/fragments/strategy/list.html:36
|
||||
@@ -1912,10 +1923,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:43
|
||||
#: templates/accounts/fragments/list.html:48
|
||||
#: templates/categories/fragments/table.html:36
|
||||
#: templates/cotton/transaction/item.html:146
|
||||
#: templates/cotton/transaction/item.html:165
|
||||
#: templates/cotton/transaction/item.html:136
|
||||
#: templates/cotton/transaction/item.html:178
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:55
|
||||
#: templates/cotton/ui/transactions_action_bar.html:86
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/currencies/fragments/list.html:44
|
||||
#: templates/dca/fragments/strategy/details.html:75
|
||||
#: templates/dca/fragments/strategy/list.html:44
|
||||
@@ -1939,10 +1950,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:47
|
||||
#: templates/accounts/fragments/list.html:52
|
||||
#: templates/categories/fragments/table.html:41
|
||||
#: templates/cotton/transaction/item.html:150
|
||||
#: templates/cotton/transaction/item.html:169
|
||||
#: templates/cotton/transaction/item.html:140
|
||||
#: templates/cotton/transaction/item.html:182
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:88
|
||||
#: templates/cotton/ui/transactions_action_bar.html:91
|
||||
#: templates/currencies/fragments/list.html:48
|
||||
#: templates/dca/fragments/strategy/details.html:80
|
||||
#: templates/dca/fragments/strategy/list.html:48
|
||||
@@ -1969,10 +1980,10 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:48
|
||||
#: templates/accounts/fragments/list.html:53
|
||||
#: templates/categories/fragments/table.html:42
|
||||
#: templates/cotton/transaction/item.html:151
|
||||
#: templates/cotton/transaction/item.html:170
|
||||
#: templates/cotton/transaction/item.html:141
|
||||
#: templates/cotton/transaction/item.html:183
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:58
|
||||
#: templates/cotton/ui/transactions_action_bar.html:89
|
||||
#: templates/cotton/ui/transactions_action_bar.html:92
|
||||
#: templates/currencies/fragments/list.html:49
|
||||
#: templates/dca/fragments/strategy/details.html:81
|
||||
#: templates/dca/fragments/strategy/list.html:49
|
||||
@@ -1991,8 +2002,8 @@ msgstr ""
|
||||
#: templates/account_groups/fragments/list.html:49
|
||||
#: templates/accounts/fragments/list.html:54
|
||||
#: templates/categories/fragments/table.html:43
|
||||
#: templates/cotton/transaction/item.html:152
|
||||
#: templates/cotton/transaction/item.html:171
|
||||
#: templates/cotton/transaction/item.html:142
|
||||
#: templates/cotton/transaction/item.html:184
|
||||
#: templates/currencies/fragments/list.html:50
|
||||
#: templates/dca/fragments/strategy/details.html:82
|
||||
#: templates/dca/fragments/strategy/list.html:50
|
||||
@@ -2153,8 +2164,25 @@ msgstr ""
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:138
|
||||
#: templates/cotton/ui/transactions_action_bar.html:78
|
||||
#: templates/cotton/transaction/item.html:154
|
||||
#: templates/cotton/transaction/item.html:160
|
||||
msgid "Show on summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:155
|
||||
msgid "Controlled by category"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:162
|
||||
msgid "Hide from summaries"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:164
|
||||
msgid "Add as quick transaction"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/transaction/item.html:166
|
||||
#: templates/cotton/ui/transactions_action_bar.html:81
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -2194,17 +2222,17 @@ msgid "final total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:31
|
||||
#: templates/cotton/ui/transactions_action_bar.html:34
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:37
|
||||
#: templates/cotton/ui/transactions_action_bar.html:40
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:59
|
||||
#: templates/cotton/ui/transactions_action_bar.html:90
|
||||
#: templates/cotton/ui/transactions_action_bar.html:93
|
||||
msgid "Yes, delete them!"
|
||||
msgstr ""
|
||||
|
||||
@@ -2215,49 +2243,49 @@ msgstr ""
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:189
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:209
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:229
|
||||
#: templates/cotton/ui/transactions_action_bar.html:136
|
||||
#: templates/cotton/ui/transactions_action_bar.html:160
|
||||
#: templates/cotton/ui/transactions_action_bar.html:180
|
||||
#: templates/cotton/ui/transactions_action_bar.html:200
|
||||
#: templates/cotton/ui/transactions_action_bar.html:220
|
||||
#: templates/cotton/ui/transactions_action_bar.html:240
|
||||
#: templates/cotton/ui/transactions_action_bar.html:260
|
||||
#: templates/cotton/ui/transactions_action_bar.html:139
|
||||
#: templates/cotton/ui/transactions_action_bar.html:163
|
||||
#: templates/cotton/ui/transactions_action_bar.html:183
|
||||
#: templates/cotton/ui/transactions_action_bar.html:203
|
||||
#: templates/cotton/ui/transactions_action_bar.html:223
|
||||
#: templates/cotton/ui/transactions_action_bar.html:243
|
||||
#: templates/cotton/ui/transactions_action_bar.html:263
|
||||
msgid "copied!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:114
|
||||
#: templates/cotton/ui/transactions_action_bar.html:54
|
||||
#: templates/cotton/ui/transactions_action_bar.html:145
|
||||
#: templates/cotton/ui/transactions_action_bar.html:57
|
||||
#: templates/cotton/ui/transactions_action_bar.html:148
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:122
|
||||
#: templates/cotton/ui/transactions_action_bar.html:153
|
||||
#: templates/cotton/ui/transactions_action_bar.html:156
|
||||
msgid "Flat Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:142
|
||||
#: templates/cotton/ui/transactions_action_bar.html:173
|
||||
#: templates/cotton/ui/transactions_action_bar.html:176
|
||||
msgid "Real Total"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:162
|
||||
#: templates/cotton/ui/transactions_action_bar.html:193
|
||||
#: templates/cotton/ui/transactions_action_bar.html:196
|
||||
msgid "Mean"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:182
|
||||
#: templates/cotton/ui/transactions_action_bar.html:213
|
||||
#: templates/cotton/ui/transactions_action_bar.html:216
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:202
|
||||
#: templates/cotton/ui/transactions_action_bar.html:233
|
||||
#: templates/cotton/ui/transactions_action_bar.html:236
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/deleted_transactions_action_bar.html:222
|
||||
#: templates/cotton/ui/transactions_action_bar.html:253
|
||||
#: templates/cotton/ui/transactions_action_bar.html:256
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
@@ -2276,11 +2304,11 @@ msgstr ""
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:62
|
||||
#: templates/cotton/ui/transactions_action_bar.html:65
|
||||
msgid "Mark as unpaid"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cotton/ui/transactions_action_bar.html:69
|
||||
#: templates/cotton/ui/transactions_action_bar.html:72
|
||||
msgid "Mark as paid"
|
||||
msgstr ""
|
||||
|
||||
@@ -2966,25 +2994,25 @@ msgstr ""
|
||||
msgid "Newest first"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:17
|
||||
#: templates/net_worth/net_worth.html:18
|
||||
#: templates/yearly_overview/pages/overview_by_currency.html:9
|
||||
msgid "By currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:52
|
||||
#: templates/net_worth/net_worth.html:53
|
||||
msgid "Consolidated"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:81
|
||||
#: templates/net_worth/net_worth.html:82
|
||||
#: templates/yearly_overview/pages/overview_by_account.html:7
|
||||
msgid "By account"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:188
|
||||
#: templates/net_worth/net_worth.html:189
|
||||
msgid "Evolution by currency"
|
||||
msgstr ""
|
||||
|
||||
#: templates/net_worth/net_worth.html:252
|
||||
#: templates/net_worth/net_worth.html:253
|
||||
msgid "Evolution by account"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="show-loading" hx-get="{% url 'calendar_list' month=month year=year %}"
|
||||
hx-trigger="load, updated from:window, selective_update from:window"></div>
|
||||
hx-trigger="load, updated from:window, selective_update from:window, every 10m"></div>
|
||||
</div>
|
||||
</div>
|
||||
<c-ui.transactions_fab></c-ui.transactions_fab>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{% load markdown %}
|
||||
{% load i18n %}
|
||||
<div class="transaction {% if transaction.type == "EX" %}expense{% else %}income{% endif %}">
|
||||
<div class="transaction {% if transaction.type == "EX" %}expense{% else %}income{% endif %} tw:group/transaction tw:relative tw:hover:z-10">
|
||||
<div class="d-flex my-1">
|
||||
{% if not disable_selection %}
|
||||
<label class="px-3 d-flex align-items-center justify-content-center">
|
||||
@@ -9,11 +9,9 @@
|
||||
</label>
|
||||
{% endif %}
|
||||
<div class="tw:border-s-4 tw:border-e-0 tw:border-t-0 tw:border-b-0 border-bottom
|
||||
tw:hover:bg-zinc-900 p-2 {% if transaction.account.is_asset %}tw:border-dashed{% else %}tw:border-solid{% endif %}
|
||||
{% if transaction.type == "EX" %}tw:border-red-500{% else %}tw:border-green-500{% endif %} tw:relative
|
||||
w-100 transaction-item"
|
||||
_="on mouseover remove .{'tw:invisible'} from the first .transaction-actions in me end
|
||||
on mouseout add .{'tw:invisible'} to the first .transaction-actions in me end">
|
||||
tw:hover:bg-zinc-900 p-2 {% if transaction.account.is_asset %}tw:border-dashed{% else %}tw:border-solid{% endif %}
|
||||
{% if transaction.type == "EX" %}tw:border-red-500{% else %}tw:border-green-500{% endif %} tw:relative
|
||||
w-100 transaction-item">
|
||||
<div class="row font-monospace tw:text-sm align-items-center">
|
||||
<div
|
||||
class="col-lg-auto col-12 d-flex align-items-center tw:text-2xl tw:lg:text-xl text-lg-center text-center p-0 ps-1">
|
||||
@@ -35,7 +33,7 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="col-lg col-12">
|
||||
<div class="col-lg col-12 {% if transaction.category.mute or transaction.mute %}tw:brightness-80{% endif %}">
|
||||
{# Date#}
|
||||
<div class="row mb-2 mb-lg-1 tw:text-gray-400">
|
||||
<div class="col-auto pe-1"><i class="fa-solid fa-calendar fa-fw me-1 fa-xs"></i></div>
|
||||
@@ -48,13 +46,13 @@
|
||||
<span class="{% if transaction.description %}me-2{% endif %}">{{ transaction.description }}</span>
|
||||
{% if transaction.installment_plan and transaction.installment_id %}
|
||||
<span
|
||||
class="badge text-bg-secondary">{{ transaction.installment_id }}/{{ transaction.installment_plan.installment_total_number }}</span>
|
||||
class="badge text-bg-secondary mx-1">{{ transaction.installment_id }}/{{ transaction.installment_plan.installment_total_number }}</span>
|
||||
{% endif %}
|
||||
{% if transaction.recurring_transaction %}
|
||||
<span class="text-primary tw:text-xs"><i class="fa-solid fa-arrows-rotate fa-fw"></i></span>
|
||||
<span class="text-primary tw:text-xs mx-1"><i class="fa-solid fa-arrows-rotate fa-fw"></i></span>
|
||||
{% endif %}
|
||||
{% if transaction.dca_expense_entries.all or transaction.dca_income_entries.all %}
|
||||
<span class="badge text-bg-secondary">{% trans 'DCA' %}</span>
|
||||
<span class="badge text-bg-secondary mx-1">{% trans 'DCA' %}</span>
|
||||
{% endif %}
|
||||
{% endspaceless %}
|
||||
</div>
|
||||
@@ -93,7 +91,7 @@
|
||||
{% endwith %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-auto col-12 text-lg-end align-self-end">
|
||||
<div class="col-lg-auto col-12 text-lg-end align-self-end {% if transaction.category.mute or transaction.mute %}tw:brightness-80{% endif %}">
|
||||
<div class="main-amount mb-2 mb-lg-0">
|
||||
<c-amount.display
|
||||
:amount="transaction.amount"
|
||||
@@ -122,7 +120,7 @@
|
||||
<div>
|
||||
{# Item actions#}
|
||||
<div
|
||||
class="transaction-actions tw:absolute! tw:left-1/2 tw:top-0 tw:-translate-x-1/2 tw:-translate-y-1/2 tw:invisible d-flex flex-row card">
|
||||
class="transaction-actions tw:absolute! tw:left-1/2 tw:top-0 tw:-translate-x-1/2 tw:-translate-y-1/2 tw:invisible tw:group-hover/transaction:visible d-flex flex-row card">
|
||||
<div class="card-body p-1 shadow-lg">
|
||||
{% if not transaction.deleted %}
|
||||
<a class="btn btn-secondary btn-sm transaction-action"
|
||||
@@ -132,14 +130,6 @@
|
||||
hx-get="{% url 'transaction_edit' transaction_id=transaction.id %}"
|
||||
hx-target="#generic-offcanvas" hx-swap="innerHTML">
|
||||
<i class="fa-solid fa-pencil fa-fw"></i></a>
|
||||
<a class="btn btn-secondary btn-sm transaction-action"
|
||||
role="button"
|
||||
data-bs-toggle="tooltip"
|
||||
data-bs-title="{% translate "Duplicate" %}"
|
||||
hx-get="{% url 'transaction_clone' transaction_id=transaction.id %}"
|
||||
_="on click if event.ctrlKey set @hx-get to `{% url 'transaction_clone' transaction_id=transaction.id %}?edit=true` then call htmx.process(me) end then trigger ready"
|
||||
hx-trigger="ready">
|
||||
<i class="fa-solid fa-clone fa-fw"></i></a>
|
||||
<a class="btn btn-secondary btn-sm transaction-action"
|
||||
role="button"
|
||||
data-bs-toggle="tooltip"
|
||||
@@ -152,6 +142,29 @@
|
||||
data-confirm-text="{% translate "Yes, delete it!" %}"
|
||||
_="install prompt_swal"><i class="fa-solid fa-trash fa-fw text-danger"></i>
|
||||
</a>
|
||||
<button class="btn btn-secondary btn-sm transaction-action" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="fa-solid fa-ellipsis fa-fw"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
{% if transaction.category.mute %}
|
||||
<li>
|
||||
<a class="dropdown-item disabled d-flex align-items-center" aria-disabled="true">
|
||||
<i class="fa-solid fa-eye fa-fw me-2"></i>
|
||||
<div>
|
||||
{% translate 'Show on summaries' %}
|
||||
<div class="d-block text-body-secondary tw:text-xs tw:font-medium">{% translate 'Controlled by category' %}</div>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
{% elif transaction.mute %}
|
||||
<li><a class="dropdown-item" href="#" hx-get="{% url 'transaction_mute' transaction_id=transaction.id %}" hx-target="closest .transaction" hx-swap="outerHTML"><i class="fa-solid fa-eye fa-fw me-2"></i>{% translate 'Show on summaries' %}</a></li>
|
||||
{% else %}
|
||||
<li><a class="dropdown-item" href="#" hx-get="{% url 'transaction_mute' transaction_id=transaction.id %}" hx-target="closest .transaction" hx-swap="outerHTML"><i class="fa-solid fa-eye-slash fa-fw me-2"></i>{% translate 'Hide from summaries' %}</a></li>
|
||||
{% endif %}
|
||||
<li><a class="dropdown-item" href="#" hx-get="{% url 'quick_transaction_add_as_quick_transaction' transaction_id=transaction.id %}"><i class="fa-solid fa-person-running fa-fw me-2"></i>{% translate 'Add as quick transaction' %}</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="#" hx-get="{% url 'transaction_clone' transaction_id=transaction.id %}"><i class="fa-solid fa-clone fa-fw me-2"></i>{% translate 'Duplicate' %}</a></li>
|
||||
</ul>
|
||||
{% else %}
|
||||
<a class="btn btn-secondary btn-sm transaction-action"
|
||||
role="button"
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
end
|
||||
else
|
||||
if #actions-bar
|
||||
remove .tw:hidden from #actions-bar
|
||||
set #selected-count's innerHTML to length of <input[type='checkbox']:checked/> in #transactions-list
|
||||
then remove .tw:hidden from #actions-bar
|
||||
then trigger selected_transactions_updated
|
||||
end
|
||||
end
|
||||
@@ -19,6 +20,8 @@
|
||||
<div class="card slide-in-bottom">
|
||||
<div class="card-body p-2 d-flex justify-content-between align-items-center gap-3">
|
||||
{% spaceless %}
|
||||
<div class="tw:font-bold tw:text-md ms-2" id="selected-count">0</div>
|
||||
<div class="vr tw:align-middle"></div>
|
||||
<div class="dropdown">
|
||||
<button class="btn btn-secondary btn-sm dropdown-toggle" type="button" data-bs-toggle="dropdown"
|
||||
aria-expanded="false">
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
<div id="summary"
|
||||
hx-get="{% url 'monthly_summary' month=month year=year %}"
|
||||
class="show-loading"
|
||||
hx-trigger="load, updated from:window, selective_update from:window">
|
||||
hx-trigger="load, updated from:window, selective_update from:window, every 10m">
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade {% if summary_tab == 'currency' %}show active{% endif %}"
|
||||
@@ -115,7 +115,7 @@
|
||||
<div id="currency-summary"
|
||||
hx-get="{% url 'monthly_currency_summary' month=month year=year %}"
|
||||
class="show-loading"
|
||||
hx-trigger="load, updated from:window, selective_update from:window">
|
||||
hx-trigger="load, updated from:window, selective_update from:window, every 10m">
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade {% if summary_tab == 'account' %}show active{% endif %}"
|
||||
@@ -126,7 +126,7 @@
|
||||
<div id="account-summary"
|
||||
hx-get="{% url 'monthly_account_summary' month=month year=year %}"
|
||||
class="show-loading"
|
||||
hx-trigger="load, updated from:window, selective_update from:window">
|
||||
hx-trigger="load, updated from:window, selective_update from:window, every 10m">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -191,7 +191,7 @@
|
||||
<div id="transactions"
|
||||
class="show-loading"
|
||||
hx-get="{% url 'monthly_transactions_list' month=month year=year %}"
|
||||
hx-trigger="load, updated from:window" hx-include="#filter, #order">
|
||||
hx-trigger="load, updated from:window, every 10m" hx-include="#filter, #order">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
{% block title %}{% if type == "current" %}{% translate 'Current Net Worth' %}{% else %}{% translate 'Projected Net Worth' %}{% endif %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div hx-trigger="every 60m" class="show-loading" hx-get="" hx-target="body">
|
||||
<div class="container px-md-3 py-3" _="init call initializeAccountChart() then initializeCurrencyChart() end">
|
||||
<div class="row gx-xl-4 gy-3 mb-4">
|
||||
<div class="col-12 col-xl-5">
|
||||
@@ -318,5 +319,6 @@
|
||||
call currencyChart.update()
|
||||
end
|
||||
</script>
|
||||
|
||||
</div>
|
||||
<c-ui.transactions_fab></c-ui.transactions_fab>
|
||||
{% endblock %}
|
||||
|
||||
@@ -102,4 +102,5 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<c-ui.transactions_fab></c-ui.transactions_fab>
|
||||
{% endblock %}
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
<div id="data-content"
|
||||
class="show-loading"
|
||||
hx-get="{% url 'yearly_overview_account_data' year=year %}"
|
||||
hx-trigger="load"
|
||||
hx-trigger="load, every 10m"
|
||||
hx-include="[name='account'], [name='month']"
|
||||
hx-swap="innerHTML">
|
||||
</div>
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
<div id="data-content"
|
||||
class="show-loading"
|
||||
hx-get="{% url 'yearly_overview_currency_data' year=year %}"
|
||||
hx-trigger="load"
|
||||
hx-trigger="load, every 10m"
|
||||
hx-include="[name='currency'], [name='month']"
|
||||
hx-swap="innerHTML">
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user