diff --git a/app/views/repositories/_form.html.erb b/app/views/repositories/_form.html.erb index fc566de..b0572d9 100644 --- a/app/views/repositories/_form.html.erb +++ b/app/views/repositories/_form.html.erb @@ -78,7 +78,7 @@
- Day: <%= select_tag(:day, options_for_select(day_options), :style => "width:55px; margin-top:5px") %> - Month: <%= select_tag(:month, options_for_select(month_options), :style => "width:55px; margin-top:5px") %> - Year: <%= select_tag(:year, options_for_select(year_options), :style => "width:70px; margin-top:5px") %> + <%= label_tag :day, t("day") %>: + <%= select_tag(:day, options_for_select(day_options), :style => "width:55px; margin-top:5px") %> + <%= label_tag :month, t("month") %>: + <%= select_tag(:month, options_for_select(month_options), :style => "width:55px; margin-top:5px") %> + <%= label_tag :year, t("year") %>: + <%= select_tag(:year, options_for_select(year_options), :style => "width:70px; margin-top:5px") %> <%= submit_tag("Search", class: 'btn btn-info', style: 'margin-bottom:5px', onClick: "Module.Repository.set_loader('#{image_tag 'loader.gif'} Loading data. Please, wait.')") %>
<% end %> diff --git a/features/users/user_update.feature b/features/users/user_update.feature index bbaa0a8..862a8d0 100644 --- a/features/users/user_update.feature +++ b/features/users/user_update.feature @@ -12,5 +12,5 @@ Feature: User update And I fill the Name field with "Rafael Manzo" And I fill the Current password field with "password" And I press the Update button - Then I should see "Your account has been updated successfully" - And my name should have changed to Rafael Manzo \ No newline at end of file + Then I should see "You updated your account successfully" + And my name should have changed to Rafael Manzo -- libgit2 0.21.2