如何本地化Azure API Management Developer Portal使用的字符串?

时间:2017-01-10 12:58:46

标签: azure azure-api-management

我似乎找不到使用提供的模板编辑器编辑本地化字符串的方法,是否有人对此有任何指示?

例如,如果我想将文本“搜索产品”更改为其他内容,例如......在哪里/如何编辑模板及其数据?

谢谢 勒罗伊

1 个答案:

答案 0 :(得分:1)

执行此操作的丑陋方式:

编辑模板,删除

<search-control></search-control>

将自定义文本添加到输入占位符

<div>    
    <form action="/Products" class="pull-right" method="get">        
    <input type="hidden" name="startEditTemplate" value="ProductList">
    <div class="form-group has-feedback">
        <input placeholder="My Custom Search products" id="pattern" type="search" class="form-control" name="pattern"  spellcheck="false">
        <button class="glyphicon glyphicon-search form-control-feedback ap-ininput-button"></button>
    </div>
    </form>
</div>

关于这一点的不好的部分是你现在负责更新这段代码和模板。