Cast me sync

This commit is contained in:
Senad Uka
2020-07-17 04:50:04 +02:00
parent 96b31b71cf
commit e3acdb4d0e
53 changed files with 678 additions and 635 deletions

View File

@@ -70,6 +70,9 @@ en:
person_phone: Phone
person_photo: Photo
signed_on: Date
casting_call:
interview_instructions: Welcome message
interview_requirements: Goodbye message
location_release:
person_company: Company
person_email: Email
@@ -97,22 +100,22 @@ en:
application:
header:
sign_out: Sign Out
casting_call_interviews:
casting_submissions:
complete:
notice: The casting call interview has been completed
notice: The casting submission has been completed
create:
notice: The casting call interview has been created
notice: The casting submission has been created
index:
actions:
new: Create Casting Call Interview
empty: Casting call interviews will appear here
new: Create Casting Submission
empty: Casting submissions will appear here
mark_as_completed:
alert: Failed to mark casting call interview as completed
notice: The casting call interview has been marked as completed
alert: Failed to mark casting submission as completed
notice: The casting submission has been marked as completed
new:
heading: New Casting Call Interview
heading: New Casting Submission
update:
notice: The casting call interview has been updated
notice: The casting submission has been updated
task_requests:
index:
empty: Task requests will appear here
@@ -244,11 +247,11 @@ en:
bulk_taggings:
new_bulk_tag_modal:
submit: Add
casting_call_interviews:
casting_submissions:
index:
empty: Casting Call Interview results will appear here.
empty: Casting Submission results will appear here.
show:
empty: Interview files and recorded meeetings will appear here.
empty: Casting Submission files and recorded meeetings will appear here.
validation_errors:
invalid_meeting_url: Zoom Meeting URL is invalid
casting_calls:
@@ -264,13 +267,6 @@ en:
heading: Edit Casting Call
form:
info_message: After submitting this casting call request, you'll be connected via chat with a ME Suite representative.
labels:
description: Description
interview_instructions: Interview instructions
interview_requirements: Interview requirements
project_description: Project description
questions: Questions
title: Title
index:
actions:
new: Create Casting Call
@@ -278,11 +274,21 @@ en:
table_headers:
casting_call_created_on: Created On
casting_call_status: Status
casting_call_title: Title
casting_call_title: Casting Title
new:
heading: New Casting Call
update:
notice: The casting call request has been updated
casting_submission_downloads:
download:
failure: Your download could not be generated.
pending: "Your %{release_type} files are being prepared for download. You will be notified when it's ready."
success: "Your %{release_type} files are ready. Download now, or retrieve later in the %{downloads_folder_link} folder. %{download_button}"
casting_submissions:
index:
empty: Casting Submission results will appear here.
show:
empty: Casting Submission files and recorded meeetings will appear here.
contract_downloads:
download:
failure: Your download could not be generated.
@@ -416,6 +422,10 @@ en:
notice: The release has been updated
helpers:
help:
casting_call:
interview_instructions: This is the first message the chatbot, BiGGiE, will send. Please include all information and instructions you wish the person to read prior to starting the casting interview.
interview_requirements: Please enter a final message and include any post-interview instructions (for example, submitting a headshot, additional photos, videos, etc).
questions: Please list, one-by-one, all of the questions you wish the chatbot, BiGGiE, to ask the person.
contract_template:
fee: Leave at $0.00 for no-fee
guardian_clause: Leave blank if not required for this contract
@@ -474,6 +484,13 @@ en:
person_last_name: Last name
person_name: Name
person_phone: Phone number
casting_call:
description: Casting search description
interview_instructions: Welcome message
interview_requirements: Goodbye message
project_description: Project description
questions: Questions
title: Casting search title
location_release:
address_city: City
address_country: Country
@@ -723,8 +740,8 @@ en:
broadcast:
create: Create Live Stream
update: Save Changes
casting_call_interview:
create: Create casting call interview
casting_submission:
create: Create Casting Submission
contract_template:
create: Create Release Template
directory:
@@ -757,11 +774,6 @@ en:
cards: Cards
heading: Import Releases
list: List
interview_downloads:
download:
failure: Your download could not be generated.
pending: "Your %{release_type} files are being prepared for download. You will be notified when it's ready."
success: "Your %{release_type} files are ready. Download now, or retrieve later in the %{downloads_folder_link} folder. %{download_button}"
location_releases:
create:
notice: The location release has been created
@@ -993,7 +1005,7 @@ en:
show:
acquired_media_release: Acquired Media Releases (%{count})
appearance_release: Appearance Releases (%{count})
casting_call_interviews: Interviews
casting_submissions: Casting Submissions
downloads: Downloads
location_release: Location Releases (%{count})
material_release: Material Releases (%{count})
@@ -1056,7 +1068,7 @@ en:
broadcasts:
show:
alert: That broadcast is no longer available
casting_call_interviews:
casting_submissions:
show:
heading: Files
update: Upload

View File

@@ -76,7 +76,7 @@ es:
share_stream: Share live stream link with clients
stream_from_mobile_app: Stream from ME Suite Mobile app, or via a professional camera
stream_multiple_cameras: Stream multiple cameras at one time
casting_call_interviews:
casting_submissions:
validation_errors:
invalid_meeting_url: Zoom Meeting URL is invalid (ES)
contract_templates:
@@ -275,8 +275,8 @@ es:
broadcast:
create: Create Live Stream (ES)
update: Save Changes (ES)
casting_call_interview:
create: Create casting call interview (ES)
casting_submission:
create: Create casting submission (ES)
create: 'Crear %{model}'
update: 'Actualizar %{model}'
location_releases:

View File

@@ -32,7 +32,7 @@ Rails.application.routes.draw do
resource :masquerade, only: :create
end
resources :task_requests, only: [:index, :edit, :update, :show]
resources :casting_call_interviews do
resources :casting_submissions do
post :complete, on: :member
end
@@ -69,7 +69,7 @@ Rails.application.routes.draw do
resource :contract_downloads, only: [:create]
resources :downloads, only: [:index, :destroy]
resource :report_downloads, only: [:create]
resource :interview_downloads, only: [:create]
resource :casting_submission_downloads, only: [:create]
resources :videos, only: [:index, :new, :create, :edit, :update] do
collection do
get :landing
@@ -115,7 +115,7 @@ Rails.application.routes.draw do
end
end
resources :tasks, only: :index
resources :casting_call_interviews, only: [:index, :show]
resources :casting_submissions, only: [:index, :show]
end
resource :profile, only: [:show, :update]
resources :videos, only: [] do
@@ -145,7 +145,7 @@ Rails.application.routes.draw do
resource :zoom_meeting, only: [:show]
end
resources :casting_calls, param: :token, only: [:show]
resources :casting_call_interviews, param: :token, only: [:show, :update]
resources :casting_submissions, param: :token, only: [:show, :update]
end
RELEASES = [:acquired_media_releases, :appearance_releases, :talent_releases, :material_releases, :location_releases]