[PHP-WEBMASTER] [web-php] PR #1171: Fix parameter link scrolling to the correct position

2024-11-28 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1171 Author: takaram The action of clicking a parameter link in manual pages was broken, as it always scrolls to the first parameter instead of clicked one. This PR fixes the bug.

[PHP-WEBMASTER] [web-php] PR #1157: Update Japanese translation of PHP 8.4 announcement page

2024-11-21 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1157 Author: takaram Apply #1154 to Japanese page

[PHP-WEBMASTER] [web-php] PR #1154: php8.4: Fix the title and RFC link of PDO driver specific subclasses

2024-11-21 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1154 Author: takaram PHP 8.4 has accepted two RFCs with similar titles, and they seem to be mixed up. - https://wiki.php.net/rfc/pdo_driver_specific_subclasses - https://wiki.php.net/rfc/pdo_driver_specific_parsers This PR also adds `Pdo\Pgsql

[PHP-WEBMASTER] [web-php] PR #1147: WIP: Add Japanese translation of PHP 8.4 announcement page

2024-11-21 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1147 Author: takaram

[PHP-WEBMASTER] [web-php] PR #1098: Auto-detect user's language on PHP8.3 release page

2024-10-17 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1098 Author: takaram Follow up of #1081 `/releases/8.3/index.php` detects the browser's preferred language and redirects to the page of the language if available. If the language is not available, it falls back to English.

[PHP-WEBMASTER] [web-php] PR #1081: Move `language_choose_code()` into new `LangChooser` class

2024-09-23 Thread takaram
Pull Request: https://github.com/php/web-php/pull/1081 Author: takaram This PR introduces a new class, `LangChooser`, replacing the `language_choose_code()` function. The goal is to make `/releases/8.3/index.php` respect users' language preferences, similar to the manual pages. I init