if i try to view the modules-overview in GO, i got the error:
Invalid language file /pathtogroup/modules/notes/language/en.php

Maybe i don't get the point at the moment "I cannot see the wood for the trees"
Thank you very much in advance.
Moderator: Developers
If you have knowlege in programming, you see an associative array with the tranlations. It seems to be the old structure for a languagefile. But meanwhile GroupOffice expect a other structure for the files.<?php
$l["category_id"]="Note book";
$l["content"]="Content";
$l["manageCategories"]="Manage note books";
$l['name']='Notes';
$l['description']='A module to make to notes';
$l['category']='Note book';
$l['categories']='Note books';
$l['note']='Note';
$l['notes']='Notes';
$l['general'] = 'General';
$l['incomplete_delete']='You don\'t have permission to delete all selected notes';
$l['multipleCategoriesSelected']='Multiple note books selected';
$l['encryptedContent']='Content is encrypted';
The associative array has changed to a function which returns a associative array. If you replace the old structure with the new one no error should attemp. But first try to update to the newest version. And don't forget to backup<?php
return array (
'category_id' => 'Note book',
'content' => 'Content',
'manageCategories' => 'Manage note books',
'name' => 'Notes',
'description' => 'A module to make to notes',
'category' => 'Note book',
'categories' => 'Note books',
'notes' => 'Notes',
'general' => 'General',
'incomplete_delete' => 'You don\'t have permission to delete all selected notes',
'multipleCategoriesSelected' => 'Multiple note books selected',
'note' => 'Note',
'encryptedContent' => 'Content is encrypted'
);
Users browsing this forum: Bing [Bot] and 7 guests