Skip to content
Snippets Groups Projects
Commit 5a0cd031 authored by Bartek Jaskulski's avatar Bartek Jaskulski
Browse files

Merge branch 'remove-arrow' into 'master'

remove arrow

See merge request !41
parents 1df88482 b27be729
No related branches found
No related tags found
1 merge request!41remove arrow
Pipeline #157049 failed
## [Unreleased]
### Changed
- Removed arrows from user-facing messages.
## [3.5.1] - 2022-08-30
### Fixed
- de_DE translators
......
......@@ -75,19 +75,19 @@ msgstr ""
#: Basic_Requirement_Checker.php:456
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
msgstr ""
"Das &#8220;%s&#8221; Plugin erfordert ein kostenloses %s Plugin. <a href=\"%s"
"\">Installiere %s</a>"
"\">Installiere %s</a>"
#: Basic_Requirement_Checker.php:465
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s\">Activate "
"%s</a>"
"%s</a>"
msgstr ""
"Das &#8220;%s&#8221; Plugin erfordert die Aktivierung des %s Plugins. <a href=\"%s"
"\">Aktiviere %s</a>"
"\">Aktiviere %s</a>"
#: Basic_Requirement_Checker.php:512
#, php-format
......
......@@ -75,19 +75,19 @@ msgstr ""
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s"
"</a>"
"</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s"
"</a>"
"</a>"
#: Basic_Requirement_Checker.php:465
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s"
"\">Activate %s</a>"
"\">Activate %s</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s"
"\">Activate %s</a>"
"\">Activate %s</a>"
#: Basic_Requirement_Checker.php:512
#, php-format
......
......@@ -74,18 +74,18 @@ msgstr ""
#: Basic_Requirement_Checker.php:456
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
#: Basic_Requirement_Checker.php:465
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s\">Activate "
"%s</a>"
"%s</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s\">Activate "
"%s</a>"
"%s</a>"
#: Basic_Requirement_Checker.php:512
#, php-format
......
......@@ -74,18 +74,18 @@ msgstr ""
#: Basic_Requirement_Checker.php:456
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install %s</a>"
#: Basic_Requirement_Checker.php:465
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s\">Activate "
"%s</a>"
"%s</a>"
msgstr ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s\">Activate "
"%s</a>"
"%s</a>"
#: Basic_Requirement_Checker.php:512
#, php-format
......
......@@ -76,19 +76,19 @@ msgstr ""
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires free %s plugin. <a href=\"%s\">Install"
"%s</a>"
"%s</a>"
msgstr ""
"Wtyczka &#8220;%s&#8221; wymaga bezpłatnej wtyczki %s. <a href=\"%s"
"\">Zainstaluj %s</a>"
"\">Zainstaluj %s</a>"
#: Basic_Requirement_Checker.php:465
#, php-format
msgid ""
"The &#8220;%s&#8221; plugin requires activating %s plugin. <a href=\"%s"
"\">Activate %s</a>"
"\">Activate %s</a>"
msgstr ""
"Wtyczka &#8220;%s&#8221; wymaga aktywnej wtyczki %s. <a href=\"%s\">Włącz %s"
"</a>"
"</a>"
#: Basic_Requirement_Checker.php:512
#, php-format
......
......@@ -453,7 +453,7 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
if ( ! self::is_wp_plugin_installed( $name ) ) {
$install_url = $this->prepare_plugin_repository_install_url( $plugin_info );
return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires free %s plugin. <a href="%s">Install %s</a>',
return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires free %s plugin. <a href="%s">Install %s</a>',
$this->get_text_domain() ), array( 'a' => array( 'href' => array() ) ) ),
$this->plugin_name, $nice_name, esc_url( $install_url ), $nice_name ) );
}
......@@ -462,7 +462,7 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
$activate_url .= '&_wpnonce=' . urlencode( wp_create_nonce( 'activate-plugin_' . $name ) );
}
return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires activating %s plugin. <a href="%s">Activate %s</a>',
return $this->prepare_notice_message( sprintf( wp_kses( __( 'The &#8220;%s&#8221; plugin requires activating %s plugin. <a href="%s">Activate %s</a>',
$this->get_text_domain() ), array( 'a' => array( 'href' => array() ) ) ),
$this->plugin_name, $nice_name, esc_url( admin_url( $activate_url ) ), $nice_name ) );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment