Fixed SQL Lite typo in setup screen (it´s SQLite).

--HG--
branch : dev
This commit is contained in:
Bertrand Le Roy
2010-02-22 14:14:45 -08:00
parent dd9804ce12
commit 29b5812148

View File

@@ -25,7 +25,7 @@ using (Html.BeginFormAntiForgeryPost()) { %>
<%=Html.ValidationMessage("DatabaseOptions", "Unable to setup data storage") %> <%=Html.ValidationMessage("DatabaseOptions", "Unable to setup data storage") %>
<div> <div>
<%=Html.RadioButtonFor(svm => svm.DatabaseOptions, true, new { id = "builtin" })%> <%=Html.RadioButtonFor(svm => svm.DatabaseOptions, true, new { id = "builtin" })%>
<label for="builtin" class="forcheckbox"><%=_Encoded("Use built-in data storage (SQL Lite)") %></label> <label for="builtin" class="forcheckbox"><%=_Encoded("Use built-in data storage (SQLite)") %></label>
</div> </div>
<div> <div>
<%=Html.RadioButtonFor(svm => svm.DatabaseOptions, false, new { id = "sql" })%> <%=Html.RadioButtonFor(svm => svm.DatabaseOptions, false, new { id = "sql" })%>