diff options
author | Sem <sembrestels@riseup.net> | 2012-05-12 06:29:42 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-12 06:29:42 +0200 |
commit | 57cde174e1fb8f91a74983396897cebfde016f70 (patch) | |
tree | af4c7c976a1c0ac0695271dc34ed7286428e16ee /languages/nl/nl.custom_index.php | |
parent | 50fdb26e11da8ea05ed38db2b46147cdddc9cf6e (diff) | |
download | elgg-57cde174e1fb8f91a74983396897cebfde016f70.tar.gz elgg-57cde174e1fb8f91a74983396897cebfde016f70.tar.bz2 |
Added several languages and upgraded existing ones.
Diffstat (limited to 'languages/nl/nl.custom_index.php')
-rw-r--r-- | languages/nl/nl.custom_index.php | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/languages/nl/nl.custom_index.php b/languages/nl/nl.custom_index.php index e5105bb09..746daa336 100644 --- a/languages/nl/nl.custom_index.php +++ b/languages/nl/nl.custom_index.php @@ -1,19 +1,11 @@ <?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); -} +$nl = array ( + 'custom:bookmarks' => 'Laatste favorieten', + 'custom:groups' => 'Laatste groepen', + 'custom:files' => 'Laatste bestanden', + 'custom:blogs' => 'Laatste blogberichten', + 'custom:members' => 'Nieuwste leden', +); + +add_translation("nl", $nl); + |