mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
[apps][escher] I18n
Change-Id: I4d6f40155a8a182184af9ef2a583d0469196ffd5
This commit is contained in:
@@ -7,15 +7,15 @@ using namespace Shared;
|
||||
namespace Sequence {
|
||||
|
||||
ListParameterController::ListParameterController(ListController * listController, SequenceStore * sequenceStore) :
|
||||
Shared::ListParameterController(listController, sequenceStore),
|
||||
m_typeCell(PointerTableCellWithChevronAndExpression((char *)"Type de suite")),
|
||||
Shared::ListParameterController(listController, sequenceStore, I18n::Message::SequenceColor, I18n::Message::DeleteSequence),
|
||||
m_typeCell(PointerTableCellWithChevronAndExpression(I18n::Message::SequenceType)),
|
||||
m_typeParameterController(TypeParameterController(this, sequenceStore, listController, TableCell::Layout::Horizontal, Metric::CommonTopMargin, Metric::CommonRightMargin,
|
||||
Metric::CommonBottomMargin, Metric::CommonLeftMargin))
|
||||
{
|
||||
}
|
||||
|
||||
const char * ListParameterController::title() const {
|
||||
return "Options de la suite";
|
||||
const char * ListParameterController::title() {
|
||||
return I18n::translate(I18n::Message::SequenceOptions);
|
||||
}
|
||||
|
||||
void ListParameterController::setFunction(Shared::Function * function) {
|
||||
|
||||
Reference in New Issue
Block a user