mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-14 15:28:08 +02:00
feat(theme): show unlisted/draft banners in dev mode (#10376)
Co-authored-by: OzakIOne <OzakIOne@users.noreply.github.com> Co-authored-by: sebastien <lorber.sebastien@gmail.com>
This commit is contained in:
parent
c58fcbdecd
commit
95ab9f8ee4
48 changed files with 411 additions and 140 deletions
|
@ -1602,7 +1602,19 @@ declare module '@theme/Tag' {
|
||||||
export default function Tag(props: Props): JSX.Element;
|
export default function Tag(props: Props): JSX.Element;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@theme/Unlisted' {
|
declare module '@theme/ContentVisibility' {
|
||||||
|
export interface Props {
|
||||||
|
readonly metadata: {
|
||||||
|
// the visibility metadata our 3 content plugins share in common
|
||||||
|
readonly unlisted: boolean;
|
||||||
|
readonly frontMatter: {draft?: boolean; unlisted?: boolean};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ContentVisibility(props: Props): JSX.Element;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '@theme/ContentVisibility/Unlisted' {
|
||||||
export interface Props {
|
export interface Props {
|
||||||
className?: string;
|
className?: string;
|
||||||
}
|
}
|
||||||
|
@ -1610,6 +1622,14 @@ declare module '@theme/Unlisted' {
|
||||||
export default function Unlisted(props: Props): JSX.Element;
|
export default function Unlisted(props: Props): JSX.Element;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module '@theme/ContentVisibility/Draft' {
|
||||||
|
export interface Props {
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Draft(props: Props): JSX.Element;
|
||||||
|
}
|
||||||
|
|
||||||
declare module '@theme/prism-include-languages' {
|
declare module '@theme/prism-include-languages' {
|
||||||
import type * as PrismNamespace from 'prismjs';
|
import type * as PrismNamespace from 'prismjs';
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,8 @@ import BlogPostPaginator from '@theme/BlogPostPaginator';
|
||||||
import BlogPostPageMetadata from '@theme/BlogPostPage/Metadata';
|
import BlogPostPageMetadata from '@theme/BlogPostPage/Metadata';
|
||||||
import BlogPostPageStructuredData from '@theme/BlogPostPage/StructuredData';
|
import BlogPostPageStructuredData from '@theme/BlogPostPage/StructuredData';
|
||||||
import TOC from '@theme/TOC';
|
import TOC from '@theme/TOC';
|
||||||
|
import ContentVisibility from '@theme/ContentVisibility';
|
||||||
import type {Props} from '@theme/BlogPostPage';
|
import type {Props} from '@theme/BlogPostPage';
|
||||||
import Unlisted from '@theme/Unlisted';
|
|
||||||
import type {BlogSidebar} from '@docusaurus/plugin-content-blog';
|
import type {BlogSidebar} from '@docusaurus/plugin-content-blog';
|
||||||
|
|
||||||
function BlogPostPageContent({
|
function BlogPostPageContent({
|
||||||
|
@ -30,7 +30,7 @@ function BlogPostPageContent({
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
const {metadata, toc} = useBlogPost();
|
const {metadata, toc} = useBlogPost();
|
||||||
const {nextItem, prevItem, frontMatter, unlisted} = metadata;
|
const {nextItem, prevItem, frontMatter} = metadata;
|
||||||
const {
|
const {
|
||||||
hide_table_of_contents: hideTableOfContents,
|
hide_table_of_contents: hideTableOfContents,
|
||||||
toc_min_heading_level: tocMinHeadingLevel,
|
toc_min_heading_level: tocMinHeadingLevel,
|
||||||
|
@ -48,7 +48,7 @@ function BlogPostPageContent({
|
||||||
/>
|
/>
|
||||||
) : undefined
|
) : undefined
|
||||||
}>
|
}>
|
||||||
{unlisted && <Unlisted />}
|
<ContentVisibility metadata={metadata} />
|
||||||
|
|
||||||
<BlogPostItem>{children}</BlogPostItem>
|
<BlogPostItem>{children}</BlogPostItem>
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import BlogListPaginator from '@theme/BlogListPaginator';
|
||||||
import SearchMetadata from '@theme/SearchMetadata';
|
import SearchMetadata from '@theme/SearchMetadata';
|
||||||
import type {Props} from '@theme/BlogTagsPostsPage';
|
import type {Props} from '@theme/BlogTagsPostsPage';
|
||||||
import BlogPostItems from '@theme/BlogPostItems';
|
import BlogPostItems from '@theme/BlogPostItems';
|
||||||
import Unlisted from '@theme/Unlisted';
|
import Unlisted from '@theme/ContentVisibility/Unlisted';
|
||||||
import Heading from '@theme/Heading';
|
import Heading from '@theme/Heading';
|
||||||
|
|
||||||
function BlogTagsPostsPageMetadata({tag}: Props): JSX.Element {
|
function BlogTagsPostsPageMetadata({tag}: Props): JSX.Element {
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import clsx from 'clsx';
|
||||||
|
import {
|
||||||
|
ThemeClassNames,
|
||||||
|
DraftBannerTitle,
|
||||||
|
DraftBannerMessage,
|
||||||
|
} from '@docusaurus/theme-common';
|
||||||
|
import Admonition from '@theme/Admonition';
|
||||||
|
import type {Props} from '@theme/ContentVisibility/Draft';
|
||||||
|
|
||||||
|
export default function Draft({className}: Props): JSX.Element | null {
|
||||||
|
return (
|
||||||
|
<Admonition
|
||||||
|
type="caution"
|
||||||
|
title={<DraftBannerTitle />}
|
||||||
|
className={clsx(className, ThemeClassNames.common.draftBanner)}>
|
||||||
|
<DraftBannerMessage />
|
||||||
|
</Admonition>
|
||||||
|
);
|
||||||
|
}
|
|
@ -14,7 +14,7 @@ import {
|
||||||
UnlistedMetadata,
|
UnlistedMetadata,
|
||||||
} from '@docusaurus/theme-common';
|
} from '@docusaurus/theme-common';
|
||||||
import Admonition from '@theme/Admonition';
|
import Admonition from '@theme/Admonition';
|
||||||
import type {Props} from '@theme/Unlisted';
|
import type {Props} from '@theme/ContentVisibility/Unlisted';
|
||||||
|
|
||||||
function UnlistedBanner({className}: Props) {
|
function UnlistedBanner({className}: Props) {
|
||||||
return (
|
return (
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import type {Props} from '@theme/ContentVisibility';
|
||||||
|
import Draft from '@theme/ContentVisibility/Draft';
|
||||||
|
import Unlisted from '@theme/ContentVisibility/Unlisted';
|
||||||
|
|
||||||
|
export default function ContentVisibility({
|
||||||
|
metadata,
|
||||||
|
}: Props): JSX.Element | null {
|
||||||
|
const {unlisted, frontMatter} = metadata;
|
||||||
|
// Reading draft/unlisted status from frontMatter is useful to display
|
||||||
|
// the banners in dev mode (in dev, metadata.unlisted is always false)
|
||||||
|
// See https://github.com/facebook/docusaurus/issues/8285
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{(unlisted || frontMatter.unlisted) && <Unlisted />}
|
||||||
|
{frontMatter.draft && <Draft />}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
|
@ -17,7 +17,7 @@ import DocItemTOCMobile from '@theme/DocItem/TOC/Mobile';
|
||||||
import DocItemTOCDesktop from '@theme/DocItem/TOC/Desktop';
|
import DocItemTOCDesktop from '@theme/DocItem/TOC/Desktop';
|
||||||
import DocItemContent from '@theme/DocItem/Content';
|
import DocItemContent from '@theme/DocItem/Content';
|
||||||
import DocBreadcrumbs from '@theme/DocBreadcrumbs';
|
import DocBreadcrumbs from '@theme/DocBreadcrumbs';
|
||||||
import Unlisted from '@theme/Unlisted';
|
import ContentVisibility from '@theme/ContentVisibility';
|
||||||
import type {Props} from '@theme/DocItem/Layout';
|
import type {Props} from '@theme/DocItem/Layout';
|
||||||
|
|
||||||
import styles from './styles.module.css';
|
import styles from './styles.module.css';
|
||||||
|
@ -48,13 +48,11 @@ function useDocTOC() {
|
||||||
|
|
||||||
export default function DocItemLayout({children}: Props): JSX.Element {
|
export default function DocItemLayout({children}: Props): JSX.Element {
|
||||||
const docTOC = useDocTOC();
|
const docTOC = useDocTOC();
|
||||||
const {
|
const {metadata} = useDoc();
|
||||||
metadata: {unlisted},
|
|
||||||
} = useDoc();
|
|
||||||
return (
|
return (
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className={clsx('col', !docTOC.hidden && styles.docItemCol)}>
|
<div className={clsx('col', !docTOC.hidden && styles.docItemCol)}>
|
||||||
{unlisted && <Unlisted />}
|
<ContentVisibility metadata={metadata} />
|
||||||
<DocVersionBanner />
|
<DocVersionBanner />
|
||||||
<div className={styles.docItemContainer}>
|
<div className={styles.docItemContainer}>
|
||||||
<article>
|
<article>
|
||||||
|
|
|
@ -17,7 +17,7 @@ import {
|
||||||
import Translate, {translate} from '@docusaurus/Translate';
|
import Translate, {translate} from '@docusaurus/Translate';
|
||||||
import SearchMetadata from '@theme/SearchMetadata';
|
import SearchMetadata from '@theme/SearchMetadata';
|
||||||
import type {Props} from '@theme/DocTagDocListPage';
|
import type {Props} from '@theme/DocTagDocListPage';
|
||||||
import Unlisted from '@theme/Unlisted';
|
import Unlisted from '@theme/ContentVisibility/Unlisted';
|
||||||
import Heading from '@theme/Heading';
|
import Heading from '@theme/Heading';
|
||||||
|
|
||||||
// Very simple pluralization: probably good enough for now
|
// Very simple pluralization: probably good enough for now
|
||||||
|
|
|
@ -15,7 +15,7 @@ import {
|
||||||
import Layout from '@theme/Layout';
|
import Layout from '@theme/Layout';
|
||||||
import MDXContent from '@theme/MDXContent';
|
import MDXContent from '@theme/MDXContent';
|
||||||
import TOC from '@theme/TOC';
|
import TOC from '@theme/TOC';
|
||||||
import Unlisted from '@theme/Unlisted';
|
import ContentVisibility from '@theme/ContentVisibility';
|
||||||
import type {Props} from '@theme/MDXPage';
|
import type {Props} from '@theme/MDXPage';
|
||||||
|
|
||||||
import EditMetaRow from '@theme/EditMetaRow';
|
import EditMetaRow from '@theme/EditMetaRow';
|
||||||
|
@ -23,18 +23,15 @@ import styles from './styles.module.css';
|
||||||
|
|
||||||
export default function MDXPage(props: Props): JSX.Element {
|
export default function MDXPage(props: Props): JSX.Element {
|
||||||
const {content: MDXPageContent} = props;
|
const {content: MDXPageContent} = props;
|
||||||
|
const {metadata, assets} = MDXPageContent;
|
||||||
const {
|
const {
|
||||||
metadata: {
|
title,
|
||||||
title,
|
editUrl,
|
||||||
editUrl,
|
description,
|
||||||
description,
|
frontMatter,
|
||||||
frontMatter,
|
lastUpdatedBy,
|
||||||
unlisted,
|
lastUpdatedAt,
|
||||||
lastUpdatedBy,
|
} = metadata;
|
||||||
lastUpdatedAt,
|
|
||||||
},
|
|
||||||
assets,
|
|
||||||
} = MDXPageContent;
|
|
||||||
const {
|
const {
|
||||||
keywords,
|
keywords,
|
||||||
wrapperClassName,
|
wrapperClassName,
|
||||||
|
@ -60,7 +57,7 @@ export default function MDXPage(props: Props): JSX.Element {
|
||||||
<main className="container container--fluid margin-vert--lg">
|
<main className="container container--fluid margin-vert--lg">
|
||||||
<div className={clsx('row', styles.mdxPageWrapper)}>
|
<div className={clsx('row', styles.mdxPageWrapper)}>
|
||||||
<div className={clsx('col', !hideTableOfContents && 'col--8')}>
|
<div className={clsx('col', !hideTableOfContents && 'col--8')}>
|
||||||
{unlisted && <Unlisted />}
|
<ContentVisibility metadata={metadata} />
|
||||||
<article>
|
<article>
|
||||||
<MDXContent>
|
<MDXContent>
|
||||||
<MDXPageContent />
|
<MDXPageContent />
|
||||||
|
|
|
@ -123,7 +123,9 @@ export {
|
||||||
UnlistedBannerTitle,
|
UnlistedBannerTitle,
|
||||||
UnlistedBannerMessage,
|
UnlistedBannerMessage,
|
||||||
UnlistedMetadata,
|
UnlistedMetadata,
|
||||||
} from './utils/unlistedUtils';
|
DraftBannerTitle,
|
||||||
|
DraftBannerMessage,
|
||||||
|
} from './translations/contentVisibilityTranslations';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
ErrorBoundaryTryAgainButton,
|
ErrorBoundaryTryAgainButton,
|
||||||
|
|
|
@ -12,7 +12,7 @@ import Head from '@docusaurus/Head';
|
||||||
export function UnlistedBannerTitle(): JSX.Element {
|
export function UnlistedBannerTitle(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<Translate
|
<Translate
|
||||||
id="theme.unlistedContent.title"
|
id="theme.contentVisibility.unlistedBanner.title"
|
||||||
description="The unlisted content banner title">
|
description="The unlisted content banner title">
|
||||||
Unlisted page
|
Unlisted page
|
||||||
</Translate>
|
</Translate>
|
||||||
|
@ -22,7 +22,7 @@ export function UnlistedBannerTitle(): JSX.Element {
|
||||||
export function UnlistedBannerMessage(): JSX.Element {
|
export function UnlistedBannerMessage(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<Translate
|
<Translate
|
||||||
id="theme.unlistedContent.message"
|
id="theme.contentVisibility.unlistedBanner.message"
|
||||||
description="The unlisted content banner message">
|
description="The unlisted content banner message">
|
||||||
This page is unlisted. Search engines will not index it, and only users
|
This page is unlisted. Search engines will not index it, and only users
|
||||||
having a direct link can access it.
|
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 {
|
export function UnlistedMetadata(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<Head>
|
<Head>
|
||||||
|
@ -37,3 +39,24 @@ export function UnlistedMetadata(): JSX.Element {
|
||||||
</Head>
|
</Head>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function DraftBannerTitle(): JSX.Element {
|
||||||
|
return (
|
||||||
|
<Translate
|
||||||
|
id="theme.contentVisibility.draftBanner.title"
|
||||||
|
description="The draft content banner title">
|
||||||
|
Draft page
|
||||||
|
</Translate>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function DraftBannerMessage(): JSX.Element {
|
||||||
|
return (
|
||||||
|
<Translate
|
||||||
|
id="theme.contentVisibility.draftBanner.message"
|
||||||
|
description="The draft content banner message">
|
||||||
|
This page is a draft. It will only be visible in dev and be excluded from
|
||||||
|
the production build.
|
||||||
|
</Translate>
|
||||||
|
);
|
||||||
|
}
|
|
@ -43,6 +43,7 @@ export const ThemeClassNames = {
|
||||||
codeBlock: 'theme-code-block',
|
codeBlock: 'theme-code-block',
|
||||||
admonition: 'theme-admonition',
|
admonition: 'theme-admonition',
|
||||||
unlistedBanner: 'theme-unlisted-banner',
|
unlistedBanner: 'theme-unlisted-banner',
|
||||||
|
draftBanner: 'theme-draft-banner',
|
||||||
|
|
||||||
admonitionType: (type: string) => `theme-admonition-${type}`,
|
admonitionType: (type: string) => `theme-admonition-${type}`,
|
||||||
},
|
},
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "أرشيف",
|
"theme.blog.archive.description": "أرشيف",
|
||||||
"theme.blog.archive.title": "أرشيف",
|
"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.navAriaLabel": "التنقل في صفحة قائمة المدونة",
|
||||||
"theme.blog.paginator.newerEntries": "إدخالات أحدث",
|
"theme.blog.paginator.newerEntries": "إدخالات أحدث",
|
||||||
"theme.blog.paginator.olderEntries": "إدخالات أقدم",
|
"theme.blog.paginator.olderEntries": "إدخالات أقدم",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "تعديل هذه الصفحة",
|
"theme.common.editThisPage": "تعديل هذه الصفحة",
|
||||||
"theme.common.headingLinkTitle": "ارتباط مباشر بالعنوان {heading}",
|
"theme.common.headingLinkTitle": "ارتباط مباشر بالعنوان {heading}",
|
||||||
"theme.common.skipToMainContent": "انتقل إلى المحتوى الرئيسي",
|
"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.DocCard.categoryDescription.plurals": "{count} مواد",
|
||||||
"theme.docs.breadcrumbs.home": "الرئيسية",
|
"theme.docs.breadcrumbs.home": "الرئيسية",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "التنقل التفصيلي",
|
"theme.docs.breadcrumbs.navAriaLabel": "التنقل التفصيلي",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "إصدارات",
|
"theme.navbar.mobileVersionsDropdown.label": "إصدارات",
|
||||||
"theme.tags.tagsListLabel": "الوسوم:",
|
"theme.tags.tagsListLabel": "الوسوم:",
|
||||||
"theme.tags.tagsPageLink": "عرض كل الوسوم",
|
"theme.tags.tagsPageLink": "عرض كل الوسوم",
|
||||||
"theme.tags.tagsPageTitle": "الوسوم",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,13 +41,16 @@
|
||||||
"theme.admonition.tip___DESCRIPTION": "The default label used for the Tip admonition (:::tip)",
|
"theme.admonition.tip___DESCRIPTION": "The default label used for the Tip admonition (:::tip)",
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.admonition.warning___DESCRIPTION": "The default label used for the Warning admonition (:::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": "Archive",
|
||||||
"theme.blog.archive.description___DESCRIPTION": "The page & hero description of the blog archive page",
|
"theme.blog.archive.description___DESCRIPTION": "The page & hero description of the blog archive page",
|
||||||
"theme.blog.archive.title": "Archive",
|
"theme.blog.archive.title": "Archive",
|
||||||
"theme.blog.archive.title___DESCRIPTION": "The page & hero title of the blog archive page",
|
"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": "Blog list page navigation",
|
||||||
"theme.blog.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the blog pagination",
|
"theme.blog.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the blog pagination",
|
||||||
"theme.blog.paginator.newerEntries": "Newer Entries",
|
"theme.blog.paginator.newerEntries": "Newer Entries",
|
||||||
|
@ -84,6 +87,14 @@
|
||||||
"theme.common.headingLinkTitle___DESCRIPTION": "Title for link to heading",
|
"theme.common.headingLinkTitle___DESCRIPTION": "Title for link to heading",
|
||||||
"theme.common.skipToMainContent": "Skip to main content",
|
"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.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": "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.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",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
|
@ -140,9 +151,5 @@
|
||||||
"theme.tags.tagsPageLink": "View All Tags",
|
"theme.tags.tagsPageLink": "View All Tags",
|
||||||
"theme.tags.tagsPageLink___DESCRIPTION": "The label of the link targeting the tag list page",
|
"theme.tags.tagsPageLink___DESCRIPTION": "The label of the link targeting the tag list page",
|
||||||
"theme.tags.tagsPageTitle": "Tags",
|
"theme.tags.tagsPageTitle": "Tags",
|
||||||
"theme.tags.tagsPageTitle___DESCRIPTION": "The title of the tag list page",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "Внимание",
|
"theme.admonition.warning": "Внимание",
|
||||||
"theme.blog.archive.description": "Архив",
|
"theme.blog.archive.description": "Архив",
|
||||||
"theme.blog.archive.title": "Архив",
|
"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.navAriaLabel": "Навигация в страницата със списък на блогове",
|
||||||
"theme.blog.paginator.newerEntries": "По-нови записи",
|
"theme.blog.paginator.newerEntries": "По-нови записи",
|
||||||
"theme.blog.paginator.olderEntries": "По-стари записи",
|
"theme.blog.paginator.olderEntries": "По-стари записи",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Редактирай тази страница",
|
"theme.common.editThisPage": "Редактирай тази страница",
|
||||||
"theme.common.headingLinkTitle": "Директна връзка към {heading}",
|
"theme.common.headingLinkTitle": "Директна връзка към {heading}",
|
||||||
"theme.common.skipToMainContent": "Преминете към основното съдържание",
|
"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.DocCard.categoryDescription.plurals": "един предмет|{count} предмета",
|
||||||
"theme.docs.breadcrumbs.home": "Начална страница",
|
"theme.docs.breadcrumbs.home": "Начална страница",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Галета",
|
"theme.docs.breadcrumbs.navAriaLabel": "Галета",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Версии",
|
"theme.navbar.mobileVersionsDropdown.label": "Версии",
|
||||||
"theme.tags.tagsListLabel": "Етикети:",
|
"theme.tags.tagsListLabel": "Етикети:",
|
||||||
"theme.tags.tagsPageLink": "Вижте всички етикети",
|
"theme.tags.tagsPageLink": "Вижте всички етикети",
|
||||||
"theme.tags.tagsPageTitle": "Етикети",
|
"theme.tags.tagsPageTitle": "Етикети"
|
||||||
"theme.unlistedContent.message": "Тази страница е скрита. Търсачките няма да я индексират и само потребители с директна връзка имат достъп до него.",
|
|
||||||
"theme.unlistedContent.title": "Скрита страница"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "ব্লগ তালিকা পেজ নেভিগেশন",
|
||||||
"theme.blog.paginator.newerEntries": "নতুন এন্ট্রি",
|
"theme.blog.paginator.newerEntries": "নতুন এন্ট্রি",
|
||||||
"theme.blog.paginator.olderEntries": "পুরানো এন্ট্রি",
|
"theme.blog.paginator.olderEntries": "পুরানো এন্ট্রি",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "এই পেজটি এডিট করুন",
|
"theme.common.editThisPage": "এই পেজটি এডিট করুন",
|
||||||
"theme.common.headingLinkTitle": "{heading} এর সঙ্গে সরাসরি লিংকড",
|
"theme.common.headingLinkTitle": "{heading} এর সঙ্গে সরাসরি লিংকড",
|
||||||
"theme.common.skipToMainContent": "স্কিপ করে মূল কন্টেন্ট এ যান",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "ট্যাগ্স:",
|
"theme.tags.tagsListLabel": "ট্যাগ্স:",
|
||||||
"theme.tags.tagsPageLink": "সমস্ত ট্যাগ্স দেখুন",
|
"theme.tags.tagsPageLink": "সমস্ত ট্যাগ্স দেখুন",
|
||||||
"theme.tags.tagsPageTitle": "ট্যাগ্স",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Stránkování článků na blogu",
|
||||||
"theme.blog.paginator.newerEntries": "Novější záznamy",
|
"theme.blog.paginator.newerEntries": "Novější záznamy",
|
||||||
"theme.blog.paginator.olderEntries": "Starší záznamy",
|
"theme.blog.paginator.olderEntries": "Starší záznamy",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Upravit tuto stránku",
|
"theme.common.editThisPage": "Upravit tuto stránku",
|
||||||
"theme.common.headingLinkTitle": "Přímý odkaz na {heading}",
|
"theme.common.headingLinkTitle": "Přímý odkaz na {heading}",
|
||||||
"theme.common.skipToMainContent": "Přeskočit na hlavní obsah",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "Tagy:",
|
"theme.tags.tagsListLabel": "Tagy:",
|
||||||
"theme.tags.tagsPageLink": "Zobrazit všechny tagy",
|
"theme.tags.tagsPageLink": "Zobrazit všechny tagy",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Blogoversigt navigation",
|
||||||
"theme.blog.paginator.newerEntries": "Nyere indslag",
|
"theme.blog.paginator.newerEntries": "Nyere indslag",
|
||||||
"theme.blog.paginator.olderEntries": "Tidligere indslag",
|
"theme.blog.paginator.olderEntries": "Tidligere indslag",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Rediger denne side",
|
"theme.common.editThisPage": "Rediger denne side",
|
||||||
"theme.common.headingLinkTitle": "Direkte link til {heading}",
|
"theme.common.headingLinkTitle": "Direkte link til {heading}",
|
||||||
"theme.common.skipToMainContent": "Hop til hovedindhold",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "Tags:",
|
"theme.tags.tagsListLabel": "Tags:",
|
||||||
"theme.tags.tagsPageLink": "Se alle Tags",
|
"theme.tags.tagsPageLink": "Se alle Tags",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warnung",
|
"theme.admonition.warning": "warnung",
|
||||||
"theme.blog.archive.description": "Archiv",
|
"theme.blog.archive.description": "Archiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigation der Blog-Listenseite",
|
||||||
"theme.blog.paginator.newerEntries": "Neuere Einträge",
|
"theme.blog.paginator.newerEntries": "Neuere Einträge",
|
||||||
"theme.blog.paginator.olderEntries": "Ältere Einträge",
|
"theme.blog.paginator.olderEntries": "Ältere Einträge",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Diese Seite bearbeiten",
|
"theme.common.editThisPage": "Diese Seite bearbeiten",
|
||||||
"theme.common.headingLinkTitle": "Direkter Link zur {heading}",
|
"theme.common.headingLinkTitle": "Direkter Link zur {heading}",
|
||||||
"theme.common.skipToMainContent": "Zum Hauptinhalt springen",
|
"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.DocCard.categoryDescription.plurals": "1 Eintrag|{count} Einträge",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versionen",
|
"theme.navbar.mobileVersionsDropdown.label": "Versionen",
|
||||||
"theme.tags.tagsListLabel": "Tags:",
|
"theme.tags.tagsListLabel": "Tags:",
|
||||||
"theme.tags.tagsPageLink": "Alle Tags anzeigen",
|
"theme.tags.tagsPageLink": "Alle Tags anzeigen",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "aviso",
|
"theme.admonition.warning": "aviso",
|
||||||
"theme.blog.archive.description": "Archivo",
|
"theme.blog.archive.description": "Archivo",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navegación por la página de la lista de blogs ",
|
||||||
"theme.blog.paginator.newerEntries": "Entradas más recientes",
|
"theme.blog.paginator.newerEntries": "Entradas más recientes",
|
||||||
"theme.blog.paginator.olderEntries": "Entradas más antiguas",
|
"theme.blog.paginator.olderEntries": "Entradas más antiguas",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Editar esta página",
|
"theme.common.editThisPage": "Editar esta página",
|
||||||
"theme.common.headingLinkTitle": "Enlace directo al {heading}",
|
"theme.common.headingLinkTitle": "Enlace directo al {heading}",
|
||||||
"theme.common.skipToMainContent": "Saltar al contenido principal",
|
"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.DocCard.categoryDescription.plurals": "1 artículo|{count} artículos",
|
||||||
"theme.docs.breadcrumbs.home": "Página de Inicio",
|
"theme.docs.breadcrumbs.home": "Página de Inicio",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Migas de pan",
|
"theme.docs.breadcrumbs.navAriaLabel": "Migas de pan",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versiones",
|
"theme.navbar.mobileVersionsDropdown.label": "Versiones",
|
||||||
"theme.tags.tagsListLabel": "Etiquetas:",
|
"theme.tags.tagsListLabel": "Etiquetas:",
|
||||||
"theme.tags.tagsPageLink": "Ver Todas las Etiquetas",
|
"theme.tags.tagsPageLink": "Ver Todas las Etiquetas",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "hoiatus",
|
"theme.admonition.warning": "hoiatus",
|
||||||
"theme.blog.archive.description": "Arhiiv",
|
"theme.blog.archive.description": "Arhiiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Blogi lehekülje navigatsioon",
|
||||||
"theme.blog.paginator.newerEntries": "Uuemad sissekanded",
|
"theme.blog.paginator.newerEntries": "Uuemad sissekanded",
|
||||||
"theme.blog.paginator.olderEntries": "Vanemad sissekanded",
|
"theme.blog.paginator.olderEntries": "Vanemad sissekanded",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Redigeeri seda lehte",
|
"theme.common.editThisPage": "Redigeeri seda lehte",
|
||||||
"theme.common.headingLinkTitle": "Link {heading}",
|
"theme.common.headingLinkTitle": "Link {heading}",
|
||||||
"theme.common.skipToMainContent": "Liigu peamise sisu juurde",
|
"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.DocCard.categoryDescription.plurals": "1 ese|{count} eset",
|
||||||
"theme.docs.breadcrumbs.home": "Koduleht",
|
"theme.docs.breadcrumbs.home": "Koduleht",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versioonid",
|
"theme.navbar.mobileVersionsDropdown.label": "Versioonid",
|
||||||
"theme.tags.tagsListLabel": "Märked:",
|
"theme.tags.tagsListLabel": "Märked:",
|
||||||
"theme.tags.tagsPageLink": "Näaita Kõiki Märkeid",
|
"theme.tags.tagsPageLink": "Näaita Kõiki Märkeid",
|
||||||
"theme.tags.tagsPageTitle": "Märked",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "هشدار",
|
"theme.admonition.warning": "هشدار",
|
||||||
"theme.blog.archive.description": "آرشیو",
|
"theme.blog.archive.description": "آرشیو",
|
||||||
"theme.blog.archive.title": "آرشیو",
|
"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.navAriaLabel": "کنترل لیست مطالب وبلاگ",
|
||||||
"theme.blog.paginator.newerEntries": "مطالب جدیدتر",
|
"theme.blog.paginator.newerEntries": "مطالب جدیدتر",
|
||||||
"theme.blog.paginator.olderEntries": "مطالب قدیمیتر",
|
"theme.blog.paginator.olderEntries": "مطالب قدیمیتر",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "ویرایش مطالب این صفحه",
|
"theme.common.editThisPage": "ویرایش مطالب این صفحه",
|
||||||
"theme.common.headingLinkTitle": "لینک مستقیم به {heading}",
|
"theme.common.headingLinkTitle": "لینک مستقیم به {heading}",
|
||||||
"theme.common.skipToMainContent": "پرش به مطلب اصلی",
|
"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.DocCard.categoryDescription.plurals": "{count} مورد",
|
||||||
"theme.docs.breadcrumbs.home": "صفحه اصلی",
|
"theme.docs.breadcrumbs.home": "صفحه اصلی",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "نشانگر صفحات",
|
"theme.docs.breadcrumbs.navAriaLabel": "نشانگر صفحات",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "نسخهها",
|
"theme.navbar.mobileVersionsDropdown.label": "نسخهها",
|
||||||
"theme.tags.tagsListLabel": "برچسبها:",
|
"theme.tags.tagsListLabel": "برچسبها:",
|
||||||
"theme.tags.tagsPageLink": "مشاهده تمام برچسبها",
|
"theme.tags.tagsPageLink": "مشاهده تمام برچسبها",
|
||||||
"theme.tags.tagsPageTitle": "برچسبها",
|
"theme.tags.tagsPageTitle": "برچسبها"
|
||||||
"theme.unlistedContent.message": "این صفحه فهرست نشده است. موتورهای جستجو آن را ایندکس نمی کنند و فقط کاربرانی که لینک مستقیم دارند می توانند به آن دسترسی داشته باشند.",
|
|
||||||
"theme.unlistedContent.title": "صفحه فهرست نشده"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Nabegasyón para sa pahina na listahan ng blog",
|
||||||
"theme.blog.paginator.newerEntries": "Mas bagong mga éntri",
|
"theme.blog.paginator.newerEntries": "Mas bagong mga éntri",
|
||||||
"theme.blog.paginator.olderEntries": "Mas lumang mga éntri",
|
"theme.blog.paginator.olderEntries": "Mas lumang mga éntri",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "I-edit ang page",
|
"theme.common.editThisPage": "I-edit ang page",
|
||||||
"theme.common.headingLinkTitle": "Direktang link patungo sa {heading}",
|
"theme.common.headingLinkTitle": "Direktang link patungo sa {heading}",
|
||||||
"theme.common.skipToMainContent": "Lumaktaw patungo sa pangunahing content",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "Mga Tag:",
|
"theme.tags.tagsListLabel": "Mga Tag:",
|
||||||
"theme.tags.tagsPageLink": "Tingnan Lahat ng mga Tag",
|
"theme.tags.tagsPageLink": "Tingnan Lahat ng mga Tag",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "attention",
|
"theme.admonition.warning": "attention",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Pagination de la liste des articles du blog",
|
||||||
"theme.blog.paginator.newerEntries": "Nouvelles entrées",
|
"theme.blog.paginator.newerEntries": "Nouvelles entrées",
|
||||||
"theme.blog.paginator.olderEntries": "Anciennes entrées",
|
"theme.blog.paginator.olderEntries": "Anciennes entrées",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Éditer cette page",
|
"theme.common.editThisPage": "Éditer cette page",
|
||||||
"theme.common.headingLinkTitle": "Lien direct vers {heading}",
|
"theme.common.headingLinkTitle": "Lien direct vers {heading}",
|
||||||
"theme.common.skipToMainContent": "Aller au contenu principal",
|
"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.DocCard.categoryDescription.plurals": "1 élément|{count} éléments",
|
||||||
"theme.docs.breadcrumbs.home": "Page d'accueil",
|
"theme.docs.breadcrumbs.home": "Page d'accueil",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Fil d'Ariane",
|
"theme.docs.breadcrumbs.navAriaLabel": "Fil d'Ariane",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "Tags :",
|
"theme.tags.tagsListLabel": "Tags :",
|
||||||
"theme.tags.tagsPageLink": "Voir tous les tags",
|
"theme.tags.tagsPageLink": "Voir tous les tags",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "רשימת דפי הבלוג",
|
||||||
"theme.blog.paginator.newerEntries": "הכי חדש",
|
"theme.blog.paginator.newerEntries": "הכי חדש",
|
||||||
"theme.blog.paginator.olderEntries": "ישן יותר",
|
"theme.blog.paginator.olderEntries": "ישן יותר",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "ערוך דף זה",
|
"theme.common.editThisPage": "ערוך דף זה",
|
||||||
"theme.common.headingLinkTitle": "קישור ישיר אל {heading}",
|
"theme.common.headingLinkTitle": "קישור ישיר אל {heading}",
|
||||||
"theme.common.skipToMainContent": "דלג לתוכן הראשי",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "תגיות:",
|
"theme.tags.tagsListLabel": "תגיות:",
|
||||||
"theme.tags.tagsPageLink": "כל התגיות",
|
"theme.tags.tagsPageLink": "כל התגיות",
|
||||||
"theme.tags.tagsPageTitle": "תגיות",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "ब्लॉग सूची पेज नेविगेशन",
|
||||||
"theme.blog.paginator.newerEntries": "नए एंट्रीज़",
|
"theme.blog.paginator.newerEntries": "नए एंट्रीज़",
|
||||||
"theme.blog.paginator.olderEntries": "पुराने एंट्रीज़",
|
"theme.blog.paginator.olderEntries": "पुराने एंट्रीज़",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "इस पेज को बदलें",
|
"theme.common.editThisPage": "इस पेज को बदलें",
|
||||||
"theme.common.headingLinkTitle": "{heading} का सीधा लिंक",
|
"theme.common.headingLinkTitle": "{heading} का सीधा लिंक",
|
||||||
"theme.common.skipToMainContent": "मुख्य कंटेंट तक स्किप करें",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "टैग:",
|
"theme.tags.tagsListLabel": "टैग:",
|
||||||
"theme.tags.tagsPageLink": "सारे टैग देखें",
|
"theme.tags.tagsPageLink": "सारे टैग देखें",
|
||||||
"theme.tags.tagsPageTitle": "टैग",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "vigyázat",
|
"theme.admonition.warning": "vigyázat",
|
||||||
"theme.blog.archive.description": "Archívum",
|
"theme.blog.archive.description": "Archívum",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Bloglista oldalának navigációja",
|
||||||
"theme.blog.paginator.newerEntries": "Újabb bejegyzések",
|
"theme.blog.paginator.newerEntries": "Újabb bejegyzések",
|
||||||
"theme.blog.paginator.olderEntries": "Régebbi bejegyzések",
|
"theme.blog.paginator.olderEntries": "Régebbi bejegyzések",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Szerkesztés GitHub-on",
|
"theme.common.editThisPage": "Szerkesztés GitHub-on",
|
||||||
"theme.common.headingLinkTitle": "Közvetlen hivatkozás erre: {heading}",
|
"theme.common.headingLinkTitle": "Közvetlen hivatkozás erre: {heading}",
|
||||||
"theme.common.skipToMainContent": "Ugrás a fő tartalomhoz",
|
"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.DocCard.categoryDescription.plurals": "1 elem|{count} elemek",
|
||||||
"theme.docs.breadcrumbs.home": "Kezdőlap",
|
"theme.docs.breadcrumbs.home": "Kezdőlap",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Navigációs sáv a jelenlegi oldalhoz",
|
"theme.docs.breadcrumbs.navAriaLabel": "Navigációs sáv a jelenlegi oldalhoz",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Verziók",
|
"theme.navbar.mobileVersionsDropdown.label": "Verziók",
|
||||||
"theme.tags.tagsListLabel": "Címkék:",
|
"theme.tags.tagsListLabel": "Címkék:",
|
||||||
"theme.tags.tagsPageLink": "Összes címke megtekintése",
|
"theme.tags.tagsPageLink": "Összes címke megtekintése",
|
||||||
"theme.tags.tagsPageTitle": "Címkék",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "peringatan",
|
"theme.admonition.warning": "peringatan",
|
||||||
"theme.blog.archive.description": "Arsip",
|
"theme.blog.archive.description": "Arsip",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigasi entri blog",
|
||||||
"theme.blog.paginator.newerEntries": "Entri lebih baru",
|
"theme.blog.paginator.newerEntries": "Entri lebih baru",
|
||||||
"theme.blog.paginator.olderEntries": "Entri lebih lama",
|
"theme.blog.paginator.olderEntries": "Entri lebih lama",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Sunting halaman ini",
|
"theme.common.editThisPage": "Sunting halaman ini",
|
||||||
"theme.common.headingLinkTitle": "Taut langsung ke {heading}",
|
"theme.common.headingLinkTitle": "Taut langsung ke {heading}",
|
||||||
"theme.common.skipToMainContent": "Lewati ke konten utama",
|
"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.DocCard.categoryDescription.plurals": "1 butir|{count} butir",
|
||||||
"theme.docs.breadcrumbs.home": "Halaman utama",
|
"theme.docs.breadcrumbs.home": "Halaman utama",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Runut navigasi",
|
"theme.docs.breadcrumbs.navAriaLabel": "Runut navigasi",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versi",
|
"theme.navbar.mobileVersionsDropdown.label": "Versi",
|
||||||
"theme.tags.tagsListLabel": "Tag:",
|
"theme.tags.tagsListLabel": "Tag:",
|
||||||
"theme.tags.tagsPageLink": "Lihat Semua Tag",
|
"theme.tags.tagsPageLink": "Lihat Semua Tag",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "aðvörun",
|
"theme.admonition.warning": "aðvörun",
|
||||||
"theme.blog.archive.description": "Skjalasafn",
|
"theme.blog.archive.description": "Skjalasafn",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Blogg listsíðu yfirlit",
|
||||||
"theme.blog.paginator.newerEntries": "Nýrri færslur",
|
"theme.blog.paginator.newerEntries": "Nýrri færslur",
|
||||||
"theme.blog.paginator.olderEntries": "Eldri færslur",
|
"theme.blog.paginator.olderEntries": "Eldri færslur",
|
||||||
|
@ -40,7 +43,12 @@
|
||||||
"theme.common.editThisPage": "Breyttu þessari síðu",
|
"theme.common.editThisPage": "Breyttu þessari síðu",
|
||||||
"theme.common.headingLinkTitle": "Beinn hlekkur að {heading}",
|
"theme.common.headingLinkTitle": "Beinn hlekkur að {heading}",
|
||||||
"theme.common.skipToMainContent": "Hoppa yfir á aðal efni",
|
"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": "{count} atriði",
|
||||||
|
"theme.docs.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Heimasíða",
|
"theme.docs.breadcrumbs.home": "Heimasíða",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Brauðteningar",
|
"theme.docs.breadcrumbs.navAriaLabel": "Brauðteningar",
|
||||||
"theme.docs.paginator.navAriaLabel": "Skjala síður",
|
"theme.docs.paginator.navAriaLabel": "Skjala síður",
|
||||||
|
@ -68,7 +76,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Útgáfur",
|
"theme.navbar.mobileVersionsDropdown.label": "Útgáfur",
|
||||||
"theme.tags.tagsListLabel": "Merki:",
|
"theme.tags.tagsListLabel": "Merki:",
|
||||||
"theme.tags.tagsPageLink": "Skoða Öll Merki",
|
"theme.tags.tagsPageLink": "Skoða Öll Merki",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archivio",
|
"theme.blog.archive.description": "Archivio",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigazione nella pagina dei post del blog ",
|
||||||
"theme.blog.paginator.newerEntries": "Post più recenti",
|
"theme.blog.paginator.newerEntries": "Post più recenti",
|
||||||
"theme.blog.paginator.olderEntries": "Post più vecchi",
|
"theme.blog.paginator.olderEntries": "Post più vecchi",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Modifica questa pagina",
|
"theme.common.editThisPage": "Modifica questa pagina",
|
||||||
"theme.common.headingLinkTitle": "Link diretto a {heading}",
|
"theme.common.headingLinkTitle": "Link diretto a {heading}",
|
||||||
"theme.common.skipToMainContent": "Passa al contenuto principale",
|
"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.DocCard.categoryDescription.plurals": "1 elemento|{count} elementi",
|
||||||
"theme.docs.breadcrumbs.home": "Pagina principale",
|
"theme.docs.breadcrumbs.home": "Pagina principale",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Briciole di pane",
|
"theme.docs.breadcrumbs.navAriaLabel": "Briciole di pane",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versioni",
|
"theme.navbar.mobileVersionsDropdown.label": "Versioni",
|
||||||
"theme.tags.tagsListLabel": "Etichette:",
|
"theme.tags.tagsListLabel": "Etichette:",
|
||||||
"theme.tags.tagsPageLink": "Guarda tutte le etichette",
|
"theme.tags.tagsPageLink": "Guarda tutte le etichette",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "警告",
|
"theme.admonition.warning": "警告",
|
||||||
"theme.blog.archive.description": "アーカイブ",
|
"theme.blog.archive.description": "アーカイブ",
|
||||||
"theme.blog.archive.title": "アーカイブ",
|
"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.navAriaLabel": "ブログ記事一覧のナビゲーション",
|
||||||
"theme.blog.paginator.newerEntries": "新しい記事",
|
"theme.blog.paginator.newerEntries": "新しい記事",
|
||||||
"theme.blog.paginator.olderEntries": "過去の記事",
|
"theme.blog.paginator.olderEntries": "過去の記事",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "このページを編集",
|
"theme.common.editThisPage": "このページを編集",
|
||||||
"theme.common.headingLinkTitle": "{heading} への直接リンク",
|
"theme.common.headingLinkTitle": "{heading} への直接リンク",
|
||||||
"theme.common.skipToMainContent": "メインコンテンツまでスキップ",
|
"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.DocCard.categoryDescription.plurals": "{count}項目",
|
||||||
"theme.docs.breadcrumbs.home": "ホームページ",
|
"theme.docs.breadcrumbs.home": "ホームページ",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "パンくずリストのナビゲーション",
|
"theme.docs.breadcrumbs.navAriaLabel": "パンくずリストのナビゲーション",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "他のバージョン",
|
"theme.navbar.mobileVersionsDropdown.label": "他のバージョン",
|
||||||
"theme.tags.tagsListLabel": "タグ:",
|
"theme.tags.tagsListLabel": "タグ:",
|
||||||
"theme.tags.tagsPageLink": "全てのタグを見る",
|
"theme.tags.tagsPageLink": "全てのタグを見る",
|
||||||
"theme.tags.tagsPageTitle": "タグ",
|
"theme.tags.tagsPageTitle": "タグ"
|
||||||
"theme.unlistedContent.message": "このページは非公開です。 検索対象外となり、このページのリンクに直接アクセスできるユーザーのみに公開されます。",
|
|
||||||
"theme.unlistedContent.title": "非公開のページ"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "경고",
|
"theme.admonition.warning": "경고",
|
||||||
"theme.blog.archive.description": "게시물 목록",
|
"theme.blog.archive.description": "게시물 목록",
|
||||||
"theme.blog.archive.title": "게시물 목록",
|
"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.navAriaLabel": "블로그 게시물 목록 탐색",
|
||||||
"theme.blog.paginator.newerEntries": "이전 페이지",
|
"theme.blog.paginator.newerEntries": "이전 페이지",
|
||||||
"theme.blog.paginator.olderEntries": "다음 페이지",
|
"theme.blog.paginator.olderEntries": "다음 페이지",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "페이지 편집",
|
"theme.common.editThisPage": "페이지 편집",
|
||||||
"theme.common.headingLinkTitle": "{heading}에 대한 직접 링크",
|
"theme.common.headingLinkTitle": "{heading}에 대한 직접 링크",
|
||||||
"theme.common.skipToMainContent": "본문으로 건너뛰기",
|
"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.DocCard.categoryDescription.plurals": "{count} 항목",
|
||||||
"theme.docs.breadcrumbs.home": "홈",
|
"theme.docs.breadcrumbs.home": "홈",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "버전",
|
"theme.navbar.mobileVersionsDropdown.label": "버전",
|
||||||
"theme.tags.tagsListLabel": "태그:",
|
"theme.tags.tagsListLabel": "태그:",
|
||||||
"theme.tags.tagsPageLink": "모든 태그 보기",
|
"theme.tags.tagsPageLink": "모든 태그 보기",
|
||||||
"theme.tags.tagsPageTitle": "태그",
|
"theme.tags.tagsPageTitle": "태그"
|
||||||
"theme.unlistedContent.message": "이 문서는 색인되지 않습니다. 검색 엔진이 이 문서를 색인하지 않으며, 주소를 알고 있는 사용자만 접근할 수 있습니다.",
|
|
||||||
"theme.unlistedContent.title": "색인되지 않은 문서"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Arkiv",
|
"theme.blog.archive.description": "Arkiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigering av bloggliste",
|
||||||
"theme.blog.paginator.newerEntries": "Nyere innlegg",
|
"theme.blog.paginator.newerEntries": "Nyere innlegg",
|
||||||
"theme.blog.paginator.olderEntries": "Eldre innlegg",
|
"theme.blog.paginator.olderEntries": "Eldre innlegg",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Rediger denne siden",
|
"theme.common.editThisPage": "Rediger denne siden",
|
||||||
"theme.common.headingLinkTitle": "Direkte lenke til {heading}",
|
"theme.common.headingLinkTitle": "Direkte lenke til {heading}",
|
||||||
"theme.common.skipToMainContent": "Gå til hovedinnhold",
|
"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.DocCard.categoryDescription.plurals": "1 artikkel|{count} artikler",
|
||||||
"theme.docs.breadcrumbs.home": "Hjemmeside",
|
"theme.docs.breadcrumbs.home": "Hjemmeside",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Søkvei",
|
"theme.docs.breadcrumbs.navAriaLabel": "Søkvei",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versjoner",
|
"theme.navbar.mobileVersionsDropdown.label": "Versjoner",
|
||||||
"theme.tags.tagsListLabel": "Tagger:",
|
"theme.tags.tagsListLabel": "Tagger:",
|
||||||
"theme.tags.tagsPageLink": "Vis alle tagger",
|
"theme.tags.tagsPageLink": "Vis alle tagger",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archief",
|
"theme.blog.archive.description": "Archief",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Paginanavigatie blog",
|
||||||
"theme.blog.paginator.newerEntries": "Nieuwere items",
|
"theme.blog.paginator.newerEntries": "Nieuwere items",
|
||||||
"theme.blog.paginator.olderEntries": "Oudere items",
|
"theme.blog.paginator.olderEntries": "Oudere items",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Bewerk deze pagina",
|
"theme.common.editThisPage": "Bewerk deze pagina",
|
||||||
"theme.common.headingLinkTitle": "Direct link naar {heading}",
|
"theme.common.headingLinkTitle": "Direct link naar {heading}",
|
||||||
"theme.common.skipToMainContent": "Ga naar hoofdinhoud",
|
"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.DocCard.categoryDescription.plurals": "1 artikel|{count} artikelen",
|
||||||
"theme.docs.breadcrumbs.home": "Homepagina",
|
"theme.docs.breadcrumbs.home": "Homepagina",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Broodkruimels",
|
"theme.docs.breadcrumbs.navAriaLabel": "Broodkruimels",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versies",
|
"theme.navbar.mobileVersionsDropdown.label": "Versies",
|
||||||
"theme.tags.tagsListLabel": "Tags:",
|
"theme.tags.tagsListLabel": "Tags:",
|
||||||
"theme.tags.tagsPageLink": "Laat alle tags zien",
|
"theme.tags.tagsPageLink": "Laat alle tags zien",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archiwum",
|
"theme.blog.archive.description": "Archiwum",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Nawigacja na stronie listy wpisów na blogu",
|
||||||
"theme.blog.paginator.newerEntries": "Nowsze wpisy",
|
"theme.blog.paginator.newerEntries": "Nowsze wpisy",
|
||||||
"theme.blog.paginator.olderEntries": "Starsze wpisy",
|
"theme.blog.paginator.olderEntries": "Starsze wpisy",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Edytuj tę stronę",
|
"theme.common.editThisPage": "Edytuj tę stronę",
|
||||||
"theme.common.headingLinkTitle": "Bezpośredni link do {heading}",
|
"theme.common.headingLinkTitle": "Bezpośredni link do {heading}",
|
||||||
"theme.common.skipToMainContent": "Przejdź do głównej zawartości",
|
"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.DocCard.categoryDescription.plurals": "1 element|{count} elementy|{count} elementów",
|
||||||
"theme.docs.breadcrumbs.home": "Strona główna",
|
"theme.docs.breadcrumbs.home": "Strona główna",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Pasek nawigacji",
|
"theme.docs.breadcrumbs.navAriaLabel": "Pasek nawigacji",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Wersje",
|
"theme.navbar.mobileVersionsDropdown.label": "Wersje",
|
||||||
"theme.tags.tagsListLabel": "Tagi:",
|
"theme.tags.tagsListLabel": "Tagi:",
|
||||||
"theme.tags.tagsPageLink": "Wyświetl wszystkie tagi",
|
"theme.tags.tagsPageLink": "Wyświetl wszystkie tagi",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "atenção",
|
"theme.admonition.warning": "atenção",
|
||||||
"theme.blog.archive.description": "Arquivo",
|
"theme.blog.archive.description": "Arquivo",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navegação da página de listagem do blog",
|
||||||
"theme.blog.paginator.newerEntries": "Conteúdo mais novo",
|
"theme.blog.paginator.newerEntries": "Conteúdo mais novo",
|
||||||
"theme.blog.paginator.olderEntries": "Conteúdo mais antigo",
|
"theme.blog.paginator.olderEntries": "Conteúdo mais antigo",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Editar essa página",
|
"theme.common.editThisPage": "Editar essa página",
|
||||||
"theme.common.headingLinkTitle": "Link direto para {heading}",
|
"theme.common.headingLinkTitle": "Link direto para {heading}",
|
||||||
"theme.common.skipToMainContent": "Pular para o conteúdo principal",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Página Inicial",
|
"theme.docs.breadcrumbs.home": "Página Inicial",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versões",
|
"theme.navbar.mobileVersionsDropdown.label": "Versões",
|
||||||
"theme.tags.tagsListLabel": "Marcadores:",
|
"theme.tags.tagsListLabel": "Marcadores:",
|
||||||
"theme.tags.tagsPageLink": "Ver todas os Marcadores",
|
"theme.tags.tagsPageLink": "Ver todas os Marcadores",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Archive",
|
"theme.blog.archive.description": "Archive",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navegação da página de listagem do blog",
|
||||||
"theme.blog.paginator.newerEntries": "Publicações mais recentes",
|
"theme.blog.paginator.newerEntries": "Publicações mais recentes",
|
||||||
"theme.blog.paginator.olderEntries": "Publicações mais antigas",
|
"theme.blog.paginator.olderEntries": "Publicações mais antigas",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Editar esta página",
|
"theme.common.editThisPage": "Editar esta página",
|
||||||
"theme.common.headingLinkTitle": "Link direto para {heading}",
|
"theme.common.headingLinkTitle": "Link direto para {heading}",
|
||||||
"theme.common.skipToMainContent": "Saltar para o conteúdo principal",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||||
"theme.tags.tagsListLabel": "Tags:",
|
"theme.tags.tagsListLabel": "Tags:",
|
||||||
"theme.tags.tagsPageLink": "Ver todas as Tags",
|
"theme.tags.tagsPageLink": "Ver todas as Tags",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Архив",
|
"theme.blog.archive.description": "Архив",
|
||||||
"theme.blog.archive.title": "Архив",
|
"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.navAriaLabel": "Навигация по странице списка блогов",
|
||||||
"theme.blog.paginator.newerEntries": "Следующие записи",
|
"theme.blog.paginator.newerEntries": "Следующие записи",
|
||||||
"theme.blog.paginator.olderEntries": "Предыдущие записи",
|
"theme.blog.paginator.olderEntries": "Предыдущие записи",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Отредактировать эту страницу",
|
"theme.common.editThisPage": "Отредактировать эту страницу",
|
||||||
"theme.common.headingLinkTitle": "Прямая ссылка на {heading}",
|
"theme.common.headingLinkTitle": "Прямая ссылка на {heading}",
|
||||||
"theme.common.skipToMainContent": "Перейти к основному содержимому",
|
"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.DocCard.categoryDescription.plurals": "{count} элемент|{count} элемента|{count} элементов",
|
||||||
"theme.docs.breadcrumbs.home": "Главная страница",
|
"theme.docs.breadcrumbs.home": "Главная страница",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Навигационная цепочка текущей страницы",
|
"theme.docs.breadcrumbs.navAriaLabel": "Навигационная цепочка текущей страницы",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Версии",
|
"theme.navbar.mobileVersionsDropdown.label": "Версии",
|
||||||
"theme.tags.tagsListLabel": "Теги:",
|
"theme.tags.tagsListLabel": "Теги:",
|
||||||
"theme.tags.tagsPageLink": "Посмотреть все теги",
|
"theme.tags.tagsPageLink": "Посмотреть все теги",
|
||||||
"theme.tags.tagsPageTitle": "Теги",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Arhiv",
|
"theme.blog.archive.description": "Arhiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigacija kazala po blogu",
|
||||||
"theme.blog.paginator.newerEntries": "Novejši prispevki",
|
"theme.blog.paginator.newerEntries": "Novejši prispevki",
|
||||||
"theme.blog.paginator.olderEntries": "Starejši prispevki",
|
"theme.blog.paginator.olderEntries": "Starejši prispevki",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Uredi to stran",
|
"theme.common.editThisPage": "Uredi to stran",
|
||||||
"theme.common.headingLinkTitle": "Direktna povezava na {heading}",
|
"theme.common.headingLinkTitle": "Direktna povezava na {heading}",
|
||||||
"theme.common.skipToMainContent": "Preskoči na vsebino",
|
"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.DocCard.categoryDescription.plurals": "1 vnos|2 vnosy|{count} vnosy|{count} vnosov",
|
||||||
"theme.docs.breadcrumbs.home": "Domača stran",
|
"theme.docs.breadcrumbs.home": "Domača stran",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Drobtine",
|
"theme.docs.breadcrumbs.navAriaLabel": "Drobtine",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Verzije",
|
"theme.navbar.mobileVersionsDropdown.label": "Verzije",
|
||||||
"theme.tags.tagsListLabel": "Oznake:",
|
"theme.tags.tagsListLabel": "Oznake:",
|
||||||
"theme.tags.tagsPageLink": "Poglej vse oznake",
|
"theme.tags.tagsPageLink": "Poglej vse oznake",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Архива",
|
"theme.blog.archive.description": "Архива",
|
||||||
"theme.blog.archive.title": "Архива",
|
"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.navAriaLabel": "Навигација за странице блога",
|
||||||
"theme.blog.paginator.newerEntries": "Нови постови",
|
"theme.blog.paginator.newerEntries": "Нови постови",
|
||||||
"theme.blog.paginator.olderEntries": "Стари постови",
|
"theme.blog.paginator.olderEntries": "Стари постови",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Уреди ову страницу",
|
"theme.common.editThisPage": "Уреди ову страницу",
|
||||||
"theme.common.headingLinkTitle": "Веза до {heading}",
|
"theme.common.headingLinkTitle": "Веза до {heading}",
|
||||||
"theme.common.skipToMainContent": "Пређи на главни садржај",
|
"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.DocCard.categoryDescription.plurals": "1 item|{count} items",
|
||||||
"theme.docs.breadcrumbs.home": "Home page",
|
"theme.docs.breadcrumbs.home": "Home page",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Верзије",
|
"theme.navbar.mobileVersionsDropdown.label": "Верзије",
|
||||||
"theme.tags.tagsListLabel": "Ознаке:",
|
"theme.tags.tagsListLabel": "Ознаке:",
|
||||||
"theme.tags.tagsPageLink": "Погледај све ознаке",
|
"theme.tags.tagsPageLink": "Погледај све ознаке",
|
||||||
"theme.tags.tagsPageTitle": "Ознаке",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Arkiv",
|
"theme.blog.archive.description": "Arkiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Navigation av Blogglista",
|
||||||
"theme.blog.paginator.newerEntries": "Nyare Inlägg",
|
"theme.blog.paginator.newerEntries": "Nyare Inlägg",
|
||||||
"theme.blog.paginator.olderEntries": "Äldre Inlägg",
|
"theme.blog.paginator.olderEntries": "Äldre Inlägg",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Redigera denna sida",
|
"theme.common.editThisPage": "Redigera denna sida",
|
||||||
"theme.common.headingLinkTitle": "Direktlänk till {heading}",
|
"theme.common.headingLinkTitle": "Direktlänk till {heading}",
|
||||||
"theme.common.skipToMainContent": "Hoppa till huvudinnehåll",
|
"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.DocCard.categoryDescription.plurals": "1 artikel|{count} artiklar",
|
||||||
"theme.docs.breadcrumbs.home": "Hemsida",
|
"theme.docs.breadcrumbs.home": "Hemsida",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Sökväg",
|
"theme.docs.breadcrumbs.navAriaLabel": "Sökväg",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versioner",
|
"theme.navbar.mobileVersionsDropdown.label": "Versioner",
|
||||||
"theme.tags.tagsListLabel": "Taggar:",
|
"theme.tags.tagsListLabel": "Taggar:",
|
||||||
"theme.tags.tagsPageLink": "Visa Alla Taggar",
|
"theme.tags.tagsPageLink": "Visa Alla Taggar",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "duýduryş",
|
"theme.admonition.warning": "duýduryş",
|
||||||
"theme.blog.archive.description": "Arhiw",
|
"theme.blog.archive.description": "Arhiw",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Blog sahypasynda nawigasiýa",
|
||||||
"theme.blog.paginator.newerEntries": "Täze ýazgylar",
|
"theme.blog.paginator.newerEntries": "Täze ýazgylar",
|
||||||
"theme.blog.paginator.olderEntries": "Köne ýazgylar",
|
"theme.blog.paginator.olderEntries": "Köne ýazgylar",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Bu sahypany üýtgetmek",
|
"theme.common.editThisPage": "Bu sahypany üýtgetmek",
|
||||||
"theme.common.headingLinkTitle": "{heading} sahypa göni geçiň",
|
"theme.common.headingLinkTitle": "{heading} sahypa göni geçiň",
|
||||||
"theme.common.skipToMainContent": "Esasy mazmuna geç",
|
"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.DocCard.categoryDescription.plurals": "{count} element|{count} elementler",
|
||||||
"theme.docs.breadcrumbs.home": "Baş sahypa",
|
"theme.docs.breadcrumbs.home": "Baş sahypa",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Häzirki sahypa üçin nawigasiýa",
|
"theme.docs.breadcrumbs.navAriaLabel": "Häzirki sahypa üçin nawigasiýa",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Wersiýalar",
|
"theme.navbar.mobileVersionsDropdown.label": "Wersiýalar",
|
||||||
"theme.tags.tagsListLabel": "Tegler:",
|
"theme.tags.tagsListLabel": "Tegler:",
|
||||||
"theme.tags.tagsPageLink": "Ähli tegleri gör",
|
"theme.tags.tagsPageLink": "Ähli tegleri gör",
|
||||||
"theme.tags.tagsPageTitle": "Tegler",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Arşiv",
|
"theme.blog.archive.description": "Arşiv",
|
||||||
"theme.blog.archive.title": "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.navAriaLabel": "Blog gönderi sayfası navigasyonu",
|
||||||
"theme.blog.paginator.newerEntries": "Yeni Girdiler",
|
"theme.blog.paginator.newerEntries": "Yeni Girdiler",
|
||||||
"theme.blog.paginator.olderEntries": "Eski Girdiler",
|
"theme.blog.paginator.olderEntries": "Eski Girdiler",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Bu sayfayı düzenle",
|
"theme.common.editThisPage": "Bu sayfayı düzenle",
|
||||||
"theme.common.headingLinkTitle": "{heading} doğrudan bağlantı",
|
"theme.common.headingLinkTitle": "{heading} doğrudan bağlantı",
|
||||||
"theme.common.skipToMainContent": "Ana içeriğe geç",
|
"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.DocCard.categoryDescription.plurals": "1 öğe|{count} öğe",
|
||||||
"theme.docs.breadcrumbs.home": "Ana sayfa",
|
"theme.docs.breadcrumbs.home": "Ana sayfa",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Versiyonlar",
|
"theme.navbar.mobileVersionsDropdown.label": "Versiyonlar",
|
||||||
"theme.tags.tagsListLabel": "Etiketler:",
|
"theme.tags.tagsListLabel": "Etiketler:",
|
||||||
"theme.tags.tagsPageLink": "Tüm Etiketleri Görüntüle",
|
"theme.tags.tagsPageLink": "Tüm Etiketleri Görüntüle",
|
||||||
"theme.tags.tagsPageTitle": "Etiketler",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Архів",
|
"theme.blog.archive.description": "Архів",
|
||||||
"theme.blog.archive.title": "Архів",
|
"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.navAriaLabel": "Навігація по сторінці списку блогів",
|
||||||
"theme.blog.paginator.newerEntries": "Наступні записи",
|
"theme.blog.paginator.newerEntries": "Наступні записи",
|
||||||
"theme.blog.paginator.olderEntries": "Попередні записи",
|
"theme.blog.paginator.olderEntries": "Попередні записи",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "Відредагувати цю сторінку",
|
"theme.common.editThisPage": "Відредагувати цю сторінку",
|
||||||
"theme.common.headingLinkTitle": "Пряме посилання на {heading}",
|
"theme.common.headingLinkTitle": "Пряме посилання на {heading}",
|
||||||
"theme.common.skipToMainContent": "Перейти до основного вмісту",
|
"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.DocCard.categoryDescription.plurals": "{count} елемент|{count} елементи|{count} елементів",
|
||||||
"theme.docs.breadcrumbs.home": "Головна сторінка",
|
"theme.docs.breadcrumbs.home": "Головна сторінка",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Навігаційний ланцюжок поточної сторінки",
|
"theme.docs.breadcrumbs.navAriaLabel": "Навігаційний ланцюжок поточної сторінки",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "Версії",
|
"theme.navbar.mobileVersionsDropdown.label": "Версії",
|
||||||
"theme.tags.tagsListLabel": "Теги:",
|
"theme.tags.tagsListLabel": "Теги:",
|
||||||
"theme.tags.tagsPageLink": "Переглянути всі теги",
|
"theme.tags.tagsPageLink": "Переглянути всі теги",
|
||||||
"theme.tags.tagsPageTitle": "Теги",
|
"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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "warning",
|
"theme.admonition.warning": "warning",
|
||||||
"theme.blog.archive.description": "Lưu trữ",
|
"theme.blog.archive.description": "Lưu trữ",
|
||||||
"theme.blog.archive.title": "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.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.newerEntries": "Các bài mới hơn",
|
||||||
"theme.blog.paginator.olderEntries": "Các bài cũ 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.editThisPage": "Sửa trang này",
|
||||||
"theme.common.headingLinkTitle": "Đường dẫn trực tiếp tới {heading}",
|
"theme.common.headingLinkTitle": "Đường dẫn trực tiếp tới {heading}",
|
||||||
"theme.common.skipToMainContent": "Nhảy tới nội dung",
|
"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.DocCard.categoryDescription.plurals": "{count} mục",
|
||||||
"theme.docs.breadcrumbs.home": "Trang chủ",
|
"theme.docs.breadcrumbs.home": "Trang chủ",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "Liên kết điều hướng",
|
"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.navbar.mobileVersionsDropdown.label": "Phiên bản",
|
||||||
"theme.tags.tagsListLabel": "Thẻ:",
|
"theme.tags.tagsListLabel": "Thẻ:",
|
||||||
"theme.tags.tagsPageLink": "Xem tất cả Thẻ",
|
"theme.tags.tagsPageLink": "Xem tất cả Thẻ",
|
||||||
"theme.tags.tagsPageTitle": "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"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "注意",
|
"theme.admonition.warning": "注意",
|
||||||
"theme.blog.archive.description": "历史博文",
|
"theme.blog.archive.description": "历史博文",
|
||||||
"theme.blog.archive.title": "历史博文",
|
"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.navAriaLabel": "博文列表分页导航",
|
||||||
"theme.blog.paginator.newerEntries": "较新的博文",
|
"theme.blog.paginator.newerEntries": "较新的博文",
|
||||||
"theme.blog.paginator.olderEntries": "较旧的博文",
|
"theme.blog.paginator.olderEntries": "较旧的博文",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "编辑此页",
|
"theme.common.editThisPage": "编辑此页",
|
||||||
"theme.common.headingLinkTitle": "{heading}的直接链接",
|
"theme.common.headingLinkTitle": "{heading}的直接链接",
|
||||||
"theme.common.skipToMainContent": "跳到主要内容",
|
"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.DocCard.categoryDescription.plurals": "{count} 个项目",
|
||||||
"theme.docs.breadcrumbs.home": "主页面",
|
"theme.docs.breadcrumbs.home": "主页面",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "页面路径",
|
"theme.docs.breadcrumbs.navAriaLabel": "页面路径",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "选择版本",
|
"theme.navbar.mobileVersionsDropdown.label": "选择版本",
|
||||||
"theme.tags.tagsListLabel": "标签:",
|
"theme.tags.tagsListLabel": "标签:",
|
||||||
"theme.tags.tagsPageLink": "查看所有标签",
|
"theme.tags.tagsPageLink": "查看所有标签",
|
||||||
"theme.tags.tagsPageTitle": "标签",
|
"theme.tags.tagsPageTitle": "标签"
|
||||||
"theme.unlistedContent.message": "此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。",
|
|
||||||
"theme.unlistedContent.title": "未列出页"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
"theme.admonition.warning": "注意",
|
"theme.admonition.warning": "注意",
|
||||||
"theme.blog.archive.description": "歷史文章",
|
"theme.blog.archive.description": "歷史文章",
|
||||||
"theme.blog.archive.title": "歷史文章",
|
"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.navAriaLabel": "部落格文章列表分頁導覽",
|
||||||
"theme.blog.paginator.newerEntries": "較新的文章",
|
"theme.blog.paginator.newerEntries": "較新的文章",
|
||||||
"theme.blog.paginator.olderEntries": "較舊的文章",
|
"theme.blog.paginator.olderEntries": "較舊的文章",
|
||||||
|
@ -40,6 +43,10 @@
|
||||||
"theme.common.editThisPage": "編輯此頁",
|
"theme.common.editThisPage": "編輯此頁",
|
||||||
"theme.common.headingLinkTitle": "{heading}的直接連結",
|
"theme.common.headingLinkTitle": "{heading}的直接連結",
|
||||||
"theme.common.skipToMainContent": "跳至主要内容",
|
"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.DocCard.categoryDescription.plurals": "{count} 個項目",
|
||||||
"theme.docs.breadcrumbs.home": "主頁面",
|
"theme.docs.breadcrumbs.home": "主頁面",
|
||||||
"theme.docs.breadcrumbs.navAriaLabel": "頁面路徑",
|
"theme.docs.breadcrumbs.navAriaLabel": "頁面路徑",
|
||||||
|
@ -68,7 +75,5 @@
|
||||||
"theme.navbar.mobileVersionsDropdown.label": "選擇版本",
|
"theme.navbar.mobileVersionsDropdown.label": "選擇版本",
|
||||||
"theme.tags.tagsListLabel": "標籤:",
|
"theme.tags.tagsListLabel": "標籤:",
|
||||||
"theme.tags.tagsPageLink": "檢視所有標籤",
|
"theme.tags.tagsPageLink": "檢視所有標籤",
|
||||||
"theme.tags.tagsPageTitle": "標籤",
|
"theme.tags.tagsPageTitle": "標籤"
|
||||||
"theme.unlistedContent.message": "此頁面未列出。搜索引擎不會對其索引,只有擁有直接連結的用戶才能訪問。",
|
|
||||||
"theme.unlistedContent.title": "未列出頁"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -412,8 +412,6 @@ webpackbar
|
||||||
webstorm
|
webstorm
|
||||||
Wolcott
|
Wolcott
|
||||||
Xplorer
|
Xplorer
|
||||||
xslt
|
|
||||||
XSLT
|
|
||||||
XSOAR
|
XSOAR
|
||||||
Yacop
|
Yacop
|
||||||
yangshun
|
yangshun
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue