我想翻譯由views.html.helpers._
輸入生成的標記的默認約束和錯誤消息。我在文檔中找不到它,並且已經開始瀏覽代碼,但如果有人比我快,請回答並獲得獎勵。對於現場信息和錯誤,i18n消息ID是什麼?
下面是示例模板代碼:
@inputText(regForm("Login"), 'id-> "username", 'placeholder -> "Login", 'required -> "yes", 'autofocus -> "yes")
這裏是生成的HTML:
<div id="username_field" class="error clearfix">
<div class="input">
<input type="text" id="username" name="Login" value="" id="username" placeholder="Login" required="yes" autofocus="yes">
<span class="help-inline">This field is required</span>
<span class="help-block">Required</span>
</div>
我想翻譯出現在最後兩個跨度文本。
編輯: 我已經知道翻譯是如何工作的from the documentation。沒有說明的是,在沒有滿足字段約束的情況下顯示的消息(錯誤消息)和一般信息的默認消息ID。
好吧,好的:我的錯。只閱讀你回答的問題是正確的。但是我特意詢問了消息ID,並且我找到了它。看到我的答案。 – Rajish