Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display the list of available brushes #221

Merged
merged 3 commits into from
Nov 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions syntaxhighlighter.php
Original file line number Diff line number Diff line change
Expand Up @@ -1592,15 +1592,15 @@ function settings_page() { ?>
<?php
echo wp_kses(
sprintf(
// translators: %1$s Lang parameter; %2$s Language parameter; %3$s Valid tags link.
// translators: %1$s Lang parameter; %2$s Language parameter; %3$s List of brush names.
_x(
'%1$s or %2$s &#8212; The language syntax to highlight with. You can alternately just use that as the tag, such as <code>[php]code[/php]</code>. <a href="%3$s">Click here</a> for a list of valid tags (under &quot;aliases&quot;).',
'%1$s or %2$s &#8212; The language syntax to highlight with. You can alternately just use that as the tag, such as <code>[php]code[/php]</code>. Available tags: %3$s.',
'language parameter',
'syntaxhighlighter'
),
'<code>lang</code>',
'<code>language</code>',
'http://alexgorbatchev.com/SyntaxHighlighter/manual/brushes/'
implode( ', ', array_keys( $this->brushes ) )
),
array(
'a' => array(
Expand Down