mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
16 lines
223 B
C++
16 lines
223 B
C++
#pragma once
|
|
#include <types/Translation.hpp>
|
|
#include "en_US.hpp"
|
|
|
|
/**
|
|
* TODO Completar
|
|
*/
|
|
Translation_t Translation_ptBR() {
|
|
Translation_t r = Translation_enUS();
|
|
|
|
//Common texts
|
|
r.yes = (char*) "Sim";
|
|
|
|
return r;
|
|
}
|