1: 중국어 리소스
먼저 Nop 공식 웹사이트로 이동하여 3.9 중국어 패키지를 다운로드하세요. 이 중국어 패키지는 완전히 번역되지 않았으며 사용자 정의 프로세스 중에 천천히 수정될 수 있습니다. 공식 홈페이지 주소 www.nopcommerce.com.
백엔드 구성 -> 언어
간체 중국어 레코드를 추가하고 저장한 후 중국어 패키지를 가져오고 페이지 상단에서 언어를 전환하세요.
두 가지: UI 중국어화
Libraries -> Nop.Core -> SetTelerikCulture() method
Nop.Admin -> -> 공유 -> _AdminLayout.cshtml
참조 추가
Html.AppendScriptParts(string.Format("~/Administration/Scripts/kendo/{0}/cultures/kendo.culture.zh-CN.min.js", kendoVersion)); Html.AppendScriptParts(string.Format("~/Administration/Scripts/kendo/{0}/cultures/kendo.messages.zh-CN.js", kendoVersion));
<script>kendo.culture("zh-CN");</script>
Three: Editor
개인적으로는 Baidu의 UEditor 리치 텍스트 편집 장치를 사용합니다. . UEditor 공식 홈페이지
Presentation -> Nop.Web -> 폴더에 uditor 폴더를 생성하고, 다운로드한 파일을 uditor 폴더에 복사하세요. 페이지 만들기 UEditor.cshtml
@model String @using Nop.Core @using Nop.Core.Domain.Common @using Nop.Services.Security @using Nop.Web.Framework.UI @{ Html.AddScriptParts("~/Content/ueditor/ueditor.config.js"); Html.AddScriptParts("~/Content/ueditor/ueditor.all.js"); Html.AddScriptParts("~/Content/ueditor/lang/zh-cn/zh-cn.js"); }<script>UE.getEditor("@ViewData.TemplateInfo.GetFullHtmlFieldId(string.Empty)", { initialFrameWidth: "100%",initialFrameHeight: 400});</script>@Html.TextArea(string.Empty, /* Name suffix */ViewData.TemplateInfo.FormattedModelValue /* Initial value */)백그라운드에서 편집기 호출
효과는 다음과 같습니다.
스타일, 파일 다운로드 경로 및 기타 구성에 대해 Api 문서로 이동하면 js에 해당 주석이 있습니다.
위 내용은 Nop3.9 다운로드 및 사용의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!