From 438ce5809f562c49569e26badd0376925f1a5f12 Mon Sep 17 00:00:00 2001 From: Ira Date: Tue, 2 May 2017 15:54:35 +0300 Subject: Add Hebrew interface translation. (#2573) * follow the instructions for registering the language as stated on the Tootsuite's docs. * Added translation strings from latest master Adding ‏ characters to many strings that are misdirected in the interface. A tiny grammar fix Updates of Hebrew strings to v1.3.1 Hebrew translation of the mailer templates. Fix strings and a missing comma. Just discovered two string keys were updated. this should lay Travis' mind to rest at last. Remove mentions before counting characters to decide RTL ratio Fixes for PR #2573 updated strings for latest master Undo RTL counting, moved out to another branch for future consideration... --- .../user_mailer/confirmation_instructions.he.html.erb | 14 ++++++++++++++ .../user_mailer/confirmation_instructions.he.text.erb | 12 ++++++++++++ app/views/user_mailer/password_change.he.html.erb | 4 ++++ app/views/user_mailer/password_change.he.text.erb | 3 +++ .../user_mailer/reset_password_instructions.he.html.erb | 10 ++++++++++ .../user_mailer/reset_password_instructions.he.text.erb | 8 ++++++++ 6 files changed, 51 insertions(+) create mode 100644 app/views/user_mailer/confirmation_instructions.he.html.erb create mode 100644 app/views/user_mailer/confirmation_instructions.he.text.erb create mode 100644 app/views/user_mailer/password_change.he.html.erb create mode 100644 app/views/user_mailer/password_change.he.text.erb create mode 100644 app/views/user_mailer/reset_password_instructions.he.html.erb create mode 100644 app/views/user_mailer/reset_password_instructions.he.text.erb (limited to 'app/views/user_mailer') diff --git a/app/views/user_mailer/confirmation_instructions.he.html.erb b/app/views/user_mailer/confirmation_instructions.he.html.erb new file mode 100644 index 000000000..4dcc912a3 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.he.html.erb @@ -0,0 +1,14 @@ +
+

שלום <%= @resource.email %> !

+ +

הרגע יצרת חשבון בקהילה <%= @instance %>.

+ +

כדי לוודא את הרשמתך, יש ללחוץ על הקישורית הבאה :
+<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %> + +

יש לעבור גם על תנאי השימוש <%= link_to 'terms and conditions', terms_url %>.

+ +

בתודה מראש,

+ +

צות ניהול <%= @instance %>

+
\ No newline at end of file diff --git a/app/views/user_mailer/confirmation_instructions.he.text.erb b/app/views/user_mailer/confirmation_instructions.he.text.erb new file mode 100644 index 000000000..5e4b526bf --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.he.text.erb @@ -0,0 +1,12 @@ +שלום <%= @resource.email %> ! + +הרגע יצרת חשבון בקהילה <%= @instance %>. + +כדי לוודא את הרשמתך, יש ללחוץ על הקישורית הבאה : +<%= confirmation_url(@resource, confirmation_token: @token) %> + +יש לעבור גם על תנאי השימוש <%= terms_url %> + +בתודה מראש, + +צות ניהול <%= @instance %> \ No newline at end of file diff --git a/app/views/user_mailer/password_change.he.html.erb b/app/views/user_mailer/password_change.he.html.erb new file mode 100644 index 000000000..a356edf58 --- /dev/null +++ b/app/views/user_mailer/password_change.he.html.erb @@ -0,0 +1,4 @@ +
+

שלום <%= @resource.email %>!

+ +

רצינו להודיע לך שסיסמתך במסטודון אצלנו הוחלפה.

diff --git a/app/views/user_mailer/password_change.he.text.erb b/app/views/user_mailer/password_change.he.text.erb new file mode 100644 index 000000000..1f601c6b2 --- /dev/null +++ b/app/views/user_mailer/password_change.he.text.erb @@ -0,0 +1,3 @@ +שלום <%= @resource.email %>! + +רצינו להודיע לך שסיסמתך במסטודון אצלנו הוחלפה. diff --git a/app/views/user_mailer/reset_password_instructions.he.html.erb b/app/views/user_mailer/reset_password_instructions.he.html.erb new file mode 100644 index 000000000..5d0930839 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.he.html.erb @@ -0,0 +1,10 @@ +
+

שלום <%= @resource.email %>!

+ +

מישהו ביקש לינק להחלפת סיסמתך במסטודון. באפשרותך לעשות זאת ע"י בלחיצה על הקישורית שבהמשך.

+ +

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

+ +

אם בקשה זו לא הגיעה ממך, אפשר להתעלם מההודעה.

+

סיסמתך לא תוחלף לפני שהקישורית תיפתח בדפדפן וסיסמא חדשה תוכנס.

+
\ No newline at end of file diff --git a/app/views/user_mailer/reset_password_instructions.he.text.erb b/app/views/user_mailer/reset_password_instructions.he.text.erb new file mode 100644 index 000000000..63c96c06b --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.he.text.erb @@ -0,0 +1,8 @@ +שלום <%= @resource.email %>! + +מישהו ביקש לינק להחלפת סיסמתך במסטודון. באפשרותך לעשות זאת ע"י בלחיצה על הקישורית שבהמשך. + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +אם בקשה זו לא הגיעה ממך, אפשר להתעלם מההודעה. +סיסמתך לא תוחלף לפני שהקישורית תיפתח בדפדפן וסיסמא חדשה תוכנס. -- cgit