Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/09ea6d78e66f980142ae8cde57d38ca7daf90208
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
2 deletions
src/gui/UBTeacherBarWidget.cpp
@ -338,7 +338,10 @@ UBTeacherStudentAction::UBTeacherStudentAction(int actionNumber, QWidget *parent
mpLayout - > addWidget ( mpActionLabel , 0 ) ;
mpTeacherLayout = new QHBoxLayout ( ) ;
mpTeacherLabel = new QLabel ( tr ( " Teacher " ) , this ) ;
//TODO: I'm not able to translate this string using the normal way *qm file why?
// mpTeacherLabel = new QLabel(tr("Teacher"), this);
mpTeacherLabel = new QLabel ( tr ( " Enseignant " ) , this ) ;
mpTeacherLabel - > setAlignment ( Qt : : AlignTop ) ;
mpTeacher = new QTextEdit ( this ) ;
mpTeacher - > setObjectName ( " TeacherStudentBox " ) ;
@ -347,7 +350,8 @@ UBTeacherStudentAction::UBTeacherStudentAction(int actionNumber, QWidget *parent
mpLayout - > addLayout ( mpTeacherLayout , 1 ) ;
mpStudentLayout = new QHBoxLayout ( ) ;
mpStudentLabel = new QLabel ( tr ( " Student " ) , this ) ;
// mpStudentLabel = new QLabel(tr("Student"), this);
mpStudentLabel = new QLabel ( tr ( " Étudiant " ) , this ) ;
mpStudentLabel - > setAlignment ( Qt : : AlignTop ) ;
mpStudent = new QTextEdit ( this ) ;
mpStudent - > setObjectName ( " TeacherStudentBox " ) ;