Skip to content

Commit dbcbe0c

Browse files
committed
Portuguese tranlators updated to 1.11.0.
1 parent 26a780a commit dbcbe0c

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

src/translator_br.h

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* Thanks to Jorge Ramos, Fernando Carijo and others for their contributions.
2020
*
2121
* History:
22+
* 20240204:
23+
* - Updated to 1.11.0:
2224
* 20231107:
2325
* - Updated to 1.10.0:
2426
* 20230817:
@@ -166,7 +168,7 @@ namespace PortugueseTranslatorUtils
166168
}
167169
}
168170

169-
class TranslatorBrazilian : public TranslatorAdapter_1_11_0
171+
class TranslatorBrazilian : public Translator
170172
{
171173
public:
172174

@@ -2851,6 +2853,13 @@ class TranslatorBrazilian : public TranslatorAdapter_1_11_0
28512853
{
28522854
return "Copiado para a área de transferência";
28532855
}
2856+
//////////////////////////////////////////////////////////////////////////
2857+
// new since 1.11.0
2858+
//////////////////////////////////////////////////////////////////////////
2859+
QCString trImportant() override
2860+
{
2861+
return "Importante";
2862+
}
28542863
};
28552864

28562865
#endif

src/translator_pt.h

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* VERSION HISTORY
2727
* ---------------
2828
* History:
29+
* 20240204:
30+
* - Updated to 1.11.0:
2931
* 20231107:
3032
* - Updated to 1.10.0:
3133
* 20230817:
@@ -79,7 +81,7 @@
7981

8082
#include "translator_br.h"
8183

82-
class TranslatorPortuguese : public TranslatorAdapter_1_11_0
84+
class TranslatorPortuguese : public Translator
8385
{
8486
public:
8587

@@ -2714,6 +2716,13 @@ class TranslatorPortuguese : public TranslatorAdapter_1_11_0
27142716
{
27152717
return "Copiado para a área de transferência";
27162718
}
2719+
//////////////////////////////////////////////////////////////////////////
2720+
// new since 1.11.0
2721+
//////////////////////////////////////////////////////////////////////////
2722+
QCString trImportant() override
2723+
{
2724+
return "Importante";
2725+
}
27172726
};
27182727

27192728
#endif

0 commit comments

Comments
 (0)