Closed danmarsden closed 4 years ago
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";
fixed
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";