this.survey = survey;
}
public String[][] translate() {
List<String[]> pageTranslation = new ArrayList<String[]>();
Page currentPage = survey.getCurrentPage();
pageTranslation.add(addPage(currentPage, survey.getCurrentPageNumber()));
pageTranslation.add(addPreviousButton());
pageTranslation.add(addNextButton());
pageTranslation.add(addFinishButton());
for (SurveyElement se : currentPage.getSurveyElements()) {
if (se instanceof Label) {
pageTranslation.add(addLabel((Label) se));
}
if (se instanceof Question) {
if (se instanceof FileChooserQuestion) {