blob: a5355b5c4bf8cd37638f4cb378e6223be86d599a (
plain)
1
2
3
4
5
6
7
8
|
<?php
if(elgg_is_active_plugin("profile")){
$language = array (
'profile' => 'Profiel',
'profile:notfound' => 'Sorry. Het opgegeven profiel kon niet gevonden worden.',
);
add_translation("nl", $language);
}
|