summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-05-28 16:29:27 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-05-28 16:29:27 +0200
commit914c82e7f1715a9707cfd49aa6f3f2e7e1ea05c8 (patch)
tree34ce9d0879e40da0bb14da9be826d04b4d3cfb4a
parentfb5b8ef00b74af2f2df9fe77937165eb04d18118 (diff)
downloadgohugo-theme-ed-914c82e7f1715a9707cfd49aa6f3f2e7e1ea05c8.tar.gz
Amend i18n
-rw-r--r--i18n/en.toml3
-rw-r--r--i18n/ru.toml3
-rw-r--r--layouts/shortcodes/form-contact.html2
3 files changed, 7 insertions, 1 deletions
diff --git a/i18n/en.toml b/i18n/en.toml
index 5792b4a..f1a413f 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -36,3 +36,6 @@
[by]
other = 'by {{ . }}'
+
+[send]
+ other = 'Send'
diff --git a/i18n/ru.toml b/i18n/ru.toml
index 102c34d..a2db4b2 100644
--- a/i18n/ru.toml
+++ b/i18n/ru.toml
@@ -36,3 +36,6 @@
[by]
other = '{{ . }}'
+
+[send]
+ other = 'Отправить'
diff --git a/layouts/shortcodes/form-contact.html b/layouts/shortcodes/form-contact.html
index 1d216da..738f62e 100644
--- a/layouts/shortcodes/form-contact.html
+++ b/layouts/shortcodes/form-contact.html
@@ -22,7 +22,7 @@
<input type="checkbox" name="_honeypot" style="display:none" tabindex="-1" autocomplete="off" class="contact-form-gotcha" value="">
<div class="contact-form-item">
- <input type="submit" value="Send" class="button button-large">
+ <input type="submit" value="{{ i18n "send" }}" class="button button-large">
</div>
</form>
</div>