mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-23 14:06:59 +02:00
feat(algolia-search): allow translating search modal (#7666)
Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
This commit is contained in:
parent
713dcdf7a8
commit
ae2ba5e37a
27 changed files with 759 additions and 11 deletions
|
@ -33,3 +33,10 @@ declare module '@theme/SearchPage' {
|
||||||
declare module '@theme/SearchBar' {
|
declare module '@theme/SearchBar' {
|
||||||
export default function SearchBar(): JSX.Element;
|
export default function SearchBar(): JSX.Element;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module '@theme/SearchTranslations' {
|
||||||
|
import type {DocSearchTranslations} from '@docsearch/react';
|
||||||
|
|
||||||
|
const translations: DocSearchTranslations & {placeholder: string};
|
||||||
|
export default translations;
|
||||||
|
}
|
||||||
|
|
|
@ -16,7 +16,8 @@ import {isRegexpStringMatch} from '@docusaurus/theme-common';
|
||||||
import {useSearchPage} from '@docusaurus/theme-common/internal';
|
import {useSearchPage} from '@docusaurus/theme-common/internal';
|
||||||
import {DocSearchButton, useDocSearchKeyboardEvents} from '@docsearch/react';
|
import {DocSearchButton, useDocSearchKeyboardEvents} from '@docsearch/react';
|
||||||
import {useAlgoliaContextualFacetFilters} from '@docusaurus/theme-search-algolia/client';
|
import {useAlgoliaContextualFacetFilters} from '@docusaurus/theme-search-algolia/client';
|
||||||
import Translate, {translate} from '@docusaurus/Translate';
|
import Translate from '@docusaurus/Translate';
|
||||||
|
import translations from '@theme/SearchTranslations';
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
DocSearchModal as DocSearchModalType,
|
DocSearchModal as DocSearchModalType,
|
||||||
|
@ -216,12 +217,6 @@ function DocSearch({
|
||||||
searchButtonRef,
|
searchButtonRef,
|
||||||
});
|
});
|
||||||
|
|
||||||
const translatedSearchLabel = translate({
|
|
||||||
id: 'theme.SearchBar.label',
|
|
||||||
message: 'Search',
|
|
||||||
description: 'The ARIA label and placeholder for search button',
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
|
@ -241,10 +236,7 @@ function DocSearch({
|
||||||
onMouseOver={importDocSearchModalIfNeeded}
|
onMouseOver={importDocSearchModalIfNeeded}
|
||||||
onClick={onOpen}
|
onClick={onOpen}
|
||||||
ref={searchButtonRef}
|
ref={searchButtonRef}
|
||||||
translations={{
|
translations={translations.button}
|
||||||
buttonText: translatedSearchLabel,
|
|
||||||
buttonAriaLabel: translatedSearchLabel,
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{isOpen &&
|
{isOpen &&
|
||||||
|
@ -264,6 +256,8 @@ function DocSearch({
|
||||||
})}
|
})}
|
||||||
{...props}
|
{...props}
|
||||||
searchParameters={searchParameters}
|
searchParameters={searchParameters}
|
||||||
|
placeholder={translations.placeholder}
|
||||||
|
translations={translations.modal}
|
||||||
/>,
|
/>,
|
||||||
searchContainer.current,
|
searchContainer.current,
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -0,0 +1,172 @@
|
||||||
|
/**
|
||||||
|
* 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 {translate} from '@docusaurus/Translate';
|
||||||
|
|
||||||
|
import type {DocSearchTranslations} from '@docsearch/react';
|
||||||
|
|
||||||
|
const translations: DocSearchTranslations & {placeholder: string} = {
|
||||||
|
button: {
|
||||||
|
buttonText: translate({
|
||||||
|
id: 'theme.SearchBar.label',
|
||||||
|
message: 'Search',
|
||||||
|
description: 'The ARIA label and placeholder for search button',
|
||||||
|
}),
|
||||||
|
buttonAriaLabel: translate({
|
||||||
|
id: 'theme.SearchBar.label',
|
||||||
|
message: 'Search',
|
||||||
|
description: 'The ARIA label and placeholder for search button',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
modal: {
|
||||||
|
searchBox: {
|
||||||
|
resetButtonTitle: translate({
|
||||||
|
id: 'theme.SearchModal.searchBox.resetButtonTitle',
|
||||||
|
message: 'Clear the query',
|
||||||
|
description: 'The label and ARIA label for search box reset button',
|
||||||
|
}),
|
||||||
|
resetButtonAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.searchBox.resetButtonTitle',
|
||||||
|
message: 'Clear the query',
|
||||||
|
description: 'The label and ARIA label for search box reset button',
|
||||||
|
}),
|
||||||
|
cancelButtonText: translate({
|
||||||
|
id: 'theme.SearchModal.searchBox.cancelButtonText',
|
||||||
|
message: 'Cancel',
|
||||||
|
description: 'The label and ARIA label for search box cancel button',
|
||||||
|
}),
|
||||||
|
cancelButtonAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.searchBox.cancelButtonText',
|
||||||
|
message: 'Cancel',
|
||||||
|
description: 'The label and ARIA label for search box cancel button',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
startScreen: {
|
||||||
|
recentSearchesTitle: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.recentSearchesTitle',
|
||||||
|
message: 'Recent',
|
||||||
|
description: 'The title for recent searches',
|
||||||
|
}),
|
||||||
|
noRecentSearchesText: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.noRecentSearchesText',
|
||||||
|
message: 'No recent searches',
|
||||||
|
description: 'The text when no recent searches',
|
||||||
|
}),
|
||||||
|
saveRecentSearchButtonTitle: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.saveRecentSearchButtonTitle',
|
||||||
|
message: 'Save this search',
|
||||||
|
description: 'The label for save recent search button',
|
||||||
|
}),
|
||||||
|
removeRecentSearchButtonTitle: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.removeRecentSearchButtonTitle',
|
||||||
|
message: 'Remove this search from history',
|
||||||
|
description: 'The label for remove recent search button',
|
||||||
|
}),
|
||||||
|
favoriteSearchesTitle: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.favoriteSearchesTitle',
|
||||||
|
message: 'Favorite',
|
||||||
|
description: 'The title for favorite searches',
|
||||||
|
}),
|
||||||
|
removeFavoriteSearchButtonTitle: translate({
|
||||||
|
id: 'theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle',
|
||||||
|
message: 'Remove this search from favorites',
|
||||||
|
description: 'The label for remove favorite search button',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
errorScreen: {
|
||||||
|
titleText: translate({
|
||||||
|
id: 'theme.SearchModal.errorScreen.titleText',
|
||||||
|
message: 'Unable to fetch results',
|
||||||
|
description: 'The title for error screen of search modal',
|
||||||
|
}),
|
||||||
|
helpText: translate({
|
||||||
|
id: 'theme.SearchModal.errorScreen.helpText',
|
||||||
|
message: 'You might want to check your network connection.',
|
||||||
|
description: 'The help text for error screen of search modal',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
footer: {
|
||||||
|
selectText: translate({
|
||||||
|
id: 'theme.SearchModal.footer.selectText',
|
||||||
|
message: 'to select',
|
||||||
|
description: 'The explanatory text of the action for the enter key',
|
||||||
|
}),
|
||||||
|
selectKeyAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.footer.selectKeyAriaLabel',
|
||||||
|
message: 'Enter key',
|
||||||
|
description:
|
||||||
|
'The ARIA label for the Enter key button that makes the selection',
|
||||||
|
}),
|
||||||
|
navigateText: translate({
|
||||||
|
id: 'theme.SearchModal.footer.navigateText',
|
||||||
|
message: 'to navigate',
|
||||||
|
description:
|
||||||
|
'The explanatory text of the action for the Arrow up and Arrow down key',
|
||||||
|
}),
|
||||||
|
navigateUpKeyAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.footer.navigateUpKeyAriaLabel',
|
||||||
|
message: 'Arrow up',
|
||||||
|
description:
|
||||||
|
'The ARIA label for the Arrow up key button that makes the navigation',
|
||||||
|
}),
|
||||||
|
navigateDownKeyAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.footer.navigateDownKeyAriaLabel',
|
||||||
|
message: 'Arrow down',
|
||||||
|
description:
|
||||||
|
'The ARIA label for the Arrow down key button that makes the navigation',
|
||||||
|
}),
|
||||||
|
closeText: translate({
|
||||||
|
id: 'theme.SearchModal.footer.closeText',
|
||||||
|
message: 'to close',
|
||||||
|
description: 'The explanatory text of the action for Escape key',
|
||||||
|
}),
|
||||||
|
closeKeyAriaLabel: translate({
|
||||||
|
id: 'theme.SearchModal.footer.closeKeyAriaLabel',
|
||||||
|
message: 'Escape key',
|
||||||
|
description:
|
||||||
|
'The ARIA label for the Escape key button that close the modal',
|
||||||
|
}),
|
||||||
|
searchByText: translate({
|
||||||
|
id: 'theme.SearchModal.footer.searchByText',
|
||||||
|
message: 'Search by',
|
||||||
|
description: 'The text explain that the search is making by Algolia',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
noResultsScreen: {
|
||||||
|
noResultsText: translate({
|
||||||
|
id: 'theme.SearchModal.noResultsScreen.noResultsText',
|
||||||
|
message: 'No results for',
|
||||||
|
description:
|
||||||
|
'The text explains that there are no results for the following search',
|
||||||
|
}),
|
||||||
|
suggestedQueryText: translate({
|
||||||
|
id: 'theme.SearchModal.noResultsScreen.suggestedQueryText',
|
||||||
|
message: 'Try searching for',
|
||||||
|
description:
|
||||||
|
'The text for the suggested query when no results are found for the following search',
|
||||||
|
}),
|
||||||
|
reportMissingResultsText: translate({
|
||||||
|
id: 'theme.SearchModal.noResultsScreen.reportMissingResultsText',
|
||||||
|
message: 'Believe this query should return results?',
|
||||||
|
description:
|
||||||
|
'The text for the question where the user thinks there are missing results',
|
||||||
|
}),
|
||||||
|
reportMissingResultsLinkText: translate({
|
||||||
|
id: 'theme.SearchModal.noResultsScreen.reportMissingResultsLinkText',
|
||||||
|
message: 'Let us know.',
|
||||||
|
description: 'The text for the link to report missing results',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
placeholder: translate({
|
||||||
|
id: 'theme.SearchModal.placeholder',
|
||||||
|
message: 'Search docs',
|
||||||
|
description: 'The placeholder of the input of the DocSearch pop-up modal',
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
|
export default translations;
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "بحث",
|
"theme.SearchBar.label": "بحث",
|
||||||
"theme.SearchBar.seeAll": "مشاهدة جميع {count} نتائج",
|
"theme.SearchBar.seeAll": "مشاهدة جميع {count} نتائج",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "البحث بواسطه Algolia",
|
"theme.SearchPage.algoliaLabel": "البحث بواسطه Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "تم العثور على مستند واحد|تم العثور على {count} مستندات",
|
"theme.SearchPage.documentsFound.plurals": "تم العثور على مستند واحد|تم العثور على {count} مستندات",
|
||||||
"theme.SearchPage.emptyResultsTitle": "ابحث في الوثائق",
|
"theme.SearchPage.emptyResultsTitle": "ابحث في الوثائق",
|
||||||
|
|
|
@ -2,6 +2,52 @@
|
||||||
"theme.SearchBar.label": "Search",
|
"theme.SearchBar.label": "Search",
|
||||||
"theme.SearchBar.label___DESCRIPTION": "The ARIA label and placeholder for search button",
|
"theme.SearchBar.label___DESCRIPTION": "The ARIA label and placeholder for search button",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.helpText___DESCRIPTION": "The help text for error screen of search modal",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.errorScreen.titleText___DESCRIPTION": "The title for error screen of search modal",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel___DESCRIPTION": "The ARIA label for the Escape key button that close the modal",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.closeText___DESCRIPTION": "The explanatory text of the action for Escape key",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel___DESCRIPTION": "The ARIA label for the Arrow down key button that makes the navigation",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateText___DESCRIPTION": "The explanatory text of the action for the Arrow up and Arrow down key",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel___DESCRIPTION": "The ARIA label for the Arrow up key button that makes the navigation",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.searchByText___DESCRIPTION": "The text explain that the search is making by Algolia",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel___DESCRIPTION": "The ARIA label for the Enter key button that makes the selection",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.footer.selectText___DESCRIPTION": "The explanatory text of the action for the enter key",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText___DESCRIPTION": "The text explains that there are no results for the following search",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText___DESCRIPTION": "The text for the link to report missing results",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText___DESCRIPTION": "The text for the question where the user thinks there are missing results",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText___DESCRIPTION": "The text for the suggested query when no results are found for the following search",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.placeholder___DESCRIPTION": "The placeholder of the input of the DocSearch pop-up modal",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText___DESCRIPTION": "The label and ARIA label for search box cancel button",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle___DESCRIPTION": "The label and ARIA label for search box reset button",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle___DESCRIPTION": "The title for favorite searches",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText___DESCRIPTION": "The text when no recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle___DESCRIPTION": "The title for recent searches",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle___DESCRIPTION": "The label for remove favorite search button",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle___DESCRIPTION": "The label for remove recent search button",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle___DESCRIPTION": "The label for save recent search button",
|
||||||
"theme.SearchPage.algoliaLabel": "Search by Algolia",
|
"theme.SearchPage.algoliaLabel": "Search by Algolia",
|
||||||
"theme.SearchPage.algoliaLabel___DESCRIPTION": "The ARIA label for Algolia mention",
|
"theme.SearchPage.algoliaLabel___DESCRIPTION": "The ARIA label for Algolia mention",
|
||||||
"theme.SearchPage.documentsFound.plurals": "One document found|{count} documents found",
|
"theme.SearchPage.documentsFound.plurals": "One document found|{count} documents found",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "সার্চ",
|
"theme.SearchBar.label": "সার্চ",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "আলগোলিয়া দ্বারা অনুসন্ধান করুন",
|
"theme.SearchPage.algoliaLabel": "আলগোলিয়া দ্বারা অনুসন্ধান করুন",
|
||||||
"theme.SearchPage.documentsFound.plurals": "একটি ডকুমেন্ট পাওয়া গেছে|{count} ডকুমেন্টস পাওয়া গেছে",
|
"theme.SearchPage.documentsFound.plurals": "একটি ডকুমেন্ট পাওয়া গেছে|{count} ডকুমেন্টস পাওয়া গেছে",
|
||||||
"theme.SearchPage.emptyResultsTitle": "ডকুমেন্টেশন অনুসন্ধান করুন",
|
"theme.SearchPage.emptyResultsTitle": "ডকুমেন্টেশন অনুসন্ধান করুন",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Hledat",
|
"theme.SearchBar.label": "Hledat",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Vyhledávání od Algolia",
|
"theme.SearchPage.algoliaLabel": "Vyhledávání od Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Jeden dokument nalezen|{count} dokumenty nalezeny|{count} dokumentů nalezeno",
|
"theme.SearchPage.documentsFound.plurals": "Jeden dokument nalezen|{count} dokumenty nalezeny|{count} dokumentů nalezeno",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Prohledat dokumentaci",
|
"theme.SearchPage.emptyResultsTitle": "Prohledat dokumentaci",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Søg",
|
"theme.SearchBar.label": "Søg",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Søg med Algolia",
|
"theme.SearchPage.algoliaLabel": "Søg med Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Et dokument fundet|{count} dokumenter fundet",
|
"theme.SearchPage.documentsFound.plurals": "Et dokument fundet|{count} dokumenter fundet",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Søg i dokumentationen",
|
"theme.SearchPage.emptyResultsTitle": "Søg i dokumentationen",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Suche",
|
"theme.SearchBar.label": "Suche",
|
||||||
"theme.SearchBar.seeAll": "Alle {count} Ergebnisse anzeigen",
|
"theme.SearchBar.seeAll": "Alle {count} Ergebnisse anzeigen",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Suche von Algolia",
|
"theme.SearchPage.algoliaLabel": "Suche von Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Ein Dokument gefunden|{count} Dokumente gefunden",
|
"theme.SearchPage.documentsFound.plurals": "Ein Dokument gefunden|{count} Dokumente gefunden",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Suche in der Dokumentation",
|
"theme.SearchPage.emptyResultsTitle": "Suche in der Dokumentation",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Buscar",
|
"theme.SearchBar.label": "Buscar",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Búsqueda por Algolia",
|
"theme.SearchPage.algoliaLabel": "Búsqueda por Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Un documento encontrado|{count} documentos encontrados",
|
"theme.SearchPage.documentsFound.plurals": "Un documento encontrado|{count} documentos encontrados",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Búsqueda en la documentación",
|
"theme.SearchPage.emptyResultsTitle": "Búsqueda en la documentación",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "جستجو",
|
"theme.SearchBar.label": "جستجو",
|
||||||
"theme.SearchBar.seeAll": "نمایش {count} نتیجه",
|
"theme.SearchBar.seeAll": "نمایش {count} نتیجه",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "جستجو با Algolia",
|
"theme.SearchPage.algoliaLabel": "جستجو با Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "یک مورد پیدا شد|{count} مورد پیدا شد",
|
"theme.SearchPage.documentsFound.plurals": "یک مورد پیدا شد|{count} مورد پیدا شد",
|
||||||
"theme.SearchPage.emptyResultsTitle": "جستجو در متن",
|
"theme.SearchPage.emptyResultsTitle": "جستجو در متن",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Maghanap",
|
"theme.SearchBar.label": "Maghanap",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Paghahanap hatid ng Algolia",
|
"theme.SearchPage.algoliaLabel": "Paghahanap hatid ng Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Isang dokumento ang nahanap|{count} na mga dokumento ang nahanap",
|
"theme.SearchPage.documentsFound.plurals": "Isang dokumento ang nahanap|{count} na mga dokumento ang nahanap",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Maghanap sa dokumentasyón",
|
"theme.SearchPage.emptyResultsTitle": "Maghanap sa dokumentasyón",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Chercher",
|
"theme.SearchBar.label": "Chercher",
|
||||||
"theme.SearchBar.seeAll": "Voir les {count} résultats",
|
"theme.SearchBar.seeAll": "Voir les {count} résultats",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "Vous pouvez vérifier votre connexion réseau.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Impossible de récupérer les résultats",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Touche Echap",
|
||||||
|
"theme.SearchModal.footer.closeText": "pour fermer",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Flèche vers le bas",
|
||||||
|
"theme.SearchModal.footer.navigateText": "pour naviguer",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "flèche vers le haut",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Recherche via",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Touche Entrée",
|
||||||
|
"theme.SearchModal.footer.selectText": "pour sélectionner",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "Aucun résultat pour",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Faites-le nous savoir.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Vous pensez que cette requête doit donner des résultats ?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Essayez de chercher",
|
||||||
|
"theme.SearchModal.placeholder": "Rechercher des docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Annuler",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Effacer la requête",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favoris",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "Aucune recherche récente",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Récemment",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Supprimer cette recherche des favoris",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Supprimer cette recherche de l'historique",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Sauvegarder cette recherche",
|
||||||
"theme.SearchPage.algoliaLabel": "Recherche par Algolia",
|
"theme.SearchPage.algoliaLabel": "Recherche par Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Un document trouvé|{count} documents trouvés",
|
"theme.SearchPage.documentsFound.plurals": "Un document trouvé|{count} documents trouvés",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Rechercher dans la documentation",
|
"theme.SearchPage.emptyResultsTitle": "Rechercher dans la documentation",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "חיפוש",
|
"theme.SearchBar.label": "חיפוש",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "חיפוש by Algolia",
|
"theme.SearchPage.algoliaLabel": "חיפוש by Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "נמצא מסמך אחד|{count} מסמכים נמצאו|{count} מסמכים נמצאו|{count} מסמכים נמצאו",
|
"theme.SearchPage.documentsFound.plurals": "נמצא מסמך אחד|{count} מסמכים נמצאו|{count} מסמכים נמצאו|{count} מסמכים נמצאו",
|
||||||
"theme.SearchPage.emptyResultsTitle": "חפש בדוקומנטאציה",
|
"theme.SearchPage.emptyResultsTitle": "חפש בדוקומנטאציה",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "खोज करें",
|
"theme.SearchBar.label": "खोज करें",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "अल्गोलिया द्वारा खोजें",
|
"theme.SearchPage.algoliaLabel": "अल्गोलिया द्वारा खोजें",
|
||||||
"theme.SearchPage.documentsFound.plurals": "एक डॉक्यूमेंट मिला|{count} डॉक्यूमेंट मिलें",
|
"theme.SearchPage.documentsFound.plurals": "एक डॉक्यूमेंट मिला|{count} डॉक्यूमेंट मिलें",
|
||||||
"theme.SearchPage.emptyResultsTitle": "डॉक्यूमेंटेशन में खोजें",
|
"theme.SearchPage.emptyResultsTitle": "डॉक्यूमेंटेशन में खोजें",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Cerca",
|
"theme.SearchBar.label": "Cerca",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Ricerca tramite Algolia",
|
"theme.SearchPage.algoliaLabel": "Ricerca tramite Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Un documento trovato|{count} documenti trovati",
|
"theme.SearchPage.documentsFound.plurals": "Un documento trovato|{count} documenti trovati",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Cerca nella documentazione",
|
"theme.SearchPage.emptyResultsTitle": "Cerca nella documentazione",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "検索",
|
"theme.SearchBar.label": "検索",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Algoliaで検索",
|
"theme.SearchPage.algoliaLabel": "Algoliaで検索",
|
||||||
"theme.SearchPage.documentsFound.plurals": "{count}件のドキュメントが見つかりました",
|
"theme.SearchPage.documentsFound.plurals": "{count}件のドキュメントが見つかりました",
|
||||||
"theme.SearchPage.emptyResultsTitle": "ドキュメントを検索",
|
"theme.SearchPage.emptyResultsTitle": "ドキュメントを検索",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "검색",
|
"theme.SearchBar.label": "검색",
|
||||||
"theme.SearchBar.seeAll": "{count}개의 결과 확인하기",
|
"theme.SearchBar.seeAll": "{count}개의 결과 확인하기",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Algolia로 검색",
|
"theme.SearchPage.algoliaLabel": "Algolia로 검색",
|
||||||
"theme.SearchPage.documentsFound.plurals": "{count}개 문서를 찾았습니다.",
|
"theme.SearchPage.documentsFound.plurals": "{count}개 문서를 찾았습니다.",
|
||||||
"theme.SearchPage.emptyResultsTitle": "문서를 검색합니다.",
|
"theme.SearchPage.emptyResultsTitle": "문서를 검색합니다.",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Szukaj",
|
"theme.SearchBar.label": "Szukaj",
|
||||||
"theme.SearchBar.seeAll": "Wyświetl wszystkie {count} wyników",
|
"theme.SearchBar.seeAll": "Wyświetl wszystkie {count} wyników",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Dostawca rozwiązania Algolia",
|
"theme.SearchPage.algoliaLabel": "Dostawca rozwiązania Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Jeden dokument znaleziony|{count} dokumenty znalezione|{count} dokumentów znalezionych",
|
"theme.SearchPage.documentsFound.plurals": "Jeden dokument znaleziony|{count} dokumenty znalezione|{count} dokumentów znalezionych",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Wyszukaj w dokumentacji",
|
"theme.SearchPage.emptyResultsTitle": "Wyszukaj w dokumentacji",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Buscar",
|
"theme.SearchBar.label": "Buscar",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Busca feita por Algolia",
|
"theme.SearchPage.algoliaLabel": "Busca feita por Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Busca da documentação",
|
"theme.SearchPage.emptyResultsTitle": "Busca da documentação",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Pesquisar",
|
"theme.SearchBar.label": "Pesquisar",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Pesquisa por Algolia",
|
"theme.SearchPage.algoliaLabel": "Pesquisa por Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
"theme.SearchPage.documentsFound.plurals": "Um documento encontrado|{count} documentos encontrados",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Pesquisar pela documentação",
|
"theme.SearchPage.emptyResultsTitle": "Pesquisar pela documentação",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Поиск",
|
"theme.SearchBar.label": "Поиск",
|
||||||
"theme.SearchBar.seeAll": "Посмотреть все результаты ({count})",
|
"theme.SearchBar.seeAll": "Посмотреть все результаты ({count})",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Поиск от Algolia",
|
"theme.SearchPage.algoliaLabel": "Поиск от Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "{count} документ|{count} документа|{count} документов",
|
"theme.SearchPage.documentsFound.plurals": "{count} документ|{count} документа|{count} документов",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Поиск по сайту",
|
"theme.SearchPage.emptyResultsTitle": "Поиск по сайту",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Тражи",
|
"theme.SearchBar.label": "Тражи",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Претрага из Algolia",
|
"theme.SearchPage.algoliaLabel": "Претрага из Algolia",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Један пронађен документ|{count} пронађених докумената",
|
"theme.SearchPage.documentsFound.plurals": "Један пронађен документ|{count} пронађених докумената",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Тражи документацију",
|
"theme.SearchPage.emptyResultsTitle": "Тражи документацију",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Ara",
|
"theme.SearchBar.label": "Ara",
|
||||||
"theme.SearchBar.seeAll": "See all {count} results",
|
"theme.SearchBar.seeAll": "See all {count} results",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Algolia ile Ara",
|
"theme.SearchPage.algoliaLabel": "Algolia ile Ara",
|
||||||
"theme.SearchPage.documentsFound.plurals": "Bir döküman bulundu|{count} döküman bulundu",
|
"theme.SearchPage.documentsFound.plurals": "Bir döküman bulundu|{count} döküman bulundu",
|
||||||
"theme.SearchPage.emptyResultsTitle": "Dokümanlarda ara",
|
"theme.SearchPage.emptyResultsTitle": "Dokümanlarda ara",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "Tìm kiếm",
|
"theme.SearchBar.label": "Tìm kiếm",
|
||||||
"theme.SearchBar.seeAll": "Xem tất cả {count} kết quả",
|
"theme.SearchBar.seeAll": "Xem tất cả {count} kết quả",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "You might want to check your network connection.",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "Unable to fetch results",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Escape key",
|
||||||
|
"theme.SearchModal.footer.closeText": "to close",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "Arrow down",
|
||||||
|
"theme.SearchModal.footer.navigateText": "to navigate",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "Arrow up",
|
||||||
|
"theme.SearchModal.footer.searchByText": "Search by",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter key",
|
||||||
|
"theme.SearchModal.footer.selectText": "to select",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "No results for",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "Let us know.",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "Believe this query should return results?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "Try searching for",
|
||||||
|
"theme.SearchModal.placeholder": "Search docs",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "Cancel",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "Clear the query",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "Favorite",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "No recent searches",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "Recent",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "Remove this search from favorites",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "Remove this search from history",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "Save this search",
|
||||||
"theme.SearchPage.algoliaLabel": "Tìm kiếm với Algolia",
|
"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.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",
|
"theme.SearchPage.emptyResultsTitle": "Tìm kiếm",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "搜索",
|
"theme.SearchBar.label": "搜索",
|
||||||
"theme.SearchBar.seeAll": "查看全部 {count} 个结果",
|
"theme.SearchBar.seeAll": "查看全部 {count} 个结果",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "你可能需要检查网络连接。",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "无法获取结果",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Esc 键",
|
||||||
|
"theme.SearchModal.footer.closeText": "关闭",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "向下键",
|
||||||
|
"theme.SearchModal.footer.navigateText": "导航",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "向上键",
|
||||||
|
"theme.SearchModal.footer.searchByText": "搜索提供",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter 键",
|
||||||
|
"theme.SearchModal.footer.selectText": "选中",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "没有结果:",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "请告知我们。",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "认为这个查询应该有结果?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "试试搜索",
|
||||||
|
"theme.SearchModal.placeholder": "搜索文档",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "取消",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "清除查询",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "收藏",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "没有最近搜索",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "最近搜索",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "从收藏列表中删除这个搜索",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "从历史记录中删除这个搜索",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "保存这个搜索",
|
||||||
"theme.SearchPage.algoliaLabel": "通过 Algolia 搜索",
|
"theme.SearchPage.algoliaLabel": "通过 Algolia 搜索",
|
||||||
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
||||||
"theme.SearchPage.emptyResultsTitle": "在文档中搜索",
|
"theme.SearchPage.emptyResultsTitle": "在文档中搜索",
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"theme.SearchBar.label": "搜尋",
|
"theme.SearchBar.label": "搜尋",
|
||||||
"theme.SearchBar.seeAll": "查看全部 {count} 個結果",
|
"theme.SearchBar.seeAll": "查看全部 {count} 個結果",
|
||||||
|
"theme.SearchModal.errorScreen.helpText": "你可能需要檢查網路連接。",
|
||||||
|
"theme.SearchModal.errorScreen.titleText": "無法獲取結果",
|
||||||
|
"theme.SearchModal.footer.closeKeyAriaLabel": "Esc 鍵",
|
||||||
|
"theme.SearchModal.footer.closeText": "關閉",
|
||||||
|
"theme.SearchModal.footer.navigateDownKeyAriaLabel": "向下鍵",
|
||||||
|
"theme.SearchModal.footer.navigateText": "導航",
|
||||||
|
"theme.SearchModal.footer.navigateUpKeyAriaLabel": "向上鍵",
|
||||||
|
"theme.SearchModal.footer.searchByText": "搜索提供",
|
||||||
|
"theme.SearchModal.footer.selectKeyAriaLabel": "Enter 鍵",
|
||||||
|
"theme.SearchModal.footer.selectText": "選中",
|
||||||
|
"theme.SearchModal.noResultsScreen.noResultsText": "沒有結果:",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": "請告知我們。",
|
||||||
|
"theme.SearchModal.noResultsScreen.reportMissingResultsText": "認為這個查詢應該有結果?",
|
||||||
|
"theme.SearchModal.noResultsScreen.suggestedQueryText": "試試搜索",
|
||||||
|
"theme.SearchModal.placeholder": "搜索文檔",
|
||||||
|
"theme.SearchModal.searchBox.cancelButtonText": "取消",
|
||||||
|
"theme.SearchModal.searchBox.resetButtonTitle": "清除查詢",
|
||||||
|
"theme.SearchModal.startScreen.favoriteSearchesTitle": "收藏",
|
||||||
|
"theme.SearchModal.startScreen.noRecentSearchesText": "沒有最近搜索",
|
||||||
|
"theme.SearchModal.startScreen.recentSearchesTitle": "最近搜索",
|
||||||
|
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": "從收藏列表中刪除這個搜索",
|
||||||
|
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": "從歷史記錄中刪除這個搜索",
|
||||||
|
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": "保存這個搜索",
|
||||||
"theme.SearchPage.algoliaLabel": "透過 Algolia 搜尋",
|
"theme.SearchPage.algoliaLabel": "透過 Algolia 搜尋",
|
||||||
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
"theme.SearchPage.documentsFound.plurals": "找到 {count} 份文件",
|
||||||
"theme.SearchPage.emptyResultsTitle": "在文件中搜尋",
|
"theme.SearchPage.emptyResultsTitle": "在文件中搜尋",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue