From a51c8074dfced016d967b062132d9d8213daf543 Mon Sep 17 00:00:00 2001 From: spla Date: Wed, 17 May 2017 00:25:10 +0200 Subject: Add catalan language (#3084) * Add Catalan language * Add Catalan language * Update ca.json * Update ca.json * Update ca.json * Update ca.json * Update ca.json * Update ca.json * Update settings_helper.rb * Update mastodon.js * Update index.js * Update application.rb * Update ca.yml * removed extra spaces at line 225 --- app/views/user_mailer/confirmation_instructions.ca.html.erb | 12 ++++++++++++ app/views/user_mailer/confirmation_instructions.ca.text.erb | 12 ++++++++++++ app/views/user_mailer/password_change.ca.html.erb | 3 +++ app/views/user_mailer/password_change.ca.text.erb | 3 +++ .../user_mailer/reset_password_instructions.ca.html.erb | 8 ++++++++ .../user_mailer/reset_password_instructions.ca.text.erb | 8 ++++++++ 6 files changed, 46 insertions(+) create mode 100644 app/views/user_mailer/confirmation_instructions.ca.html.erb create mode 100644 app/views/user_mailer/confirmation_instructions.ca.text.erb create mode 100644 app/views/user_mailer/password_change.ca.html.erb create mode 100644 app/views/user_mailer/password_change.ca.text.erb create mode 100644 app/views/user_mailer/reset_password_instructions.ca.html.erb create mode 100644 app/views/user_mailer/reset_password_instructions.ca.text.erb (limited to 'app/views') diff --git a/app/views/user_mailer/confirmation_instructions.ca.html.erb b/app/views/user_mailer/confirmation_instructions.ca.html.erb new file mode 100644 index 000000000..3591e2433 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.ca.html.erb @@ -0,0 +1,12 @@ +

Benvingut <%= @resource.email %> !

+ +

Has creat un compte a <%= @instance %>.

+ +

Per confirmar la subscripció si us plau fes clic en el següent vincle :
+<%= link_to 'Confirmar el meu compte', confirmation_url(@resource, confirmation_token: @token) %> + +

Si us plau, també fes un cop d'ull als nostres <%= link_to 'termes i condicions', terms_url %>.

+ +

Sincerament,

+ +

L'equip <%= @instance %>

diff --git a/app/views/user_mailer/confirmation_instructions.ca.text.erb b/app/views/user_mailer/confirmation_instructions.ca.text.erb new file mode 100644 index 000000000..77cc589e6 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.ca.text.erb @@ -0,0 +1,12 @@ +Benvingut <%= @resource.email %> ! + +Acabes de crear un compte a <%= @instance %>. + +Per confirmar la subscripció, si us plua fes clic en el següent vincle : +<%= confirmation_url(@resource, confirmation_token: @token) %> + +Si us plau també fes un cop d'ull als nostres termes i condicions <%= terms_url %> + +Sincerament, + +L'equip <%= @instance %> diff --git a/app/views/user_mailer/password_change.ca.html.erb b/app/views/user_mailer/password_change.ca.html.erb new file mode 100644 index 000000000..e10c21e1c --- /dev/null +++ b/app/views/user_mailer/password_change.ca.html.erb @@ -0,0 +1,3 @@ +

Hola <%= @resource.email %>!

+ +

Aquest correu es per a notificar-te que la teva contrasenya a mastodont.cat ha canviat.

diff --git a/app/views/user_mailer/password_change.ca.text.erb b/app/views/user_mailer/password_change.ca.text.erb new file mode 100644 index 000000000..c2fdfc82c --- /dev/null +++ b/app/views/user_mailer/password_change.ca.text.erb @@ -0,0 +1,3 @@ +Hola <%= @resource.email %>! + +Aquest correu es per a notificar-te que la teva contrasenya a mastodont.cat ha canviat. diff --git a/app/views/user_mailer/reset_password_instructions.ca.html.erb b/app/views/user_mailer/reset_password_instructions.ca.html.erb new file mode 100644 index 000000000..6f76c441d --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.ca.html.erb @@ -0,0 +1,8 @@ +

Hola <%= @resource.email %>!

+ +

Algú ha sol·licitat un enllaç per canviar la contrasenya a mastodont.cat. Això es pot fer a través del següent enllaç.

+ +

<%= link_to 'Canviar la contrasenya', edit_password_url(@resource, reset_password_token: @token) %>

+ +

Si no has sol·licitat aquest canvi, si us plau, ignora aquest correu.

+

La teva contrasenya no canviarà fins que accedeix a l'enllaç de dalt per crear-ne una de nova.

diff --git a/app/views/user_mailer/reset_password_instructions.ca.text.erb b/app/views/user_mailer/reset_password_instructions.ca.text.erb new file mode 100644 index 000000000..ca4c494c3 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.ca.text.erb @@ -0,0 +1,8 @@ +Hola <%= @resource.email %>! + +Algú ha sol·licitat un enllaç per canviar la contrasenya a mastodont.cat. Això es pot fer a través del següent enllaç. + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +Si no has sol·licitat aquest canvi, si us plau, ignora aquest correu. +La teva contrasenya no canviarà fins que accedeix a l'enllaç de dalt per crear-ne una de nova. -- cgit