2016-07-28 23:14:52 +02:00
|
|
|
const messages = [
|
|
|
|
{
|
|
|
|
id: "app.pagination.goToPage",
|
2016-07-29 00:50:08 +02:00
|
|
|
defaultMessage: "<span class=\"sr-only\">Go to page </span>{pageNumber}",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Link content to go to page N. span is here for screen-readers",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.pagination.goToPageWithoutMarkup",
|
|
|
|
defaultMessage: "Go to page {pageNumber}",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Link title to go to page N",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.pagination.pageNavigation",
|
|
|
|
defaultMessage: "Page navigation",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "ARIA label for the nav block containing pagination",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.pagination.pageToGoTo",
|
|
|
|
description: "Title of the pagination modal",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Page to go to?",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.pagination.current",
|
|
|
|
description: "Current (page)",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "current",
|
|
|
|
},
|
2016-07-28 23:14:52 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|