Last of alpha sorting, this time for admin plugins
Also deleted empty lines and a few useless comments that may have been useful when working on the files but are no use any more.
I found incongruities in some plugins keys for a few files in the sense that they were not following our rules, i.e. keep the same prefix for all strings.
This explains why we have for example, as they are alpha ordered
PLG_INSTALLER_N_OVERRIDE_FILE_UPDATED="%s Overridden files have changed."
PLG_INSTALLER_N_OVERRIDE_FILE_UPDATED_1="Overridden file has changed."
PLG_INSTALLER_OVERRIDE="Installer - Override"
PLG_INSTALLER_OVERRIDE_PLUGIN_XML_DESCRIPTION="This plugin enables notifications and handling of overrides after an update in case of changes."
instead of
PLG_INSTALLER_OVERRIDE="Installer - Override"
PLG_INSTALLER_OVERRIDE_N_FILE_UPDATED="%s Overridden files have changed."
PLG_INSTALLER_OVERRIDE_N_FILE_UPDATED_1="Overridden file has changed."
PLG_INSTALLER_OVERRIDE_PLUGIN_XML_DESCRIPTION="This plugin enables notifications and handling of overrides after an update in case of changes."
As these need to also correct php, this will be for another PR.
Note
I found incongruities in some plugins keys for a few files in the sense that they were not following our rules, i.e. keep the same prefix for all strings.
This explains why we have for example, as they are alpha ordered
instead of
As these need to also correct php, this will be for another PR.