* <fixed translation errors>

* <fixed translation errors>

* <fixed translation errors>
This commit is contained in:
John Ma
2018-10-03 14:08:50 -04:00
committed by Jesus Federico
parent 5c281a1a3f
commit 5c3fd15323
4 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@
<div class="card">
<div class="card-body p-1">
<table class="table table-hover table-vcenter text-nowrap table-no-border">
<table class="table table-hover table-vcenter text-wrap table-no-border">
<tbody class="no-border-top">
<td>
<span class="stamp stamp-md bg-cyan">

View File

@ -36,7 +36,7 @@
<span class="custom-switch-description"><%= t("modal.create_room.auto_join") %></span>
</label>
<div class="form-footer">
<%= f.submit "Create Room", id: "create-room-submit", class: "btn btn-outline-primary btn-block btn-pill" %>
<%= f.submit t("header.create_room"), id: "create-room-submit", class: "btn btn-outline-primary btn-block btn-pill" %>
</div>
<% end %>
</div>

View File

@ -18,13 +18,13 @@
<div class="form-group">
<div class="row">
<div class="col-8">
<%= f.label t("settings.password.old"), class: "form-label" %>
<%= f.label :password, t("settings.password.old"), class: "form-label" %>
<%= f.password_field :password, class: "form-control #{form_is_invalid?(@user, :password)}" %>
<br>
<%= f.label t("settings.password.new"), class: "form-label" %>
<%= f.label :new_password, t("settings.password.new"), class: "form-label" %>
<%= f.password_field :new_password, class: "form-control #{form_is_invalid?(@user, :password)}" %>
<br>
<%= f.label t("settings.password.confirmation"), class: "form-label" %>
<%= f.label :password_confirmation, t("settings.password.confirmation"), class: "form-label" %>
<%= f.password_field :password_confirmation, class: "form-control #{form_is_invalid?(@user, :password_confirmation)}" %>
</div>
</div>