diff --git a/app/javascript/following.vue b/app/javascript/following.vue index 2e7555d86e8..42cfd66bd0b 100644 --- a/app/javascript/following.vue +++ b/app/javascript/following.vue @@ -20,7 +20,7 @@ export default { }, computed: { buttonLabel() { - return this.following ? '自動Watchを解除' : '日報を自動Watch' + return this.following ? 'フォローを解除' : '日報をフォロー' }, url() { return this.following @@ -32,8 +32,8 @@ export default { }, errorMessage() { return this.following - ? '自動Watch解除に失敗しました' - : '自動Watchに失敗しました' + ? 'フォロー解除に失敗しました' + : 'フォローに失敗しました' } }, methods: { diff --git a/db/fixtures/notifications.yml b/db/fixtures/notifications.yml index faedc246884..d0a98d7a8ab 100644 --- a/db/fixtures/notifications.yml +++ b/db/fixtures/notifications.yml @@ -114,7 +114,7 @@ notification_following_report: kind: 13 user: muryou sender: kensyu - message: kensyuさんが日報【 自動Watchされた日報 】を書きました! + message: kensyuさんが日報【 フォローされた日報 】を書きました! path: "/reports/<%= ActiveRecord::FixtureSet.identify(:report23) %>" read: false diff --git a/db/fixtures/reports.yml b/db/fixtures/reports.yml index aac59b7f0b9..d761553a3b5 100644 --- a/db/fixtures/reports.yml +++ b/db/fixtures/reports.yml @@ -181,9 +181,9 @@ report22: report23: user: kensyu - title: 自動Watchされた日報 + title: フォローされた日報 description: - 自動Watchされました。 + フォローされました。 reported_on: "2020-11-10" report24: diff --git a/test/fixtures/notifications.yml b/test/fixtures/notifications.yml index faedc246884..d0a98d7a8ab 100644 --- a/test/fixtures/notifications.yml +++ b/test/fixtures/notifications.yml @@ -114,7 +114,7 @@ notification_following_report: kind: 13 user: muryou sender: kensyu - message: kensyuさんが日報【 自動Watchされた日報 】を書きました! + message: kensyuさんが日報【 フォローされた日報 】を書きました! path: "/reports/<%= ActiveRecord::FixtureSet.identify(:report23) %>" read: false diff --git a/test/fixtures/reports.yml b/test/fixtures/reports.yml index 44e5c3f5ef9..6cb563d463f 100644 --- a/test/fixtures/reports.yml +++ b/test/fixtures/reports.yml @@ -185,9 +185,9 @@ report22: report23: user: kensyu - title: 自動Watchされた日報 + title: フォローされた日報 description: - 自動Watchされました。 + フォローされました。 reported_on: "2020-11-10" report24: diff --git a/test/mailers/notification_mailer_test.rb b/test/mailers/notification_mailer_test.rb index 025bfd02f8d..74193848384 100644 --- a/test/mailers/notification_mailer_test.rb +++ b/test/mailers/notification_mailer_test.rb @@ -273,7 +273,7 @@ class NotificationMailerTest < ActionMailer::TestCase email = ActionMailer::Base.deliveries.last assert_equal ['noreply@bootcamp.fjord.jp'], email.from assert_equal ['muryou@fjord.jp'], email.to - assert_equal '[bootcamp] kensyuさんが日報【 自動Watchされた日報 】を書きました!', email.subject + assert_equal '[bootcamp] kensyuさんが日報【 フォローされた日報 】を書きました!', email.subject assert_match(/日報/, email.body.to_s) end diff --git a/test/system/followings_test.rb b/test/system/followings_test.rb index fc43b8c5960..b1f3605b7f4 100644 --- a/test/system/followings_test.rb +++ b/test/system/followings_test.rb @@ -5,28 +5,28 @@ class FollowingsTest < ApplicationSystemTestCase test 'follow' do visit_with_auth user_path(users(:hatsuno)), 'kimura' - click_button '日報を自動Watch' - assert_button '自動Watchを解除' + click_button '日報をフォロー' + assert_button 'フォローを解除' end test 'unfollow' do visit_with_auth user_path(users(:hatsuno)), 'kimura' - click_button '日報を自動Watch' - click_button '自動Watchを解除' - assert_button '日報を自動Watch' + click_button '日報をフォロー' + click_button 'フォローを解除' + assert_button '日報をフォロー' end test 'show following lists' do visit_with_auth user_path(users(:hatsuno)), 'kimura' - click_button '日報を自動Watch' - assert_text '自動Watchを解除' + click_button '日報をフォロー' + assert_text 'フォローを解除' visit '/users?target=followings' assert_text users(:hatsuno).login_name end test 'receive a notification when following user create a report' do visit_with_auth user_path(users(:hatsuno)), 'kimura' - click_button '日報を自動Watch' + click_button '日報をフォロー' visit_with_auth '/reports/new', 'hatsuno' within('#new_report') do @@ -49,7 +49,7 @@ class FollowingsTest < ApplicationSystemTestCase test "receive a notification when following user's report has comment" do visit_with_auth user_path(users(:hatsuno)), 'kimura' - click_button '日報を自動Watch' + click_button '日報をフォロー' visit_with_auth '/reports/new', 'hatsuno' within('#new_report') do diff --git a/test/system/notification/reports_test.rb b/test/system/notification/reports_test.rb index 3c59160ebc9..b9e8d5c1140 100644 --- a/test/system/notification/reports_test.rb +++ b/test/system/notification/reports_test.rb @@ -107,12 +107,12 @@ def assert_notify_only_at_first_published_of_report( ) end - test '初めて提出した時だけ、自動Watchされているユーザーに通知する' do + test '初めて提出した時だけ、フォローされているユーザーに通知する' do following = Following.first followed_user_login_name = User.find(following.followed_id).login_name follower_user_login_name = User.find(following.follower_id).login_name title = '初めて提出した時だけ' - description = '自動Watchされているユーザーに通知を飛ばす' + description = 'フォローされているユーザーに通知を飛ばす' notification_message = make_write_report_notification_message( followed_user_login_name, title )