Index: includes/admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/quicktabs/includes/Attic/admin.inc,v retrieving revision 1.1.2.45 diff -u -F^f -r1.1.2.45 admin.inc --- includes/admin.inc 30 Mar 2009 19:41:23 -0000 1.1.2.45 +++ includes/admin.inc 13 Jun 2009 17:29:18 -0000 @@ -104,11 +104,11 @@ function _qt_admin_main_form($form_state '#type' => 'radios', '#title' => t('Ajax'), '#options' => array( - TRUE => t('Yes') .': '. t('Tab content will be loaded at tab click.'), - FALSE => t('No') .': '. t('All tabs will be loaded at page load.'), + TRUE => t('Yes') .': '. t('Load only the first tab on page view'), + FALSE => t('No') .': '. t('Load all tabs on page view.'), ), '#default_value' => isset($quicktabs['ajax']) ? $quicktabs['ajax'] : 0, - '#description' => t('Choose how the content of tabs should be loaded.'), + '#description' => t('Choose how the content of tabs should be loaded.
By choosing "Yes", only the first tab will be loaded when the page first viewed. Content for other tabs will be loaded only when the user clicks the other tab. This will provide faster initial page loading, but subsequent tab clicks will be slower. This can place less load on a server.
By choosing "No", all tabs will be loaded when the page is first viewed. This will provide slower initial page loading, and more server load, but subsequent tab clicks will be faster for the user. Use with care if you have heavy views.'), '#weight' => -5, );