From d14372da1d4e3716b4968727fc807024412ea595 Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Sun, 24 Jun 2018 05:01:17 +0800 Subject: [PATCH] Add langwordMapping.yml --- docs/docfx.json | 4 +-- docs/langwordMapping.yml | 61 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 docs/langwordMapping.yml diff --git a/docs/docfx.json b/docs/docfx.json index 457763f8b..2a50869d6 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -29,7 +29,8 @@ "resource": [{ "files": [ "**/images/**", - "**/samples/**" + "**/samples/**", + "langwordMapping.yml" ] }], "dest": "_site", @@ -46,7 +47,6 @@ "_appFooter": "Discord.Net (c) 2015-2018 2.0.0-beta", "_enableSearch": true }, - "noLangKeyword": false, "xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ] diff --git a/docs/langwordMapping.yml b/docs/langwordMapping.yml new file mode 100644 index 000000000..9ddd00cab --- /dev/null +++ b/docs/langwordMapping.yml @@ -0,0 +1,61 @@ +references: +- uid: langword_csharp_null + name.csharp: "null" + name.vb: "Nothing" +- uid: langword_vb_Nothing + name.csharp: "null" + name.vb: "Nothing" +- uid: langword_csharp_static + name.csharp: static + name.vb: Shared +- uid: langword_vb_Shared + name.csharp: static + name.vb: Shared +- uid: langword_csharp_virtual + name.csharp: virtual + name.vb: Overridable +- uid: langword_vb_Overridable + name.csharp: virtual + name.vb: Overridable +- uid: langword_csharp_true + name.csharp: "true" + name.vb: "True" +- uid: langword_vb_True + name.csharp: "true" + name.vb: "True" +- uid: langword_csharp_false + name.csharp: "false" + name.vb: "False" +- uid: langword_vb_False + name.csharp: "false" + name.vb: "False" +- uid: langword_csharp_abstract + name.csharp: abstract + name.vb: MustInherit +- uid: langword_vb_MustInherit + name.csharp: abstract + name.vb: MustInherit +- uid: langword_csharp_sealed + name.csharp: sealed + name.vb: NotInheritable +- uid: langword_vb_NotInheritable + name.csharp: sealed + name.vb: NotInheritable +- uid: langword_csharp_async + name.csharp: async + name.vb: Async +- uid: langword_vb_Async + name.csharp: async + name.vb: Async +- uid: langword_csharp_await + name.csharp: await + name.vb: Await +- uid: langword_vb_Await + name.csharp: await + name.vb: Await +- uid: langword_csharp_async/await + name.csharp: async/await + name.vb: Async/Await +- uid: langword_vb_Async/Await + name.csharp: async/await + name.vb: Async/Await \ No newline at end of file