Skip to content

Commit

Permalink
Merge pull request #239 from helsingborg-stad/fix/adding-translation-…
Browse files Browse the repository at this point in the history
…label-for-pagination-item

fix: adding translation label for pagination page item
  • Loading branch information
sebastianthulin authored May 3, 2024
2 parents 6dfe8ac + 3ee54f2 commit 036dd67
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 036dd67

Please sign in to comment.