diff --git a/app/controllers/settings_controller.rb b/app/controllers/settings_controller.rb index 647cd7893..f3e56f1a8 100644 --- a/app/controllers/settings_controller.rb +++ b/app/controllers/settings_controller.rb @@ -63,14 +63,14 @@ def index attendance_type: [ { value: 'in person', - label: "**In-person only:** I am planning to attend #{convention_name} in-person" + label: "In-person only: I am planning to attend #{convention_name} in-person" }, { value: 'virtual', - label: "**Virtual only:** I am not planning to attend #{convention_name} in-person, and would like to be a virtual participant on virtual-based items only (via Zoom or similar technology)." + label: "Online only: I am not planning to attend #{convention_name} in-person, and would like to be a online participant on online-based items only (via Zoom or similar technology)." }, { value: 'hybrid', - label: "**In-person and virtual:** I am planning to attend #{convention_name} in-person, but would also like to be considered for virtual panels." + label: "In-person and online: I am planning to attend #{convention_name} in-person, but would also like to be considered for online panels." }, ], age_restrictions: ::AgeRestriction.all, diff --git a/app/javascript/constants/strings.js b/app/javascript/constants/strings.js index f9875af78..1bdd33c83 100644 --- a/app/javascript/constants/strings.js +++ b/app/javascript/constants/strings.js @@ -286,8 +286,8 @@ module.exports = { }, PERSON_ATTENDANCE_TYPE: { 'in person': "In Person", - hybrid: "In Person AND Virtually", - virtual: "Virtually", + hybrid: "In Person AND Online", + virtual: "Online", }, PAGE_CONTENT_SAVE_SUCCESS: "Page content saved successfully", @@ -302,7 +302,7 @@ module.exports = { unknown: "Unknown", in_person: "In Person", hybrid: "Hybrid", - virtual: "Virtual" + virtual: "Online" }, SESSION_STATUS: { draft: "Draft", @@ -342,7 +342,7 @@ module.exports = { }, EVENT_SETTINGS_MUST_RELOAD: "*** Changes to these settings will only take effect after you reload your browser page. ***", CONFIGURATION_LABEL_OVERRIDES: { - event_virtual: "Does this event include a virtual component?", + event_virtual: "Does this event include an online component?", clyde_base_url: "Base URL for Clyde", profile_show_info_demographic_community: "Show Demographics, Community, and Info in Profile" } diff --git a/app/javascript/dashboard/dashboard.vue b/app/javascript/dashboard/dashboard.vue index 928f88b5d..d3daa601a 100644 --- a/app/javascript/dashboard/dashboard.vue +++ b/app/javascript/dashboard/dashboard.vue @@ -21,7 +21,7 @@ Update your name(s), pronouns, email address, bio, and social media as needed
Under each day, highlight (click and drag) the times of day that you are available for programming in the calendar view below. You can create multiple blocks of time per day. The in-person convention time is currently displayed. - If you will be attending virtually, and want to enter your availability in that time zone, + If you will be attending online, and want to enter your availability in that time zone, select that option from below the calendar. The time is displayed in the convention time zone, which is currently {{timezone}}. diff --git a/app/javascript/profile/person_details.vue b/app/javascript/profile/person_details.vue index a7b00d409..8ef5e6707 100644 --- a/app/javascript/profile/person_details.vue +++ b/app/javascript/profile/person_details.vue @@ -34,13 +34,13 @@