ffhs / moodle-filter_fontawesome

A Moodle filter plugin to use fontawesome icons in the Moodle text editor
https://moodle.org/plugins/filter_fontawesome
2 stars 4 forks source link

filtername incorrect #2

Closed danmarsden closed 5 years ago

danmarsden commented 5 years ago

Couple of things wrong with the filtername:

$string['filtername'] = 'FontAwesome Icon Filter.';

Moodle uses sentence case so it should probably be: $string['filtername'] = 'FontAwesome icon filter.';

Also - the plugin name doesn't usually include the plugin "type" - in your case "filter" so it might be better to be: $string['filtername'] = 'FontAwesome';

or maybe even something like: $string['filtername'] = 'FontAwesome icons.';

Probably been there since Julian created it and no-one had noticed :-)

adpe commented 5 years ago

Hi @danmarsden

I changed it right now. Thank you!