update recording text and orderable columns

This commit is contained in:
Zachary Chai 2016-12-01 10:49:20 -05:00
parent ae9e52f077
commit f545daca26
2 changed files with 3 additions and 2 deletions

View File

@ -29,13 +29,13 @@ class @Recordings
info: false, info: false,
order: [[ 0, "desc" ]], order: [[ 0, "desc" ]],
language: { language: {
emptyTable: '<h3>'+I18n.no_recordings+'</h3>', emptyTable: '<h3>'+I18n.no_recordings_yet+'</h3>',
zeroRecords: '<h3>'+I18n.no_recordings+'</h3>' zeroRecords: '<h3>'+I18n.no_recordings+'</h3>'
}, },
columns: [ columns: [
{ data: "start_time" }, { data: "start_time" },
{ data: "previews", orderable: false }, { data: "previews", orderable: false },
{ data: "duration" }, { data: "duration", orderable: false },
{ data: "playbacks", orderable: false }, { data: "playbacks", orderable: false },
{ data: "published", visible: false }, { data: "published", visible: false },
{ data: "id", orderable: false } { data: "id", orderable: false }

View File

@ -44,6 +44,7 @@ en-US:
meeting_ended: Meeting was ended meeting_ended: Meeting was ended
meeting_started: Meeting was started meeting_started: Meeting was started
no_recordings: No Recordings no_recordings: No Recordings
no_recordings_yet: No Recordings (Yet!)
publish_recording: Publish recording publish_recording: Publish recording
recording_deleted: Recording was deleted recording_deleted: Recording was deleted
recording_published: Recording was published recording_published: Recording was published