diff --git a/includes/admin.inc b/includes/admin.inc index 5867cde..fa9b72c 100644 --- a/includes/admin.inc +++ b/includes/admin.inc @@ -13,12 +13,12 @@ function fieldable_panels_panes_settings() { $form['fpp_revision_locking'] = array( '#type' => 'radios', - '#title' => t('Should pane changes create new revisions?'), - '#description' => t(''), + '#title' => t('Should FPP ctools content reference FPP entities by entity ID or revision ID?'), + '#description' => t('For example, using a panelized entity, you can revert the entity to previus revision and FPPs will also revert if they are referenced by revision ID.'), '#options' => array( - 'legacy' => t('Ignore, every change saves directly.'), - 'lock' => t('Lock non-resuable FPPs.'), - 'lock_all' => t('Lock non-resuable and reusable FPPs.'), + 'legacy' => t('Legacy: use entity ID for all FPPs.'), + 'lock' => t('Recommended: Use revision ID for non-resuable FPPs only.'), + 'lock_all' => t('Use revision ID for all FPPs.'), ), '#default_value' => variable_get('fpp_revision_locking', 'legacy'), );