Skip to content

Commit

Permalink
Merge pull request #238 from helsingborg-stad/fix/adding-labels-for-p…
Browse files Browse the repository at this point in the history
…agination

fix: adding labels for pagination
  • Loading branch information
NiclasNorin authored May 3, 2024
2 parents 98c63db + cc88fe0 commit a5f3ee1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ if(!noUrl) {
next={this.nextPage}
prev={this.prevPage}
total={totalPages}
langPrev={translation.previousPage}
langNext={translation.nextPage}
/>
}
</div>
Expand Down
4 changes: 3 additions & 1 deletion source/php/Module/Event/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ public function script()
'selectAge' => __('Select age', 'event-integration'),
'resetFilters' => __('Reset filters', 'event-integration'),
'fromAge' => __('From age', 'event-integration'),
'toAge' => __('To age', 'event-integration')
'toAge' => __('To age', 'event-integration'),
'nextPage' => __('Next page', 'event-integration'),
'previousPage' => __('Previous page', 'event-integration')
)
);
}
Expand Down

0 comments on commit a5f3ee1

Please sign in to comment.