From 2f6c38bbde106b3e551e08cc28b17d9c62f42015 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期五, 26 八月 2022 16:48:51 +0800
Subject: [PATCH] nothing

---
 VueWebApi/obj/Release/Package/PackageTmp/Scripts/swagger_lang.js |   95 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/VueWebApi/obj/Release/Package/PackageTmp/Scripts/swagger_lang.js b/VueWebApi/obj/Release/Package/PackageTmp/Scripts/swagger_lang.js
new file mode 100644
index 0000000..35e2584
--- /dev/null
+++ b/VueWebApi/obj/Release/Package/PackageTmp/Scripts/swagger_lang.js
@@ -0,0 +1,95 @@
+锘�'use strict';
+
+/** 
+ * Translator for documentation pages. 
+ * 
+ * To enable translation you should include one of language-files in your index.html 
+ * after <script src='lang/translator.js' type='text/javascript'></script>. 
+ * For example - <script src='lang/ru.js' type='text/javascript'></script> 
+ * 
+ * If you wish to translate some new texsts you should do two things: 
+ * 1. Add a new phrase pair ("New Phrase": "New Translation") into your language file (for example lang/ru.js). It will be great if you add it in other language files too. 
+ * 2. Mark that text it templates this way <anyHtmlTag data-sw-translate>New Phrase</anyHtmlTag> or <anyHtmlTag data-sw-translate value='New Phrase'/>. 
+ * The main thing here is attribute data-sw-translate. Only inner html, title-attribute and value-attribute are going to translate. 
+ * 
+ */
+window.SwaggerTranslator = {
+    _words: [],
+
+    translate: function () {
+        var $this = this;
+        $('[data-sw-translate]').each(function () {
+            $(this).html($this._tryTranslate($(this).html()));
+            $(this).val($this._tryTranslate($(this).val()));
+            $(this).attr('title', $this._tryTranslate($(this).attr('title')));
+        });
+    },
+
+    _tryTranslate: function (word) {
+        return this._words[$.trim(word)] !== undefined ? this._words[$.trim(word)] : word;
+    },
+
+    learn: function (wordsMap) {
+        this._words = wordsMap;
+    }
+};
+
+
+/* jshint quotmark: double */
+window.SwaggerTranslator.learn({
+    "Warning: Deprecated": "璀﹀憡锛氬凡杩囨椂",
+    "Implementation Notes": "瀹炵幇澶囨敞",
+    "Response Class": "鍝嶅簲绫�",
+    "Status": "鐘舵��",
+    "Parameters": "鍙傛暟",
+    "Parameter": "鍙傛暟",
+    "Value": "鍊�",
+    "Description": "鎻忚堪",
+    "Parameter Type": "鍙傛暟绫诲瀷",
+    "Data Type": "鏁版嵁绫诲瀷",
+    "Response Messages": "鍝嶅簲娑堟伅",
+    "HTTP Status Code": "HTTP鐘舵�佺爜",
+    "Reason": "鍘熷洜",
+    "Response Model": "鍝嶅簲妯″瀷",
+    "Request URL": "璇锋眰URL",
+    "Response Body": "鍝嶅簲浣�",
+    "Response Code": "鍝嶅簲鐮�",
+    "Response Headers": "鍝嶅簲澶�",
+    "Hide Response": "闅愯棌鍝嶅簲",
+    "Headers": "澶�",
+    "Try it out!": "璇曚竴涓嬶紒",
+    "Show/Hide": "鏄剧ず/闅愯棌",
+    "List Operations": "鏄剧ず鎿嶄綔",
+    "Expand Operations": "灞曞紑鎿嶄綔",
+    "Raw": "鍘熷",
+    "can't parse JSON.  Raw result": "鏃犳硶瑙f瀽JSON. 鍘熷缁撴灉",
+    "Model Schema": "妯″瀷鏋舵瀯",
+    "Model": "妯″瀷",
+    "apply": "搴旂敤",
+    "Username": "鐢ㄦ埛鍚�",
+    "Password": "瀵嗙爜",
+    "Terms of service": "鏈嶅姟鏉℃",
+    "Created by": "鍒涘缓鑰�",
+    "See more at": "鏌ョ湅鏇村锛�",
+    "Contact the developer": "鑱旂郴寮�鍙戣��",
+    "api version": "api鐗堟湰",
+    "Response Content Type": "鍝嶅簲Content Type",
+    "fetching resource": "姝e湪鑾峰彇璧勬簮",
+    "fetching resource list": "姝e湪鑾峰彇璧勬簮鍒楄〃",
+    "Explore": "娴忚",
+    "Show Swagger Petstore Example Apis": "鏄剧ず Swagger Petstore 绀轰緥 Apis",
+    "Can't read from server.  It may not have the appropriate access-control-origin settings.": "鏃犳硶浠庢湇鍔″櫒璇诲彇銆傚彲鑳芥病鏈夋纭缃產ccess-control-origin銆�",
+    "Please specify the protocol for": "璇锋寚瀹氬崗璁細",
+    "Can't read swagger JSON from": "鏃犳硶璇诲彇swagger JSON浜�",
+    "Finished Loading Resource Information. Rendering Swagger UI": "宸插姞杞借祫婧愪俊鎭�傛鍦ㄦ覆鏌揝wagger UI",
+    "Unable to read api": "鏃犳硶璇诲彇api",
+    "from path": "浠庤矾寰�",
+    "server returned": "鏈嶅姟鍣ㄨ繑鍥�"
+});
+
+
+$(function () {
+    window.SwaggerTranslator.translate();
+});
+
+swagger_lang_cn.js
\ No newline at end of file

--
Gitblit v1.9.3