ngandrass / moodle-quiz_archiver

Archives quiz attempts as PDF and HTML files for long-term storage independent of Moodle
GNU General Public License v3.0
5 stars 3 forks source link

strings file does not allow for concatenation (it's not really treated as a php file.) #4

Closed danmarsden closed 8 months ago

danmarsden commented 8 months ago

https://github.com/ngandrass/moodle-quiz_archiver/blob/master/lang/en/quiz_archiver.php#L27-L28

string concatentaion in the lang packs is not allowed - it causes problems for the Moodle translation tool

eg: $string['test'] = "sometext"."somemoretext"; or $string['test'] = "sometext".$string['someotheritem'];

each string must be contained within one set of quotes eg: $string['test'] = "sometext somemoretext";

This is a blocker for plugins db approval.

ngandrass commented 8 months ago

Fixed with 611659858ae0d2f637f722122f13a37690f9abf4

Thanks for your report! :tada: