Commit: ed2ca51f72df01e0ca6113fa2174b3c8695efb9a Author: Gabriel Caruso <[email protected]> Sat, 28 Nov 2020 11:21:08 -0300 Parents: 69bca72650fd941110e72f5a00a441a2175520ed Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=ed2ca51f72df01e0ca6113fa2174b3c8695efb9a Log: Sync pt_BR translation of PHP 8.0 Release Page This code is highlighted in all the other translations. Changed paths: M releases/8.0/pt_BR.php Diff: diff --git a/releases/8.0/pt_BR.php b/releases/8.0/pt_BR.php index fccd5d345..9470796bc 100644 --- a/releases/8.0/pt_BR.php +++ b/releases/8.0/pt_BR.php @@ -304,14 +304,18 @@ if ($session !== null) { <div class="php8-compare__block example-contents"> <div class="php8-compare__label">PHP 7</div> <div class="php8-code phpcode"> - <pre>0 == 'foobar' // true</pre> + <?php highlight_php_trimmed( + '0 == \'foobar\' // true' + );?> </div> </div> <div class="php8-compare__arrow"></div> <div class="php8-compare__block example-contents"> <div class="php8-compare__label php8-compare__label_new">PHP 8</div> <div class="php8-code phpcode"> - <pre>0 == 'foobar' // false</pre> + <?php highlight_php_trimmed( + '0 == \'foobar\' // false' + );?> </div> </div> </div> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
