blob: e5105bb0981472177f340c42ab584f565e25cdce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Dutch translation.
*
* @package dutch_translation
* @author ColdTrick IT Solutions
* @copyright Coldtrick IT Solutions 2010
* @link http://www.coldtrick.com/
*/
if(elgg_is_active_plugin('custom_index')){
$language = array (
'custom:bookmarks' => 'Laatste favorieten',
'custom:groups' => 'Laatste groepen',
'custom:files' => 'Laatste bestanden',
'custom:blogs' => 'Laatste blogberichten',
'custom:members' => 'Nieuwste leden',
);
add_translation("nl", $language);
}
|