mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* Text used for activity-based notifications.
|
||
*/
|
||
return [
|
||
|
||
'new_comment_subject' => 'Comentari nou a la pàgina :pageName',
|
||
'new_comment_intro' => 'Un usuari ha comentat en una pàgina de :appName:',
|
||
'new_page_subject' => 'Pàgina nova: :pageName',
|
||
'new_page_intro' => 'S’ha creat una pàgina nova a :appName:',
|
||
'updated_page_subject' => 'Pàgina actualitzada: :pageName',
|
||
'updated_page_intro' => 'S’ha actualitzat una pàgina a :appName:',
|
||
'updated_page_debounce' => 'Per a evitar les notificacions massives, no us enviarem notificacions si hi ha més edicions en aquesta pàgina fetes pel mateix editor.',
|
||
|
||
'detail_page_name' => 'Nom de la pàgina:',
|
||
'detail_page_path' => 'Camí de la pàgina:',
|
||
'detail_commenter' => 'Autor del comentari:',
|
||
'detail_comment' => 'Comentari:',
|
||
'detail_created_by' => 'Creat per:',
|
||
'detail_updated_by' => 'Actualitzat per:',
|
||
|
||
'action_view_comment' => 'Mostra el comentari',
|
||
'action_view_page' => 'Mostra la pàgina',
|
||
|
||
'footer_reason' => 'Rebeu aquesta notificació perquè :link cobreixen aquest tipus d’activitat en aquest element.',
|
||
'footer_reason_link' => 'les vostres preferències de notificacions',
|
||
];
|