diff --git a/templates/default(zh-cn)/token.json b/templates/default(zh-cn)/token.json
index d208971bcf9..42e1330a7a1 100644
--- a/templates/default(zh-cn)/token.json
+++ b/templates/default(zh-cn)/token.json
@@ -11,7 +11,7 @@
"eventsInSubtitle": "事件",
"operatorsInSubtitle": "运算符",
"eiisInSubtitle": "显示接口实现",
- "improveThisDoc": "改善此文档",
+ "improveThisDoc": "编辑本文",
"viewSource": "查看源代码",
"inheritance": "继承",
"inheritedMembers": "继承成员",
@@ -42,12 +42,20 @@
"important": "重要事项",
"caution": "小心",
"tocToggleButton": "显示/隐藏目录",
- "tocFilter": "按标题筛选...",
+ "tocFilter": "按标题筛选",
"search": "搜索",
"searchResults": "搜索结果",
+ "searchResultsCount": "找到{count}个“{query}”的搜索结果",
+ "searchNoResults": "没有找到“{query}”的搜索结果",
"pageFirst": "首页",
"pagePrev": "上一页",
"pageNext": "下一页",
"pageLast": "尾页",
- "inThisArticle": "本文内容"
+ "inThisArticle": "本文内容",
+ "nextArticle": "下一篇",
+ "prevArticle": "上一篇",
+ "themeLight": "白天",
+ "themeDark": "夜晚",
+ "themeAuto": "自动",
+ "copy": "复制"
}
diff --git a/templates/default/token.json b/templates/default/token.json
index c0fc6c3dda2..6e9e72cb863 100644
--- a/templates/default/token.json
+++ b/templates/default/token.json
@@ -16,7 +16,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -51,13 +51,21 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
- "inThisArticle": "In This Article",
- "backToTop": "Back to top"
+ "inThisArticle": "In this article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
+ "backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy"
}
diff --git a/templates/modern/layout/_master.tmpl b/templates/modern/layout/_master.tmpl
index acb86cc9f3f..ce60ba3adb3 100644
--- a/templates/modern/layout/_master.tmpl
+++ b/templates/modern/layout/_master.tmpl
@@ -25,6 +25,16 @@
{{#_disableNewTab}}{{/_disableNewTab}}
{{#_disableTocFilter}}{{/_disableTocFilter}}
{{#docurl}}{{/docurl}}
+
+
+
+
+
+
+
+
+
+
{{/redirect_url}}
@@ -106,10 +116,10 @@
{{^_disableContribution}}
{{/_disableContribution}}
diff --git a/templates/modern/src/helper.ts b/templates/modern/src/helper.ts
index 78e95f79865..fffb093a98d 100644
--- a/templates/modern/src/helper.ts
+++ b/templates/modern/src/helper.ts
@@ -10,6 +10,21 @@ export function meta(name: string): string {
return (document.querySelector(`meta[name="${name}"]`) as HTMLMetaElement)?.content
}
+/**
+ * Gets the localized text.
+ * @param id key in token.json
+ * @param args arguments to replace in the localized text
+ */
+export function loc(id: string, args?: any): string {
+ let result = meta(`loc:${id}`) || id
+ if (args) {
+ for (const key in args) {
+ result = result.replace(`{${key}}`, args[key])
+ }
+ }
+ return result
+}
+
/**
* Add into long word.
*/
diff --git a/templates/modern/src/markdown.ts b/templates/modern/src/markdown.ts
index 1ff54830637..4dfc0e1f565 100644
--- a/templates/modern/src/markdown.ts
+++ b/templates/modern/src/markdown.ts
@@ -1,7 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-import { breakWord, meta } from './helper'
+import { breakWord, meta, loc } from './helper'
import AnchorJs from 'anchor-js'
import { html, render } from 'lit-html'
import { getTheme } from './theme'
@@ -186,7 +186,7 @@ function renderCodeCopy() {
function renderCore() {
const dom = copied
? html``
- : html``
+ : html``
render(dom, code.parentElement)
async function copy(e) {
diff --git a/templates/modern/src/nav.ts b/templates/modern/src/nav.ts
index 45ca72ba75b..4fc6267ab4a 100644
--- a/templates/modern/src/nav.ts
+++ b/templates/modern/src/nav.ts
@@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
import { render, html, TemplateResult } from 'lit-html'
-import { breakWordLit, meta, isExternalHref } from './helper'
+import { breakWordLit, meta, isExternalHref, loc } from './helper'
import { themePicker } from './theme'
import { TocNode } from './toc'
@@ -105,7 +105,7 @@ function inThisArticleForConceptual() {
const headings = document.querySelectorAll('article h2')
if (headings.length > 0) {
return html`
- In this article
+ ${loc('inThisArticle')}
`
}
}
@@ -116,7 +116,7 @@ function inThisArticleForManagedReference(): TemplateResult {
if (headings.length > 0) {
return html`
- In this article
+ ${loc('inThisArticle')}
${headings.map(h => {
return h.tagName === 'H2'
? html`${breakWordLit(h.innerText)}
`
diff --git a/templates/modern/src/search.ts b/templates/modern/src/search.ts
index acf84cb8479..43ba3cce7a5 100644
--- a/templates/modern/src/search.ts
+++ b/templates/modern/src/search.ts
@@ -1,7 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-import { meta } from './helper'
+import { loc, meta } from './helper'
import { html, render, TemplateResult } from 'lit-html'
import { classMap } from 'lit-html/directives/class-map.js'
@@ -84,14 +84,14 @@ export function enableSearch() {
function renderPage(page: number): TemplateResult {
if (hits.length === 0) {
- return html`No results for "${query}"
`
+ return html`${loc('searchNoResults', { query })}
`
}
const start = page * numPerPage
const curHits = hits.slice(start, start + numPerPage)
const items = html`
- ${hits.length} results for "${query}"
+ ${loc("searchResultsCount", { count: hits.length, query })}
${curHits.map(hit => {
const currentUrl = window.location.href
const itemRawHref = relativeUrlToAbsoluteUrl(currentUrl, relHref + hit.href)
diff --git a/templates/modern/src/theme.ts b/templates/modern/src/theme.ts
index ea1ec88f238..e82e244d217 100644
--- a/templates/modern/src/theme.ts
+++ b/templates/modern/src/theme.ts
@@ -3,6 +3,7 @@
import { html } from 'lit-html'
import { Theme } from './options'
+import { loc } from './helper'
function setTheme(theme: Theme) {
localStorage.setItem('theme', theme)
@@ -35,9 +36,9 @@ export function themePicker(refresh: () => void) {
`
diff --git a/templates/modern/src/toc.ts b/templates/modern/src/toc.ts
index 7f8d993007a..1bd98e22671 100644
--- a/templates/modern/src/toc.ts
+++ b/templates/modern/src/toc.ts
@@ -3,7 +3,7 @@
import { TemplateResult, html, render } from 'lit-html'
import { classMap } from 'lit-html/directives/class-map.js'
-import { breakWordLit, meta, isExternalHref } from './helper'
+import { breakWordLit, meta, isExternalHref, loc } from './helper'
export type TocNode = {
name: string
@@ -132,7 +132,7 @@ export async function renderToc(): Promise {
: html`
`
function filterToc(e: Event) {
@@ -143,7 +143,7 @@ export async function renderToc(): Promise {
}
function renderNoFilterResult(): TemplateResult {
- return tocFilter === '' ? null : html`No results for "${tocFilter}"
`
+ return tocFilter === '' ? null : html`${loc('searchNoResults', { query: tocFilter })}
`
}
function normalizeUrlPath(url: { pathname: string }): string {
@@ -165,8 +165,8 @@ function renderNextArticle(items: TocNode[], node: TocNode) {
return
}
- const prevButton = prev ? html`` : null
- const nextButton = next ? html`` : null
+ const prevButton = prev ? html`` : null
+ const nextButton = next ? html`` : null
render(html`${prevButton} ${nextButton}`, nextArticle)
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json
index b282810b260..02eb3fe929f 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json
@@ -1030,7 +1030,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1065,15 +1065,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json
index 1f61898628f..d349dceb41a 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json
@@ -758,7 +758,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -793,15 +793,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json
index f4ed2578875..ca20838b7a9 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json
@@ -1166,7 +1166,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1201,15 +1201,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json
index 9ac3ae4b2fd..ec99c45d3a4 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json
@@ -1390,7 +1390,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1425,15 +1425,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json
index f78663b262a..1a36e33ecd4 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json
@@ -1265,7 +1265,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1300,15 +1300,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json
index 3806c3a3467..bc0d3cb567b 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json
@@ -1164,7 +1164,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1199,15 +1199,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json
index 4b3eff1cc17..a6d9a2b0ee6 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.html.view.verified.json
@@ -483,7 +483,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -518,15 +518,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json
index 01cc8079832..9c80ed58c07 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json
@@ -4191,7 +4191,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -4226,15 +4226,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json
index 78894b1bb47..20587b0f1e3 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json
@@ -1165,7 +1165,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1200,15 +1200,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json
index bed71b66acd..80bb7125cce 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json
@@ -852,7 +852,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -887,15 +887,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json
index 9aace21dcff..b619d8bea3d 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json
@@ -457,7 +457,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -492,15 +492,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json
index f8d1c63aa42..c701fd74970 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json
@@ -1299,7 +1299,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1334,15 +1334,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json
index 3c819e44ac6..9baac4e2498 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json
@@ -617,7 +617,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -652,15 +652,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json
index e58848220b5..fdf6448b80a 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.html.view.verified.json
@@ -491,7 +491,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -526,15 +526,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json
index 696e3c11bf9..af2a7e54ccc 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json
@@ -361,7 +361,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -396,15 +396,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json
index 7a940b97cd5..798d50fdb71 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json
@@ -617,7 +617,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -652,15 +652,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json
index dbe414275f9..c4ef4b8cfef 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json
@@ -1000,7 +1000,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1035,15 +1035,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json
index 5cccf42ec58..7ed65ef6425 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json
@@ -790,7 +790,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -825,15 +825,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json
index c3337a1bf49..8bd23ac4c10 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json
@@ -941,7 +941,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -976,15 +976,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json
index f1782de86c4..4ec14d8f6a8 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json
@@ -2192,7 +2192,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -2227,15 +2227,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json
index a1ee4d26dee..a01ca87014f 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json
@@ -1182,7 +1182,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1217,15 +1217,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json
index 1482c2578b9..896021ea13e 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json
@@ -1422,7 +1422,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1457,15 +1457,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json
index 585d95c2a8f..39bf3ed5293 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.html.view.verified.json
@@ -613,7 +613,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -648,15 +648,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json
index b018ce941e8..3da77332d91 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json
@@ -1017,7 +1017,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1052,15 +1052,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json
index c9b8b53b26a..5b335089b97 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json
@@ -1165,7 +1165,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1200,15 +1200,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json
index 0e6d514a603..fa261c5eaf0 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json
@@ -895,7 +895,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -930,15 +930,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json
index b24f6c2f036..fde550aa7d4 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json
@@ -1283,7 +1283,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1318,15 +1318,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json
index 949627625f8..37ce02ace6f 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json
@@ -1326,7 +1326,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -1361,15 +1361,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json
index dc839c899e6..5e1a2df66de 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json
@@ -617,7 +617,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -652,15 +652,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json
index 8f30e363c6e..fc457143c02 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.html.view.verified.json
@@ -477,7 +477,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -512,15 +512,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json
index 58249169465..460ad4e5bc5 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/toc.html.view.verified.json
@@ -328,7 +328,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -363,15 +363,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"topicHref": null,
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json
index 8e817f2f5b0..7619f4d1d54 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json
@@ -301,7 +301,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -336,15 +336,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json
index ac22b6b677d..9358e43d52d 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json
@@ -234,7 +234,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -269,15 +269,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json
index 414a5cb802f..4681b555344 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json
@@ -346,7 +346,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -381,15 +381,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json
index 18988a77c19..a72fdc42e32 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json
@@ -348,7 +348,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -383,15 +383,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json
index 39ee259086d..8ee3522d707 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json
@@ -892,7 +892,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -927,15 +927,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.html.view.verified.json
index 96aeaab6223..b6a8f7e8a1e 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.html.view.verified.json
@@ -171,7 +171,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -206,15 +206,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"yamlmime": "ManagedReference",
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/toc.html.view.verified.json
index ed9bb407ec5..a805cf00045 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/toc.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/toc.html.view.verified.json
@@ -146,7 +146,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -181,15 +181,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"topicHref": null,
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json
index 90a28d1c51c..b1d57f54c9b 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json
@@ -62,7 +62,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -97,15 +97,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"_disableToc": true,
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/toc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/toc.html.view.verified.json
index 52bd2a740a7..056b28312a3 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/toc.html.view.verified.json
+++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/toc.html.view.verified.json
@@ -38,7 +38,7 @@
"variablesInSubtitle": "Variables",
"typeAliasesInSubtitle": "Type Aliases",
"membersInSubtitle": "Members",
- "improveThisDoc": "Improve this Doc",
+ "improveThisDoc": "Edit this page",
"viewSource": "View Source",
"inheritance": "Inheritance",
"derived": "Derived",
@@ -73,15 +73,23 @@
"important": "Important",
"caution": "Caution",
"tocToggleButton": "Show / Hide Table of Contents",
- "tocFilter": "Enter here to filter...",
+ "tocFilter": "Filter by title",
"search": "Search",
"searchResults": "Search Results for",
+ "searchResultsCount": "{count} results for \"{query}\"",
+ "searchNoResults": "No results for \"{query}\"",
"pageFirst": "First",
"pagePrev": "Previous",
"pageNext": "Next",
"pageLast": "Last",
"inThisArticle": "In This Article",
+ "nextArticle": "Next",
+ "prevArticle": "Previous",
"backToTop": "Back to top",
+ "themeLight": "Light",
+ "themeDark": "Dark",
+ "themeAuto": "Auto",
+ "copy": "Copy",
"_shared": {}
},
"topicHref": null,
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png
index c32b4136644..1a616411063 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png
+++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/1920x1080/api-CatLibrary.html-term-cat.verified.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:4130adb809a4b2dc35bd85f9cf904c1073334c8851238956c8737cb17b509b70
-size 188467
+oid sha256:0bdaaa8b960af7d32a7e8cecec1a4cbe202d2a3c98e4495f9d1619c347dc3861
+size 188581
diff --git a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-BuildFromProject.Class1.html.verified.html b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-BuildFromProject.Class1.html.verified.html
index 738e9cdaba9..7365131fe80 100644
--- a/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-BuildFromProject.Class1.html.verified.html
+++ b/test/docfx.Snapshot.Tests/SamplesTest.SeedHtml/html/api-BuildFromProject.Class1.html.verified.html
@@ -16,6 +16,16 @@
+
+
+
+
+
+
+
+
+
+