branch develop updated (0cf001c -> 8bb79ba)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git from 0cf001c fixes #6433 fix form validation when adding new keyword/theme new 8bb79ba add translation of question status in parent list The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 8bb79baf09fa57050980fe1005a42b0178f19aaf Author: Yannick Martel <martel@©odelutin.com> Date: Thu Jan 29 11:59:22 2015 +0100 add translation of question status in parent list Summary of changes: coselmar-ui/src/main/webapp/views/questions/editquestion.html | 2 +- coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html | 2 +- coselmar-ui/src/main/webapp/views/questions/viewquestion.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit 8bb79baf09fa57050980fe1005a42b0178f19aaf Author: Yannick Martel <martel@©odelutin.com> Date: Thu Jan 29 11:59:22 2015 +0100 add translation of question status in parent list --- coselmar-ui/src/main/webapp/views/questions/editquestion.html | 2 +- coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html | 2 +- coselmar-ui/src/main/webapp/views/questions/viewquestion.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coselmar-ui/src/main/webapp/views/questions/editquestion.html b/coselmar-ui/src/main/webapp/views/questions/editquestion.html index fd8b99e..c5f2ea2 100644 --- a/coselmar-ui/src/main/webapp/views/questions/editquestion.html +++ b/coselmar-ui/src/main/webapp/views/questions/editquestion.html @@ -175,7 +175,7 @@ </td> <td>{{parent.submissionDate | date:'mediumDate'}}</td> <td><span ng-repeat="theme in parent.themes">{{theme}}, </span></td> - <td><span class="status-{{parent.status|lowercase}}"></span>{{parent.status}}</td> + <td><span class="status-{{parent.status|lowercase}}"></span>{{parent.status | translate}}</td> <td><a class="btn fa fa-minus" title="Remove parent question" ng-click="removeParent(parent)" ng-if="currentUser.role == 'SUPERVISOR'"/></td> diff --git a/coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html b/coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html index 14ae218..a67d6eb 100644 --- a/coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html +++ b/coselmar-ui/src/main/webapp/views/questions/modalQuestionSearch.html @@ -58,7 +58,7 @@ </td> <td>{{question.submissionDate | date:'mediumDate'}}</td> <td><span ng-repeat="theme in question.themes">{{theme}} ,</span></td> - <td><span class="status-{{question.status|lowercase}}"></span>{{question.status}}</td> + <td><span class="status-{{question.status|lowercase}}"></span>{{question.status | translate}}</td> <td> <a class="btn fa fa-plus" title="Add question as parent" ng-click="select(question)" ng-if="currentQuestionId != question.id"/></td> diff --git a/coselmar-ui/src/main/webapp/views/questions/viewquestion.html b/coselmar-ui/src/main/webapp/views/questions/viewquestion.html index f072552..ed3c79e 100644 --- a/coselmar-ui/src/main/webapp/views/questions/viewquestion.html +++ b/coselmar-ui/src/main/webapp/views/questions/viewquestion.html @@ -153,7 +153,7 @@ </dl> <dl> <dt>{{ 'question.metadata.status' | translate }}</dt> - <dd><span class="status-{{question.status|lowercase}}"></span>{{question.status}}</dd> + <dd><span class="status-{{question.status|lowercase}}"></span>{{question.status | translate}}</dd> </dl> <dl> <dt>{{ 'question.metadata.supervisors' | translate }}</dt> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm