Skip to content

Commit b013b64

Browse files
committed
fix: translation slug issue
1 parent c41657f commit b013b64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Installer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function checkRequirements()
114114
esc_html(
115115
sprintf(
116116
// translators: 1: Current PHP version, 2: Version required by the uploaded plugin.
117-
__('The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'),
117+
'The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.',
118118
PHP_VERSION,
119119
$this->_requirements['php']
120120
)
@@ -128,7 +128,7 @@ public function checkRequirements()
128128
esc_html(
129129
sprintf(
130130
// translators: 1: Current WordPress version, 2: Version required by the uploaded plugin.
131-
__('Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'),
131+
'Your WordPress version is %1$s, however the uploaded plugin requires %2$s.',
132132
get_bloginfo('version'),
133133
$this->_requirements['wp']
134134
),

0 commit comments

Comments
 (0)