php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #72673 [PT_BR] There is no such word in Portuguese: "Destruivel"
Submitted: 2016-07-26 04:25 UTC Modified: 2016-09-26 17:24 UTC
From: rafael dot winter at gmail dot com Assigned: ae (profile)
Status: Closed Package: Translation problem
PHP Version: Irrelevant OS: Irrelevant
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: rafael dot winter at gmail dot com
New email:
PHP Version: OS:

 

 [2016-07-26 04:25 UTC] rafael dot winter at gmail dot com
Description:
------------
---
From manual page: http://www.php.net/language.oop5.decon
---

There is a problem in the Portuguese translation of the Example #3, about destructors. There is no such word in Portuguese: "destruivel". The code should be fixed to:


<?php
class MinhaClasseDestrutivel {
   function __construct() {
       print "No construtor\n";
       $this->name = "MinhaClasseDestrutível";
   }

   function __destruct() {
       print "Destruindo " . $this->name . "\n";
   }
}

$obj = new MinhaClasseDestrutivel();
?>



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-07-26 10:16 UTC] cmb@php.net
-Summary: There is no such word in Portuguese: "Destruivel" +Summary: [PT_BR] There is no such word in Portuguese: "Destruivel"
 [2016-09-26 17:21 UTC] ae@php.net
Automatic comment from SVN on behalf of ae
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=340198
Log: Fix #72673.
 [2016-09-26 17:24 UTC] ae@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: ae
 [2016-09-26 17:24 UTC] ae@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.


 [2020-12-30 10:45 UTC] nikic@php.net
Automatic comment on behalf of ae
Revision: http://git.php.net/?p=doc/pt_br.git;a=commit;h=2a1c4312917afa391c0d7d8a27e7224ed52683fe
Log: Fix #72673.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 09:01:27 2024 UTC