skynettechnologies / moodle-local_allinoneaccessibility

GNU General Public License v3.0
0 stars 0 forks source link

camel case used in strings. #7

Closed danmarsden closed 9 months ago

danmarsden commented 9 months ago

Moodle uses sentence case - please check your lang strings as some use camel case.

for example strings like: $string['mystring'] = "My String"; should be: $string['mystring'] = "My string";

Note: this is not a blocker for approval in the plugins db.

skynetindia commented 9 months ago

We have updated the lang strings.

danmarsden commented 8 months ago

did you push your updates?

I still many examples like: $string['aioa-top_center'] = 'Top Center'; $string['aioa-top_right'] = 'Top Right';

which should be: $string['aioa-top_center'] = 'Top center'; $string['aioa-top_right'] = 'Top right';