mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 16:20:49 +01:00
[apps][escher] I18n
Change-Id: I4d6f40155a8a182184af9ef2a583d0469196ffd5
This commit is contained in:
@@ -13,8 +13,8 @@ PredictionParameterController::PredictionParameterController(Responder * parentR
|
||||
{
|
||||
}
|
||||
|
||||
const char * PredictionParameterController::title() const {
|
||||
return "Droite de regression";
|
||||
const char * PredictionParameterController::title() {
|
||||
return I18n::translate(I18n::Message::RegressionSlope);
|
||||
}
|
||||
|
||||
View * PredictionParameterController::view() {
|
||||
@@ -56,8 +56,8 @@ KDCoordinate PredictionParameterController::cellHeight() {
|
||||
|
||||
void PredictionParameterController::willDisplayCellForIndex(HighlightCell * cell, int index) {
|
||||
PointerTableCellWithChevron * myCell = (PointerTableCellWithChevron *)cell;
|
||||
const char * titles[3] = {"Prediction sachant x", "Prediction sachant y"};
|
||||
myCell->setText(titles[index]);
|
||||
I18n::Message titles[2] = {I18n::Message::XPrediction, I18n::Message::YPrediction};
|
||||
myCell->setMessage(titles[index]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user