Fix unfocalized strings
This commit is contained in:
parent
d64c0251a5
commit
4b849e0ab0
2 changed files with 4 additions and 2 deletions
|
@ -55,7 +55,7 @@ $(function() {
|
||||||
|
|
||||||
$('body')
|
$('body')
|
||||||
.modal({
|
.modal({
|
||||||
title : 'Failure',
|
title : text.modal_failure_title,
|
||||||
content : response,
|
content : response,
|
||||||
class : '',
|
class : '',
|
||||||
actions : [
|
actions : [
|
||||||
|
@ -74,7 +74,7 @@ $(function() {
|
||||||
|
|
||||||
$('body')
|
$('body')
|
||||||
.modal({
|
.modal({
|
||||||
title : 'Error',
|
title : text.modal_error_title,
|
||||||
content : response,
|
content : response,
|
||||||
class : '',
|
class : '',
|
||||||
actions : [
|
actions : [
|
||||||
|
|
|
@ -248,6 +248,8 @@ class Page
|
||||||
var text = {
|
var text = {
|
||||||
wishlist_no_selection : '<?= __('No wishlist selected.') ?>',
|
wishlist_no_selection : '<?= __('No wishlist selected.') ?>',
|
||||||
|
|
||||||
|
modal_error_title : '<?= __('Error') ?>',
|
||||||
|
modal_failure_title : '<?= __('Failure') ?>',
|
||||||
modal_failure_approve : '<?= __('Thanks for nothing') ?>',
|
modal_failure_approve : '<?= __('Thanks for nothing') ?>',
|
||||||
modal_warning_approve : '<?= __('Understood') ?>',
|
modal_warning_approve : '<?= __('Understood') ?>',
|
||||||
modal_success_title : '<?= __('Success') ?>',
|
modal_success_title : '<?= __('Success') ?>',
|
||||||
|
|
Loading…
Reference in a new issue