diff options
| -rw-r--r-- | i18n/en.toml | 3 | ||||
| -rw-r--r-- | i18n/ru.toml | 3 | ||||
| -rw-r--r-- | layouts/shortcodes/form-contact.html | 2 |
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> |
