Skip to content

Commit

Permalink
Add the rest of the translations
Browse files Browse the repository at this point in the history
  • Loading branch information
bordoni committed Sep 22, 2023
1 parent 16d9bb1 commit 8c13792
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions checks/code-obfuscation.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function check_zend_guard() {
return new Error(
'obfuscated_code_detected',
sprintf(
'Code Obfuscation tools are not permitted. Detected: %s',
__( 'Code Obfuscation tools are not permitted. Detected: %s', 'plugin-check' ),
'Zend Guard'
)
);
Expand All @@ -31,7 +31,7 @@ function check_sourcegardian() {
return new Error(
'obfuscated_code_detected',
sprintf(
'Code Obfuscation tools are not permitted. Detected: %s',
__( 'Code Obfuscation tools are not permitted. Detected: %s', 'plugin-check' ),
'Source Gardian'
)
);
Expand All @@ -44,7 +44,7 @@ function check_ioncube() {
return new Error(
'obfuscated_code_detected',
sprintf(
'Code Obfuscation tools are not permitted. Detected: %s',
__( 'Code Obfuscation tools are not permitted. Detected: %s', 'plugin-check' ),
'ionCube'
)
);
Expand Down
6 changes: 3 additions & 3 deletions checks/plugin-updaters.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function check_updaters() {
return new Error(
'plugin_updater_detected',
sprintf(
'Plugin Updater detected. These are not permitted in WordPress.org hosted plugins. Detected: %s',
__( 'Plugin Updater detected. These are not permitted in WordPress.org hosted plugins. Detected: %s', 'plugin-check' ),
esc_html( implode( ', ', $matches ) )
)
);
Expand All @@ -43,7 +43,7 @@ function check_updaters() {
return new Error(
'plugin_updater_detected',
sprintf(
'Plugin Updater detected. These are not permitted in WordPress.org hosted plugins. Detected: %s',
__( 'Plugin Updater detected. These are not permitted in WordPress.org hosted plugins. Detected: %s', 'plugin-check' ),
esc_html( $match )
)
);
Expand All @@ -63,7 +63,7 @@ function check_updater_warnings() {
return new Warning(
'update_modification_detected',
sprintf(
'Detected code which may be altering WordPress update routines. Detected: %s',
__( 'Detected code which may be altering WordPress update routines. Detected: %s', 'plugin-check' ),
esc_html( $match )
)
);
Expand Down

0 comments on commit 8c13792

Please sign in to comment.