From 74781b028226194b9527d7efec30052a0362bbb7 Mon Sep 17 00:00:00 2001 From: Tarun Chauhan Date: Thu, 6 Apr 2023 18:35:43 +0530 Subject: [PATCH] fix(theme-translations): remove redundant navigation text in aria label (#8842) Co-authored-by: Tarun Chauhan --- .../docusaurus-theme-classic/src/theme/DocPaginator/index.tsx | 2 +- .../docusaurus-theme-translations/locales/ar/theme-common.json | 2 +- .../locales/base/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/bn/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/cs/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/da/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/de/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/es/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/fa/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/fil/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/fr/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/hi/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/hu/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/it/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/ja/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/ko/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/nb/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/nl/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/pl/theme-common.json | 2 +- .../locales/pt-BR/theme-common.json | 2 +- .../locales/pt-PT/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/ru/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/sl/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/sr/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/sv/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/tr/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/uk/theme-common.json | 2 +- .../docusaurus-theme-translations/locales/vi/theme-common.json | 2 +- .../locales/zh-Hans/theme-common.json | 2 +- .../locales/zh-Hant/theme-common.json | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/packages/docusaurus-theme-classic/src/theme/DocPaginator/index.tsx b/packages/docusaurus-theme-classic/src/theme/DocPaginator/index.tsx index 1d8823caf0..84928d8f2a 100644 --- a/packages/docusaurus-theme-classic/src/theme/DocPaginator/index.tsx +++ b/packages/docusaurus-theme-classic/src/theme/DocPaginator/index.tsx @@ -17,7 +17,7 @@ export default function DocPaginator(props: Props): JSX.Element { className="pagination-nav docusaurus-mt-lg" aria-label={translate({ id: 'theme.docs.paginator.navAriaLabel', - message: 'Docs pages navigation', + message: 'Docs pages', description: 'The ARIA label for the docs pagination', })}> {previous && ( diff --git a/packages/docusaurus-theme-translations/locales/ar/theme-common.json b/packages/docusaurus-theme-translations/locales/ar/theme-common.json index 6503db01e8..901f81db7f 100644 --- a/packages/docusaurus-theme-translations/locales/ar/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/ar/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} مواد", "theme.docs.breadcrumbs.home": "الرئيسية", "theme.docs.breadcrumbs.navAriaLabel": "التنقل التفصيلي", - "theme.docs.paginator.navAriaLabel": "التنقل بين صفحات الددات", + "theme.docs.paginator.navAriaLabel": "صفحة التوثيق", "theme.docs.paginator.next": "التالي", "theme.docs.paginator.previous": "السابق", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/base/theme-common.json b/packages/docusaurus-theme-translations/locales/base/theme-common.json index f8e0943fbd..0ba6ac511a 100644 --- a/packages/docusaurus-theme-translations/locales/base/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/base/theme-common.json @@ -83,7 +83,7 @@ "theme.docs.breadcrumbs.home___DESCRIPTION": "The ARIA label for the home page in the breadcrumbs", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", "theme.docs.breadcrumbs.navAriaLabel___DESCRIPTION": "The ARIA label for the breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Docs pages navigation", + "theme.docs.paginator.navAriaLabel": "Docs pages", "theme.docs.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the docs pagination", "theme.docs.paginator.next": "Next", "theme.docs.paginator.next___DESCRIPTION": "The label used to navigate to the next doc", diff --git a/packages/docusaurus-theme-translations/locales/bn/theme-common.json b/packages/docusaurus-theme-translations/locales/bn/theme-common.json index 5592dec6b3..be2f437532 100644 --- a/packages/docusaurus-theme-translations/locales/bn/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/bn/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "ডক্স পৃষ্টাগুলির নেভিগেশন", + "theme.docs.paginator.navAriaLabel": "ডক্স পেজ", "theme.docs.paginator.next": "পরবর্তী", "theme.docs.paginator.previous": "পূর্ববর্তী", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/cs/theme-common.json b/packages/docusaurus-theme-translations/locales/cs/theme-common.json index 49b04df3d5..c3793868fe 100644 --- a/packages/docusaurus-theme-translations/locales/cs/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/cs/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Stránkování dokumentace", + "theme.docs.paginator.navAriaLabel": "Stránka dokumentace", "theme.docs.paginator.next": "Další", "theme.docs.paginator.previous": "Předchozí", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/da/theme-common.json b/packages/docusaurus-theme-translations/locales/da/theme-common.json index a42dcc8301..71b041382e 100644 --- a/packages/docusaurus-theme-translations/locales/da/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/da/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Dokumentside navigation", + "theme.docs.paginator.navAriaLabel": "Dokumentside", "theme.docs.paginator.next": "Næste", "theme.docs.paginator.previous": "Tidligere", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/de/theme-common.json b/packages/docusaurus-theme-translations/locales/de/theme-common.json index 87645c6cdb..936e43c6d8 100644 --- a/packages/docusaurus-theme-translations/locales/de/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/de/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} Einträge", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Dokumentation Seiten Navigation", + "theme.docs.paginator.navAriaLabel": "Dokumentation Seiten", "theme.docs.paginator.next": "Weiter", "theme.docs.paginator.previous": "Zurück", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/es/theme-common.json b/packages/docusaurus-theme-translations/locales/es/theme-common.json index 5dd0182e97..99b50437d9 100644 --- a/packages/docusaurus-theme-translations/locales/es/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/es/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Navegación de páginas de documentos", + "theme.docs.paginator.navAriaLabel": "Página del documento", "theme.docs.paginator.next": "Siguiente", "theme.docs.paginator.previous": "Anterior", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/fa/theme-common.json b/packages/docusaurus-theme-translations/locales/fa/theme-common.json index 65852f81c2..d434e72ef6 100644 --- a/packages/docusaurus-theme-translations/locales/fa/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/fa/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} مورد", "theme.docs.breadcrumbs.home": "صفحه اصلی", "theme.docs.breadcrumbs.navAriaLabel": "نشانگر صفحات", - "theme.docs.paginator.navAriaLabel": "کنترل صفحات مطالب", + "theme.docs.paginator.navAriaLabel": "Docs Pages", "theme.docs.paginator.next": "بعدی", "theme.docs.paginator.previous": "قبلی", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/fil/theme-common.json b/packages/docusaurus-theme-translations/locales/fil/theme-common.json index 7af9ac9d4a..f7de7afb71 100644 --- a/packages/docusaurus-theme-translations/locales/fil/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/fil/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Nabegasyón para sa mga pahinang docs.", + "theme.docs.paginator.navAriaLabel": "Docs Pages", "theme.docs.paginator.next": "Sumunod", "theme.docs.paginator.previous": "Naraaan", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/fr/theme-common.json b/packages/docusaurus-theme-translations/locales/fr/theme-common.json index 58e1528620..d46f0b2fe8 100644 --- a/packages/docusaurus-theme-translations/locales/fr/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/fr/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} éléments", "theme.docs.breadcrumbs.home": "Page d'accueil", "theme.docs.breadcrumbs.navAriaLabel": "Fil d'Ariane", - "theme.docs.paginator.navAriaLabel": "Pagination des documents", + "theme.docs.paginator.navAriaLabel": "Pages de documentation", "theme.docs.paginator.next": "Suivant", "theme.docs.paginator.previous": "Précédent", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Fermer la barre de navigation", diff --git a/packages/docusaurus-theme-translations/locales/hi/theme-common.json b/packages/docusaurus-theme-translations/locales/hi/theme-common.json index 8f1a68f717..16c35b7e5e 100644 --- a/packages/docusaurus-theme-translations/locales/hi/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/hi/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "डॉक्स पेज नेविगेशन", + "theme.docs.paginator.navAriaLabel": "डॉक्स पेज", "theme.docs.paginator.next": "अगला", "theme.docs.paginator.previous": "पिछ्ला", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/hu/theme-common.json b/packages/docusaurus-theme-translations/locales/hu/theme-common.json index 9ffbf2b9cc..b66329b8a7 100644 --- a/packages/docusaurus-theme-translations/locales/hu/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/hu/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} elemek", "theme.docs.breadcrumbs.home": "Kezdőlap", "theme.docs.breadcrumbs.navAriaLabel": "Navigációs sáv a jelenlegi oldalhoz", - "theme.docs.paginator.navAriaLabel": "Dokumentációs oldal navigációja", + "theme.docs.paginator.navAriaLabel": "Dokumentációs oldal", "theme.docs.paginator.next": "Következő oldal", "theme.docs.paginator.previous": "Előző oldal", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Navigációs sáv bezárása", diff --git a/packages/docusaurus-theme-translations/locales/it/theme-common.json b/packages/docusaurus-theme-translations/locales/it/theme-common.json index cd1c9f9678..1715d241f1 100644 --- a/packages/docusaurus-theme-translations/locales/it/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/it/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Navigazione delle pagine dei documenti", + "theme.docs.paginator.navAriaLabel": "Pagina del documento", "theme.docs.paginator.next": "Successivo", "theme.docs.paginator.previous": "Precedente", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/ja/theme-common.json b/packages/docusaurus-theme-translations/locales/ja/theme-common.json index d1926fb467..24c3badade 100644 --- a/packages/docusaurus-theme-translations/locales/ja/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/ja/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count}項目", "theme.docs.breadcrumbs.home": "ホームページ", "theme.docs.breadcrumbs.navAriaLabel": "パンくずリストのナビゲーション", - "theme.docs.paginator.navAriaLabel": "ドキュメントのナビゲーション", + "theme.docs.paginator.navAriaLabel": "ドキュメントページ", "theme.docs.paginator.next": "次へ", "theme.docs.paginator.previous": "前へ", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/ko/theme-common.json b/packages/docusaurus-theme-translations/locales/ko/theme-common.json index 3adbe4fe9c..382305d971 100644 --- a/packages/docusaurus-theme-translations/locales/ko/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/ko/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} 항목", "theme.docs.breadcrumbs.home": "홈", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "문서 탐색", + "theme.docs.paginator.navAriaLabel": "문서 페이지", "theme.docs.paginator.next": "다음", "theme.docs.paginator.previous": "이전", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/nb/theme-common.json b/packages/docusaurus-theme-translations/locales/nb/theme-common.json index 40496d5017..473a14a3fa 100644 --- a/packages/docusaurus-theme-translations/locales/nb/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/nb/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} artikler", "theme.docs.breadcrumbs.home": "Hjemmeside", "theme.docs.breadcrumbs.navAriaLabel": "Søkvei", - "theme.docs.paginator.navAriaLabel": "Dokumenter-sidernavigasjon", + "theme.docs.paginator.navAriaLabel": "Dokumenter side", "theme.docs.paginator.next": "Neste", "theme.docs.paginator.previous": "Forrige", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Lukk navigasjonslinjen", diff --git a/packages/docusaurus-theme-translations/locales/nl/theme-common.json b/packages/docusaurus-theme-translations/locales/nl/theme-common.json index 048d9955c7..24ae284112 100644 --- a/packages/docusaurus-theme-translations/locales/nl/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/nl/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} artikelen", "theme.docs.breadcrumbs.home": "Homepagina", "theme.docs.breadcrumbs.navAriaLabel": "Broodkruimels", - "theme.docs.paginator.navAriaLabel": "Paginanavigatie documentatie", + "theme.docs.paginator.navAriaLabel": "Documentatie pagina", "theme.docs.paginator.next": "Volgende", "theme.docs.paginator.previous": "Vorige", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/pl/theme-common.json b/packages/docusaurus-theme-translations/locales/pl/theme-common.json index 7cb0434b3e..1eac16ece1 100644 --- a/packages/docusaurus-theme-translations/locales/pl/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/pl/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} elementów", "theme.docs.breadcrumbs.home": "Strona główna", "theme.docs.breadcrumbs.navAriaLabel": "Pasek nawigacji", - "theme.docs.paginator.navAriaLabel": "Nawigacja na stronie dokumentacji", + "theme.docs.paginator.navAriaLabel": "Strona dokumentacji", "theme.docs.paginator.next": "Następna strona", "theme.docs.paginator.previous": "Poprzednia strona", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Zamknij panel nawigacji", diff --git a/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json b/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json index 0d54b9a52d..bb4f9c4288 100644 --- a/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Navigação das páginas de documentação", + "theme.docs.paginator.navAriaLabel": "Páginas de documentação", "theme.docs.paginator.next": "Próxima", "theme.docs.paginator.previous": "Anterior", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json b/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json index 55be758b6b..f60c88a8e4 100644 --- a/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Navigação das páginas de documentação", + "theme.docs.paginator.navAriaLabel": "Páginas de documento", "theme.docs.paginator.next": "Próxima", "theme.docs.paginator.previous": "Anterior", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/ru/theme-common.json b/packages/docusaurus-theme-translations/locales/ru/theme-common.json index 622b8fb955..c95e81a867 100644 --- a/packages/docusaurus-theme-translations/locales/ru/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/ru/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} элемент|{count} элемента|{count} элементов", "theme.docs.breadcrumbs.home": "Главная страница", "theme.docs.breadcrumbs.navAriaLabel": "Навигационная цепочка текущей страницы", - "theme.docs.paginator.navAriaLabel": "Навигация по странице документации", + "theme.docs.paginator.navAriaLabel": "Страница документа", "theme.docs.paginator.next": "Следующая страница", "theme.docs.paginator.previous": "Предыдущая страница", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Закрыть панель навигации", diff --git a/packages/docusaurus-theme-translations/locales/sl/theme-common.json b/packages/docusaurus-theme-translations/locales/sl/theme-common.json index d93bb2ce0f..aee64bc255 100644 --- a/packages/docusaurus-theme-translations/locales/sl/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/sl/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} vnosov", "theme.docs.breadcrumbs.home": "Domača stran", "theme.docs.breadcrumbs.navAriaLabel": "Drobtine", - "theme.docs.paginator.navAriaLabel": "Navigacija po dokumentaciji", + "theme.docs.paginator.navAriaLabel": "Strani z dokumenti", "theme.docs.paginator.next": "Naslednji", "theme.docs.paginator.previous": "Prejšnji", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Zapri navigacijsko vrstico", diff --git a/packages/docusaurus-theme-translations/locales/sr/theme-common.json b/packages/docusaurus-theme-translations/locales/sr/theme-common.json index ea36550a9e..190674d636 100644 --- a/packages/docusaurus-theme-translations/locales/sr/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/sr/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Home page", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Навигација по документима", + "theme.docs.paginator.navAriaLabel": "странице докумената", "theme.docs.paginator.next": "Даље", "theme.docs.paginator.previous": "Назад", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/sv/theme-common.json b/packages/docusaurus-theme-translations/locales/sv/theme-common.json index 3d82c3bec2..7aebbaf31e 100644 --- a/packages/docusaurus-theme-translations/locales/sv/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/sv/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} artiklar", "theme.docs.breadcrumbs.home": "Hemsida", "theme.docs.breadcrumbs.navAriaLabel": "Sökväg", - "theme.docs.paginator.navAriaLabel": "Navigation av dokument", + "theme.docs.paginator.navAriaLabel": "Dokumentsidor", "theme.docs.paginator.next": "Nästa", "theme.docs.paginator.previous": "Föregående", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/tr/theme-common.json b/packages/docusaurus-theme-translations/locales/tr/theme-common.json index 1e97990faf..482e4f4295 100644 --- a/packages/docusaurus-theme-translations/locales/tr/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/tr/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} items", "theme.docs.breadcrumbs.home": "Ana sayfa", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Dokümanlar sayfası navigasyonu", + "theme.docs.paginator.navAriaLabel": "Dokümanlar sayfası", "theme.docs.paginator.next": "Sonraki", "theme.docs.paginator.previous": "Önceki", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Gezinme çubuğunu kapat", diff --git a/packages/docusaurus-theme-translations/locales/uk/theme-common.json b/packages/docusaurus-theme-translations/locales/uk/theme-common.json index 2cde77e5aa..1596a29fb1 100644 --- a/packages/docusaurus-theme-translations/locales/uk/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/uk/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} елемент|{count} елементи|{count} елементів", "theme.docs.breadcrumbs.home": "Головна сторінка", "theme.docs.breadcrumbs.navAriaLabel": "Навігаційний ланцюжок поточної сторінки", - "theme.docs.paginator.navAriaLabel": "Навігація по сторінці документації", + "theme.docs.paginator.navAriaLabel": "сторінка документації", "theme.docs.paginator.next": "Наступна сторінка", "theme.docs.paginator.previous": "Попередня сторінка", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/vi/theme-common.json b/packages/docusaurus-theme-translations/locales/vi/theme-common.json index 727dcfc906..bb152ba881 100644 --- a/packages/docusaurus-theme-translations/locales/vi/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/vi/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} mục", "theme.docs.breadcrumbs.home": "Trang chủ", "theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs", - "theme.docs.paginator.navAriaLabel": "Thanh điều hướng của trang tài liệu", + "theme.docs.paginator.navAriaLabel": "Trang tài liệu", "theme.docs.paginator.next": "Kế tiếp", "theme.docs.paginator.previous": "Trước", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar", diff --git a/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json b/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json index 30bff75c75..a878963f20 100644 --- a/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} 个项目", "theme.docs.breadcrumbs.home": "主页面", "theme.docs.breadcrumbs.navAriaLabel": "页面路径", - "theme.docs.paginator.navAriaLabel": "文档分页导航", + "theme.docs.paginator.navAriaLabel": "文件选项卡", "theme.docs.paginator.next": "下一页", "theme.docs.paginator.previous": "上一页", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "关闭导航栏", diff --git a/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json b/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json index ee8ec70b61..20cd2213e1 100644 --- a/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json +++ b/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json @@ -41,7 +41,7 @@ "theme.docs.DocCard.categoryDescription": "{count} 個項目", "theme.docs.breadcrumbs.home": "主頁面", "theme.docs.breadcrumbs.navAriaLabel": "頁面路徑", - "theme.docs.paginator.navAriaLabel": "文件分頁導覽", + "theme.docs.paginator.navAriaLabel": "文件選項卡", "theme.docs.paginator.next": "下一頁", "theme.docs.paginator.previous": "上一頁", "theme.docs.sidebar.closeSidebarButtonAriaLabel": "Close navigation bar",