Skip to content

Commit

Permalink
Portuguese translators updated to 1.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtc committed Jan 12, 2021
1 parent b9bcbd0 commit c6d7487
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
16 changes: 14 additions & 2 deletions src/translator_br.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
* Fabio "FJTC" Jun Takada Chino <fjtc at brokenbits dot com dot br>
* Collaborators:
* Emerson Ferreira <nuskorpios at gmail dot com>
* Ulisses Guedes <uli1958 at hotmail dot com>
* Thanks to Jorge Ramos, Fernando Carijo and others for their contributions.
*
* History:
* 20200112:
* - Updated to 1.9.1;
* 20190203:
* - Slice methods added;
* 20180612:
Expand Down Expand Up @@ -49,7 +52,7 @@
#ifndef TRANSLATOR_BR_H
#define TRANSLATOR_BR_H

class TranslatorBrazilian : public TranslatorAdapter_1_8_19
class TranslatorBrazilian : public Translator
{
public:

Expand Down Expand Up @@ -2335,7 +2338,16 @@ class TranslatorBrazilian : public TranslatorAdapter_1_8_19
return "Dados Membros";
}


//////////////////////////////////////////////////////////////////////////
// new since 1.8.19
//////////////////////////////////////////////////////////////////////////

/** VHDL design unit documentation */
virtual QCString trDesignUnitDocumentation()
{
return "Documentação da Unidade de Projeto";
}

};

#endif
16 changes: 14 additions & 2 deletions src/translator_pt.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
* Fabio "FJTC" Jun Takada Chino <fjtc at brokenbits dot com dot br>
* Maintainer (until 04/28/2011):
* Rui Godinho Lopes <rui at ruilopes.com>
* Collaborators:
* Ulisses Guedes <uli1958 at hotmail dot com>
*
* Notes about this translation:
* Since I'm Brazilian, this translation may be odd or even incorect for
Expand All @@ -24,6 +26,8 @@
* VERSION HISTORY
* ---------------
* History:
* 20200112:
* - Updated to 1.9.1;
* 20190203:
* - Slice methods added;
* 20180612:
Expand Down Expand Up @@ -59,7 +63,7 @@
#define TRANSLATOR_PT_H


class TranslatorPortuguese : public TranslatorAdapter_1_8_19
class TranslatorPortuguese : public Translator
{
public:

Expand Down Expand Up @@ -2272,7 +2276,15 @@ class TranslatorPortuguese : public TranslatorAdapter_1_8_19
return "Dados Membros";
}


//////////////////////////////////////////////////////////////////////////
// new since 1.8.19
//////////////////////////////////////////////////////////////////////////

/** VHDL design unit documentation */
virtual QCString trDesignUnitDocumentation()
{
return "Documentação da Unidade de Projeto";
}
};

#endif

0 comments on commit c6d7487

Please sign in to comment.