From a75a3409f5cec3e7e53cee9feafdd6b0b78b569b Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Thu, 7 May 2020 07:48:14 -0400 Subject: [PATCH 1/2] Fix typo s/bellow/below/g. --- synapse/res/templates/notice_expiry.html | 2 +- synapse/res/templates/notice_expiry.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/res/templates/notice_expiry.html b/synapse/res/templates/notice_expiry.html index f0d7c66e1b13..6b94d8c367c9 100644 --- a/synapse/res/templates/notice_expiry.html +++ b/synapse/res/templates/notice_expiry.html @@ -30,7 +30,7 @@
Your account will expire on {{ expiration_ts|format_ts("%d-%m-%Y") }}. This means that you will lose access to your account after this date.
-
To extend the validity of your account, please click on the link bellow (or copy and paste it into a new browser tab):
+
To extend the validity of your account, please click on the link below (or copy and paste it into a new browser tab):
{{ url }}
diff --git a/synapse/res/templates/notice_expiry.txt b/synapse/res/templates/notice_expiry.txt index 41f1c4279cb0..4ec27e88318b 100644 --- a/synapse/res/templates/notice_expiry.txt +++ b/synapse/res/templates/notice_expiry.txt @@ -2,6 +2,6 @@ Hi {{ display_name }}, Your account will expire on {{ expiration_ts|format_ts("%d-%m-%Y") }}. This means that you will lose access to your account after this date. -To extend the validity of your account, please click on the link bellow (or copy and paste it to a new browser tab): +To extend the validity of your account, please click on the link below (or copy and paste it to a new browser tab): {{ url }} From ec09eb9946efd2e45c7b39a834950aefe58c8162 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Thu, 7 May 2020 07:49:57 -0400 Subject: [PATCH 2/2] Add newsfragment. --- changelog.d/7449.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/7449.misc diff --git a/changelog.d/7449.misc b/changelog.d/7449.misc new file mode 100644 index 000000000000..e6ba94adaea1 --- /dev/null +++ b/changelog.d/7449.misc @@ -0,0 +1 @@ +Fix some typos in the notice_expiry templates.