Remove some debug info.

This commit is contained in:
James Cole
2021-03-24 19:28:07 +01:00
parent 72deff81f9
commit eac2293778
39 changed files with 51 additions and 27 deletions

View File

@@ -29,7 +29,7 @@
<div :aria-valuenow="budgetLimit.pctGreen" :style="'width: '+ budgetLimit.pctGreen + '%;'"
aria-valuemax="100" aria-valuemin="0" class="progress-bar bg-success progress-bar-striped" role="progressbar">
<span v-if="budgetLimit.pctGreen > 35">
A {{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
{{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
<!-- -->
</span>
@@ -39,20 +39,20 @@
<div :aria-valuenow="budgetLimit.pctOrange" :style="'width: '+ budgetLimit.pctOrange + '%;'"
aria-valuemax="100" aria-valuemin="0" class="progress-bar bg-warning progress-bar-striped" role="progressbar">
<span v-if="budgetLimit.pctRed <= 50 && budgetLimit.pctOrange > 35">
B {{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
{{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
</span>
</div>
<div :aria-valuenow="budgetLimit.pctRed" :style="'width: '+ budgetLimit.pctRed + '%;'"
aria-valuemax="100" aria-valuemin="0" class="progress-bar bg-danger progress-bar-striped" role="progressbar">
<span v-if="budgetLimit.pctOrange <= 50 && budgetLimit.pctRed > 35" class="text-muted">
C {{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
{{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
</span>
</div>
<!-- amount if bar is very small -->
<span v-if="budgetLimit.pctGreen <= 35 && 0 === budgetLimit.pctOrange && 0 === budgetLimit.pctRed && 0 !== budgetLimit.pctGreen">
&nbsp; D {{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
<span v-if="budgetLimit.pctGreen <= 35 && 0 === budgetLimit.pctOrange && 0 === budgetLimit.pctRed && 0 !== budgetLimit.pctGreen" style="line-height: 16px;">
&nbsp; {{ $t('firefly.spent_x_of_y', {amount: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.spent), total: Intl.NumberFormat(locale, {style: 'currency', currency: budgetLimit.currency_code}).format(budgetLimit.amount)}) }}
</span>
</div>

View File

@@ -77,7 +77,7 @@
"after_update_create_another": "Na het opslaan terug om door te gaan met wijzigen.",
"transaction_updated_no_changes": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID}<\/a> (\"{title}\") is niet gewijzigd.",
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID}<\/a> (\"{title}\") is ge\u00fcpdatet.",
"spent_x_of_y": "Spent {amount} of {total}",
"spent_x_of_y": "{amount} van {total} uitgegeven",
"reset_after": "Reset formulier na opslaan",
"bill_paid_on": "Betaald op {date}",
"first_split_decides": "De eerste split bepaalt wat hier staat",

View File

@@ -3183,9 +3183,9 @@ ekko-lightbox@^5.3.0:
integrity sha512-mbacwySuVD3Ad6F2hTkjSTvJt59bcVv2l/TmBerp4xZnLak8tPtA4AScUn4DL42c1ksTiAO6sGhJZ52P/1Qgew==
electron-to-chromium@^1.3.649:
version "1.3.697"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.697.tgz#4ba8af135d72d06534bd78f68d1be0dca3d2c590"
integrity sha512-VTAS+IWwGlfaL7VtfUMzFeV55PT/HglNFqQ6eW9E3PfjvPqhZfqJj+8dd9zrqrJYcouUfCgQw0OIse85Dz9V9Q==
version "1.3.698"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.698.tgz#5de813960f23581a268718a0058683dffa15d221"
integrity sha512-VEXDzYblnlT+g8Q3gedwzgKOso1evkeJzV8lih7lV8mL8eAnGVnKyC3KsFT6S+R5PQO4ffdr1PI16/ElibY/kQ==
elliptic@^6.5.3:
version "6.5.4"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -9,20 +9,20 @@ Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,934.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M0 4670 l0 -4670 4029 0 4030 0 76 137 c115 208 332 653 428 878 430
1013 664 2020 717 3090 21 422 4 977 -46 1535 -16 186 -60 549 -66 556 -8 7
-200 44 -335 63 -600 87 -1195 15 -1613 -194 -61 -30 -110 -57 -110 -59 0 -2
44 -39 98 -82 327 -261 642 -670 853 -1108 139 -290 160 -382 162 -706 1 -259
-26 -423 -103 -627 -210 -559 -750 -915 -1517 -1000 -152 -17 -152 -17 -255 6
-392 87 -738 269 -950 500 -348 379 -449 949 -292 1649 76 341 229 763 389
1072 25 46 43 85 42 85 -8 5 -155 48 -217 64 -181 46 -267 55 -500 56 -197 0
-240 -3 -340 -23 -559 -114 -1037 -463 -1464 -1071 -218 -311 -439 -745 -581
-1141 -27 -74 -52 -139 -55 -143 -4 -4 -9 100 -13 233 -5 250 4 568 23 744 66
618 252 1095 597 1526 88 110 312 336 433 435 287 237 592 362 1045 427 60 9
203 13 430 13 364 -1 486 -11 815 -71 139 -25 504 -112 575 -137 l40 -14 150
77 c828 423 1681 517 2512 274 l22 -6 -30 113 c-206 778 -504 1400 -967 2022
l-125 167 -3943 0 -3944 0 0 -4670z"/>
<path d="M6332 5277 c-151 -311 -266 -636 -329 -937 -24 -111 -27 -148 -27
<path d="M0 4670 l0 -4670 4469 0 4470 0 16 58 c38 127 126 490 160 658 183
903 218 1756 119 2864 -16 186 -60 549 -66 556 -8 7 -200 44 -335 63 -600 87
-1195 15 -1613 -194 -61 -30 -110 -57 -110 -59 0 -2 44 -39 98 -82 327 -261
642 -670 853 -1108 139 -290 160 -382 162 -706 1 -259 -26 -423 -103 -627
-210 -559 -750 -915 -1517 -1000 -152 -17 -152 -17 -255 6 -392 87 -738 269
-950 500 -348 379 -449 949 -292 1649 76 341 229 763 389 1072 25 46 43 85 42
85 -8 5 -155 48 -217 64 -181 46 -267 55 -500 56 -197 0 -240 -3 -340 -23
-559 -114 -1037 -463 -1464 -1071 -218 -311 -439 -745 -581 -1141 -27 -74 -52
-139 -55 -143 -4 -4 -9 100 -13 233 -5 250 4 568 23 744 66 618 252 1095 597
1526 88 110 312 336 433 435 287 237 592 362 1045 427 60 9 203 13 430 13 364
-1 486 -11 815 -71 139 -25 504 -112 575 -137 l40 -14 150 77 c828 423 1681
517 2512 274 l22 -6 -30 113 c-264 996 -688 1764 -1417 2563 -144 156 -612
622 -795 788 -349 319 -732 579 -1198 814 l-165 84 -2702 0 -2702 0 0 -4670z"/>
<path d="M6332 3217 c-151 -311 -266 -636 -329 -937 -24 -111 -27 -148 -27
-325 -1 -161 2 -213 17 -265 57 -212 193 -348 407 -410 56 -16 113 -23 225
-27 l150 -5 65 42 c232 151 373 337 416 550 32 162 5 320 -90 515 -60 123
-294 479 -411 625 -134 169 -316 340 -361 340 -7 0 -35 -47 -62 -103z"/>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Добре дошли в Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Vítejte ve Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'Die erste Aufteilung bestimmt den Wert dieses Feldes',
'first_split_overrules_source' => 'Die erste Aufteilung könnte das Quellkonto überschreiben',
'first_split_overrules_destination' => 'Die erste Aufteilung könnte das Zielkonto überschreiben',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Willkommen bei Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'Ο πρώτος διαχωρισμός καθορίζει την τιμή αυτού του πεδίου',
'first_split_overrules_source' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προέλευσης',
'first_split_overrules_destination' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προορισμού',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Καλωσήρθατε στο Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Welcome to Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'La primera división determina el valor de este campo',
'first_split_overrules_source' => 'La primera división puede anular la cuenta de origen',
'first_split_overrules_destination' => 'La primera división puede anular la cuenta de destino',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Bienvenido a Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Tervetuloa Firefly III:een!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'La première ventilation détermine la valeur de ce champ',
'first_split_overrules_source' => 'La première ventilation peut remplacer le compte source',
'first_split_overrules_destination' => 'La première ventilation peut remplacer le compte de destination',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Bienvenue sur Firefly III !',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Üdvözöli a Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Welcome to Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'La prima suddivisione determina il valore di questo campo',
'first_split_overrules_source' => 'La prima suddivisione potrebbe sovrascrivere l\'account di origine',
'first_split_overrules_destination' => 'La prima suddivisione potrebbe sovrascrivere l\'account di destinazione',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Benvenuto in Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Velkommen til Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'De eerste split bepaalt wat hier staat',
'first_split_overrules_source' => 'De eerste split kan de bronrekening overschrijven',
'first_split_overrules_destination' => 'De eerste split kan de doelrekening overschrijven',
'spent_x_of_y' => '{amount} van {total} uitgegeven',
// new user:
'welcome' => 'Welkom bij Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'Pierwszy podział określa wartość tego pola',
'first_split_overrules_source' => 'Pierwszy podział może nadpisać konto źródłowe',
'first_split_overrules_destination' => 'Pierwszy podział może nadpisać konto docelowe',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Witaj w Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'A primeira divisão determina o valor deste campo',
'first_split_overrules_source' => 'A primeira divisão pode anular a conta de origem',
'first_split_overrules_destination' => 'A primeira divisão pode anular a conta de destino',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Bem Vindo ao Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'A primeira divisão determina o valor deste campo',
'first_split_overrules_source' => 'A primeira divisão pode anular a conta de origem',
'first_split_overrules_destination' => 'A primeira divisão pode anular a conta de destino',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Bem vindo ao Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Bine ați venit!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'В данном поле используется значение из первой части разделенной транзакции',
'first_split_overrules_source' => 'Значение из первой части транзакции может изменить счет источника',
'first_split_overrules_destination' => 'Значение из первой части транзакции может изменить счет назначения',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Добро пожаловать в Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Vitajte ve Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Välkommen till Firefly III!',

View File

@@ -1244,6 +1244,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Firefly III\'e hoşgeldiniz!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => 'Chào mừng đến với Firefly III!',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => '首笔拆分决定此字段的值',
'first_split_overrules_source' => '首笔拆分可能覆盖来源账户',
'first_split_overrules_destination' => '首笔拆分可能覆盖目标账户',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => '欢迎使用 Firefly III',

View File

@@ -1243,6 +1243,7 @@ return [
'first_split_decides' => 'The first split determines the value of this field',
'first_split_overrules_source' => 'The first split may overrule the source account',
'first_split_overrules_destination' => 'The first split may overrule the destination account',
'spent_x_of_y' => 'Spent {amount} of {total}',
// new user:
'welcome' => '歡迎使用 Firefly III',