8000 Capitalize for uniformity by elad-eyal · Pull Request #537 · frab/frab · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Capitalize for uniformity #537

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ en:
end_date: End date
start_date: start
event:
abstract: summary
abstract: Summary
average_feedback: Average feedback
average_rating: Average rating
description: Description
Expand All @@ -70,15 +70,15 @@ en:
public: Public
recording_license: Recording license
speaker_count: Speaker count
speakers: speakers
speakers: Speakers
start_time: Start time
state: state
state: State
submission_note: Submission notes
subtitle: Subtitle
tech_rider: Tech rider
time_slots: Time slots
title: title
track: track
title: Title
track: Track
event_attachment:
public: Public
title: Title
Expand Down
2 changes: 1 addition & 1 deletion test/features/cfp_can_edit_event_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CfpCanEditEventTest < FeatureTest
test 'can edit own event' do
assert_content page, 'Events you already submitted'
click_on 'edit'
fill_in 'title', with: 'A new title', match: :first
fill_in 'Title', with: 'A new title', match: :first
click_on 'Update event'
assert_content page, 'Event was successfully updated.'
assert_content page, 'A new title'
Expand Down
2 changes: 1 addition & 1 deletion test/features/editing_events_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class EditingEventsTest < FeatureTest
test 'can edit own event in cfp interface' do
assert_content page, 'Events you already submitted'
click_on 'edit'
fill_in 'title', with: 'A new title', match: :first
fill_in 'Title', with: 'A new title', match: :first
click_on 'Update event'
assert_content page, 'Event was successfully updated.'
assert_content page, 'A new title'
Expand Down
2 changes: 1 addition & 1 deletion test/features/submit_event_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def sign_in_steps
click_on 'Participate'
click_on 'Submit a new event', match: :first

fill_in 'title', with: 'fake-title', match: :first
fill_in 'Title', with: 'fake-title', match: :first
select '00:45', from: 'Time slots'
click_on 'Create event'

Expand Down
0