修改结构化日志和大小写敏感英文国际化

This commit is contained in:
duandongmei
2018-08-30 19:06:50 +08:00
parent f12aa08469
commit d661438afd
5 changed files with 82 additions and 14 deletions

View File

@@ -1046,9 +1046,9 @@ tunnel_name=Tunnel Behavior Name
tunnel_desc=Tunnel Behavior Description
call_external_procedures_failed=Call external procedures failed
is_hex=Is HEX
is_case_insenstive=Is Case-senstive
is_case_insenstive=Is Case-sensitive
case_senstive=Case-senstive
case_insenstive=Case-insenstive
case_insenstive=Case-insensitive
hex=Hex
not_hex=Not HEX
@@ -1086,7 +1086,7 @@ certificate=Certificate
do_log=Do Log
no_log=Not Do Log
all_log=Log All Logs
framework_log=Only Framework Logs
framework_log=Structured Logs
file_strategy=File Strategy
file_desc=File Desc
@@ -1130,4 +1130,6 @@ limit_rate_type=Limit Rate Type
business_type=Business Type
topic=Topic
website_server=Website Server
domain_existed=Domain Has Existed
domain_existed=Domain Has Existed
app_ssl_cert_feature_monit=APP SSL Cert Feature Monitoring
app_header_feature_monit=APP Header Feature Monitoring

View File

@@ -11,6 +11,18 @@
</style>
</head>
<c:if test="${fn:length(tabList)==0}">
<div id="NTC_UNIVERSAL_IPInfo${index}" class="content" name="subCfg${index}">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<spring:message code='no_data' />
</div>
</div>
</div>
</div>
</c:if>
<c:forEach items="${tabList}" var="region" varStatus="regionStatus">
<div id="${region[1]}Title${index}" onclick="switchSubCfgTabInfo('${region[1]}',${index})"
class="col-md-1 tabInfo" name="tabTitle${index }">
@@ -58,18 +70,72 @@
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code='whether_hexbinary' />:</label>
<label>
<c:forEach items="${fns:getDictList('WHETHER_HEXBINARY')}" var="isHexbinC">
<c:if test="${cfg.isHexbin==isHexbinC.itemCode }"><spring:message code="${isHexbinC.itemValue}"/></c:if>
</c:forEach>
</label>
<c:if test="${cfg.isHexbin==0 }">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_hex"/>:</label>
<label>
<spring:message code="not_hex"/>
</label>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_case_insenstive"/>:</label>
<label>
<spring:message code="case_insenstive"/>
</label>
</div>
</div>
</div>
</c:if>
<c:if test="${cfg.isHexbin==1 }">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_hex"/>:</label>
<label>
<spring:message code="hex"/>
</label>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_case_insenstive"/>:</label>
<label>
<spring:message code="case_insenstive"/>
</label>
</div>
</div>
</div>
</c:if>
<c:if test="${cfg.isHexbin==2 }">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_hex"/>:</label>
<label>
<spring:message code="not_hex"/>
</label>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label><spring:message code="is_case_insenstive"/>:</label>
<label>
<spring:message code="case_senstive"/>
</label>
</div>
</div>
</div>
</c:if>
</div>
</c:if>
</c:forEach>