mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix minor typos
This commit is contained in:
parent
2df390065b
commit
2c9ac0982a
6
public/v1/js/ff/import/status.js
vendored
6
public/v1/js/ff/import/status.js
vendored
@ -282,10 +282,10 @@ function reportOnErrors(data) {
|
||||
|
||||
if (data.errors.length === 1) {
|
||||
$('#import-status-error-intro').text(langImportSingleError);
|
||||
//'An error has occured during the import. The import can continue, however.'
|
||||
//'An error has occurred during the import. The import can continue, however.'
|
||||
}
|
||||
if (data.errors.length > 1) {
|
||||
// 'Errors have occured during the import. The import can continue, however.'
|
||||
// 'Errors have occurred during the import. The import can continue, however.'
|
||||
$('#import-status-error-intro').text(langImportMultiError);
|
||||
}
|
||||
$('.info_errors').show();
|
||||
@ -298,4 +298,4 @@ function reportOnErrors(data) {
|
||||
$('#import-status-error-list').append(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it.
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The old email addres was: {{ oldEmail }}
|
||||
The old email address was: {{ oldEmail }}
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The new email address is: <strong>{{ newEmail }}</strong>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% include 'emails.header-text' %}
|
||||
You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it.
|
||||
|
||||
The old email addres was: {{ oldEmail }}
|
||||
The old email address was: {{ oldEmail }}
|
||||
|
||||
The new email address is: {{ newEmail }}
|
||||
|
||||
|
@ -8,11 +8,11 @@
|
||||
</p>
|
||||
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The error occured on/at: {{ time }}.
|
||||
The error occurred on/at: {{ time }}.
|
||||
</p>
|
||||
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
This error occured in file <span style="font-family: monospace;">{{ file }}</span> on line {{ line }} with code {{ code }}.
|
||||
This error occurred in file <span style="font-family: monospace;">{{ file }}</span> on line {{ line }} with code {{ code }}.
|
||||
</p>
|
||||
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
|
@ -3,9 +3,9 @@ Firefly III v{{ version }} ran into an error: {{ errorMessage }}.
|
||||
|
||||
The error was of type "{{ class }}".
|
||||
|
||||
The error occured on/at: {{ time }}.
|
||||
The error occurred on/at: {{ time }}.
|
||||
|
||||
This error occured in file "{{ file }}" on line {{ line }} with code {{ code }}.
|
||||
This error occurred in file "{{ file }}" on line {{ line }} with code {{ code }}.
|
||||
|
||||
{% if loggedIn %}
|
||||
The error was encountered by user #{{ user.id }}, {{ user.email }}.
|
||||
|
@ -7,7 +7,7 @@
|
||||
If you initiated this change, you may safely ignore this message.
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The old email addres was: <strong>{{ oldEmail }}</strong>
|
||||
The old email address was: <strong>{{ oldEmail }}</strong>
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The new email address is: {{ newEmail }}
|
||||
|
@ -4,7 +4,7 @@ you must follow the "undo"-link below to protect your account!
|
||||
|
||||
If you initiated this change, you may safely ignore this message.
|
||||
|
||||
The old email addres was: {{ oldEmail }}
|
||||
The old email address was: {{ oldEmail }}
|
||||
|
||||
The new email address is: {{ newEmail }}
|
||||
|
||||
|
@ -76,7 +76,7 @@
|
||||
{% if debug %}
|
||||
<div class="error-stack">
|
||||
<h4>Error</h4>
|
||||
<p>This error occured in file <span style="font-family: monospace;">{{ exception.getFile }}</span> on line {{ exception.getLine }} with
|
||||
<p>This error occurred in file <span style="font-family: monospace;">{{ exception.getFile }}</span> on line {{ exception.getLine }} with
|
||||
code {{ exception.getCode }}.</p>
|
||||
<h4>Stack trace</h4>
|
||||
<div style="font-family: monospace;font-size:11px;">
|
||||
|
Loading…
Reference in New Issue
Block a user