Skip to content

Commit

Permalink
Merge branch 'dev' into dev-11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Sep 13, 2024
2 parents 23eb13e + 8410887 commit 00f4a45
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"phpstan/phpstan": "1.12.2",
"phpunit/php-code-coverage": "10.1.16",
"phpunit/phpcov": "^9.0",
"phpunit/phpunit": "10.5.32",
"phpunit/phpunit": "10.5.34",
"pietercolpaert/hardf": "0.5.0",
"squizlabs/php_codesniffer": "3.10.2"
},
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
$confirmAttrs['id'] = $id;
}
if ($title = $this->confirmTitle) {
$confirmAttrs['title'] = $title;
$confirmAttrs['title'] = $this->translate($title);
}
if ($class = $this->confirmClass) {
$confirmAttrs['class'] .= " $class";
Expand All @@ -68,7 +68,7 @@
$cancelAttrs['id'] = $id;
}
if ($title = $this->cancelTitle) {
$cancelAttrs['title'] = $title;
$cancelAttrs['title'] = $this->translate($title);
}
if ($class = $this->cancelClass) {
$cancelAttrs['class'] .= " $class";
Expand Down
4 changes: 2 additions & 2 deletions themes/bootstrap3/templates/checkouts/history.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
'buttonLabel' => 'loan_history_purge_selected',
'header' => 'loan_history_confirm_purge_selected',
'confirmId' => 'confirm_purge_selected_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'loan_history_confirm_purge_selected',
'cancelClass' => 'confirm_purge_no',
]
)
Expand All @@ -69,7 +69,7 @@
'buttonLabel' => 'loan_history_purge_all',
'header' => 'loan_history_confirm_purge_all',
'confirmId' => 'confirm_purge_all_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'loan_history_confirm_purge_all',
'cancelClass' => 'confirm_purge_no',
]
)
Expand Down
2 changes: 1 addition & 1 deletion themes/bootstrap3/templates/holds/list.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
'buttonLabel' => 'hold_cancel_all',
'header' => 'confirm_hold_cancel_all_text',
'confirmId' => 'confirm_cancel_all_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'confirm_hold_cancel_all_text',
'cancelClass' => 'confirm_cancel_no',
'ignoreLightbox' => true,
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
$confirmAttrs['id'] = $id;
}
if ($title = $this->confirmTitle) {
$confirmAttrs['title'] = $title;
$confirmAttrs['title'] = $this->translate($title);
}
if ($class = $this->confirmClass) {
$confirmAttrs['class'] .= " $class";
Expand All @@ -68,7 +68,7 @@
$cancelAttrs['id'] = $id;
}
if ($title = $this->cancelTitle) {
$cancelAttrs['title'] = $title;
$cancelAttrs['title'] = $this->translate($title);
}
if ($class = $this->cancelClass) {
$cancelAttrs['class'] .= " $class";
Expand Down
4 changes: 2 additions & 2 deletions themes/bootstrap5/templates/checkouts/history.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
'buttonLabel' => 'loan_history_purge_selected',
'header' => 'loan_history_confirm_purge_selected',
'confirmId' => 'confirm_purge_selected_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'loan_history_confirm_purge_selected',
'cancelClass' => 'confirm_purge_no',
]
)
Expand All @@ -69,7 +69,7 @@
'buttonLabel' => 'loan_history_purge_all',
'header' => 'loan_history_confirm_purge_all',
'confirmId' => 'confirm_purge_all_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'loan_history_confirm_purge_all',
'cancelClass' => 'confirm_purge_no',
]
)
Expand Down
2 changes: 1 addition & 1 deletion themes/bootstrap5/templates/holds/list.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
'buttonLabel' => 'hold_cancel_all',
'header' => 'confirm_hold_cancel_all_text',
'confirmId' => 'confirm_cancel_all_yes',
'confirmTitle' => 'bookbag_confirm_empty',
'confirmTitle' => 'confirm_hold_cancel_all_text',
'cancelClass' => 'confirm_cancel_no',
'ignoreLightbox' => true,
]
Expand Down

0 comments on commit 00f4a45

Please sign in to comment.