php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #60851 [FR] French version is NOT correct.
Submitted: 2012-01-23 14:18 UTC Modified: 2012-01-23 20:25 UTC
From: keichi974 at yahoo dot fr Assigned: yannick (profile)
Status: Closed Package: Translation problem
PHP Version: 5.3.9 OS:
Private report: No CVE-ID: None
 [2012-01-23 14:18 UTC] keichi974 at yahoo dot fr
Description:
------------
---
From manual page: http://www.php.net/function.is-bool#refsect1-function.is-bool-
examples
---
English version (correct) :
// Since $b is not a boolean, it will return false
if (is_bool($b) === false) {
    echo "No, this is not a boolean";
}
French version is NOT correct.

Expected result:
----------------
Correction :

// Si $b n'est pas un booléen, is_bool retournera false
if (is_bool($b) === false) {
    echo "Non, ce n'est pas un booléen.";
}


Actual result:
--------------
French version (NOT correct) :

// Si $b n'est pas un booléen, is_bool retournera false
if (is_bool($b) === false) {
    echo "Oui, c'est un booléen.";
}


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-01-23 20:22 UTC] yannick@php.net
-Summary: French version is NOT correct. +Summary: [FR] French version is NOT correct.
 [2012-01-23 20:24 UTC] yannick@php.net
Automatic comment from SVN on behalf of yannick
Revision: http://svn.php.net/viewvc/?view=revision&revision=322637
Log: Fix bug #60851
 [2012-01-23 20:25 UTC] yannick@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.


 [2012-01-23 20:25 UTC] yannick@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: yannick
 [2020-12-30 12:49 UTC] nikic@php.net
Automatic comment on behalf of yannick
Revision: http://git.php.net/?p=doc/fr.git;a=commit;h=70b329b49475aada4f8fd75e3198e34bcc76f427
Log: Fix bug #60851
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 17:01:29 2024 UTC