Skip to content

Commit

Permalink
fix: adding translation label for pagination page item
Browse files Browse the repository at this point in the history
  • Loading branch information
NiclasNorin committed May 3, 2024
1 parent 6dfe8ac commit 3ee54f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,7 @@ if(!noUrl) {
total={totalPages}
langPrev={translation.previousPage}
langNext={translation.nextPage}
langGoToPage={translation.goToPage}
/>
}
</div>
Expand Down
3 changes: 2 additions & 1 deletion source/php/Module/Event/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,8 @@ public function script()
'fromAge' => __('From age', 'event-integration'),
'toAge' => __('To age', 'event-integration'),
'nextPage' => __('Next page', 'event-integration'),
'previousPage' => __('Previous page', 'event-integration')
'previousPage' => __('Previous page', 'event-integration'),
'goToPage' => __('Go to page', 'event-integration'),
)
);
}
Expand Down

0 comments on commit 3ee54f2

Please sign in to comment.