27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| /**
 | |
|  * Text used for activity-based notifications.
 | |
|  */
 | |
| return [
 | |
| 
 | |
|     'new_comment_subject' => 'Ny kommentar på siden: :pageName',
 | |
|     'new_comment_intro' => 'En bruker har kommentert en side i :appName:',
 | |
|     'new_page_subject' => 'Ny side: :pageName',
 | |
|     'new_page_intro' => 'En ny side er opprettet i :appName:',
 | |
|     'updated_page_subject' => 'Oppdatert side: :pageName',
 | |
|     'updated_page_intro' => 'En side er oppdatert i :appName:',
 | |
|     'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
 | |
| 
 | |
|     'detail_page_name' => 'Sidenavn:',
 | |
|     'detail_commenter' => 'Commenter:',
 | |
|     'detail_comment' => 'Kommentar:',
 | |
|     'detail_created_by' => 'Opprettet av:',
 | |
|     'detail_updated_by' => 'Oppdatert av:',
 | |
| 
 | |
|     'action_view_comment' => 'Vis kommentar',
 | |
|     'action_view_page' => 'Se side',
 | |
| 
 | |
|     'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
 | |
|     'footer_reason_link' => 'dine varslingsinnstillinger',
 | |
| ];
 |