diff options
author | Christoph (Sheogorath) Kern | 2018-04-06 01:59:00 +0200 |
---|---|---|
committer | GitHub | 2018-04-06 01:59:00 +0200 |
commit | b97d6cebadd1161caa4f5a7f22699c6c15f0778b (patch) | |
tree | aaecfdf06e50e9ac299220a537cb0c2251925940 | |
parent | 5a5b3e9dddbf4754a0de724ad48371aba03ad043 (diff) | |
parent | 95f46520e3aff48dc133de06b4f9e2a11c4abd3d (diff) |
Merge pull request #796 from SISheogorath/feature/addMatrix
Add matrix.org / Riot link
Diffstat (limited to '')
-rw-r--r-- | locales/de.json | 2 | ||||
-rw-r--r-- | locales/en.json | 2 | ||||
-rw-r--r-- | locales/zh-CN.json | 2 | ||||
-rw-r--r-- | locales/zh-TW.json | 2 | ||||
-rw-r--r-- | public/views/shared/help-modal.ejs | 4 |
5 files changed, 7 insertions, 5 deletions
diff --git a/locales/de.json b/locales/de.json index c416a684..b2539108 100644 --- a/locales/de.json +++ b/locales/de.json @@ -62,7 +62,7 @@ "Refresh": "Neu laden", "Contacts": "Kontakte", "Report an issue": "Fehlerbericht senden", - "Meet us on Gitter": "Triff uns auf Gitter", + "Meet us on %s": "Triff uns auf %s", "Send us email": "Kontakt", "Documents": "Dokumente", "Features": "Funktionen", diff --git a/locales/en.json b/locales/en.json index 0b44732d..1aef3f6d 100644 --- a/locales/en.json +++ b/locales/en.json @@ -62,7 +62,7 @@ "Refresh": "Refresh", "Contacts": "Contacts", "Report an issue": "Report an issue", - "Meet us on Gitter": "Meet us on Gitter", + "Meet us on %s": "Meet us on %s", "Send us email": "Send us email", "Documents": "Documents", "Features": "Features", diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 6e0c11e9..87907189 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -60,7 +60,7 @@ "Refresh": "重新整理", "Contacts": "联络方式", "Report an issue": "报告问题", - "Meet us on Gitter": "在 Gitter 上联系我们", + "Meet us on %s": "在 %s 上联系我们", "Send us email": "寄信给我们", "Documents": "文件", "Features": "功能简介", diff --git a/locales/zh-TW.json b/locales/zh-TW.json index da50f66a..090af9c0 100644 --- a/locales/zh-TW.json +++ b/locales/zh-TW.json @@ -60,7 +60,7 @@ "Refresh": "重新整理", "Contacts": "聯絡方式", "Report an issue": "回報問題", - "Meet us on Gitter": "透過 Gitter 聯絡我們", + "Meet us on %s": "透過 %s 聯絡我們", "Send us email": "寄信給我們", "Documents": "文件", "Features": "功能簡介", diff --git a/public/views/shared/help-modal.ejs b/public/views/shared/help-modal.ejs index f5dc55c2..6bcf637e 100644 --- a/public/views/shared/help-modal.ejs +++ b/public/views/shared/help-modal.ejs @@ -17,7 +17,9 @@ <div class="panel-body"> <a href="https://github.com/hackmdio/hackmd/issues" target="_blank"><i class="fa fa-tag fa-fw"></i> <%= __('Report an issue') %></a> <br> - <a href="https://gitter.im/hackmdio/hackmd" target="_blank"><i class="fa fa-comments fa-fw"></i> <%= __('Meet us on Gitter') %></a> + <a href="https://riot.im/app/#/room/#hackmd:matrix.org" target="_blank"><i class="fa fa-hashtag fa-fw"></i> <%= __('Meet us on %s', 'Matrix') %></a> + <br> + <a href="https://gitter.im/hackmdio/hackmd" target="_blank"><i class="fa fa-comments fa-fw"></i> <%= __('Meet us on %s', 'Gitter') %></a> </div> </div> <div class="panel panel-default"> |