From 946aa1c9daea27ea328dcdcc7fc8676ccf1271fa Mon Sep 17 00:00:00 2001 From: Elias Probst Date: Wed, 22 Mar 2017 03:32:36 +0100 Subject: [PATCH 1/3] =?UTF-8?q?Correct=20grammar=20(`reseted`=20=E2=86=92?= =?UTF-8?q?=20`reset`)=20(#869)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/mailer/password_reset/en.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/mailer/password_reset/en.html.erb b/app/views/mailer/password_reset/en.html.erb index 3a993b785..582afb163 100644 --- a/app/views/mailer/password_reset/en.html.erb +++ b/app/views/mailer/password_reset/en.html.erb @@ -10,6 +10,6 @@ Reset your #{config.product_name} password
This link takes you to a page where you can change your password.

-
If you don't want to reset your password, please ignore this message. Your password will not be reseted.
+
If you don't want to reset your password, please ignore this message. Your password will not be reset.

Your #{config.product_name} Team
From 538ccce9991f4e88e0a7fd4daf3faef2b3c86857 Mon Sep 17 00:00:00 2001 From: Never Date: Wed, 22 Mar 2017 10:33:09 +0800 Subject: [PATCH 2/3] fixed README.md file link typo (#870) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8da00a2a3..715e22d1f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You're going to love Zammad! - Docker multi container image: [![](https://images.microbadger.com/badges/image/zammad/zammad-docker-compose:zammad.svg)](https://microbadger.com/images/zammad/zammad-docker-compose:zammad) [![](https://img.shields.io/badge/version-stable-blue.svg)](https://hub.docker.com/r/zammad/zammad-docker-compose) - Docker single container image: [![](https://images.microbadger.com/badges/image/zammad/zammad.svg)](https://microbadger.com/images/zammad/zammad) [![](https://images.microbadger.com/badges/version/zammad/zammad.svg)](https://hub.docker.com/r/zammad/zammad/) - Vagrant: [![](https://img.shields.io/badge/version-develop-blue.svg)](https://github.com/zammad/zammad-vagrant) -- License: [![](https://img.shields.io/badge/License-AGPL 3.0-lightgrey.svg)](https://github.com/zammad/zammad/blob/develop/LICENSE) +- License: [![](https://img.shields.io/badge/License-AGPL%203.0-lightgrey.svg)](https://github.com/zammad/zammad/blob/develop/LICENSE) ## Installing & Getting Started From 1148b404336aff42afb1a998438ebcf35d04bea0 Mon Sep 17 00:00:00 2001 From: Never Date: Wed, 22 Mar 2017 10:33:33 +0800 Subject: [PATCH 3/3] Chinese for Form widget (#861) --- public/assets/form/form.js | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/public/assets/form/form.js b/public/assets/form/form.js index a9821f03a..a08c168df 100644 --- a/public/assets/form/form.js +++ b/public/assets/form/form.js @@ -91,7 +91,7 @@ $(function() { }, ], translations: { - de: { + 'de': { 'Name': 'Name', 'Your Name': 'Ihr Name', 'Email': 'E-Mail', @@ -100,7 +100,7 @@ $(function() { 'Attachments': 'Anhänge', 'Your Message...': 'Ihre Nachricht...', }, - es: { + 'es': { 'Name': 'Nombre', 'Your Name': 'tu Nombre', 'Email': 'correo electrónico', @@ -109,7 +109,7 @@ $(function() { 'Attachments': 'archivos adjuntos', 'Your Message...': 'tu Mensaje...', }, - fr: { + 'fr': { 'Name': 'Prénom', 'Your Name': 'Votre nom', 'Email': 'Email', @@ -118,6 +118,24 @@ $(function() { 'Attachments': 'Pièces jointes', 'Your Message...': 'Votre message...', }, + 'zh-cn': { + 'Name': '联系人', + 'Your Name': '您的尊姓大名', + 'Email': '电子邮件', + 'Your Email': '您的邮件地址', + 'Message': '留言', + 'Attachments': '附件', + 'Your Message...': '您的留言...', + }, + 'zh-tw': { + 'Name': '聯絡人', + 'Your Name': '您的尊姓大名', + 'Email': 'E-Mail', + 'Your Email': '請留下您的電子郵件地址', + 'Message': '留言', + 'Attachments': '附檔', + 'Your Message...': '請寫下您的留言...' + }, } };