@docusaurus/theme-translations 2.0.0-beta.16 → 2.0.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +18 -17
- package/lib/index.js.map +1 -1
- package/lib/utils.d.ts +13 -0
- package/lib/utils.d.ts.map +1 -0
- package/lib/utils.js +82 -0
- package/lib/utils.js.map +1 -0
- package/locales/ar/theme-common.json +4 -1
- package/locales/base/theme-common.json +8 -2
- package/locales/bn/theme-common.json +4 -1
- package/locales/cs/theme-common.json +4 -1
- package/locales/cs/theme-search-algolia.json +1 -1
- package/locales/da/theme-common.json +4 -1
- package/locales/de/plugin-ideal-image.json +5 -5
- package/locales/de/theme-common.json +18 -15
- package/locales/de/theme-search-algolia.json +1 -1
- package/locales/es/theme-common.json +4 -1
- package/locales/fa/theme-common.json +4 -1
- package/locales/fil/theme-common.json +4 -1
- package/locales/fr/theme-common.json +4 -1
- package/locales/he/theme-common.json +4 -1
- package/locales/hi/theme-common.json +4 -1
- package/locales/it/theme-common.json +4 -1
- package/locales/ja/theme-common.json +4 -1
- package/locales/ko/theme-common.json +4 -1
- package/locales/pl/plugin-ideal-image.json +5 -5
- package/locales/pl/theme-common.json +25 -22
- package/locales/pl/theme-search-algolia.json +2 -2
- package/locales/pt-BR/theme-common.json +4 -1
- package/locales/pt-PT/theme-common.json +4 -1
- package/locales/ru/plugin-ideal-image.json +5 -5
- package/locales/ru/theme-common.json +19 -16
- package/locales/ru/theme-search-algolia.json +1 -1
- package/locales/sr/theme-common.json +4 -1
- package/locales/tr/theme-common.json +4 -1
- package/locales/vi/plugin-ideal-image.json +5 -5
- package/locales/vi/theme-common.json +13 -10
- package/locales/vi/theme-search-algolia.json +1 -1
- package/locales/zh-Hans/theme-common.json +5 -2
- package/locales/zh-Hant/theme-common.json +5 -2
- package/package.json +9 -9
- package/src/index.ts +18 -16
- package/src/utils.ts +99 -0
package/lib/index.d.ts
CHANGED
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
import type { CodeTranslations } from '@docusaurus/types';
|
|
7
8
|
export declare function codeTranslationLocalesToTry(locale: string): string[];
|
|
8
9
|
export declare function readDefaultCodeTranslationMessages({ dirPath, locale, name, }: {
|
|
9
10
|
dirPath?: string;
|
|
10
11
|
locale: string;
|
|
11
12
|
name: string;
|
|
12
|
-
}): Promise<
|
|
13
|
+
}): Promise<CodeTranslations>;
|
|
13
14
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,mBAAmB,CAAC;AAOxD,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAiBpE;AAGD,wBAAsB,kCAAkC,CAAC,EACvD,OAAoC,EACpC,MAAM,EACN,IAAI,GACL,EAAE;IACD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAc5B"}
|
package/lib/index.js
CHANGED
|
@@ -8,27 +8,29 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.readDefaultCodeTranslationMessages = exports.codeTranslationLocalesToTry = void 0;
|
|
10
10
|
const tslib_1 = require("tslib");
|
|
11
|
-
const path_1 =
|
|
12
|
-
const fs_extra_1 =
|
|
11
|
+
const path_1 = tslib_1.__importDefault(require("path"));
|
|
12
|
+
const fs_extra_1 = tslib_1.__importDefault(require("fs-extra"));
|
|
13
13
|
function getDefaultLocalesDirPath() {
|
|
14
14
|
return path_1.default.join(__dirname, '../locales');
|
|
15
15
|
}
|
|
16
16
|
// Return an ordered list of locales we should try
|
|
17
17
|
function codeTranslationLocalesToTry(locale) {
|
|
18
18
|
const intlLocale = new Intl.Locale(locale);
|
|
19
|
-
//
|
|
20
|
-
// (not pt-PT!)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
19
|
+
// If locale is just a simple language like "pt", we want to fallback to
|
|
20
|
+
// "pt-BR" (not "pt-PT"!)
|
|
21
|
+
// See https://github.com/facebook/docusaurus/pull/4536#issuecomment-810088783
|
|
22
|
+
const maximizedLocale = intlLocale.maximize(); // "pt-Latn-BR"
|
|
23
|
+
return [
|
|
24
|
+
// May be "zh", "zh-CN", "zh-Hans", "zh-cn", or anything: very likely to be
|
|
25
|
+
// unresolved except for simply locales
|
|
26
|
+
locale,
|
|
27
|
+
// "zh-CN" / "pt-BR"
|
|
28
|
+
`${maximizedLocale.language}-${maximizedLocale.region}`,
|
|
29
|
+
// "zh-Hans" / "pt-Latn"
|
|
30
|
+
`${maximizedLocale.language}-${maximizedLocale.script}`,
|
|
31
|
+
// "zh" / "pt"
|
|
32
|
+
maximizedLocale.language,
|
|
33
|
+
];
|
|
32
34
|
}
|
|
33
35
|
exports.codeTranslationLocalesToTry = codeTranslationLocalesToTry;
|
|
34
36
|
// Useful to implement getDefaultCodeTranslationMessages() in themes
|
|
@@ -39,8 +41,7 @@ async function readDefaultCodeTranslationMessages({ dirPath = getDefaultLocalesD
|
|
|
39
41
|
for (const localeToTry of localesToTry) {
|
|
40
42
|
const filePath = path_1.default.resolve(dirPath, localeToTry, `${name}.json`);
|
|
41
43
|
if (await fs_extra_1.default.pathExists(filePath)) {
|
|
42
|
-
|
|
43
|
-
return JSON.parse(fileContent);
|
|
44
|
+
return fs_extra_1.default.readJSON(filePath);
|
|
44
45
|
}
|
|
45
46
|
}
|
|
46
47
|
return {};
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;AAEH,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;AAEH,wDAAwB;AACxB,gEAA0B;AAG1B,SAAS,wBAAwB;IAC/B,OAAO,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;AAC5C,CAAC;AAED,kDAAkD;AAClD,SAAgB,2BAA2B,CAAC,MAAc;IACxD,MAAM,UAAU,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3C,wEAAwE;IACxE,yBAAyB;IACzB,8EAA8E;IAC9E,MAAM,eAAe,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC,eAAe;IAC9D,OAAO;QACL,2EAA2E;QAC3E,uCAAuC;QACvC,MAAM;QACN,oBAAoB;QACpB,GAAG,eAAe,CAAC,QAAQ,IAAI,eAAe,CAAC,MAAM,EAAE;QACvD,wBAAwB;QACxB,GAAG,eAAe,CAAC,QAAQ,IAAI,eAAe,CAAC,MAAM,EAAE;QACvD,cAAc;QACd,eAAe,CAAC,QAAS;KAC1B,CAAC;AACJ,CAAC;AAjBD,kEAiBC;AAED,oEAAoE;AAC7D,KAAK,UAAU,kCAAkC,CAAC,EACvD,OAAO,GAAG,wBAAwB,EAAE,EACpC,MAAM,EACN,IAAI,GAKL;IACC,MAAM,YAAY,GAAG,2BAA2B,CAAC,MAAM,CAAC,CAAC;IAEzD,kDAAkD;IAClD,mCAAmC;IACnC,KAAK,MAAM,WAAW,IAAI,YAAY,EAAE;QACtC,MAAM,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,OAAO,EAAE,WAAW,EAAE,GAAG,IAAI,OAAO,CAAC,CAAC;QAEpE,IAAI,MAAM,kBAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;YACjC,OAAO,kBAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;SAC9B;KACF;IAED,OAAO,EAAE,CAAC;AACZ,CAAC;AAtBD,gFAsBC"}
|
package/lib/utils.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
import type { TranslationFileContent } from '@docusaurus/types';
|
|
8
|
+
export declare function getThemes(): Promise<{
|
|
9
|
+
name: string;
|
|
10
|
+
src: string[];
|
|
11
|
+
}[]>;
|
|
12
|
+
export declare function extractThemeCodeMessages(targetDirs?: string[]): Promise<TranslationFileContent>;
|
|
13
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAeH,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,mBAAmB,CAAC;AAa9D,wBAAsB,SAAS,IAAI,OAAO,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,EAAE,CAAA;CAAC,EAAE,CAAC,CA0B1E;AAED,wBAAsB,wBAAwB,CAC5C,UAAU,CAAC,EAAE,MAAM,EAAE,GACpB,OAAO,CAAC,sBAAsB,CAAC,CAmCjC"}
|
package/lib/utils.js
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.extractThemeCodeMessages = exports.getThemes = void 0;
|
|
10
|
+
const tslib_1 = require("tslib");
|
|
11
|
+
// This file isn't used by index.ts. It's used by update.mjs and tests. It's
|
|
12
|
+
// only here so that (a) we get a partially typed infrastructure (although the
|
|
13
|
+
// update script has ts-check anyways) (b) the test coverage isn't destroyed by
|
|
14
|
+
// the untested update.mjs file (c) we can ergonomically import the util
|
|
15
|
+
// functions in the Jest test without using `await import`
|
|
16
|
+
const path_1 = tslib_1.__importDefault(require("path"));
|
|
17
|
+
const fs_extra_1 = tslib_1.__importDefault(require("fs-extra"));
|
|
18
|
+
// Unsafe import, should we create a package for the translationsExtractor ?;
|
|
19
|
+
const translationsExtractor_1 = require("@docusaurus/core/lib/server/translations/translationsExtractor");
|
|
20
|
+
async function getPackageCodePath(packageName) {
|
|
21
|
+
const packagePath = path_1.default.join(__dirname, '../..', packageName);
|
|
22
|
+
const packageJsonPath = path_1.default.join(packagePath, 'package.json');
|
|
23
|
+
const { main } = await fs_extra_1.default.readJSON(packageJsonPath);
|
|
24
|
+
const packageSrcPath = path_1.default.join(packagePath, path_1.default.dirname(main));
|
|
25
|
+
const packageLibNextPath = packageSrcPath.replace('lib', 'lib-next');
|
|
26
|
+
return (await fs_extra_1.default.pathExists(packageLibNextPath))
|
|
27
|
+
? packageLibNextPath
|
|
28
|
+
: packageSrcPath;
|
|
29
|
+
}
|
|
30
|
+
async function getThemes() {
|
|
31
|
+
return [
|
|
32
|
+
{
|
|
33
|
+
name: 'theme-common',
|
|
34
|
+
src: [
|
|
35
|
+
await getPackageCodePath('docusaurus-theme-classic'),
|
|
36
|
+
await getPackageCodePath('docusaurus-theme-common'),
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'theme-search-algolia',
|
|
41
|
+
src: [await getPackageCodePath('docusaurus-theme-search-algolia')],
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'theme-live-codeblock',
|
|
45
|
+
src: [await getPackageCodePath('docusaurus-theme-live-codeblock')],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'plugin-pwa',
|
|
49
|
+
src: [await getPackageCodePath('docusaurus-plugin-pwa')],
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'plugin-ideal-image',
|
|
53
|
+
src: [await getPackageCodePath('docusaurus-plugin-ideal-image')],
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
}
|
|
57
|
+
exports.getThemes = getThemes;
|
|
58
|
+
async function extractThemeCodeMessages(targetDirs) {
|
|
59
|
+
// eslint-disable-next-line no-param-reassign
|
|
60
|
+
targetDirs ?? (targetDirs = (await getThemes()).flatMap((theme) => theme.src));
|
|
61
|
+
const filePaths = (await (0, translationsExtractor_1.globSourceCodeFilePaths)(targetDirs)).filter((filePath) => ['.js', '.jsx'].includes(path_1.default.extname(filePath)));
|
|
62
|
+
const filesExtractedTranslations = await (0, translationsExtractor_1.extractAllSourceCodeFileTranslations)(filePaths, {
|
|
63
|
+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
|
|
64
|
+
});
|
|
65
|
+
filesExtractedTranslations.forEach((fileExtractedTranslations) => {
|
|
66
|
+
if (fileExtractedTranslations.warnings.length > 0) {
|
|
67
|
+
throw new Error(`
|
|
68
|
+
Please make sure all theme translations are static!
|
|
69
|
+
Some warnings were found!
|
|
70
|
+
|
|
71
|
+
${fileExtractedTranslations.warnings.join('\n\n')}
|
|
72
|
+
`);
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
const translations = filesExtractedTranslations.reduce((acc, extractedTranslations) => ({
|
|
76
|
+
...acc,
|
|
77
|
+
...extractedTranslations.translations,
|
|
78
|
+
}), {});
|
|
79
|
+
return translations;
|
|
80
|
+
}
|
|
81
|
+
exports.extractThemeCodeMessages = extractThemeCodeMessages;
|
|
82
|
+
//# sourceMappingURL=utils.js.map
|
package/lib/utils.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "تم النسخ",
|
|
5
5
|
"theme.CodeBlock.copy": "نسخ",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "نسخ الرمز إلى الحافظة",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "أحدث مشاركات المدونة",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} موسومة ب \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "تعديل هذه الصفحة",
|
|
32
33
|
"theme.common.headingLinkTitle": "ارتباط مباشر بالعنوان",
|
|
33
34
|
"theme.common.skipToMainContent": "انتقل إلى المحتوى الرئيسي",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "التنقل بين صفحات الددات",
|
|
36
39
|
"theme.docs.paginator.next": "التالى",
|
|
37
40
|
"theme.docs.paginator.previous": "السابق",
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
"theme.CodeBlock.copy___DESCRIPTION": "The copy button label on code blocks",
|
|
10
10
|
"theme.CodeBlock.copyButtonAriaLabel": "Copy code to clipboard",
|
|
11
11
|
"theme.CodeBlock.copyButtonAriaLabel___DESCRIPTION": "The ARIA label for copy code blocks button",
|
|
12
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
13
|
+
"theme.CodeBlock.wordWrapToggle___DESCRIPTION": "The title attribute for toggle word wrapping button of code block lines",
|
|
12
14
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
13
15
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel___DESCRIPTION": "The ARIA label to toggle the collapsible sidebar category",
|
|
14
16
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
@@ -53,10 +55,10 @@
|
|
|
53
55
|
"theme.blog.tagTitle___DESCRIPTION": "The title of the page for a blog tag",
|
|
54
56
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
55
57
|
"theme.colorToggle.ariaLabel___DESCRIPTION": "The ARIA label for the navbar color mode toggle",
|
|
56
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
57
|
-
"theme.colorToggle.ariaLabel.mode.light___DESCRIPTION": "The name for the light color mode",
|
|
58
58
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
59
59
|
"theme.colorToggle.ariaLabel.mode.dark___DESCRIPTION": "The name for the dark color mode",
|
|
60
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
61
|
+
"theme.colorToggle.ariaLabel.mode.light___DESCRIPTION": "The name for the light color mode",
|
|
60
62
|
"theme.common.editThisPage": "Edit this page",
|
|
61
63
|
"theme.common.editThisPage___DESCRIPTION": "The link label to edit the current page",
|
|
62
64
|
"theme.common.headingLinkTitle": "Direct link to heading",
|
|
@@ -65,6 +67,10 @@
|
|
|
65
67
|
"theme.common.skipToMainContent___DESCRIPTION": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation",
|
|
66
68
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
67
69
|
"theme.docs.DocCard.categoryDescription___DESCRIPTION": "The default description for a category card in the generated index about how many items this category includes",
|
|
70
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
71
|
+
"theme.docs.breadcrumbs.home___DESCRIPTION": "The ARIA label for the home page in the breadcrumbs",
|
|
72
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
73
|
+
"theme.docs.breadcrumbs.navAriaLabel___DESCRIPTION": "The ARIA label for the breadcrumbs",
|
|
68
74
|
"theme.docs.paginator.navAriaLabel": "Docs pages navigation",
|
|
69
75
|
"theme.docs.paginator.navAriaLabel___DESCRIPTION": "The ARIA label for the docs pagination",
|
|
70
76
|
"theme.docs.paginator.next": "Next",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "কপিড",
|
|
5
5
|
"theme.CodeBlock.copy": "কপি",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "ক্লিপবোর্ডে কোড কপি করুন",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "সাম্প্রতিক ব্লগ পোস্ট নেভিগেশন",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} সঙ্গে ট্যাগ্গেড \"{tagName}\" ",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "এই পেজটি এডিট করুন",
|
|
32
33
|
"theme.common.headingLinkTitle": "হেডিং এর সঙ্গে সরাসরি লিংকড",
|
|
33
34
|
"theme.common.skipToMainContent": "স্কিপ করে মূল কন্টেন্ট এ যান",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "ডক্স পৃষ্টাগুলির নেভিগেশন",
|
|
36
39
|
"theme.docs.paginator.next": "পরবর্তী",
|
|
37
40
|
"theme.docs.paginator.previous": "পূর্ববর্তী",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Zkopírováno",
|
|
5
5
|
"theme.CodeBlock.copy": "Zkopírovat",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Zkopírovat kód do schránky",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Navigace s aktuálními články na blogu",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} s tagem \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "Upravit tuto stránku",
|
|
32
33
|
"theme.common.headingLinkTitle": "Přímý odkaz na nadpis",
|
|
33
34
|
"theme.common.skipToMainContent": "Přeskočit na hlavní obsah",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Stránkování dokumentace",
|
|
36
39
|
"theme.docs.paginator.next": "Další",
|
|
37
40
|
"theme.docs.paginator.previous": "Předchozí",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"theme.SearchBar.label": "Hledat",
|
|
3
3
|
"theme.SearchBar.seeAll": "See all {count} results",
|
|
4
4
|
"theme.SearchPage.algoliaLabel": "Vyhledávání od Algolia",
|
|
5
|
-
"theme.SearchPage.documentsFound.plurals": "Jeden dokument nalezen|{count} dokumenty nalezeny
|
|
5
|
+
"theme.SearchPage.documentsFound.plurals": "Jeden dokument nalezen|{count} dokumenty nalezeny|{count} dokumentů nalezeno",
|
|
6
6
|
"theme.SearchPage.emptyResultsTitle": "Prohledat dokumentaci",
|
|
7
7
|
"theme.SearchPage.existingResultsTitle": "Výsledky vyhledávání pro \"{query}\"",
|
|
8
8
|
"theme.SearchPage.fetchingNewResults": "Stahuji nové výsledky...",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Kopieret",
|
|
5
5
|
"theme.CodeBlock.copy": "Kopier",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Kopier kode til udklipsholder",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} med følgende tag \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "Rediger denne side",
|
|
32
33
|
"theme.common.headingLinkTitle": "Direkte link til overskrift",
|
|
33
34
|
"theme.common.skipToMainContent": "Hop til hovedindhold",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Dokumentside navigation",
|
|
36
39
|
"theme.docs.paginator.next": "Næste",
|
|
37
40
|
"theme.docs.paginator.previous": "Tidligere",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"theme.IdealImageMessage.404error": "404.
|
|
3
|
-
"theme.IdealImageMessage.error": "
|
|
4
|
-
"theme.IdealImageMessage.load": "
|
|
5
|
-
"theme.IdealImageMessage.loading": "
|
|
6
|
-
"theme.IdealImageMessage.offline": "
|
|
2
|
+
"theme.IdealImageMessage.404error": "404. Bild nicht gefunden.",
|
|
3
|
+
"theme.IdealImageMessage.error": "Fehler. Zum neu laden klicken",
|
|
4
|
+
"theme.IdealImageMessage.load": "Zum Laden klicken {sizeMessage}",
|
|
5
|
+
"theme.IdealImageMessage.loading": "Wird geladen...",
|
|
6
|
+
"theme.IdealImageMessage.offline": "Browser ist offline. Bild nicht geladen"
|
|
7
7
|
}
|
|
@@ -4,15 +4,16 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Kopiert",
|
|
5
5
|
"theme.CodeBlock.copy": "Kopieren",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "In die Zwischenablage kopieren",
|
|
7
|
-
"theme.
|
|
8
|
-
"theme.
|
|
9
|
-
"theme.ErrorPageContent.
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
8
|
+
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Umschalten der Seitenleiste mit einklappbarer Kategorie '{label}'",
|
|
9
|
+
"theme.ErrorPageContent.title": "Die Seite ist abgestürzt.",
|
|
10
|
+
"theme.ErrorPageContent.tryAgain": "Nochmal versuchen",
|
|
10
11
|
"theme.NotFound.p1": "Wir konnten nicht finden, wonach Sie gesucht haben.",
|
|
11
12
|
"theme.NotFound.p2": "Bitte kontaktieren Sie den Besitzer der Seite, die Sie mit der ursprünglichen URL verlinkt hat, und teilen Sie ihm mit, dass der Link nicht mehr funktioniert.",
|
|
12
13
|
"theme.NotFound.title": "Seite nicht gefunden",
|
|
13
14
|
"theme.TOCCollapsible.toggleButtonLabel": "Auf dieser Seite",
|
|
14
|
-
"theme.blog.archive.description": "
|
|
15
|
-
"theme.blog.archive.title": "
|
|
15
|
+
"theme.blog.archive.description": "Archiv",
|
|
16
|
+
"theme.blog.archive.title": "Archiv",
|
|
16
17
|
"theme.blog.paginator.navAriaLabel": "Navigation der Blog-Listenseite",
|
|
17
18
|
"theme.blog.paginator.newerEntries": "Neuere Einträge",
|
|
18
19
|
"theme.blog.paginator.olderEntries": "Ältere Einträge",
|
|
@@ -21,17 +22,19 @@
|
|
|
21
22
|
"theme.blog.post.paginator.olderPost": "Älterer Post",
|
|
22
23
|
"theme.blog.post.plurals": "Ein Post|{count} Posts",
|
|
23
24
|
"theme.blog.post.readMore": "Mehr lesen",
|
|
24
|
-
"theme.blog.post.readMoreLabel": "
|
|
25
|
+
"theme.blog.post.readMoreLabel": "Mehr lesen über {title}",
|
|
25
26
|
"theme.blog.post.readingTime.plurals": "Eine Minute Lesezeit|{readingTime} Minuten Lesezeit",
|
|
26
|
-
"theme.blog.sidebar.navAriaLabel": "
|
|
27
|
+
"theme.blog.sidebar.navAriaLabel": "Navigation der letzten Beiträge im Blog",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} getaggt mit \"{tagName}\"",
|
|
28
|
-
"theme.colorToggle.ariaLabel": "
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.
|
|
30
|
-
"theme.colorToggle.ariaLabel.mode.
|
|
29
|
+
"theme.colorToggle.ariaLabel": "Umschalten zwischen dunkler und heller Ansicht (momentan {mode})",
|
|
30
|
+
"theme.colorToggle.ariaLabel.mode.dark": "dunkler Modus",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "heller Modus",
|
|
31
32
|
"theme.common.editThisPage": "Diese Seite bearbeiten",
|
|
32
33
|
"theme.common.headingLinkTitle": "Direkter Link zur Überschrift",
|
|
33
34
|
"theme.common.skipToMainContent": "Zum Hauptinhalt springen",
|
|
34
|
-
"theme.docs.DocCard.categoryDescription": "{count}
|
|
35
|
+
"theme.docs.DocCard.categoryDescription": "{count} Einträge",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Dokumentation Seiten Navigation",
|
|
36
39
|
"theme.docs.paginator.next": "Weiter",
|
|
37
40
|
"theme.docs.paginator.previous": "Zurück",
|
|
@@ -39,8 +42,8 @@
|
|
|
39
42
|
"theme.docs.sidebar.collapseButtonTitle": "Seitenleiste einklappen",
|
|
40
43
|
"theme.docs.sidebar.expandButtonAriaLabel": "Seitenleiste ausklappen",
|
|
41
44
|
"theme.docs.sidebar.expandButtonTitle": "Seitenleiste ausklappen",
|
|
42
|
-
"theme.docs.tagDocListPageTitle": "{nDocsTagged}
|
|
43
|
-
"theme.docs.tagDocListPageTitle.nDocsTagged": "
|
|
45
|
+
"theme.docs.tagDocListPageTitle": "{nDocsTagged} mit \"{tagName}\"",
|
|
46
|
+
"theme.docs.tagDocListPageTitle.nDocsTagged": "Ein doc getaggt|{count} docs getaggt",
|
|
44
47
|
"theme.docs.versionBadge.label": "Version: {versionLabel}",
|
|
45
48
|
"theme.docs.versions.latestVersionLinkLabel": "letzte Version",
|
|
46
49
|
"theme.docs.versions.latestVersionSuggestionLabel": "Für die aktuellste Dokumentation bitte auf {latestVersionLink} ({versionLabel}) gehen.",
|
|
@@ -49,9 +52,9 @@
|
|
|
49
52
|
"theme.lastUpdated.atDate": " am {date}",
|
|
50
53
|
"theme.lastUpdated.byUser": " von {user}",
|
|
51
54
|
"theme.lastUpdated.lastUpdatedAtBy": "Letztes Update{atDate}{byUser}",
|
|
52
|
-
"theme.navbar.mobileLanguageDropdown.label": "
|
|
55
|
+
"theme.navbar.mobileLanguageDropdown.label": "Sprachen",
|
|
53
56
|
"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": "← Zurück zum Hauptmenü",
|
|
54
|
-
"theme.navbar.mobileVersionsDropdown.label": "
|
|
57
|
+
"theme.navbar.mobileVersionsDropdown.label": "Versionen",
|
|
55
58
|
"theme.tags.tagsListLabel": "Tags:",
|
|
56
59
|
"theme.tags.tagsPageLink": "Alle Tags anzeigen",
|
|
57
60
|
"theme.tags.tagsPageTitle": "Tags"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"theme.SearchBar.label": "Suche",
|
|
3
|
-
"theme.SearchBar.seeAll": "
|
|
3
|
+
"theme.SearchBar.seeAll": "Alle {count} Ergebnisse anzeigen",
|
|
4
4
|
"theme.SearchPage.algoliaLabel": "Suche von Algolia",
|
|
5
5
|
"theme.SearchPage.documentsFound.plurals": "Ein Dokument gefunden|{count} Dokumente gefunden",
|
|
6
6
|
"theme.SearchPage.emptyResultsTitle": "Suche in der Dokumentation",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Copiado",
|
|
5
5
|
"theme.CodeBlock.copy": "Copiar",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Copiar código al portapapeles",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Navegación de publicaciones recientes",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} etiquetados con \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "Editar esta página",
|
|
32
33
|
"theme.common.headingLinkTitle": "Enlace directo al encabezado",
|
|
33
34
|
"theme.common.skipToMainContent": "Saltar al contenido principal",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Navegación de páginas de documentos",
|
|
36
39
|
"theme.docs.paginator.next": "Siguiente",
|
|
37
40
|
"theme.docs.paginator.previous": "Anterior",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "کپی شد",
|
|
5
5
|
"theme.CodeBlock.copy": "کپی",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "کپی به کلیپ بورد",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "کنترل پست های اخیر وبلاگ",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} با برچسب \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "ویرایش مطالب این صفحه",
|
|
32
33
|
"theme.common.headingLinkTitle": "لینک مستقیم به عنوان",
|
|
33
34
|
"theme.common.skipToMainContent": "پرش به مطلب اصلی",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "کنترل صفحات مطالب",
|
|
36
39
|
"theme.docs.paginator.next": "بعدی",
|
|
37
40
|
"theme.docs.paginator.previous": "قبلی",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Kinopya",
|
|
5
5
|
"theme.CodeBlock.copy": "Kopyahin",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Kopyahin ang code sa clipboard",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Blog recent posts navigation",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} na may tag na \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "I-edit ang page",
|
|
32
33
|
"theme.common.headingLinkTitle": "Direktang link patungo sa heading",
|
|
33
34
|
"theme.common.skipToMainContent": "Lumaktaw patungo sa pangunahing content",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Nabegasyón para sa mga pahinang docs.",
|
|
36
39
|
"theme.docs.paginator.next": "Sumunod",
|
|
37
40
|
"theme.docs.paginator.previous": "Naraaan",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Copié",
|
|
5
5
|
"theme.CodeBlock.copy": "Copier",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Copier le code",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Basculer le retour à la ligne",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "Cette page a planté.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Réessayer",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Navigation article de blog récent",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} tagués avec « {tagName} »",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "Éditer cette page",
|
|
32
33
|
"theme.common.headingLinkTitle": "Lien direct vers le titre",
|
|
33
34
|
"theme.common.skipToMainContent": "Aller au contenu principal",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Page d'accueil",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Fil d'Ariane",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Pagination des documents",
|
|
36
39
|
"theme.docs.paginator.next": "Suivant",
|
|
37
40
|
"theme.docs.paginator.previous": "Précédent",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "הועתק",
|
|
5
5
|
"theme.CodeBlock.copy": "העתק",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "העתק קוד ללוח העריכה",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "מעבר לרשומות אחרונות בבלוג",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} עם התגית \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "ערוך דף זה",
|
|
32
33
|
"theme.common.headingLinkTitle": "קישור ישיר לכותרת",
|
|
33
34
|
"theme.common.skipToMainContent": "דלג לתוכן הראשי",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "רשימת דוקומנטאציה",
|
|
36
39
|
"theme.docs.paginator.next": "הבא",
|
|
37
40
|
"theme.docs.paginator.previous": "הקודם",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "कॉपीड",
|
|
5
5
|
"theme.CodeBlock.copy": "कॉपी",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "क्लिपबोर्ड पर कोड कॉपी करें",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Toggle the collapsible sidebar category '{label}'",
|
|
8
9
|
"theme.ErrorPageContent.title": "This page crashed.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Try again",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "नया ब्लॉग पोस्ट नेविगेशन",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} पोस्ट \"{tagName}\" टैग के साथ",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "इस पेज को बदलें",
|
|
32
33
|
"theme.common.headingLinkTitle": "शीर्षक का सीधा लिंक",
|
|
33
34
|
"theme.common.skipToMainContent": "मुख्य कंटेंट तक स्किप करें",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "डॉक्स पेज नेविगेशन",
|
|
36
39
|
"theme.docs.paginator.next": "अगला",
|
|
37
40
|
"theme.docs.paginator.previous": "पिछ्ला",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"theme.CodeBlock.copied": "Copiato",
|
|
5
5
|
"theme.CodeBlock.copy": "Copia",
|
|
6
6
|
"theme.CodeBlock.copyButtonAriaLabel": "Copia il codice negli appunti",
|
|
7
|
+
"theme.CodeBlock.wordWrapToggle": "Toggle word wrap",
|
|
7
8
|
"theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": "Attiva/disattiva la categoria '{label}' della barra laterale collassabile",
|
|
8
9
|
"theme.ErrorPageContent.title": "Questa pagina è andata in crash.",
|
|
9
10
|
"theme.ErrorPageContent.tryAgain": "Prova di nuovo",
|
|
@@ -26,12 +27,14 @@
|
|
|
26
27
|
"theme.blog.sidebar.navAriaLabel": "Navigazione dei post recenti del blog",
|
|
27
28
|
"theme.blog.tagTitle": "{nPosts} etichettati con \"{tagName}\"",
|
|
28
29
|
"theme.colorToggle.ariaLabel": "Switch between dark and light mode (currently {mode})",
|
|
29
|
-
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
30
30
|
"theme.colorToggle.ariaLabel.mode.dark": "dark mode",
|
|
31
|
+
"theme.colorToggle.ariaLabel.mode.light": "light mode",
|
|
31
32
|
"theme.common.editThisPage": "Modifica questa pagina",
|
|
32
33
|
"theme.common.headingLinkTitle": "Link diretto all'intestazione",
|
|
33
34
|
"theme.common.skipToMainContent": "Passa al contenuto principale",
|
|
34
35
|
"theme.docs.DocCard.categoryDescription": "{count} items",
|
|
36
|
+
"theme.docs.breadcrumbs.home": "Home page",
|
|
37
|
+
"theme.docs.breadcrumbs.navAriaLabel": "Breadcrumbs",
|
|
35
38
|
"theme.docs.paginator.navAriaLabel": "Navigazione delle pagine dei documenti",
|
|
36
39
|
"theme.docs.paginator.next": "Successivo",
|
|
37
40
|
"theme.docs.paginator.previous": "Precedente",
|