mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-05 04:12:53 +02:00
feat: mark some text labels as translatable (#6482)
* feat: mark some text labels as translatable * tweak
This commit is contained in:
parent
b8fbf7c530
commit
0e13356e1b
54 changed files with 193 additions and 7 deletions
|
@ -135,7 +135,15 @@ function BlogPostItem(props: Props): JSX.Element {
|
|||
})}>
|
||||
<Link
|
||||
to={metadata.permalink}
|
||||
aria-label={`Read more about ${title}`}>
|
||||
aria-label={translate(
|
||||
{
|
||||
message: 'Read more about {title}',
|
||||
id: 'theme.blog.post.readMoreLabel',
|
||||
description:
|
||||
'The ARIA label for the link to full blog posts from excerpts',
|
||||
},
|
||||
{title},
|
||||
)}>
|
||||
<b>
|
||||
<Translate
|
||||
id="theme.blog.post.readMore"
|
||||
|
|
|
@ -16,6 +16,7 @@ import {findFirstCategoryLink, useDocById} from '@docusaurus/theme-common';
|
|||
import clsx from 'clsx';
|
||||
import styles from './styles.module.css';
|
||||
import isInternalUrl from '@docusaurus/isInternalUrl';
|
||||
import {translate} from '@docusaurus/Translate';
|
||||
|
||||
function CardContainer({
|
||||
href,
|
||||
|
@ -70,7 +71,15 @@ function CardCategory({item}: {item: PropSidebarItemCategory}): JSX.Element {
|
|||
href={href}
|
||||
icon="🗃️"
|
||||
title={item.label}
|
||||
description={`${item.items.length} items`}
|
||||
description={translate(
|
||||
{
|
||||
message: '{count} items',
|
||||
id: 'theme.docs.DocCard.categoryDescription',
|
||||
description:
|
||||
'The default description for a category card in the generated index about how many items this category includes',
|
||||
},
|
||||
{count: item.items.length},
|
||||
)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
*/
|
||||
|
||||
import React from 'react';
|
||||
import Translate from '@docusaurus/Translate';
|
||||
import {ThemeClassNames, useDocsVersion} from '@docusaurus/theme-common';
|
||||
import clsx from 'clsx';
|
||||
import type {Props} from '@theme/DocVersionBadge';
|
||||
|
@ -22,7 +23,11 @@ export default function DocVersionBadge({
|
|||
ThemeClassNames.docs.docVersionBadge,
|
||||
'badge badge--secondary',
|
||||
)}>
|
||||
Version: {versionMetadata.label}
|
||||
<Translate
|
||||
id="theme.docs.versionBadge.label"
|
||||
values={{versionLabel: versionMetadata.label}}>
|
||||
{'Version: {versionLabel}'}
|
||||
</Translate>
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ import IconLanguage from '@theme/IconLanguage';
|
|||
import type {Props} from '@theme/NavbarItem/LocaleDropdownNavbarItem';
|
||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||
import {useAlternatePageUtils} from '@docusaurus/theme-common';
|
||||
import {translate} from '@docusaurus/Translate';
|
||||
import type {LinkLikeNavbarItemProps} from '@theme/NavbarItem';
|
||||
|
||||
import styles from './styles.module.css';
|
||||
|
@ -48,7 +49,13 @@ export default function LocaleDropdownNavbarItem({
|
|||
const items = [...dropdownItemsBefore, ...localeItems, ...dropdownItemsAfter];
|
||||
|
||||
// Mobile is handled a bit differently
|
||||
const dropdownLabel = mobile ? 'Languages' : getLocaleLabel(currentLocale);
|
||||
const dropdownLabel = mobile
|
||||
? translate({
|
||||
message: 'Languages',
|
||||
id: 'theme.navbar.mobileLanguageDropdown.label',
|
||||
description: 'The label for the mobile language switcher dropdown',
|
||||
})
|
||||
: getLocaleLabel(currentLocale);
|
||||
|
||||
return (
|
||||
<DropdownNavbarItem
|
||||
|
|
|
@ -9,6 +9,7 @@ import React, {useState, useRef, memo} from 'react';
|
|||
import type {Props} from '@theme/Toggle';
|
||||
import {useThemeConfig, type ColorModeConfig} from '@docusaurus/theme-common';
|
||||
import useIsBrowser from '@docusaurus/useIsBrowser';
|
||||
import {translate} from '@docusaurus/Translate';
|
||||
|
||||
import clsx from 'clsx';
|
||||
import styles from './styles.module.css';
|
||||
|
@ -61,7 +62,11 @@ const ToggleComponent = memo(
|
|||
checked={checked}
|
||||
type="checkbox"
|
||||
className={styles.toggleScreenReader}
|
||||
aria-label="Switch between dark and light mode"
|
||||
aria-label={translate({
|
||||
message: 'Switch between dark and light mode',
|
||||
id: 'theme.colorToggle.ariaLabel',
|
||||
description: 'The ARIA label for the navbar color mode toggle',
|
||||
})}
|
||||
onChange={onChange}
|
||||
onClick={() => setChecked(!checked)}
|
||||
onFocus={() => setFocused(true)}
|
||||
|
|
|
@ -16,7 +16,7 @@ import Head from '@docusaurus/Head';
|
|||
import {isRegexpStringMatch, useSearchPage} from '@docusaurus/theme-common';
|
||||
import {DocSearchButton, useDocSearchKeyboardEvents} from '@docsearch/react';
|
||||
import {useAlgoliaContextualFacetFilters} from '@docusaurus/theme-search-algolia/client';
|
||||
import {translate} from '@docusaurus/Translate';
|
||||
import Translate, {translate} from '@docusaurus/Translate';
|
||||
import styles from './styles.module.css';
|
||||
|
||||
import type {
|
||||
|
@ -59,7 +59,11 @@ function ResultsFooter({state, onClose}: ResultsFooterProps) {
|
|||
|
||||
return (
|
||||
<Link to={generateSearchPageLink(state.query)} onClick={onClose}>
|
||||
See all {state.context.nbHits} results
|
||||
<Translate
|
||||
id="theme.SearchBar.seeAll"
|
||||
values={{count: state.context.nbHits}}>
|
||||
{'See all {count} results'}
|
||||
</Translate>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "مقالات أقدم",
|
||||
"theme.blog.post.plurals": "مقاله واحده|{count} مقالات",
|
||||
"theme.blog.post.readMore": "اقرأ المزيد",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} دقائق قراءة|{readingTime} دقائق قراءة",
|
||||
"theme.blog.sidebar.navAriaLabel": "أحدث مشاركات المدونة",
|
||||
"theme.blog.tagTitle": "{nPosts} موسومة ب \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "تعديل هذه الصفحة",
|
||||
"theme.common.headingLinkTitle": "ارتباط مباشر بالعنوان",
|
||||
"theme.common.skipToMainContent": "انتقل إلى المحتوى الرئيسي",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "التنقل بين صفحات الددات",
|
||||
"theme.docs.paginator.next": "التالى",
|
||||
"theme.docs.paginator.previous": "السابق",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "توسيع الشريط الجانبي",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} مستند موسوم بـ \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "مستند موسوم واحد|{count} مستندات موسومة",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "احدث اصدار",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "للحصول على أحدث الوثائق، راجع {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "هذه هي وثائق {siteTitle} {versionLabel}، التي لم تعد تتم صيانتها بشكل نشط.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " في {date}",
|
||||
"theme.lastUpdated.byUser": " بواسطة {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "آخر تحديث{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "→ العودة إلى القائمة الرئيسية",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "إصدارات",
|
||||
"theme.tags.tagsListLabel": "الوسوم:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "بحث",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "البحث بواسطه Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "تم العثور على مستند واحد|تم العثور على {count} مستندات",
|
||||
"theme.SearchPage.emptyResultsTitle": "ابحث في الوثائق",
|
||||
|
|
|
@ -43,18 +43,24 @@
|
|||
"theme.blog.post.plurals___DESCRIPTION": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)",
|
||||
"theme.blog.post.readMore": "Read More",
|
||||
"theme.blog.post.readMore___DESCRIPTION": "The label used in blog post item excerpts to link to full blog posts",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readMoreLabel___DESCRIPTION": "The ARIA label for the link to full blog posts from excerpts",
|
||||
"theme.blog.post.readingTime.plurals": "One min read|{readingTime} min read",
|
||||
"theme.blog.post.readingTime.plurals___DESCRIPTION": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.sidebar.navAriaLabel___DESCRIPTION": "The ARIA label for recent posts in the blog sidebar",
|
||||
"theme.blog.tagTitle": "{nPosts} tagged with \"{tagName}\"",
|
||||
"theme.blog.tagTitle___DESCRIPTION": "The title of the page for a blog tag",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.colorToggle.ariaLabel___DESCRIPTION": "The ARIA label for the navbar color mode toggle",
|
||||
"theme.common.editThisPage": "Edit this page",
|
||||
"theme.common.editThisPage___DESCRIPTION": "The link label to edit the current page",
|
||||
"theme.common.headingLinkTitle": "Direct link to heading",
|
||||
"theme.common.headingLinkTitle___DESCRIPTION": "Title for link to heading",
|
||||
"theme.common.skipToMainContent": "Skip to main content",
|
||||
"theme.common.skipToMainContent___DESCRIPTION": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.DocCard.categoryDescription___DESCRIPTION": "The default description for a category card in the generated index about how many items this category includes",
|
||||
"theme.docs.paginator.navAriaLabel": "Docs pages navigation",
|
||||
"theme.docs.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the docs pagination",
|
||||
"theme.docs.paginator.next": "Next",
|
||||
|
@ -73,6 +79,7 @@
|
|||
"theme.docs.tagDocListPageTitle___DESCRIPTION": "The title of the page for a docs tag",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged___DESCRIPTION": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "latest version",
|
||||
"theme.docs.versions.latestVersionLinkLabel___DESCRIPTION": "The label used for the latest version suggestion link label",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).",
|
||||
|
@ -87,6 +94,8 @@
|
|||
"theme.lastUpdated.byUser___DESCRIPTION": "The words used to describe by who the page has been last updated",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Last updated{atDate}{byUser}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy___DESCRIPTION": "The sentence used to display when a page has been last updated, and by who",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileLanguageDropdown.label___DESCRIPTION": "The label for the mobile language switcher dropdown",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel___DESCRIPTION": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Search",
|
||||
"theme.SearchBar.label___DESCRIPTION": "The ARIA label and placeholder for search button",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Search by Algolia",
|
||||
"theme.SearchPage.algoliaLabel___DESCRIPTION": "The ARIA label for Algolia mention",
|
||||
"theme.SearchPage.documentsFound.plurals": "One document found|{count} documents found",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "পুরানো পোস্ট",
|
||||
"theme.blog.post.plurals": "একটি পোস্ট|{count} পোস্টস",
|
||||
"theme.blog.post.readMore": "আরও পড়ুন",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "এক মিনিট পড়া|{readingTime} মিনিট পড়া",
|
||||
"theme.blog.sidebar.navAriaLabel": "সাম্প্রতিক ব্লগ পোস্ট নেভিগেশন",
|
||||
"theme.blog.tagTitle": "{nPosts} সঙ্গে ট্যাগ্গেড \"{tagName}\" ",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "এই পেজটি এডিট করুন",
|
||||
"theme.common.headingLinkTitle": "হেডিং এর সঙ্গে সরাসরি লিংকড",
|
||||
"theme.common.skipToMainContent": "স্কিপ করে মূল কন্টেন্ট এ যান",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "ডক্স পৃষ্টাগুলির নেভিগেশন",
|
||||
"theme.docs.paginator.next": "পরবর্তী",
|
||||
"theme.docs.paginator.previous": "পূর্ববর্তী",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "সাইডবারটি প্রসারিত করুন",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "লেটেস্ট ভার্সন",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "আপ-টু-ডেট ডকুমেন্টেশনের জন্য, {latestVersionLink} ({versionLabel}) দেখুন।",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "এটি {siteTitle} {versionLabel} এর জন্যে ডকুমেন্টেশন, যা আর সক্রিয়ভাবে রক্ষণাবেক্ষণ করা হয় না।",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date} তারিখে",
|
||||
"theme.lastUpdated.byUser": "{user} দ্বারা",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "সর্বশেষ সংষ্করণ{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← মেন মেনুতে যান",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "ট্যাগ্স:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "সার্চ",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "আলগোলিয়া দ্বারা অনুসন্ধান করুন",
|
||||
"theme.SearchPage.documentsFound.plurals": "একটি ডকুমেন্ট পাওয়া গেছে|{count} ডকুমেন্টস পাওয়া গেছে",
|
||||
"theme.SearchPage.emptyResultsTitle": "ডকুমেন্টেশন অনুসন্ধান করুন",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Starší článek",
|
||||
"theme.blog.post.plurals": "Jeden článek|{count} články|{count} článků|{count} článků",
|
||||
"theme.blog.post.readMore": "Celý článek",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Jedna minuta čtení|{readingTime} minuty čtení|{readingTime} minut čtení|{readingTime} minut čtení",
|
||||
"theme.blog.sidebar.navAriaLabel": "Navigace s aktuálními články na blogu",
|
||||
"theme.blog.tagTitle": "{nPosts} s tagem \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Upravit tuto stránku",
|
||||
"theme.common.headingLinkTitle": "Přímý odkaz na nadpis",
|
||||
"theme.common.skipToMainContent": "Přeskočit na hlavní obsah",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Stránkování dokumentace",
|
||||
"theme.docs.paginator.next": "Další",
|
||||
"theme.docs.paginator.previous": "Předchozí",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Otevřít postranní lištu",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "Nejnovější verze",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Aktuální dokumentace viz {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Tato dokumentace je pro {siteTitle} {versionLabel}, která už není aktivně udržována.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date}",
|
||||
"theme.lastUpdated.byUser": " od {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Naposledy aktualizováno{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Zpět na hlavní menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tagy:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Hledat",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Vyhledávání od Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Jeden dokument nalezen|{count} dokumenty nalezeny||{count} dokumentů nalezeno||{count} dokumentů nalezeno",
|
||||
"theme.SearchPage.emptyResultsTitle": "Prohledat dokumentaci",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Tidligere indslag",
|
||||
"theme.blog.post.plurals": "Et indslag|{count} indslag",
|
||||
"theme.blog.post.readMore": "Læs mere",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Et minuts læsetid|{readingTime} minutters læsetid",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} med følgende tag \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Rediger denne side",
|
||||
"theme.common.headingLinkTitle": "Direkte link til overskrift",
|
||||
"theme.common.skipToMainContent": "Hop til hovedindhold",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Dokumentside navigation",
|
||||
"theme.docs.paginator.next": "Næste",
|
||||
"theme.docs.paginator.previous": "Tidligere",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Udvid sidenavigation",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "seneste version",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "For seneste dokumentation, se {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Dette er dokumentationen for {siteTitle} {versionLabel}, som ikke længere bliver aktivt vedligeholdt.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " den {date}",
|
||||
"theme.lastUpdated.byUser": " af {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Senest opdateret{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tags:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Søg",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Søg med Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Et dokument fundet|{count} dokumenter fundet",
|
||||
"theme.SearchPage.emptyResultsTitle": "Søg i dokumentationen",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Älterer Post",
|
||||
"theme.blog.post.plurals": "Ein Post|{count} Posts",
|
||||
"theme.blog.post.readMore": "Mehr lesen",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Eine Minute Lesezeit|{readingTime} Minuten Lesezeit",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} getaggt mit \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Diese Seite bearbeiten",
|
||||
"theme.common.headingLinkTitle": "Direkter Link zur Überschrift",
|
||||
"theme.common.skipToMainContent": "Zum Hauptinhalt springen",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Dokumentation Seiten Navigation",
|
||||
"theme.docs.paginator.next": "Weiter",
|
||||
"theme.docs.paginator.previous": "Zurück",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Seitenleiste ausklappen",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "letzte Version",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Für die aktuellste Dokumentation bitte auf {latestVersionLink} ({versionLabel}) gehen.",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Das ist die Dokumentation für {siteTitle} {versionLabel} und wird nicht weiter gewartet.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " am {date}",
|
||||
"theme.lastUpdated.byUser": " von {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Letztes Update{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Zurück zum Hauptmenü",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tags:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Suche",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Suche von Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Ein Dokument gefunden|{count} Dokumente gefunden",
|
||||
"theme.SearchPage.emptyResultsTitle": "Suche in der Dokumentation",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Publicación más antigua",
|
||||
"theme.blog.post.plurals": "Una publicación|{count} publicaciones",
|
||||
"theme.blog.post.readMore": "Leer Más",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Lectura de un minuto|{readingTime} min de lectura",
|
||||
"theme.blog.sidebar.navAriaLabel": "Navegación de publicaciones recientes",
|
||||
"theme.blog.tagTitle": "{nPosts} etiquetados con \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Editar esta página",
|
||||
"theme.common.headingLinkTitle": "Enlace directo al encabezado",
|
||||
"theme.common.skipToMainContent": "Saltar al contenido principal",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Navegación de páginas de documentos",
|
||||
"theme.docs.paginator.next": "Siguiente",
|
||||
"theme.docs.paginator.previous": "Anterior",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Expandir barra lateral",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} con \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Un documento etiquetado|{count} documentos etiquetados",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "última versión",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Para la documentación actualizada, vea {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Esta es documentación para {siteTitle} {versionLabel}, que ya no se mantiene activamente.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " en {date}",
|
||||
"theme.lastUpdated.byUser": " por {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Última actualización{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Volver al menú principal",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versiones",
|
||||
"theme.tags.tagsListLabel": "Etiquetas:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Buscar",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Búsqueda por Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Un documento encontrado|{count} documentos encontrados",
|
||||
"theme.SearchPage.emptyResultsTitle": "Búsqueda en la documentación",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "پست قدیمی تر",
|
||||
"theme.blog.post.plurals": "یک پست|{count} پست",
|
||||
"theme.blog.post.readMore": "ادامه مطلب",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "خواندن ۱ دقیقه|خواندن {readingTime} دقیقه",
|
||||
"theme.blog.sidebar.navAriaLabel": "کنترل پست های اخیر وبلاگ",
|
||||
"theme.blog.tagTitle": "{nPosts} با برچسب \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "ویرایش مطالب این صفحه",
|
||||
"theme.common.headingLinkTitle": "لینک مستقیم به عنوان",
|
||||
"theme.common.skipToMainContent": "پرش به مطلب اصلی",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "کنترل صفحات مطالب",
|
||||
"theme.docs.paginator.next": "بعدی",
|
||||
"theme.docs.paginator.previous": "قبلی",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "باز کردن نوار کناری",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} با \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "یک مطلب برچسب شده|{count} مطلب برچسب شده",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "آخرین نسخه",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "برای دیدن آخرین نسخه این متن، نسخه {latestVersionLink} ({versionLabel}) را ببینید.",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "نسخه {siteTitle} {versionLabel} دیگر به روزرسانی نمی شود.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " در تاریخ {date}",
|
||||
"theme.lastUpdated.byUser": " توسط {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "آخرین بروزرسانی{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "→ بازگشت به منو اصلی",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "نسخه ها",
|
||||
"theme.tags.tagsListLabel": "برچسب ها:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "جستجو",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "جستجو با Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "یک مورد پیدا شد|{count} مورد پیدا شد",
|
||||
"theme.SearchPage.emptyResultsTitle": "جستجو در متن",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Mas Lumang Post",
|
||||
"theme.blog.post.plurals": "Isang post|{count} na mga post",
|
||||
"theme.blog.post.readMore": "Basahin Pa",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Isang minutong basahin|{readingTime} minutong basahin",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} na may tag na \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "I-edit ang page",
|
||||
"theme.common.headingLinkTitle": "Direktang link patungo sa heading",
|
||||
"theme.common.skipToMainContent": "Lumaktaw patungo sa pangunahing content",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Nabegasyón para sa mga pahinang docs.",
|
||||
"theme.docs.paginator.next": "Sumunod",
|
||||
"theme.docs.paginator.previous": "Naraaan",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Palakihin ang sidebar",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "pinakahuling bersiyón",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Para sa up-to-date na dokumentasyón, tingnan ang {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Ito ay dokumentasyón para sa {siteTitle} {versionLabel} na hindi na aktibong mine-maintain.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " noong {date}",
|
||||
"theme.lastUpdated.byUser": " ni {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Huling inapdeyt{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Mga Tag:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Maghanap",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Paghahanap hatid ng Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Isang dokumento ang nahanap|{count} na mga dokumento ang nahanap",
|
||||
"theme.SearchPage.emptyResultsTitle": "Maghanap sa dokumentasyón",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Article plus ancien",
|
||||
"theme.blog.post.plurals": "Un article|{count} articles",
|
||||
"theme.blog.post.readMore": "Lire plus",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Une minute de lecture|{readingTime} minutes de lecture",
|
||||
"theme.blog.sidebar.navAriaLabel": "Navigation article de blog récent",
|
||||
"theme.blog.tagTitle": "{nPosts} tagués avec « {tagName} »",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Éditer cette page",
|
||||
"theme.common.headingLinkTitle": "Lien direct vers le titre",
|
||||
"theme.common.skipToMainContent": "Aller au contenu principal",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Pagination des documents",
|
||||
"theme.docs.paginator.next": "Suivant",
|
||||
"theme.docs.paginator.previous": "Précédent",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Déplier le menu latéral",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} avec \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Un document tagué|{count} documents tagués",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "dernière version",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Pour une documentation à jour, consultez la {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Ceci est la documentation de {siteTitle} {versionLabel}, qui n'est plus activement maintenue.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " le {date}",
|
||||
"theme.lastUpdated.byUser": " par {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Dernière mise à jour{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Retour au menu principal",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tags :",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Chercher",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Recherche par Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Un document trouvé|{count} documents trouvés",
|
||||
"theme.SearchPage.emptyResultsTitle": "Rechercher dans la documentation",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "ישן יותר",
|
||||
"theme.blog.post.plurals": "רשומה אחת|{count} רשומות|{count} רשומות|{count} רשומות",
|
||||
"theme.blog.post.readMore": "קרא עוד...",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "דקת קריאה|{readingTime} דקות קריאה|{readingTime} דקות קריאה|{readingTime} דקות קריאה",
|
||||
"theme.blog.sidebar.navAriaLabel": "מעבר לרשומות אחרונות בבלוג",
|
||||
"theme.blog.tagTitle": "{nPosts} עם התגית \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "ערוך דף זה",
|
||||
"theme.common.headingLinkTitle": "קישור ישיר לכותרת",
|
||||
"theme.common.skipToMainContent": "דלג לתוכן הראשי",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "רשימת דוקומנטאציה",
|
||||
"theme.docs.paginator.next": "הבא",
|
||||
"theme.docs.paginator.previous": "הקודם",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "פתח",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "גרסא אחרונה",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "לדוקומנטאציה עדכנית, ראה {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "דוקומנטאציה זו {siteTitle} {versionLabel}, כבר לא נתמכת.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " בתאריך {date}",
|
||||
"theme.lastUpdated.byUser": " על ידי {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "עודכן{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← חזרה לתפריט הראשי",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "תגיות:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "חיפוש",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "חיפוש by Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "נמצא מסמך אחד|{count} מסמכים נמצאו|{count} מסמכים נמצאו|{count} מסמכים נמצאו",
|
||||
"theme.SearchPage.emptyResultsTitle": "חפש בדוקומנטאציה",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "पुराने पोस्ट",
|
||||
"theme.blog.post.plurals": "एक पोस्ट|{count} पोस्ट",
|
||||
"theme.blog.post.readMore": "और पढ़ें",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "एक मिनट में पढ़ें|{readingTime} मिनट में पढ़ें",
|
||||
"theme.blog.sidebar.navAriaLabel": "नया ब्लॉग पोस्ट नेविगेशन",
|
||||
"theme.blog.tagTitle": "{nPosts} पोस्ट \"{tagName}\" टैग के साथ",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "इस पेज को बदलें",
|
||||
"theme.common.headingLinkTitle": "शीर्षक का सीधा लिंक",
|
||||
"theme.common.skipToMainContent": "मुख्य कंटेंट तक स्किप करें",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "डॉक्स पेज नेविगेशन",
|
||||
"theme.docs.paginator.next": "अगला",
|
||||
"theme.docs.paginator.previous": "पिछ्ला",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "साइडबार खोलें",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "सबसे नया वर्जन",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "अप-टू-डेट डॉक्यूमेंटेशन के लिए {latestVersionLink} ({versionLabel}) देखें।",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "यह {siteTitle} {versionLabel} के लिए डॉक्यूमेंटेशन है, जिसे अब सक्रिय रूप से नहीं बनाए रखा गया है।",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date} पर",
|
||||
"theme.lastUpdated.byUser": " {user} द्वारा",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "आखरी अपडेट{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← मुख्य मेनू में वापस जाएं",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "टैग:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "खोज करें",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "अल्गोलिया द्वारा खोजें",
|
||||
"theme.SearchPage.documentsFound.plurals": "एक डॉक्यूमेंट मिला|{count} डॉक्यूमेंट मिलें",
|
||||
"theme.SearchPage.emptyResultsTitle": "डॉक्यूमेंटेशन में खोजें",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Post più vecchio",
|
||||
"theme.blog.post.plurals": "Un post|{count} post",
|
||||
"theme.blog.post.readMore": "Leggi di più",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Lettura di 1 minuto|{readingTime} minuti di lettura",
|
||||
"theme.blog.sidebar.navAriaLabel": "Navigazione dei post recenti del blog",
|
||||
"theme.blog.tagTitle": "{nPosts} etichettati con \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Modifica questa pagina",
|
||||
"theme.common.headingLinkTitle": "Link diretto all'intestazione",
|
||||
"theme.common.skipToMainContent": "Passa al contenuto principale",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Navigazione delle pagine dei documenti",
|
||||
"theme.docs.paginator.next": "Successivo",
|
||||
"theme.docs.paginator.previous": "Precedente",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Espandi la barra laterale",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} con \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Un documento etichettato|{count} documenti etichettati",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "ultima versione",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Per la documentazione aggiornata, guarda la {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Questa è la documentazione per {siteTitle} {versionLabel}, che non è più attivamente mantenuta.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " il {date}",
|
||||
"theme.lastUpdated.byUser": " da {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Ultimo aggiornamento{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Indietro al menu principale",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versioni",
|
||||
"theme.tags.tagsListLabel": "Etichette:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Cerca",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Ricerca tramite Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Un documento trovato|{count} documenti trovati",
|
||||
"theme.SearchPage.emptyResultsTitle": "Cerca nella documentazione",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "過去の記事",
|
||||
"theme.blog.post.plurals": "{count}件",
|
||||
"theme.blog.post.readMore": "もっと見る",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "約{readingTime}分",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "「{tagName}」タグの記事が{nPosts}あります",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "このページを編集",
|
||||
"theme.common.headingLinkTitle": "見出しへの直接リンク",
|
||||
"theme.common.skipToMainContent": "メインコンテンツまでスキップ",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "ドキュメントのナビゲーション",
|
||||
"theme.docs.paginator.next": "次へ",
|
||||
"theme.docs.paginator.previous": "前へ",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "サイドバーを開く",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "最新バージョン",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "最新のドキュメントは{latestVersionLink} ({versionLabel}) を見てください。",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "これは{siteTitle} {versionLabel}のドキュメントで現在はアクティブにメンテナンスされていません。",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": "{date}に",
|
||||
"theme.lastUpdated.byUser": "{user}が",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "{atDate}{byUser}最終更新",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "タグ:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "検索",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Algoliaで検索",
|
||||
"theme.SearchPage.documentsFound.plurals": "{count}件のドキュメントが見つかりました",
|
||||
"theme.SearchPage.emptyResultsTitle": "ドキュメントを検索",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "다음 게시물",
|
||||
"theme.blog.post.plurals": "{count}개 게시물",
|
||||
"theme.blog.post.readMore": "자세히 보기",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "약 {readingTime}분",
|
||||
"theme.blog.sidebar.navAriaLabel": "최근 블로그 문서 둘러보기",
|
||||
"theme.blog.tagTitle": "\"{tagName}\" 태그로 연결된 {nPosts}개의 게시물이 있습니다.",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "페이지 편집",
|
||||
"theme.common.headingLinkTitle": "제목으로 바로 가기",
|
||||
"theme.common.skipToMainContent": "본문으로 건너뛰기",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "문서 탐색",
|
||||
"theme.docs.paginator.next": "다음",
|
||||
"theme.docs.paginator.previous": "이전",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "사이드바 열기",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} \"{tagName}\" 태그에 분류되었습니다",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "{count} 개 문서가",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "최신 버전",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "최신 문서는 {latestVersionLink} ({versionLabel})을 확인하세요.",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "{siteTitle} {versionLabel} 문서는 더 이상 업데이트되지 않습니다.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date}에",
|
||||
"theme.lastUpdated.byUser": " {user}가",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "{atDate}{byUser} 마지막으로 업데이트했습니다.",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← 메인 메뉴로 돌아가기",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "버전",
|
||||
"theme.tags.tagsListLabel": "태그:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "검색",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Search by Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "{count}개 문서를 찾았습니다.",
|
||||
"theme.SearchPage.emptyResultsTitle": "문서를 검색합니다.",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Starszy posty",
|
||||
"theme.blog.post.plurals": "Jeden post|{count} posty|{count} postów",
|
||||
"theme.blog.post.readMore": "Czytaj więcej",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} min aby przeczytać|{readingTime} min aby przeczytać|{readingTime} min aby przeczytać",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} z tagiem \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Edytuj tą stronę",
|
||||
"theme.common.headingLinkTitle": "Bezpośredni link do nagłówka",
|
||||
"theme.common.skipToMainContent": "Przejdź do głównej zawartości",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Nawigacja na stronie dokumentacji",
|
||||
"theme.docs.paginator.next": "Następna strona",
|
||||
"theme.docs.paginator.previous": "Poprzednia strona",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Rozszerz boczny panel",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "bieżącej wersji",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Aby zobaczyć bieżącą dokumentację, przejdź do wersji {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Ta dokumentacja dotyczy {siteTitle} w wersji {versionLabel} i nie jest już aktywnie aktualizowana.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " dnia {date}",
|
||||
"theme.lastUpdated.byUser": " przez {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Ostatnia aktualizacja{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tagi:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Szukaj",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Dostawca rozwiązania Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "One document found|{count} documents found",
|
||||
"theme.SearchPage.emptyResultsTitle": "Wyszukaj w dokumentacji",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Postagem mais antiga",
|
||||
"theme.blog.post.plurals": "Uma postagem|{count} postagens",
|
||||
"theme.blog.post.readMore": "Leia Mais",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Leitura de um minuto|Leitura de {readingTime} minutos",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} marcadas com \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Editar essa página",
|
||||
"theme.common.headingLinkTitle": "Link direto para o título",
|
||||
"theme.common.skipToMainContent": "Pular para o conteúdo principal",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Navigação das páginas de documentação",
|
||||
"theme.docs.paginator.next": "Próxima",
|
||||
"theme.docs.paginator.previous": "Anterior",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Expandir painel lateral",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} com \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Um documento selecionado|{count} documentos selecionados",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "última versão",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Para a documentação atualizada, veja: {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Esta é a documentação para {siteTitle} {versionLabel}, que não é mais mantida ativamente.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " em {date}",
|
||||
"theme.lastUpdated.byUser": " por {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Última atualização {atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Voltar para o menu principal",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Marcadores:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Buscar",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Busca feita por Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
||||
"theme.SearchPage.emptyResultsTitle": "Busca da documentação",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Publicação mais antiga",
|
||||
"theme.blog.post.plurals": "Uma publicação|{count} publicações",
|
||||
"theme.blog.post.readMore": "Ler mais",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Leitura de um minuto|Leitura de {readingTime} minutos",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
||||
"theme.blog.tagTitle": "{nPosts} marcadas com \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Editar esta página",
|
||||
"theme.common.headingLinkTitle": "Link direto para o título",
|
||||
"theme.common.skipToMainContent": "Saltar para o conteúdo principal",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Navigação das páginas de documentação",
|
||||
"theme.docs.paginator.next": "Próxima",
|
||||
"theme.docs.paginator.previous": "Anterior",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Expandir barra lateral",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "última versão",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Para a documentação atualizada, veja: {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Esta é a documentação para {siteTitle} {versionLabel}, que já não é mantida ativamente.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " a {date}",
|
||||
"theme.lastUpdated.byUser": " por {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Última atualização{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Back to main menu",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Tags:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Pesquisar",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Pesquisa por Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
||||
"theme.SearchPage.emptyResultsTitle": "Pesquisar pela documentação",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Предыдущий пост",
|
||||
"theme.blog.post.plurals": "{count} запись|{count} записи|{count} записей",
|
||||
"theme.blog.post.readMore": "Читать дальше",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} мин. чтения",
|
||||
"theme.blog.sidebar.navAriaLabel": "Навигация по последним постам в блоге",
|
||||
"theme.blog.tagTitle": "{nPosts} с тегом \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Отредактировать эту страницу",
|
||||
"theme.common.headingLinkTitle": "Прямая ссылка на этот заголовок",
|
||||
"theme.common.skipToMainContent": "Перейти к основному содержимому",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Навигация по странице документации",
|
||||
"theme.docs.paginator.next": "Следующая страница",
|
||||
"theme.docs.paginator.previous": "Предыдущая страница",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Развернуть сайдбар",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} with \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "One doc tagged|{count} docs tagged",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "последней версии",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Актуальная документация находится на странице {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Это документация {siteTitle} для версии {versionLabel}, которая уже не поддерживается.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date}",
|
||||
"theme.lastUpdated.byUser": " от {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Последнее обновление{atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Перейти к главному меню",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Теги:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Поиск",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Поиск от Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "{count} документ|{count} документа|{count} документов",
|
||||
"theme.SearchPage.emptyResultsTitle": "Поиск по сайту",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Стари пост",
|
||||
"theme.blog.post.plurals": "Један пост|{count} постова",
|
||||
"theme.blog.post.readMore": "Прочитајте више",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Једноминутно читање|{readingTime} минута читања",
|
||||
"theme.blog.sidebar.navAriaLabel": "Недавни постови на блогу",
|
||||
"theme.blog.tagTitle": "{nPosts} означени са \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Уреди ову страницу",
|
||||
"theme.common.headingLinkTitle": "Веза до наслова",
|
||||
"theme.common.skipToMainContent": "Пређи на главни садржај",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Навигација по документима",
|
||||
"theme.docs.paginator.next": "Даље",
|
||||
"theme.docs.paginator.previous": "Назад",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Прошири бочну листу",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} означени са \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Један документ означен|{count} означених докумената",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "Најновија верзија",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "За најновију верзију документације погледајте {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Ово је документација за {siteTitle} {versionLabel}, која се више не одржава",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " на {date}",
|
||||
"theme.lastUpdated.byUser": " од {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Последња измена {atDate}{byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Назад на главни мени",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Верзије",
|
||||
"theme.tags.tagsListLabel": "Ознаке:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Тражи",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Претрага из Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Један пронађен документ|{count} пронађених докумената",
|
||||
"theme.SearchPage.emptyResultsTitle": "Тражи документацију",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Daha Eski Gönderi",
|
||||
"theme.blog.post.plurals": "Bir gönderi|{count} gönderi",
|
||||
"theme.blog.post.readMore": "Daha Fazla",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} dakikalık okuma|{readingTime} dakikalık okuma",
|
||||
"theme.blog.sidebar.navAriaLabel": "Blog son gönderiler navigasyonu",
|
||||
"theme.blog.tagTitle": "\"{tagName}\" ile etiketlenmiş {nPosts}",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Bu sayfayı düzenle",
|
||||
"theme.common.headingLinkTitle": "Başlığa doğrudan bağlantı",
|
||||
"theme.common.skipToMainContent": "Ana içeriğe geç",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Dokümanlar sayfası navigasyonu",
|
||||
"theme.docs.paginator.next": "Sonraki",
|
||||
"theme.docs.paginator.previous": "Önceki",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Kenar çubuğunu genişlet",
|
||||
"theme.docs.tagDocListPageTitle": "\"{tagName}\" ile etiketlenmiş {nDocsTagged}",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Bir doküman etiketlendi|{count} doküman etiketlendi",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "en son sürüm",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Güncel belgeler için bkz. {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Bu, {siteTitle} {versionLabel} dokümantasyonudur ve bakımı sonlanmıştır.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " {date} tarihinde",
|
||||
"theme.lastUpdated.byUser": " {user} tarafından",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "En son{atDate}{byUser} güncellendi",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Ana menüye dön",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versiyonlar",
|
||||
"theme.tags.tagsListLabel": "Etiketler:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Ara",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Algolia ile Ara",
|
||||
"theme.SearchPage.documentsFound.plurals": "Bir döküman bulundu|{count} döküman bulundu",
|
||||
"theme.SearchPage.emptyResultsTitle": "Dokümanlarda ara",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "Bài cũ hơn",
|
||||
"theme.blog.post.plurals": "Một bài viết|{count} bài viết",
|
||||
"theme.blog.post.readMore": "Đọc Tiếp",
|
||||
"theme.blog.post.readMoreLabel": "Read more about {title}",
|
||||
"theme.blog.post.readingTime.plurals": "Một phút để đọc|{readingTime} phút để đọc",
|
||||
"theme.blog.sidebar.navAriaLabel": "Điều hướng các bài viết gần đây trên blog",
|
||||
"theme.blog.tagTitle": "{nPosts} được gắn thẻ \"{tagName}\"",
|
||||
"theme.colorToggle.ariaLabel": "Switch between dark and light mode",
|
||||
"theme.common.editThisPage": "Sửa trang này",
|
||||
"theme.common.headingLinkTitle": "Đường dẫn trực tiếp tới đề mục này",
|
||||
"theme.common.skipToMainContent": "Nhảy tới nội dung",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} items",
|
||||
"theme.docs.paginator.navAriaLabel": "Thanh điều hướng của trang tài liệu",
|
||||
"theme.docs.paginator.next": "Kế tiếp",
|
||||
"theme.docs.paginator.previous": "Trước",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "Mở rộng thanh bên",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} với \"{tagName}\"",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "Một tài liệu đã gắn thẻ|{count} tài liệu đã gắn thẻ",
|
||||
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "phiên bản mới nhất",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "Để xem các cập nhật mới nhất, vui lòng xem phiên bản {latestVersionLink} ({versionLabel}).",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "Đây là tài liệu của {siteTitle} {versionLabel}, hiện không còn được bảo trì.",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": " vào {date}",
|
||||
"theme.lastUpdated.byUser": " bởi {user}",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "Cập nhật lần cuối {atDate} bởi {byUser}",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "Languages",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Trở lại menu chính",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "Versions",
|
||||
"theme.tags.tagsListLabel": "Thẻ:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "Tìm kiếm",
|
||||
"theme.SearchBar.seeAll": "See all {count} results",
|
||||
"theme.SearchPage.algoliaLabel": "Tìm kiếm với Algolia",
|
||||
"theme.SearchPage.documentsFound.plurals": "Tìm thấy một kết quả|Tìm thấy {count} kết quả",
|
||||
"theme.SearchPage.emptyResultsTitle": "Tìm kiếm",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "较旧一篇",
|
||||
"theme.blog.post.plurals": "{count} 篇博文",
|
||||
"theme.blog.post.readMore": "阅读更多",
|
||||
"theme.blog.post.readMoreLabel": "阅读 {title} 的全文",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} 分钟阅读",
|
||||
"theme.blog.sidebar.navAriaLabel": "最近博文导航",
|
||||
"theme.blog.tagTitle": "{nPosts} 含有标签「{tagName}」",
|
||||
"theme.colorToggle.ariaLabel": "切换浅色/暗黑模式",
|
||||
"theme.common.editThisPage": "编辑此页",
|
||||
"theme.common.headingLinkTitle": "标题的直接链接",
|
||||
"theme.common.skipToMainContent": "跳到主要内容",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} 个项目",
|
||||
"theme.docs.paginator.navAriaLabel": "文档分页导航",
|
||||
"theme.docs.paginator.next": "下一页",
|
||||
"theme.docs.paginator.previous": "上一页",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "展开侧边栏",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} 篇带有标签「{tagName}」",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "{count} 篇文档带有标签",
|
||||
"theme.docs.versionBadge.label": "版本:{versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "最新版本",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "最新的文档请参阅 {latestVersionLink} ({versionLabel})。",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "此为 {siteTitle} {versionLabel} 版的文档,现已不再积极维护。",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": "于 {date} ",
|
||||
"theme.lastUpdated.byUser": "由 {user} ",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "最后{byUser}{atDate}更新",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "选择语言",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← 回到主菜单",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "选择版本",
|
||||
"theme.tags.tagsListLabel": "标签:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "搜索",
|
||||
"theme.SearchBar.seeAll": "查看全部 {count} 个结果",
|
||||
"theme.SearchPage.algoliaLabel": "通过 Algolia 搜索",
|
||||
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
||||
"theme.SearchPage.emptyResultsTitle": "在文档中搜索",
|
||||
|
|
|
@ -21,12 +21,15 @@
|
|||
"theme.blog.post.paginator.olderPost": "較舊一篇",
|
||||
"theme.blog.post.plurals": "{count} 篇文章",
|
||||
"theme.blog.post.readMore": "閱讀更多",
|
||||
"theme.blog.post.readMoreLabel": "閱讀 {title} 全文",
|
||||
"theme.blog.post.readingTime.plurals": "{readingTime} 分鐘閱讀",
|
||||
"theme.blog.sidebar.navAriaLabel": "最近部落格文章導覽",
|
||||
"theme.blog.tagTitle": "{nPosts} 含有標籤「{tagName}」",
|
||||
"theme.colorToggle.ariaLabel": "切換淺色/暗黑模式",
|
||||
"theme.common.editThisPage": "編輯此頁",
|
||||
"theme.common.headingLinkTitle": "標題的直接連結",
|
||||
"theme.common.skipToMainContent": "跳至主要内容",
|
||||
"theme.docs.DocCard.categoryDescription": "{count} 個項目",
|
||||
"theme.docs.paginator.navAriaLabel": "文件分頁導覽",
|
||||
"theme.docs.paginator.next": "下一頁",
|
||||
"theme.docs.paginator.previous": "上一頁",
|
||||
|
@ -36,6 +39,7 @@
|
|||
"theme.docs.sidebar.expandButtonTitle": "展開側邊欄",
|
||||
"theme.docs.tagDocListPageTitle": "{nDocsTagged} 篇帶有標籤「{tagName}」",
|
||||
"theme.docs.tagDocListPageTitle.nDocsTagged": "{count} 篇文件帶有標籤",
|
||||
"theme.docs.versionBadge.label": "版本:{versionLabel}",
|
||||
"theme.docs.versions.latestVersionLinkLabel": "最新版本",
|
||||
"theme.docs.versions.latestVersionSuggestionLabel": "最新的文件請參閱 {latestVersionLink} ({versionLabel})。",
|
||||
"theme.docs.versions.unmaintainedVersionLabel": "此為 {siteTitle} {versionLabel} 版的文件,現已不再積極維護。",
|
||||
|
@ -43,6 +47,7 @@
|
|||
"theme.lastUpdated.atDate": "於 {date} ",
|
||||
"theme.lastUpdated.byUser": "由 {user} ",
|
||||
"theme.lastUpdated.lastUpdatedAtBy": "最後{byUser}{atDate}更新",
|
||||
"theme.navbar.mobileLanguageDropdown.label": "選擇語言",
|
||||
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← 回到主菜單",
|
||||
"theme.navbar.mobileVersionsDropdown.label": "選擇版本",
|
||||
"theme.tags.tagsListLabel": "標籤:",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"theme.SearchBar.label": "搜尋",
|
||||
"theme.SearchBar.seeAll": "查看全部 {count} 個結果",
|
||||
"theme.SearchPage.algoliaLabel": "透過 Algolia 搜尋",
|
||||
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
||||
"theme.SearchPage.emptyResultsTitle": "在文件中搜尋",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue