You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The general idea is to refactor existing labels for the repository update form, such as
$s_plugin_SourceGithub_master_branch = 'Primary Branches<br/><span class="small">(comma-separated list or "*" for all branches)</span>';
into 2 distinct strings
$s_plugin_SourceGithub_master_branch = 'Primary Branches';
$s_plugin_SourceGithub_master_branch_help = '<span class="small">(comma-separated list or "*" for all branches)</span>';
This would require an additional lookup at least in all $t_vcs->update_repo_form( $t_repo ) variants, for a key (help) which may (intentionally) not exist.