Skip to content

Commit

Permalink
Fixed issue #10490: missing translation
Browse files Browse the repository at this point in the history
Fixed issue: Error when returning from action button configuration
  • Loading branch information
c-schmitz committed Feb 18, 2016
1 parent aa67a59 commit 36efdba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/views/admin/authentication/login.php
Expand Up @@ -118,7 +118,7 @@
<div class="row login-submit login-content">
<div class="col-lg-12">
<p><input type='hidden' name='action' value='login' />
<button type="submit" class="btn btn-default" name='login_submit' value='<?php eT("Login"); ?>' >Submit</button><br />
<button type="submit" class="btn btn-default" name='login_submit' value='login'><?php eT('Log in');?></button><br />
<br/>
<?php
if (Yii::app()->getConfig("display_user_password_in_email") === true)
Expand Down
4 changes: 2 additions & 2 deletions application/views/admin/homepagesettings/index.php
Expand Up @@ -9,8 +9,8 @@
'fullpagebar' => array(
'boxbuttons'=>true,
'returnbutton'=>array(
'url'=>true,
'text'=>gT('Return to admin panel'),
'url'=>'index',
'text'=>gT('Close'),
),
)
)); ?>
Expand Down
1 change: 0 additions & 1 deletion application/views/admin/survey/Question/listquestions.php
Expand Up @@ -62,7 +62,6 @@
// Number of row per page selection
'id' => 'question-grid',
'type'=>'striped',

'emptyText'=>gT('No questions found.'),
'summaryText'=>gT('Displaying {start}-{end} of {count} result(s).') .' '.sprintf(gT('%s rows per page'),
CHtml::dropDownList(
Expand Down

0 comments on commit 36efdba

Please sign in to comment.