Video Album button title
Using Jamroom
On a new install of the video module (no videos yet) the Create Album button has the title "Video". Shouldn't that be Create Album or Albums?
updated by @ultrajam: 12/18/16 04:50:28PM
{* page_notice shows notices, warnings, errors and success messages under a page_banner *}
{* NOTE: This is NOT SHOWN for AJAX response *}
{* $notice_label will contain the actual notice level - i.e. "error, "success", "warning", "notice" and in bootstrap: "danger, "success", "warning", "info" *}
{if $notice_type == 'success'}{assign var='alert_type' value=' alert-success'}{elseif $notice_type == 'error'}{assign var='alert_type' value=' alert-danger'}{elseif $notice_type == 'warning'}{assign var='alert_type' value=' alert-warning'}{elseif $notice_type == 'notice'}{assign var='alert_type' value=' alert-info'}{/if}
<div id="page_notice" class="page_notice alert{$alert_type} alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{$notice_label}!</strong> {$notice_text}
</div>
{if isset($javascript_ready_function)}
...
{/if}