clear your cache and try again. Also have you tried to manually change the text yourself that will also cause errors.
I cleared my cache and even tried another browser. Still the same issue. Here what it looks like :

-
This reply was modified 6 years, 9 months ago by
Hyrules.
have you altered the text of the headers>?
Nope it’s the original and the string from the translation. I never alter a plugin in wordpress for my personnal use it makes the maintenance too complicated.
-
This reply was modified 6 years, 9 months ago by
Hyrules.
open the file mdocs-localization.php head down to line 219 and add this right below it:
function mdocs_local($text) {
var_dump($text);
let me know the results.
Here is the result of the vardump :
string(4) “Name” Text not found. string(9) “Downloads” Text not found. string(7) “Version” Version string(5) “Owner” Text not found.
I have the same problem, Any news on that ?
so im clear the dump show the string “Text not found”?
okay i’ve found the issue, not sure why it is causing an error now but here is the fix:
open the file mdic-localization.php goto line 240:
$key = array_search($text, $local);
change to this:
$key = array_search(__($text, 'memphis-documents-library'), $local);
next version will have this change but if you want to fix it now go ahead
-
This reply was modified 6 years, 8 months ago by
bhaldie.
Thanks this indeed fixes the issue for me.
Thanks a lot it worked for me, too.