Skip to content

Commit 46c7547

Browse files
authored
Merge pull request #213 from nextcloud/enh/noid/fix-spellcheck-warnings
fix spellcheck warnings
2 parents de7f47e + 1339be5 commit 46c7547

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/spellcheck.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ jobs:
1616
with:
1717
github_token: ${{ secrets.GITHUB_TOKEN }}
1818
locale: "US"
19+
fail_on_error: true

Containers/postgresql/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ if pg_dump --username "$POSTGRES_USER" "$POSTGRES_DB" > "$DUMP_FILE.temp"; then
9292
exit 0
9393
else
9494
pg_ctl stop -m fast
95-
echo "Database dump unsucessful!"
95+
echo "Database dump unsuccessful!"
9696
exit 1
9797
fi

app/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## How to develope the app?
1+
## How to develop the app?
22

33
Please note that in order to check if an app is already downloaded
44
Nextcloud will look for a folder with the same name as the app.

php/templates/containers.twig

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<input class="button" type="submit" value="Submit" />
6161
</form>
6262
Make sure that this server is reachable on Port 443 and you've correctly set up the DNS config for the domain that you enter. <br><br>
63-
If you have a dynamic IP-adress, you can use e.g. <a href="https://ddclient.net/">DDclient</a> with a compatible domain provider for DNS updates.
63+
If you have a dynamic IP-address, you can use e.g. <a href="https://ddclient.net/">DDclient</a> with a compatible domain provider for DNS updates.
6464
{% endif %}
6565

6666
{% if domain != "" %}
@@ -177,9 +177,9 @@
177177
<span class="status error"></span> Last {{ borg_backup_mode }} failed! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
178178
{% elseif backup_exit_code == 0 %}
179179
{% if borg_backup_mode == "backup" %}
180-
<span class="status success"></span> Last {{ borg_backup_mode }} succesful on {{ last_backup_time }}! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
180+
<span class="status success"></span> Last {{ borg_backup_mode }} successful on {{ last_backup_time }}! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
181181
{% else %}
182-
<span class="status success"></span> Last {{ borg_backup_mode }} succesful! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
182+
<span class="status success"></span> Last {{ borg_backup_mode }} successful! (<a href="/api/docker/logs?id=nextcloud-aio-borgbackup">Logs</a>)<br /><br />
183183
{% endif %}
184184
{% endif %}
185185
{% endif %}

0 commit comments

Comments
 (0)