diff options
Diffstat (limited to 'mod/notifications')
-rw-r--r-- | mod/notifications/languages/en.php | 27 | ||||
-rw-r--r-- | mod/notifications/languages/es.php | 27 |
2 files changed, 54 insertions, 0 deletions
diff --git a/mod/notifications/languages/en.php b/mod/notifications/languages/en.php new file mode 100644 index 000000000..ac6df7a99 --- /dev/null +++ b/mod/notifications/languages/en.php @@ -0,0 +1,27 @@ +<?php + +$english = array( + + 'friends:all' => 'All friends', + + 'notifications:subscriptions:personal:description' => 'Receive notifications when actions are performed on your content', + 'notifications:subscriptions:personal:title' => 'Personal notifications', + + 'notifications:subscriptions:friends:title' => 'Friends', + 'notifications:subscriptions:friends:description' => 'The following is an automatic collection made up of your friends. To receive updates select below. This will affect the corresponding users in the main notification settings panel at the bottom of the page. ', + 'notifications:subscriptions:collections:edit' => 'To edit your shared access notifications, click here.', + + 'notifications:subscriptions:changesettings' => 'Notifications', + 'notifications:subscriptions:changesettings:groups' => 'Group notifications', + 'notification:method:email' => 'Email', + + 'notifications:subscriptions:title' => 'Notifications per user', + 'notifications:subscriptions:description' => 'To receive notifications from your friends (on an individual basis) when they create new content, find them below and select the notification method you would like to use.', + + 'notifications:subscriptions:groups:description' => 'To receive notifications when new content is added to a group you are a member of, find it below and select the notification method(s) you would like to use.', + + 'notifications:subscriptions:success' => 'Your notifications settings have been saved.', + +); + +add_translation("en", $english); diff --git a/mod/notifications/languages/es.php b/mod/notifications/languages/es.php new file mode 100644 index 000000000..47ccafa43 --- /dev/null +++ b/mod/notifications/languages/es.php @@ -0,0 +1,27 @@ +<?php
+
+$spanish = array(
+
+ 'friends:all' => 'Todos los amigos',
+
+ 'notifications:subscriptions:personal:description' => 'Recibir notificaciones cuando se modifiquen tus contenidos',
+ 'notifications:subscriptions:personal:title' => 'Notificaciones personales',
+
+ 'notifications:subscriptions:friends:title' => 'Amigos',
+ 'notifications:subscriptions:friends:description' => 'La siguiente es una colección automática de sus amigos. Para recibir actualizaciones selecciona debajo. Esto afectará a los usuarios que se corresopndan con el panel principal de notificaciones al final de la página',
+ 'notifications:subscriptions:collections:edit' => 'Para habilitar notificaciones compartidas haga click aquí',
+
+ 'notifications:subscriptions:changesettings' => 'Notificaciones',
+ 'notifications:subscriptions:changesettings:groups' => 'Notificaciones de grupos',
+ 'notification:method:email' => 'Email',
+
+ 'notifications:subscriptions:title' => 'Notificaciones por usuario',
+ 'notifications:subscriptions:description' => 'Para recibir noticificaciones de tus amigos cuando crean nuevo contenido, búscalos en la red y selecciona el tipo de notificación que quieres recibir',
+
+ 'notifications:subscriptions:groups:description' => 'Para recibir noticificaciones cuando se cree nuevo contenido en grupos en los que eres miembro, búscalos en la red y selecciona el tipo de notificación que quieres recibir',
+
+ 'notifications:subscriptions:success' => 'Su configuración de notificaciones ha sido guardada',
+
+);
+
+add_translation("es", $spanish);
|