Skip to content

Commit

Permalink
Merge pull request #221 from Automattic/add/brush-list
Browse files Browse the repository at this point in the history
Display the list of available brushes
  • Loading branch information
merkushin authored Nov 19, 2021
2 parents 971daf5 + b04d4aa commit ebdd9b8
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit ebdd9b8

Please sign in to comment.