Hello/Hi/Greetings,
The Dutch translation file ../piwigo/language/nl_NL/admin.lang.php contains at line 822 a translation with a typo which results with PHP 8+ in a fatal error. Apart from that the translation makes no sense.
See also [Forum, post 189615 by BMS in topic 33485] Updating Permissions on PHP 8.0^
Line with error:
822 $lang['%u users have automatic permission because they belong to a granted group.'] = '%jouw gebruikers hebben automatisch recht, omdat ze tot een groep behoren die dit recht is verleend';
%jouw causes:
Fatal error: Uncaught ValueError: Unknown format specifier "j"
The code should read: %u jouw ...
I suggest following translation:
822 $lang['%u users have automatic permission because they belong to a granted group.'] = '%u gebruikers hebben automatisch toegang, omdat ze tot een groep behoren met dit recht.';
Environment
Piwigo 14.3.0 Installed on 25 January 2017, 7 years 2 months 2 days ago
Operating system: Linux
PHP: 8.3.4
MySQL: 10.3.32-MariaDB
Graphics Library: ImageMagick 6.9.13-7
Last edited by BMS (2024-03-27 14:15:32)
Offline
Hi :-)
Thanks
you can also register on translate tool for other error ;-)
Offline
There's a still pending pull request for that, https://github.com/Piwigo/Piwigo/pull/2121
Offline