• Resolved daymobrew

    (@daymobrew)


    When listing modules that are not enabled it says
    The %1$s module, %2$s, is not installer, or has been disabled.

    “installer” should be “installed” (replace the r with a d).

    Here’s the trivial patch:
    — includes/class-health-check-site-status.orig.php 2019-03-13 16:43:12.000000000 +0000
    +++ includes/class-health-check-site-status.php 2019-03-19 13:23:13.085916900 +0000
    @@ -573,7 +573,7 @@
    ( $module[‘required’] ? ‘error’ : ‘warning’ ),
    sprintf(
    // translators: %1$2: If a module is required or recommended. %2$s: The module name.
    – __( ‘The %1$s module, %2$s, is not installer, or has been disabled.’, ‘health-check’ ),
    + __( ‘The %1$s module, %2$s, is not installed, or has been disabled.’, ‘health-check’ ),
    ( $module[‘required’] ? __( ‘required’, ‘health-check’ ) : __( ‘optional’, ‘health-check’ ) ),
    $library
    )

Viewing 1 replies (of 1 total)
  • Plugin Author Marius L. J.

    (@clorith)

    Hiya,

    Thank you for the heads up, this is a known typo and has been fixed for the upcoming release (version 1.3.0) 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘Tiny typo in PHP module message’ is closed to new replies.