+ This is an RSS feed. Subscribe by copying the URL
+ from the address bar into your newsreader. Visit
+ About Feeds to learn more
+ and get started. It’s free.
+
+ This is an Atom feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
+ This is an RSS feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
+ This is an Atom feed. Subscribe by copying the URL
+ from the address bar into your newsreader. Visit
+ About Feeds to learn more
+ and get started. It’s free.
+
+ This is an Atom feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
+ This is an RSS feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
+ This is an RSS feed. Subscribe by copying the URL
+ from the address bar into your newsreader. Visit
+ About Feeds to learn more
+ and get started. It’s free.
+
+
+
+
+
+
+
+
+
+
+
+
Recent Posts
+
+
+
+
+
+ Published on
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/docusaurus-plugin-content-blog/src/__tests__/__snapshots__/feed.test.ts.snap b/packages/docusaurus-plugin-content-blog/src/__tests__/__snapshots__/feed.test.ts.snap
index 6b693d83fb..2c90688e2c 100644
--- a/packages/docusaurus-plugin-content-blog/src/__tests__/__snapshots__/feed.test.ts.snap
+++ b/packages/docusaurus-plugin-content-blog/src/__tests__/__snapshots__/feed.test.ts.snap
@@ -92,6 +92,192 @@ exports[`atom filters to the first two entries using limit 1`] = `
]
`;
+exports[`atom has custom xslt files for feed 1`] = `
+[
+ [
+ "/packages/docusaurus-plugin-content-blog/src/__tests__/__fixtures__/website/build-snap/blog/atom.xml",
+ "
+
+ https://docusaurus.io/myBaseUrl/blog
+ Hello Blog
+ 2023-07-23T00:00:00.000Z
+ https://github.com/jpmonette/feed
+
+ Hello Blog
+ https://docusaurus.io/myBaseUrl/image/favicon.ico
+ Copyright
+
+
+ https://docusaurus.io/myBaseUrl/blog/blog-with-links
+
+ 2023-07-23T00:00:00.000Z
+
+ absolute full url
+ This is an Atom feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
+ This is an RSS feed. Subscribe by copying the URL from the address
+ bar into your newsreader. Visit About Feeds to learn more
+ and get started. It’s free.
diff --git a/packages/docusaurus-theme-classic/src/theme/DocTagDocListPage/index.tsx b/packages/docusaurus-theme-classic/src/theme/DocTagDocListPage/index.tsx
index aa56a14ef3..32e1d642e3 100644
--- a/packages/docusaurus-theme-classic/src/theme/DocTagDocListPage/index.tsx
+++ b/packages/docusaurus-theme-classic/src/theme/DocTagDocListPage/index.tsx
@@ -17,7 +17,7 @@ import {
import Translate, {translate} from '@docusaurus/Translate';
import SearchMetadata from '@theme/SearchMetadata';
import type {Props} from '@theme/DocTagDocListPage';
-import Unlisted from '@theme/Unlisted';
+import Unlisted from '@theme/ContentVisibility/Unlisted';
import Heading from '@theme/Heading';
// Very simple pluralization: probably good enough for now
diff --git a/packages/docusaurus-theme-classic/src/theme/MDXPage/index.tsx b/packages/docusaurus-theme-classic/src/theme/MDXPage/index.tsx
index 103dc3e69a..737c0bccbd 100644
--- a/packages/docusaurus-theme-classic/src/theme/MDXPage/index.tsx
+++ b/packages/docusaurus-theme-classic/src/theme/MDXPage/index.tsx
@@ -15,7 +15,7 @@ import {
import Layout from '@theme/Layout';
import MDXContent from '@theme/MDXContent';
import TOC from '@theme/TOC';
-import Unlisted from '@theme/Unlisted';
+import ContentVisibility from '@theme/ContentVisibility';
import type {Props} from '@theme/MDXPage';
import EditMetaRow from '@theme/EditMetaRow';
@@ -23,18 +23,15 @@ import styles from './styles.module.css';
export default function MDXPage(props: Props): JSX.Element {
const {content: MDXPageContent} = props;
+ const {metadata, assets} = MDXPageContent;
const {
- metadata: {
- title,
- editUrl,
- description,
- frontMatter,
- unlisted,
- lastUpdatedBy,
- lastUpdatedAt,
- },
- assets,
- } = MDXPageContent;
+ title,
+ editUrl,
+ description,
+ frontMatter,
+ lastUpdatedBy,
+ lastUpdatedAt,
+ } = metadata;
const {
keywords,
wrapperClassName,
@@ -60,7 +57,7 @@ export default function MDXPage(props: Props): JSX.Element {
- {unlisted && }
+
diff --git a/packages/docusaurus-theme-common/src/index.ts b/packages/docusaurus-theme-common/src/index.ts
index 593da9842b..003289b5cb 100644
--- a/packages/docusaurus-theme-common/src/index.ts
+++ b/packages/docusaurus-theme-common/src/index.ts
@@ -123,7 +123,9 @@ export {
UnlistedBannerTitle,
UnlistedBannerMessage,
UnlistedMetadata,
-} from './utils/unlistedUtils';
+ DraftBannerTitle,
+ DraftBannerMessage,
+} from './translations/contentVisibilityTranslations';
export {
ErrorBoundaryTryAgainButton,
diff --git a/packages/docusaurus-theme-common/src/utils/unlistedUtils.tsx b/packages/docusaurus-theme-common/src/translations/contentVisibilityTranslations.tsx
similarity index 53%
rename from packages/docusaurus-theme-common/src/utils/unlistedUtils.tsx
rename to packages/docusaurus-theme-common/src/translations/contentVisibilityTranslations.tsx
index 8147e59872..f331b922e3 100644
--- a/packages/docusaurus-theme-common/src/utils/unlistedUtils.tsx
+++ b/packages/docusaurus-theme-common/src/translations/contentVisibilityTranslations.tsx
@@ -12,7 +12,7 @@ import Head from '@docusaurus/Head';
export function UnlistedBannerTitle(): JSX.Element {
return (
Unlisted page
@@ -22,7 +22,7 @@ export function UnlistedBannerTitle(): JSX.Element {
export function UnlistedBannerMessage(): JSX.Element {
return (
This page is unlisted. Search engines will not index it, and only users
having a direct link can access it.
@@ -30,6 +30,8 @@ export function UnlistedBannerMessage(): JSX.Element {
);
}
+// TODO Docusaurus v4 breaking change (since it's v3 public theme-common API :/)
+// Move this to theme/ContentVisibility/Unlisted
export function UnlistedMetadata(): JSX.Element {
return (
@@ -37,3 +39,24 @@ export function UnlistedMetadata(): JSX.Element {
);
}
+
+export function DraftBannerTitle(): JSX.Element {
+ return (
+
+ Draft page
+
+ );
+}
+
+export function DraftBannerMessage(): JSX.Element {
+ return (
+
+ This page is a draft. It will only be visible in dev and be excluded from
+ the production build.
+
+ );
+}
diff --git a/packages/docusaurus-theme-common/src/utils/ThemeClassNames.ts b/packages/docusaurus-theme-common/src/utils/ThemeClassNames.ts
index 413a2492fa..78539578e6 100644
--- a/packages/docusaurus-theme-common/src/utils/ThemeClassNames.ts
+++ b/packages/docusaurus-theme-common/src/utils/ThemeClassNames.ts
@@ -43,6 +43,7 @@ export const ThemeClassNames = {
codeBlock: 'theme-code-block',
admonition: 'theme-admonition',
unlistedBanner: 'theme-unlisted-banner',
+ draftBanner: 'theme-draft-banner',
admonitionType: (type: string) => `theme-admonition-${type}`,
},
diff --git a/packages/docusaurus-theme-translations/locales/ar/theme-common.json b/packages/docusaurus-theme-translations/locales/ar/theme-common.json
index aad2e83c3d..e165598da4 100644
--- a/packages/docusaurus-theme-translations/locales/ar/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/ar/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "أرشيف",
"theme.blog.archive.title": "أرشيف",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "التنقل في صفحة قائمة المدونة",
"theme.blog.paginator.newerEntries": "إدخالات أحدث",
"theme.blog.paginator.olderEntries": "إدخالات أقدم",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "تعديل هذه الصفحة",
"theme.common.headingLinkTitle": "ارتباط مباشر بالعنوان {heading}",
"theme.common.skipToMainContent": "انتقل إلى المحتوى الرئيسي",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "{count} مواد",
"theme.docs.breadcrumbs.home": "الرئيسية",
"theme.docs.breadcrumbs.navAriaLabel": "التنقل التفصيلي",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "إصدارات",
"theme.tags.tagsListLabel": "الوسوم:",
"theme.tags.tagsPageLink": "عرض كل الوسوم",
- "theme.tags.tagsPageTitle": "الوسوم",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "الوسوم"
}
diff --git a/packages/docusaurus-theme-translations/locales/base/theme-common.json b/packages/docusaurus-theme-translations/locales/base/theme-common.json
index 3cc0b8b8b3..2d7d9768e3 100644
--- a/packages/docusaurus-theme-translations/locales/base/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/base/theme-common.json
@@ -41,13 +41,16 @@
"theme.admonition.tip___DESCRIPTION": "The default label used for the Tip admonition (:::tip)",
"theme.admonition.warning": "warning",
"theme.admonition.warning___DESCRIPTION": "The default label used for the Warning admonition (:::warning)",
- "theme.blog.authorsList.pageTitle": "Authors",
- "theme.blog.authorsList.viewAll": "View All Authors",
- "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.description___DESCRIPTION": "The page & hero description of the blog archive page",
"theme.blog.archive.title": "Archive",
"theme.blog.archive.title___DESCRIPTION": "The page & hero title of the blog archive page",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.author.pageTitle___DESCRIPTION": "The title of the page for a blog author",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.pageTitle___DESCRIPTION": "The title of the authors page",
+ "theme.blog.authorsList.viewAll": "View All Authors",
+ "theme.blog.authorsList.viewAll___DESCRIPTION": "The label of the link targeting the blog authors page",
"theme.blog.paginator.navAriaLabel": "Blog list page navigation",
"theme.blog.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the blog pagination",
"theme.blog.paginator.newerEntries": "Newer Entries",
@@ -84,6 +87,14 @@
"theme.common.headingLinkTitle___DESCRIPTION": "Title for link to heading",
"theme.common.skipToMainContent": "Skip to main content",
"theme.common.skipToMainContent___DESCRIPTION": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.message___DESCRIPTION": "The draft content banner message",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.draftBanner.title___DESCRIPTION": "The draft content banner title",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.message___DESCRIPTION": "The unlisted content banner message",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
+ "theme.contentVisibility.unlistedBanner.title___DESCRIPTION": "The unlisted content banner title",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.DocCard.categoryDescription.plurals___DESCRIPTION": "The default description for a category card in the generated index about how many items this category includes",
"theme.docs.breadcrumbs.home": "Home page",
@@ -140,9 +151,5 @@
"theme.tags.tagsPageLink": "View All Tags",
"theme.tags.tagsPageLink___DESCRIPTION": "The label of the link targeting the tag list page",
"theme.tags.tagsPageTitle": "Tags",
- "theme.tags.tagsPageTitle___DESCRIPTION": "The title of the tag list page",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.message___DESCRIPTION": "The unlisted content banner message",
- "theme.unlistedContent.title": "Unlisted page",
- "theme.unlistedContent.title___DESCRIPTION": "The unlisted content banner title"
+ "theme.tags.tagsPageTitle___DESCRIPTION": "The title of the tag list page"
}
diff --git a/packages/docusaurus-theme-translations/locales/bg/theme-common.json b/packages/docusaurus-theme-translations/locales/bg/theme-common.json
index 11cf230e1c..0e137e9d01 100644
--- a/packages/docusaurus-theme-translations/locales/bg/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/bg/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "Внимание",
"theme.blog.archive.description": "Архив",
"theme.blog.archive.title": "Архив",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Навигация в страницата със списък на блогове",
"theme.blog.paginator.newerEntries": "По-нови записи",
"theme.blog.paginator.olderEntries": "По-стари записи",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Редактирай тази страница",
"theme.common.headingLinkTitle": "Директна връзка към {heading}",
"theme.common.skipToMainContent": "Преминете към основното съдържание",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Тази страница е скрита. Търсачките няма да я индексират и само потребители с директна връзка имат достъп до него.",
+ "theme.contentVisibility.unlistedBanner.title": "Скрита страница",
"theme.docs.DocCard.categoryDescription.plurals": "един предмет|{count} предмета",
"theme.docs.breadcrumbs.home": "Начална страница",
"theme.docs.breadcrumbs.navAriaLabel": "Галета",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Версии",
"theme.tags.tagsListLabel": "Етикети:",
"theme.tags.tagsPageLink": "Вижте всички етикети",
- "theme.tags.tagsPageTitle": "Етикети",
- "theme.unlistedContent.message": "Тази страница е скрита. Търсачките няма да я индексират и само потребители с директна връзка имат достъп до него.",
- "theme.unlistedContent.title": "Скрита страница"
+ "theme.tags.tagsPageTitle": "Етикети"
}
diff --git a/packages/docusaurus-theme-translations/locales/bn/theme-common.json b/packages/docusaurus-theme-translations/locales/bn/theme-common.json
index a9f72207ac..a4422ff089 100644
--- a/packages/docusaurus-theme-translations/locales/bn/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/bn/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "ব্লগ তালিকা পেজ নেভিগেশন",
"theme.blog.paginator.newerEntries": "নতুন এন্ট্রি",
"theme.blog.paginator.olderEntries": "পুরানো এন্ট্রি",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "এই পেজটি এডিট করুন",
"theme.common.headingLinkTitle": "{heading} এর সঙ্গে সরাসরি লিংকড",
"theme.common.skipToMainContent": "স্কিপ করে মূল কন্টেন্ট এ যান",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "ট্যাগ্স:",
"theme.tags.tagsPageLink": "সমস্ত ট্যাগ্স দেখুন",
- "theme.tags.tagsPageTitle": "ট্যাগ্স",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "ট্যাগ্স"
}
diff --git a/packages/docusaurus-theme-translations/locales/cs/theme-common.json b/packages/docusaurus-theme-translations/locales/cs/theme-common.json
index f5859c4236..21873c7ec0 100644
--- a/packages/docusaurus-theme-translations/locales/cs/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/cs/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Stránkování článků na blogu",
"theme.blog.paginator.newerEntries": "Novější záznamy",
"theme.blog.paginator.olderEntries": "Starší záznamy",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Upravit tuto stránku",
"theme.common.headingLinkTitle": "Přímý odkaz na {heading}",
"theme.common.skipToMainContent": "Přeskočit na hlavní obsah",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "Tagy:",
"theme.tags.tagsPageLink": "Zobrazit všechny tagy",
- "theme.tags.tagsPageTitle": "Tagy",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Tagy"
}
diff --git a/packages/docusaurus-theme-translations/locales/da/theme-common.json b/packages/docusaurus-theme-translations/locales/da/theme-common.json
index 6b05c8a653..765fb67d15 100644
--- a/packages/docusaurus-theme-translations/locales/da/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/da/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Blogoversigt navigation",
"theme.blog.paginator.newerEntries": "Nyere indslag",
"theme.blog.paginator.olderEntries": "Tidligere indslag",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Rediger denne side",
"theme.common.headingLinkTitle": "Direkte link til {heading}",
"theme.common.skipToMainContent": "Hop til hovedindhold",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "Tags:",
"theme.tags.tagsPageLink": "Se alle Tags",
- "theme.tags.tagsPageTitle": "Tags",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Tags"
}
diff --git a/packages/docusaurus-theme-translations/locales/de/theme-common.json b/packages/docusaurus-theme-translations/locales/de/theme-common.json
index 918db9dd14..ae52a2fe72 100644
--- a/packages/docusaurus-theme-translations/locales/de/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/de/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warnung",
"theme.blog.archive.description": "Archiv",
"theme.blog.archive.title": "Archiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigation der Blog-Listenseite",
"theme.blog.paginator.newerEntries": "Neuere Einträge",
"theme.blog.paginator.olderEntries": "Ältere Einträge",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Diese Seite bearbeiten",
"theme.common.headingLinkTitle": "Direkter Link zur {heading}",
"theme.common.skipToMainContent": "Zum Hauptinhalt springen",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 Eintrag|{count} Einträge",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versionen",
"theme.tags.tagsListLabel": "Tags:",
"theme.tags.tagsPageLink": "Alle Tags anzeigen",
- "theme.tags.tagsPageTitle": "Tags",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Tags"
}
diff --git a/packages/docusaurus-theme-translations/locales/es/theme-common.json b/packages/docusaurus-theme-translations/locales/es/theme-common.json
index 29fe493484..95543c0ee1 100644
--- a/packages/docusaurus-theme-translations/locales/es/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/es/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "aviso",
"theme.blog.archive.description": "Archivo",
"theme.blog.archive.title": "Archivo",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navegación por la página de la lista de blogs ",
"theme.blog.paginator.newerEntries": "Entradas más recientes",
"theme.blog.paginator.olderEntries": "Entradas más antiguas",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Editar esta página",
"theme.common.headingLinkTitle": "Enlace directo al {heading}",
"theme.common.skipToMainContent": "Saltar al contenido principal",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Esta página está sin clasificar. Los motores de búsqueda no la indexaran, y solo los usuarios con el enlace directo podrán acceder a esta.",
+ "theme.contentVisibility.unlistedBanner.title": "Página sin clasificar",
"theme.docs.DocCard.categoryDescription.plurals": "1 artículo|{count} artículos",
"theme.docs.breadcrumbs.home": "Página de Inicio",
"theme.docs.breadcrumbs.navAriaLabel": "Migas de pan",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versiones",
"theme.tags.tagsListLabel": "Etiquetas:",
"theme.tags.tagsPageLink": "Ver Todas las Etiquetas",
- "theme.tags.tagsPageTitle": "Etiquetas",
- "theme.unlistedContent.message": "Esta página está sin clasificar. Los motores de búsqueda no la indexaran, y solo los usuarios con el enlace directo podrán acceder a esta.",
- "theme.unlistedContent.title": "Página sin clasificar"
+ "theme.tags.tagsPageTitle": "Etiquetas"
}
diff --git a/packages/docusaurus-theme-translations/locales/et/theme-common.json b/packages/docusaurus-theme-translations/locales/et/theme-common.json
index 92acc305a1..1d0f8427c7 100644
--- a/packages/docusaurus-theme-translations/locales/et/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/et/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "hoiatus",
"theme.blog.archive.description": "Arhiiv",
"theme.blog.archive.title": "Arhiiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Blogi lehekülje navigatsioon",
"theme.blog.paginator.newerEntries": "Uuemad sissekanded",
"theme.blog.paginator.olderEntries": "Vanemad sissekanded",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Redigeeri seda lehte",
"theme.common.headingLinkTitle": "Link {heading}",
"theme.common.skipToMainContent": "Liigu peamise sisu juurde",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "See leht ei ole avalik. Otsingumootorid ei indekseeri seda. Sellele lehele pääseb ainult lingiga ligi.",
+ "theme.contentVisibility.unlistedBanner.title": "avalikustamata leht",
"theme.docs.DocCard.categoryDescription.plurals": "1 ese|{count} eset",
"theme.docs.breadcrumbs.home": "Koduleht",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versioonid",
"theme.tags.tagsListLabel": "Märked:",
"theme.tags.tagsPageLink": "Näaita Kõiki Märkeid",
- "theme.tags.tagsPageTitle": "Märked",
- "theme.unlistedContent.message": "See leht ei ole avalik. Otsingumootorid ei indekseeri seda. Sellele lehele pääseb ainult lingiga ligi.",
- "theme.unlistedContent.title": "avalikustamata leht"
+ "theme.tags.tagsPageTitle": "Märked"
}
diff --git a/packages/docusaurus-theme-translations/locales/fa/theme-common.json b/packages/docusaurus-theme-translations/locales/fa/theme-common.json
index f82cd55b67..45908abd75 100644
--- a/packages/docusaurus-theme-translations/locales/fa/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/fa/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "هشدار",
"theme.blog.archive.description": "آرشیو",
"theme.blog.archive.title": "آرشیو",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "کنترل لیست مطالب وبلاگ",
"theme.blog.paginator.newerEntries": "مطالب جدیدتر",
"theme.blog.paginator.olderEntries": "مطالب قدیمیتر",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "ویرایش مطالب این صفحه",
"theme.common.headingLinkTitle": "لینک مستقیم به {heading}",
"theme.common.skipToMainContent": "پرش به مطلب اصلی",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "این صفحه فهرست نشده است. موتورهای جستجو آن را ایندکس نمی کنند و فقط کاربرانی که لینک مستقیم دارند می توانند به آن دسترسی داشته باشند.",
+ "theme.contentVisibility.unlistedBanner.title": "صفحه فهرست نشده",
"theme.docs.DocCard.categoryDescription.plurals": "{count} مورد",
"theme.docs.breadcrumbs.home": "صفحه اصلی",
"theme.docs.breadcrumbs.navAriaLabel": "نشانگر صفحات",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "نسخهها",
"theme.tags.tagsListLabel": "برچسبها:",
"theme.tags.tagsPageLink": "مشاهده تمام برچسبها",
- "theme.tags.tagsPageTitle": "برچسبها",
- "theme.unlistedContent.message": "این صفحه فهرست نشده است. موتورهای جستجو آن را ایندکس نمی کنند و فقط کاربرانی که لینک مستقیم دارند می توانند به آن دسترسی داشته باشند.",
- "theme.unlistedContent.title": "صفحه فهرست نشده"
+ "theme.tags.tagsPageTitle": "برچسبها"
}
diff --git a/packages/docusaurus-theme-translations/locales/fil/theme-common.json b/packages/docusaurus-theme-translations/locales/fil/theme-common.json
index 866b297b78..50a06a24e1 100644
--- a/packages/docusaurus-theme-translations/locales/fil/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/fil/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Nabegasyón para sa pahina na listahan ng blog",
"theme.blog.paginator.newerEntries": "Mas bagong mga éntri",
"theme.blog.paginator.olderEntries": "Mas lumang mga éntri",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "I-edit ang page",
"theme.common.headingLinkTitle": "Direktang link patungo sa {heading}",
"theme.common.skipToMainContent": "Lumaktaw patungo sa pangunahing content",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "Mga Tag:",
"theme.tags.tagsPageLink": "Tingnan Lahat ng mga Tag",
- "theme.tags.tagsPageTitle": "Mga Tag",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Mga Tag"
}
diff --git a/packages/docusaurus-theme-translations/locales/fr/theme-common.json b/packages/docusaurus-theme-translations/locales/fr/theme-common.json
index e309ee30c9..c68bc8d467 100644
--- a/packages/docusaurus-theme-translations/locales/fr/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/fr/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "attention",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Pagination de la liste des articles du blog",
"theme.blog.paginator.newerEntries": "Nouvelles entrées",
"theme.blog.paginator.olderEntries": "Anciennes entrées",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Éditer cette page",
"theme.common.headingLinkTitle": "Lien direct vers {heading}",
"theme.common.skipToMainContent": "Aller au contenu principal",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Cette page n'est pas répertoriée. Les moteurs de recherche ne l'indexeront pas, et seuls les utilisateurs ayant un lien direct peuvent y accéder.",
+ "theme.contentVisibility.unlistedBanner.title": "Page non répertoriée",
"theme.docs.DocCard.categoryDescription.plurals": "1 élément|{count} éléments",
"theme.docs.breadcrumbs.home": "Page d'accueil",
"theme.docs.breadcrumbs.navAriaLabel": "Fil d'Ariane",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "Tags :",
"theme.tags.tagsPageLink": "Voir tous les tags",
- "theme.tags.tagsPageTitle": "Tags",
- "theme.unlistedContent.message": "Cette page n'est pas répertoriée. Les moteurs de recherche ne l'indexeront pas, et seuls les utilisateurs ayant un lien direct peuvent y accéder.",
- "theme.unlistedContent.title": "Page non répertoriée"
+ "theme.tags.tagsPageTitle": "Tags"
}
diff --git a/packages/docusaurus-theme-translations/locales/he/theme-common.json b/packages/docusaurus-theme-translations/locales/he/theme-common.json
index 7571401c64..48f2a4941a 100644
--- a/packages/docusaurus-theme-translations/locales/he/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/he/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "רשימת דפי הבלוג",
"theme.blog.paginator.newerEntries": "הכי חדש",
"theme.blog.paginator.olderEntries": "ישן יותר",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "ערוך דף זה",
"theme.common.headingLinkTitle": "קישור ישיר אל {heading}",
"theme.common.skipToMainContent": "דלג לתוכן הראשי",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "תגיות:",
"theme.tags.tagsPageLink": "כל התגיות",
- "theme.tags.tagsPageTitle": "תגיות",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "תגיות"
}
diff --git a/packages/docusaurus-theme-translations/locales/hi/theme-common.json b/packages/docusaurus-theme-translations/locales/hi/theme-common.json
index bcace79c48..2590a754a9 100644
--- a/packages/docusaurus-theme-translations/locales/hi/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/hi/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "ब्लॉग सूची पेज नेविगेशन",
"theme.blog.paginator.newerEntries": "नए एंट्रीज़",
"theme.blog.paginator.olderEntries": "पुराने एंट्रीज़",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "इस पेज को बदलें",
"theme.common.headingLinkTitle": "{heading} का सीधा लिंक",
"theme.common.skipToMainContent": "मुख्य कंटेंट तक स्किप करें",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "टैग:",
"theme.tags.tagsPageLink": "सारे टैग देखें",
- "theme.tags.tagsPageTitle": "टैग",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "टैग"
}
diff --git a/packages/docusaurus-theme-translations/locales/hu/theme-common.json b/packages/docusaurus-theme-translations/locales/hu/theme-common.json
index c7ed797705..28e4f51e7c 100644
--- a/packages/docusaurus-theme-translations/locales/hu/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/hu/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "vigyázat",
"theme.blog.archive.description": "Archívum",
"theme.blog.archive.title": "Archívum",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Bloglista oldalának navigációja",
"theme.blog.paginator.newerEntries": "Újabb bejegyzések",
"theme.blog.paginator.olderEntries": "Régebbi bejegyzések",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Szerkesztés GitHub-on",
"theme.common.headingLinkTitle": "Közvetlen hivatkozás erre: {heading}",
"theme.common.skipToMainContent": "Ugrás a fő tartalomhoz",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Ez az oldal nem nyilvános. A keresőmotorok nem indexelik, és csak a közvetlen hivatkozással rendelkező felhasználók érhetik el.",
+ "theme.contentVisibility.unlistedBanner.title": "Nem nyilvános oldal",
"theme.docs.DocCard.categoryDescription.plurals": "1 elem|{count} elemek",
"theme.docs.breadcrumbs.home": "Kezdőlap",
"theme.docs.breadcrumbs.navAriaLabel": "Navigációs sáv a jelenlegi oldalhoz",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Verziók",
"theme.tags.tagsListLabel": "Címkék:",
"theme.tags.tagsPageLink": "Összes címke megtekintése",
- "theme.tags.tagsPageTitle": "Címkék",
- "theme.unlistedContent.message": "Ez az oldal nem nyilvános. A keresőmotorok nem indexelik, és csak a közvetlen hivatkozással rendelkező felhasználók érhetik el.",
- "theme.unlistedContent.title": "Nem nyilvános oldal"
+ "theme.tags.tagsPageTitle": "Címkék"
}
diff --git a/packages/docusaurus-theme-translations/locales/id/theme-common.json b/packages/docusaurus-theme-translations/locales/id/theme-common.json
index 3e6919d8df..9bea29c704 100644
--- a/packages/docusaurus-theme-translations/locales/id/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/id/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "peringatan",
"theme.blog.archive.description": "Arsip",
"theme.blog.archive.title": "Arsip",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigasi entri blog",
"theme.blog.paginator.newerEntries": "Entri lebih baru",
"theme.blog.paginator.olderEntries": "Entri lebih lama",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Sunting halaman ini",
"theme.common.headingLinkTitle": "Taut langsung ke {heading}",
"theme.common.skipToMainContent": "Lewati ke konten utama",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Halaman ini tidak terdaftar. Mesin pencari tidak akan mengindeksnya, dan hanya pengguna yang memiliki tautan langsung yang dapat mengaksesnya.",
+ "theme.contentVisibility.unlistedBanner.title": "Halaman tak terdaftar",
"theme.docs.DocCard.categoryDescription.plurals": "1 butir|{count} butir",
"theme.docs.breadcrumbs.home": "Halaman utama",
"theme.docs.breadcrumbs.navAriaLabel": "Runut navigasi",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versi",
"theme.tags.tagsListLabel": "Tag:",
"theme.tags.tagsPageLink": "Lihat Semua Tag",
- "theme.tags.tagsPageTitle": "Tag",
- "theme.unlistedContent.message": "Halaman ini tidak terdaftar. Mesin pencari tidak akan mengindeksnya, dan hanya pengguna yang memiliki tautan langsung yang dapat mengaksesnya.",
- "theme.unlistedContent.title": "Halaman tak terdaftar"
+ "theme.tags.tagsPageTitle": "Tag"
}
diff --git a/packages/docusaurus-theme-translations/locales/is/theme-common.json b/packages/docusaurus-theme-translations/locales/is/theme-common.json
index c77a3c07ae..8cf8e8be39 100644
--- a/packages/docusaurus-theme-translations/locales/is/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/is/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "aðvörun",
"theme.blog.archive.description": "Skjalasafn",
"theme.blog.archive.title": "Skjalasafn",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Blogg listsíðu yfirlit",
"theme.blog.paginator.newerEntries": "Nýrri færslur",
"theme.blog.paginator.olderEntries": "Eldri færslur",
@@ -40,7 +43,12 @@
"theme.common.editThisPage": "Breyttu þessari síðu",
"theme.common.headingLinkTitle": "Beinn hlekkur að {heading}",
"theme.common.skipToMainContent": "Hoppa yfir á aðal efni",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Þessi síða er ólistuð. Leitarvélar munu ekki skrá hana, eingöngu notendur með beinan hlekk geta opnað hana.",
+ "theme.contentVisibility.unlistedBanner.title": "Óskráð síða",
"theme.docs.DocCard.categoryDescription": "{count} atriði",
+ "theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Heimasíða",
"theme.docs.breadcrumbs.navAriaLabel": "Brauðteningar",
"theme.docs.paginator.navAriaLabel": "Skjala síður",
@@ -68,7 +76,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Útgáfur",
"theme.tags.tagsListLabel": "Merki:",
"theme.tags.tagsPageLink": "Skoða Öll Merki",
- "theme.tags.tagsPageTitle": "Merki",
- "theme.unlistedContent.message": "Þessi síða er ólistuð. Leitarvélar munu ekki skrá hana, eingöngu notendur með beinan hlekk geta opnað hana.",
- "theme.unlistedContent.title": "Óskráð síða"
+ "theme.tags.tagsPageTitle": "Merki"
}
diff --git a/packages/docusaurus-theme-translations/locales/it/theme-common.json b/packages/docusaurus-theme-translations/locales/it/theme-common.json
index f9a94c9261..c030e0df48 100644
--- a/packages/docusaurus-theme-translations/locales/it/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/it/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archivio",
"theme.blog.archive.title": "Archivio",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigazione nella pagina dei post del blog ",
"theme.blog.paginator.newerEntries": "Post più recenti",
"theme.blog.paginator.olderEntries": "Post più vecchi",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Modifica questa pagina",
"theme.common.headingLinkTitle": "Link diretto a {heading}",
"theme.common.skipToMainContent": "Passa al contenuto principale",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Questa pagina non è in elenco. I motori di ricerca non lo indicheranno e solo gli utenti con collegamento diretto possono accedervi.",
+ "theme.contentVisibility.unlistedBanner.title": "Pagina non in elenco",
"theme.docs.DocCard.categoryDescription.plurals": "1 elemento|{count} elementi",
"theme.docs.breadcrumbs.home": "Pagina principale",
"theme.docs.breadcrumbs.navAriaLabel": "Briciole di pane",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versioni",
"theme.tags.tagsListLabel": "Etichette:",
"theme.tags.tagsPageLink": "Guarda tutte le etichette",
- "theme.tags.tagsPageTitle": "Etichette",
- "theme.unlistedContent.message": "Questa pagina non è in elenco. I motori di ricerca non lo indicheranno e solo gli utenti con collegamento diretto possono accedervi.",
- "theme.unlistedContent.title": "Pagina non in elenco"
+ "theme.tags.tagsPageTitle": "Etichette"
}
diff --git a/packages/docusaurus-theme-translations/locales/ja/theme-common.json b/packages/docusaurus-theme-translations/locales/ja/theme-common.json
index 17873d8fda..fc09e90e95 100644
--- a/packages/docusaurus-theme-translations/locales/ja/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/ja/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "警告",
"theme.blog.archive.description": "アーカイブ",
"theme.blog.archive.title": "アーカイブ",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "ブログ記事一覧のナビゲーション",
"theme.blog.paginator.newerEntries": "新しい記事",
"theme.blog.paginator.olderEntries": "過去の記事",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "このページを編集",
"theme.common.headingLinkTitle": "{heading} への直接リンク",
"theme.common.skipToMainContent": "メインコンテンツまでスキップ",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "このページは非公開です。 検索対象外となり、このページのリンクに直接アクセスできるユーザーのみに公開されます。",
+ "theme.contentVisibility.unlistedBanner.title": "非公開のページ",
"theme.docs.DocCard.categoryDescription.plurals": "{count}項目",
"theme.docs.breadcrumbs.home": "ホームページ",
"theme.docs.breadcrumbs.navAriaLabel": "パンくずリストのナビゲーション",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "他のバージョン",
"theme.tags.tagsListLabel": "タグ:",
"theme.tags.tagsPageLink": "全てのタグを見る",
- "theme.tags.tagsPageTitle": "タグ",
- "theme.unlistedContent.message": "このページは非公開です。 検索対象外となり、このページのリンクに直接アクセスできるユーザーのみに公開されます。",
- "theme.unlistedContent.title": "非公開のページ"
+ "theme.tags.tagsPageTitle": "タグ"
}
diff --git a/packages/docusaurus-theme-translations/locales/ko/theme-common.json b/packages/docusaurus-theme-translations/locales/ko/theme-common.json
index 291e4eb0a5..daf247cc49 100644
--- a/packages/docusaurus-theme-translations/locales/ko/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/ko/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "경고",
"theme.blog.archive.description": "게시물 목록",
"theme.blog.archive.title": "게시물 목록",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "블로그 게시물 목록 탐색",
"theme.blog.paginator.newerEntries": "이전 페이지",
"theme.blog.paginator.olderEntries": "다음 페이지",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "페이지 편집",
"theme.common.headingLinkTitle": "{heading}에 대한 직접 링크",
"theme.common.skipToMainContent": "본문으로 건너뛰기",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "이 문서는 색인되지 않습니다. 검색 엔진이 이 문서를 색인하지 않으며, 주소를 알고 있는 사용자만 접근할 수 있습니다.",
+ "theme.contentVisibility.unlistedBanner.title": "색인되지 않은 문서",
"theme.docs.DocCard.categoryDescription.plurals": "{count} 항목",
"theme.docs.breadcrumbs.home": "홈",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "버전",
"theme.tags.tagsListLabel": "태그:",
"theme.tags.tagsPageLink": "모든 태그 보기",
- "theme.tags.tagsPageTitle": "태그",
- "theme.unlistedContent.message": "이 문서는 색인되지 않습니다. 검색 엔진이 이 문서를 색인하지 않으며, 주소를 알고 있는 사용자만 접근할 수 있습니다.",
- "theme.unlistedContent.title": "색인되지 않은 문서"
+ "theme.tags.tagsPageTitle": "태그"
}
diff --git a/packages/docusaurus-theme-translations/locales/nb/theme-common.json b/packages/docusaurus-theme-translations/locales/nb/theme-common.json
index 3a11f6f55a..9d3aed888d 100644
--- a/packages/docusaurus-theme-translations/locales/nb/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/nb/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Arkiv",
"theme.blog.archive.title": "Arkiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigering av bloggliste",
"theme.blog.paginator.newerEntries": "Nyere innlegg",
"theme.blog.paginator.olderEntries": "Eldre innlegg",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Rediger denne siden",
"theme.common.headingLinkTitle": "Direkte lenke til {heading}",
"theme.common.skipToMainContent": "Gå til hovedinnhold",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Denne siden er ikke oppført. Søkemotorer vil ikke indeksere den, og bare brukere som har en direkte lenke kan få tilgang til den.",
+ "theme.contentVisibility.unlistedBanner.title": "Uoppført side",
"theme.docs.DocCard.categoryDescription.plurals": "1 artikkel|{count} artikler",
"theme.docs.breadcrumbs.home": "Hjemmeside",
"theme.docs.breadcrumbs.navAriaLabel": "Søkvei",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versjoner",
"theme.tags.tagsListLabel": "Tagger:",
"theme.tags.tagsPageLink": "Vis alle tagger",
- "theme.tags.tagsPageTitle": "Tagger",
- "theme.unlistedContent.message": "Denne siden er ikke oppført. Søkemotorer vil ikke indeksere den, og bare brukere som har en direkte lenke kan få tilgang til den.",
- "theme.unlistedContent.title": "Uoppført side"
+ "theme.tags.tagsPageTitle": "Tagger"
}
diff --git a/packages/docusaurus-theme-translations/locales/nl/theme-common.json b/packages/docusaurus-theme-translations/locales/nl/theme-common.json
index 798d3590c4..81f60d8a83 100644
--- a/packages/docusaurus-theme-translations/locales/nl/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/nl/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archief",
"theme.blog.archive.title": "Archief",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Paginanavigatie blog",
"theme.blog.paginator.newerEntries": "Nieuwere items",
"theme.blog.paginator.olderEntries": "Oudere items",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Bewerk deze pagina",
"theme.common.headingLinkTitle": "Direct link naar {heading}",
"theme.common.skipToMainContent": "Ga naar hoofdinhoud",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 artikel|{count} artikelen",
"theme.docs.breadcrumbs.home": "Homepagina",
"theme.docs.breadcrumbs.navAriaLabel": "Broodkruimels",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versies",
"theme.tags.tagsListLabel": "Tags:",
"theme.tags.tagsPageLink": "Laat alle tags zien",
- "theme.tags.tagsPageTitle": "Tags",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Tags"
}
diff --git a/packages/docusaurus-theme-translations/locales/pl/theme-common.json b/packages/docusaurus-theme-translations/locales/pl/theme-common.json
index 402235f6a3..e3833c44d3 100644
--- a/packages/docusaurus-theme-translations/locales/pl/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/pl/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archiwum",
"theme.blog.archive.title": "Archiwum",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Nawigacja na stronie listy wpisów na blogu",
"theme.blog.paginator.newerEntries": "Nowsze wpisy",
"theme.blog.paginator.olderEntries": "Starsze wpisy",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Edytuj tę stronę",
"theme.common.headingLinkTitle": "Bezpośredni link do {heading}",
"theme.common.skipToMainContent": "Przejdź do głównej zawartości",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Ta strona jest niepubliczna. Wyszukiwarki nie będą jej indeksować, a dostęp do niej będą mieli tylko użytkownicy posiadający bezpośredni link.",
+ "theme.contentVisibility.unlistedBanner.title": "Niepubliczna strona",
"theme.docs.DocCard.categoryDescription.plurals": "1 element|{count} elementy|{count} elementów",
"theme.docs.breadcrumbs.home": "Strona główna",
"theme.docs.breadcrumbs.navAriaLabel": "Pasek nawigacji",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Wersje",
"theme.tags.tagsListLabel": "Tagi:",
"theme.tags.tagsPageLink": "Wyświetl wszystkie tagi",
- "theme.tags.tagsPageTitle": "Tagi",
- "theme.unlistedContent.message": "Ta strona jest niepubliczna. Wyszukiwarki nie będą jej indeksować, a dostęp do niej będą mieli tylko użytkownicy posiadający bezpośredni link.",
- "theme.unlistedContent.title": "Niepubliczna strona"
+ "theme.tags.tagsPageTitle": "Tagi"
}
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 7bcab9cbbb..ebc6b16773 100644
--- a/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/pt-BR/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "atenção",
"theme.blog.archive.description": "Arquivo",
"theme.blog.archive.title": "Arquivo",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navegação da página de listagem do blog",
"theme.blog.paginator.newerEntries": "Conteúdo mais novo",
"theme.blog.paginator.olderEntries": "Conteúdo mais antigo",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Editar essa página",
"theme.common.headingLinkTitle": "Link direto para {heading}",
"theme.common.skipToMainContent": "Pular para o conteúdo principal",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Esta página não está listada. Mecanismos de busca não armazenarão nenhuma informação, e somente usuários que possuam o link direto poderão acessá-la",
+ "theme.contentVisibility.unlistedBanner.title": "Página não listada",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Página Inicial",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versões",
"theme.tags.tagsListLabel": "Marcadores:",
"theme.tags.tagsPageLink": "Ver todas os Marcadores",
- "theme.tags.tagsPageTitle": "Marcadores",
- "theme.unlistedContent.message": "Esta página não está listada. Mecanismos de busca não armazenarão nenhuma informação, e somente usuários que possuam o link direto poderão acessá-la",
- "theme.unlistedContent.title": "Página não listada"
+ "theme.tags.tagsPageTitle": "Marcadores"
}
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 8daa2bead6..e048d58adf 100644
--- a/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/pt-PT/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Archive",
"theme.blog.archive.title": "Archive",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navegação da página de listagem do blog",
"theme.blog.paginator.newerEntries": "Publicações mais recentes",
"theme.blog.paginator.olderEntries": "Publicações mais antigas",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Editar esta página",
"theme.common.headingLinkTitle": "Link direto para {heading}",
"theme.common.skipToMainContent": "Saltar para o conteúdo principal",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versions",
"theme.tags.tagsListLabel": "Tags:",
"theme.tags.tagsPageLink": "Ver todas as Tags",
- "theme.tags.tagsPageTitle": "Tags",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Tags"
}
diff --git a/packages/docusaurus-theme-translations/locales/ru/theme-common.json b/packages/docusaurus-theme-translations/locales/ru/theme-common.json
index f0a8f7f881..dbc0f23e1c 100644
--- a/packages/docusaurus-theme-translations/locales/ru/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/ru/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Архив",
"theme.blog.archive.title": "Архив",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Навигация по странице списка блогов",
"theme.blog.paginator.newerEntries": "Следующие записи",
"theme.blog.paginator.olderEntries": "Предыдущие записи",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Отредактировать эту страницу",
"theme.common.headingLinkTitle": "Прямая ссылка на {heading}",
"theme.common.skipToMainContent": "Перейти к основному содержимому",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "{count} элемент|{count} элемента|{count} элементов",
"theme.docs.breadcrumbs.home": "Главная страница",
"theme.docs.breadcrumbs.navAriaLabel": "Навигационная цепочка текущей страницы",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Версии",
"theme.tags.tagsListLabel": "Теги:",
"theme.tags.tagsPageLink": "Посмотреть все теги",
- "theme.tags.tagsPageTitle": "Теги",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Теги"
}
diff --git a/packages/docusaurus-theme-translations/locales/sl/theme-common.json b/packages/docusaurus-theme-translations/locales/sl/theme-common.json
index e9c8eb0f41..03bb69ac13 100644
--- a/packages/docusaurus-theme-translations/locales/sl/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/sl/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Arhiv",
"theme.blog.archive.title": "Arhiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigacija kazala po blogu",
"theme.blog.paginator.newerEntries": "Novejši prispevki",
"theme.blog.paginator.olderEntries": "Starejši prispevki",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Uredi to stran",
"theme.common.headingLinkTitle": "Direktna povezava na {heading}",
"theme.common.skipToMainContent": "Preskoči na vsebino",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Ta stran ni zabeležena. Iskalniki je ne bodo indeksirali, do nje bodo uporabniki lahko dostopali le z direktno povezavo.",
+ "theme.contentVisibility.unlistedBanner.title": "Nezabeležena stran",
"theme.docs.DocCard.categoryDescription.plurals": "1 vnos|2 vnosy|{count} vnosy|{count} vnosov",
"theme.docs.breadcrumbs.home": "Domača stran",
"theme.docs.breadcrumbs.navAriaLabel": "Drobtine",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Verzije",
"theme.tags.tagsListLabel": "Oznake:",
"theme.tags.tagsPageLink": "Poglej vse oznake",
- "theme.tags.tagsPageTitle": "Oznake",
- "theme.unlistedContent.message": "Ta stran ni zabeležena. Iskalniki je ne bodo indeksirali, do nje bodo uporabniki lahko dostopali le z direktno povezavo.",
- "theme.unlistedContent.title": "Nezabeležena stran"
+ "theme.tags.tagsPageTitle": "Oznake"
}
diff --git a/packages/docusaurus-theme-translations/locales/sr/theme-common.json b/packages/docusaurus-theme-translations/locales/sr/theme-common.json
index 696e96728c..7e446ec3c2 100644
--- a/packages/docusaurus-theme-translations/locales/sr/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/sr/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Архива",
"theme.blog.archive.title": "Архива",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Навигација за странице блога",
"theme.blog.paginator.newerEntries": "Нови постови",
"theme.blog.paginator.olderEntries": "Стари постови",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Уреди ову страницу",
"theme.common.headingLinkTitle": "Веза до {heading}",
"theme.common.skipToMainContent": "Пређи на главни садржај",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
"theme.docs.breadcrumbs.home": "Home page",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Верзије",
"theme.tags.tagsListLabel": "Ознаке:",
"theme.tags.tagsPageLink": "Погледај све ознаке",
- "theme.tags.tagsPageTitle": "Ознаке",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Ознаке"
}
diff --git a/packages/docusaurus-theme-translations/locales/sv/theme-common.json b/packages/docusaurus-theme-translations/locales/sv/theme-common.json
index c5f0dc3160..03b86feefd 100644
--- a/packages/docusaurus-theme-translations/locales/sv/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/sv/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Arkiv",
"theme.blog.archive.title": "Arkiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Navigation av Blogglista",
"theme.blog.paginator.newerEntries": "Nyare Inlägg",
"theme.blog.paginator.olderEntries": "Äldre Inlägg",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Redigera denna sida",
"theme.common.headingLinkTitle": "Direktlänk till {heading}",
"theme.common.skipToMainContent": "Hoppa till huvudinnehåll",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "1 artikel|{count} artiklar",
"theme.docs.breadcrumbs.home": "Hemsida",
"theme.docs.breadcrumbs.navAriaLabel": "Sökväg",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versioner",
"theme.tags.tagsListLabel": "Taggar:",
"theme.tags.tagsPageLink": "Visa Alla Taggar",
- "theme.tags.tagsPageTitle": "Taggar",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Taggar"
}
diff --git a/packages/docusaurus-theme-translations/locales/tk/theme-common.json b/packages/docusaurus-theme-translations/locales/tk/theme-common.json
index aad0c8d53b..4888f960f7 100644
--- a/packages/docusaurus-theme-translations/locales/tk/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/tk/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "duýduryş",
"theme.blog.archive.description": "Arhiw",
"theme.blog.archive.title": "Arhiw",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Blog sahypasynda nawigasiýa",
"theme.blog.paginator.newerEntries": "Täze ýazgylar",
"theme.blog.paginator.olderEntries": "Köne ýazgylar",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Bu sahypany üýtgetmek",
"theme.common.headingLinkTitle": "{heading} sahypa göni geçiň",
"theme.common.skipToMainContent": "Esasy mazmuna geç",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Bu sahypa sanawda ýok. Bu sahypa gözleg enjamlarynda indekslemezler, diňe göni baglanyşygy bolan ulanyjylar elýeterli bolar.",
+ "theme.contentVisibility.unlistedBanner.title": "Sanawda ýok sahypa",
"theme.docs.DocCard.categoryDescription.plurals": "{count} element|{count} elementler",
"theme.docs.breadcrumbs.home": "Baş sahypa",
"theme.docs.breadcrumbs.navAriaLabel": "Häzirki sahypa üçin nawigasiýa",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Wersiýalar",
"theme.tags.tagsListLabel": "Tegler:",
"theme.tags.tagsPageLink": "Ähli tegleri gör",
- "theme.tags.tagsPageTitle": "Tegler",
- "theme.unlistedContent.message": "Bu sahypa sanawda ýok. Bu sahypa gözleg enjamlarynda indekslemezler, diňe göni baglanyşygy bolan ulanyjylar elýeterli bolar.",
- "theme.unlistedContent.title": "Sanawda ýok sahypa"
+ "theme.tags.tagsPageTitle": "Tegler"
}
diff --git a/packages/docusaurus-theme-translations/locales/tr/theme-common.json b/packages/docusaurus-theme-translations/locales/tr/theme-common.json
index 9d1abe76ef..484e88b6e8 100644
--- a/packages/docusaurus-theme-translations/locales/tr/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/tr/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Arşiv",
"theme.blog.archive.title": "Arşiv",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Blog gönderi sayfası navigasyonu",
"theme.blog.paginator.newerEntries": "Yeni Girdiler",
"theme.blog.paginator.olderEntries": "Eski Girdiler",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Bu sayfayı düzenle",
"theme.common.headingLinkTitle": "{heading} doğrudan bağlantı",
"theme.common.skipToMainContent": "Ana içeriğe geç",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Bu sayfa listelenmemiş. Arama motorları dizine eklemez ve yalnızca doğrudan bağlantısı olan kullanıcılar buna erişebilir.",
+ "theme.contentVisibility.unlistedBanner.title": "Listelenmeyen sayfa",
"theme.docs.DocCard.categoryDescription.plurals": "1 öğe|{count} öğe",
"theme.docs.breadcrumbs.home": "Ana sayfa",
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Versiyonlar",
"theme.tags.tagsListLabel": "Etiketler:",
"theme.tags.tagsPageLink": "Tüm Etiketleri Görüntüle",
- "theme.tags.tagsPageTitle": "Etiketler",
- "theme.unlistedContent.message": "Bu sayfa listelenmemiş. Arama motorları dizine eklemez ve yalnızca doğrudan bağlantısı olan kullanıcılar buna erişebilir.",
- "theme.unlistedContent.title": "Listelenmeyen sayfa"
+ "theme.tags.tagsPageTitle": "Etiketler"
}
diff --git a/packages/docusaurus-theme-translations/locales/uk/theme-common.json b/packages/docusaurus-theme-translations/locales/uk/theme-common.json
index 12c35e144e..399f958a01 100644
--- a/packages/docusaurus-theme-translations/locales/uk/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/uk/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Архів",
"theme.blog.archive.title": "Архів",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Навігація по сторінці списку блогів",
"theme.blog.paginator.newerEntries": "Наступні записи",
"theme.blog.paginator.olderEntries": "Попередні записи",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Відредагувати цю сторінку",
"theme.common.headingLinkTitle": "Пряме посилання на {heading}",
"theme.common.skipToMainContent": "Перейти до основного вмісту",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
+ "theme.contentVisibility.unlistedBanner.title": "Unlisted page",
"theme.docs.DocCard.categoryDescription.plurals": "{count} елемент|{count} елементи|{count} елементів",
"theme.docs.breadcrumbs.home": "Головна сторінка",
"theme.docs.breadcrumbs.navAriaLabel": "Навігаційний ланцюжок поточної сторінки",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Версії",
"theme.tags.tagsListLabel": "Теги:",
"theme.tags.tagsPageLink": "Переглянути всі теги",
- "theme.tags.tagsPageTitle": "Теги",
- "theme.unlistedContent.message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
- "theme.unlistedContent.title": "Unlisted page"
+ "theme.tags.tagsPageTitle": "Теги"
}
diff --git a/packages/docusaurus-theme-translations/locales/vi/theme-common.json b/packages/docusaurus-theme-translations/locales/vi/theme-common.json
index 0230f422df..443cf03997 100644
--- a/packages/docusaurus-theme-translations/locales/vi/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/vi/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "warning",
"theme.blog.archive.description": "Lưu trữ",
"theme.blog.archive.title": "Lưu trữ",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "Thanh điều hướng của trang danh sách bài viết",
"theme.blog.paginator.newerEntries": "Các bài mới hơn",
"theme.blog.paginator.olderEntries": "Các bài cũ hơn",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "Sửa trang này",
"theme.common.headingLinkTitle": "Đường dẫn trực tiếp tới {heading}",
"theme.common.skipToMainContent": "Nhảy tới nội dung",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "Trang này không được công khai. Công cụ tìm kiếm sẽ không đánh chỉ mục cho trang này và chỉ những người có liên kết mới có thể truy cập được trang.",
+ "theme.contentVisibility.unlistedBanner.title": "Trang không công khai",
"theme.docs.DocCard.categoryDescription.plurals": "{count} mục",
"theme.docs.breadcrumbs.home": "Trang chủ",
"theme.docs.breadcrumbs.navAriaLabel": "Liên kết điều hướng",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "Phiên bản",
"theme.tags.tagsListLabel": "Thẻ:",
"theme.tags.tagsPageLink": "Xem tất cả Thẻ",
- "theme.tags.tagsPageTitle": "Thẻ",
- "theme.unlistedContent.message": "Trang này không được công khai. Công cụ tìm kiếm sẽ không đánh chỉ mục cho trang này và chỉ những người có liên kết mới có thể truy cập được trang.",
- "theme.unlistedContent.title": "Trang không công khai"
+ "theme.tags.tagsPageTitle": "Thẻ"
}
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 c382bc186f..3bdf5970c2 100644
--- a/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/zh-Hans/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "注意",
"theme.blog.archive.description": "历史博文",
"theme.blog.archive.title": "历史博文",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "博文列表分页导航",
"theme.blog.paginator.newerEntries": "较新的博文",
"theme.blog.paginator.olderEntries": "较旧的博文",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "编辑此页",
"theme.common.headingLinkTitle": "{heading}的直接链接",
"theme.common.skipToMainContent": "跳到主要内容",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。",
+ "theme.contentVisibility.unlistedBanner.title": "未列出页",
"theme.docs.DocCard.categoryDescription.plurals": "{count} 个项目",
"theme.docs.breadcrumbs.home": "主页面",
"theme.docs.breadcrumbs.navAriaLabel": "页面路径",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "选择版本",
"theme.tags.tagsListLabel": "标签:",
"theme.tags.tagsPageLink": "查看所有标签",
- "theme.tags.tagsPageTitle": "标签",
- "theme.unlistedContent.message": "此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。",
- "theme.unlistedContent.title": "未列出页"
+ "theme.tags.tagsPageTitle": "标签"
}
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 cbb172b616..be927a6048 100644
--- a/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json
+++ b/packages/docusaurus-theme-translations/locales/zh-Hant/theme-common.json
@@ -22,6 +22,9 @@
"theme.admonition.warning": "注意",
"theme.blog.archive.description": "歷史文章",
"theme.blog.archive.title": "歷史文章",
+ "theme.blog.author.pageTitle": "{authorName} - {nPosts}",
+ "theme.blog.authorsList.pageTitle": "Authors",
+ "theme.blog.authorsList.viewAll": "View All Authors",
"theme.blog.paginator.navAriaLabel": "部落格文章列表分頁導覽",
"theme.blog.paginator.newerEntries": "較新的文章",
"theme.blog.paginator.olderEntries": "較舊的文章",
@@ -40,6 +43,10 @@
"theme.common.editThisPage": "編輯此頁",
"theme.common.headingLinkTitle": "{heading}的直接連結",
"theme.common.skipToMainContent": "跳至主要内容",
+ "theme.contentVisibility.draftBanner.message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "theme.contentVisibility.draftBanner.title": "Draft page",
+ "theme.contentVisibility.unlistedBanner.message": "此頁面未列出。搜索引擎不會對其索引,只有擁有直接連結的用戶才能訪問。",
+ "theme.contentVisibility.unlistedBanner.title": "未列出頁",
"theme.docs.DocCard.categoryDescription.plurals": "{count} 個項目",
"theme.docs.breadcrumbs.home": "主頁面",
"theme.docs.breadcrumbs.navAriaLabel": "頁面路徑",
@@ -68,7 +75,5 @@
"theme.navbar.mobileVersionsDropdown.label": "選擇版本",
"theme.tags.tagsListLabel": "標籤:",
"theme.tags.tagsPageLink": "檢視所有標籤",
- "theme.tags.tagsPageTitle": "標籤",
- "theme.unlistedContent.message": "此頁面未列出。搜索引擎不會對其索引,只有擁有直接連結的用戶才能訪問。",
- "theme.unlistedContent.title": "未列出頁"
+ "theme.tags.tagsPageTitle": "標籤"
}
diff --git a/project-words.txt b/project-words.txt
index 8ff86be90d..528d635318 100644
--- a/project-words.txt
+++ b/project-words.txt
@@ -412,8 +412,6 @@ webpackbar
webstorm
Wolcott
Xplorer
-xslt
-XSLT
XSOAR
Yacop
yangshun
From 44ddada37ac571c5ac7d447b51bfcad18533cf5e Mon Sep 17 00:00:00 2001
From: Bharatesh <64769271+bharateshwq@users.noreply.github.com>
Date: Fri, 9 Aug 2024 15:02:21 +0530
Subject: [PATCH 09/10] fix(docs): the _category_.json description attribute
should display on generated index pages (#10324)
Co-authored-by: sebastien
---
.../sidebars/__tests__/__snapshots__/generator.test.ts.snap | 1 +
.../src/sidebars/__tests__/generator.test.ts | 1 +
.../src/sidebars/__tests__/validation.test.ts | 1 +
.../docusaurus-plugin-content-docs/src/sidebars/generator.ts | 3 +++
.../src/sidebars/postProcessor.ts | 1 +
packages/docusaurus-plugin-content-docs/src/sidebars/types.ts | 1 +
.../docusaurus-plugin-content-docs/src/sidebars/validation.ts | 1 +
.../_docs tests/tests/category-links/_category_.json | 1 +
website/_dogfooding/docs-tests-sidebars.js | 1 +
9 files changed, 11 insertions(+)
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/__snapshots__/generator.test.ts.snap b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/__snapshots__/generator.test.ts.snap
index 29dd570e23..63430fd363 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/__snapshots__/generator.test.ts.snap
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/__snapshots__/generator.test.ts.snap
@@ -217,6 +217,7 @@ exports[`DefaultSidebarItemsGenerator uses explicit link over the index/readme.{
{
"collapsed": undefined,
"collapsible": undefined,
+ "description": "Category description",
"items": [
{
"id": "parent/doc2",
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/generator.test.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/generator.test.ts
index 2bb4014575..de104a1a25 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/generator.test.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/generator.test.ts
@@ -331,6 +331,7 @@ describe('DefaultSidebarItemsGenerator', () => {
categoriesMetadata: {
Category: {
label: 'Category label',
+ description: 'Category description',
link: {
type: 'doc',
id: 'doc3', // Using a "local doc id" ("doc1" instead of "parent/doc1") on purpose
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/validation.test.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/validation.test.ts
index 8186601285..6620705ff7 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/validation.test.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/__tests__/validation.test.ts
@@ -282,6 +282,7 @@ describe('validateCategoryMetadataFile', () => {
const content: CategoryMetadataFile = {
className: 'className',
label: 'Category Label',
+ description: 'Category Description',
link: {
type: 'generated-index',
slug: 'slug',
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/generator.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/generator.ts
index 0edf909bb9..20383b003a 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/generator.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/generator.ts
@@ -249,6 +249,9 @@ Available doc IDs:
...(customProps !== undefined && {customProps}),
...(className !== undefined && {className}),
items,
+ ...(categoryMetadata?.description && {
+ description: categoryMetadata?.description,
+ }),
...(link && {link}),
};
}
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/postProcessor.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/postProcessor.ts
index 3ec8a6f481..b5cdc34aa9 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/postProcessor.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/postProcessor.ts
@@ -64,6 +64,7 @@ function postProcessSidebarItem(
.map((subItem) => postProcessSidebarItem(subItem, params))
.filter((v): v is SidebarItem => Boolean(v)),
};
+
// If the current category doesn't have subitems, we render a normal link
// instead.
if (category.items.length === 0) {
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts
index 555a2b4718..9dbd23415d 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts
@@ -217,6 +217,7 @@ export type PropSidebarBreadcrumbsItem =
export type CategoryMetadataFile = {
label?: string;
position?: number;
+ description?: string;
collapsed?: boolean;
collapsible?: boolean;
className?: string;
diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/validation.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/validation.ts
index e65eb41960..33492dc309 100644
--- a/packages/docusaurus-plugin-content-docs/src/sidebars/validation.ts
+++ b/packages/docusaurus-plugin-content-docs/src/sidebars/validation.ts
@@ -167,6 +167,7 @@ export function validateSidebars(sidebars: {
const categoryMetadataFileSchema = Joi.object({
label: Joi.string(),
+ description: Joi.string(),
position: Joi.number(),
collapsed: Joi.boolean(),
collapsible: Joi.boolean(),
diff --git a/website/_dogfooding/_docs tests/tests/category-links/_category_.json b/website/_dogfooding/_docs tests/tests/category-links/_category_.json
index 8d0c8da76a..7166d0a755 100644
--- a/website/_dogfooding/_docs tests/tests/category-links/_category_.json
+++ b/website/_dogfooding/_docs tests/tests/category-links/_category_.json
@@ -1,5 +1,6 @@
{
"label": "Category Links",
+ "description": "Category Links - Custom Description",
"link": {
"type": "generated-index",
"slug": "/category-links-generated-index-slug"
diff --git a/website/_dogfooding/docs-tests-sidebars.js b/website/_dogfooding/docs-tests-sidebars.js
index c6f7ca8d5b..1e37a44d7c 100644
--- a/website/_dogfooding/docs-tests-sidebars.js
+++ b/website/_dogfooding/docs-tests-sidebars.js
@@ -41,6 +41,7 @@ const sidebars = {
{
type: 'category',
label: 'Sidebar item description tests',
+ description: 'Some custom category description',
link: {
type: 'generated-index',
},
From a2e30bebc46314566d572f54b2af57d62f0dfd04 Mon Sep 17 00:00:00 2001
From: Max Schmitt
Date: Fri, 9 Aug 2024 11:35:50 +0200
Subject: [PATCH 10/10] fix(search): fix algolia search ignore ctrl + F in
search input (#10342)
---
.../src/theme/SearchBar/index.tsx | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/packages/docusaurus-theme-search-algolia/src/theme/SearchBar/index.tsx b/packages/docusaurus-theme-search-algolia/src/theme/SearchBar/index.tsx
index 1325a2c2e9..aea9f06013 100644
--- a/packages/docusaurus-theme-search-algolia/src/theme/SearchBar/index.tsx
+++ b/packages/docusaurus-theme-search-algolia/src/theme/SearchBar/index.tsx
@@ -156,6 +156,10 @@ function DocSearch({
const handleInput = useCallback(
(event: KeyboardEvent) => {
+ if (event.key === 'f' && (event.metaKey || event.ctrlKey)) {
+ // ignore browser's ctrl+f
+ return;
+ }
// prevents duplicate key insertion in the modal input
event.preventDefault();
setInitialQuery(event.key);