'#description'=>$module=='block'?t('The title of the block as shown to the user.'):t('Override the default title for the block. Use <em><none></em> to display no title, or leave blank to use the default block title.'),
'#description'=>$module=='block'?t('The title of the block as shown to the user.'):t('Override the default title for the block. Use <em><none></em> to display no title, or leave blank to use the default block title.'),
@@ -141,7 +141,7 @@ function node_type_form(&$form_state, $type = NULL) {
$form['submission']['help']=array(
'#type'=>'textarea',
'#title'=>t('Explanation or submission guidelines'),
'#default_value'=>$type->help,
'#default_value'=>$type->help,
'#description'=>t('This text will be displayed at the top of the submission form for this content type. It is useful for helping or instructing your users.')
$extra=array_merge($extra,array(array('key'=>'pubDate','value'=>date('r',$item->created)),array('key'=>'dc:creator','value'=>$item->name),array('key'=>'guid','value'=>$item->nid.' at '.$base_url,'attributes'=>array('isPermaLink'=>'false'))));
$extra=array_merge($extra,array(array('key'=>'pubDate','value'=>date('r',$item->created)),array('key'=>'dc:creator','value'=>$item->name),array('key'=>'guid','value'=>$item->nid.' at '.$base_url,'attributes'=>array('isPermaLink'=>'false'))));
returnconfirm_form($form,t('Are you sure you want to revert to the revision from %revision-date?',array('%revision-date'=>format_date($node_revision->revision_timestamp))),'node/'.$node_revision->nid.'/revisions','',t('Revert'),t('Cancel'));
returnconfirm_form($form,t('Are you sure you want to revert to the revision from %revision-date?',array('%revision-date'=>format_date($node_revision->revision_timestamp))),'node/'.$node_revision->nid.'/revisions','',t('Revert'),t('Cancel'));
returnconfirm_form($form,t('Are you sure you want to delete the revision from %revision-date?',array('%revision-date'=>format_date($node_revision->revision_timestamp))),'node/'.$node_revision->nid.'/revisions',t('This action cannot be undone.'),t('Delete'),t('Cancel'));
returnconfirm_form($form,t('Are you sure you want to delete the revision from %revision-date?',array('%revision-date'=>format_date($node_revision->revision_timestamp))),'node/'.$node_revision->nid.'/revisions',t('This action cannot be undone.'),t('Delete'),t('Cancel'));
'#options'=>array(t('Write errors to the log'),t('Write errors to the log and to the screen')),
'#description'=>t('Specify where Drupal, PHP and SQL errors are logged. While it is recommended that a site running in a production environment write errors to the log only, in a development or testing environment it may be helpful to write errors both to the log and to the screen.')
'#description'=>t('Specify where Drupal, PHP and SQL errors are logged. While it is recommended that a site running in a production environment write errors to the log only, in a development or testing environment it may be helpful to write errors both to the log and to the screen.')
$screenshot=$screenshot?theme('image',$screenshot,t('Screenshot for %theme theme',array('%theme'=>$info->name)),'',array('class'=>'screenshot'),FALSE):t('no screenshot');
@@ -278,8 +278,8 @@ function taxonomy_overview_terms(&$form_state, $vocabulary) {
if($vocabulary->tags){
// We are not calling taxonomy_get_tree because that might fail with a big
// number of tags in the freetagging vocabulary.
$results=pager_query(db_rewrite_sql('SELECT t.*, h.parent FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d ORDER BY weight, name','t','tid'),$page_increment,0,NULL,$vocabulary->vid);
$total_entries=db_query(db_rewrite_sql('SELECT count(*) FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d'),$page_increment,0,NULL,$vocabulary->vid);
$results=pager_query(db_rewrite_sql('SELECT t.*, h.parent FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d ORDER BY weight, name','t','tid'),$page_increment,0,NULL,$vocabulary->vid);
$total_entries=db_query(db_rewrite_sql('SELECT count(*) FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d'),$page_increment,0,NULL,$vocabulary->vid);
$result=db_query(db_rewrite_sql('SELECT t.tid, t.*, parent FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d ORDER BY weight, name','t','tid'),$vid);
$result=db_query(db_rewrite_sql('SELECT t.tid, t.*, parent FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d ORDER BY weight, name','t','tid'),$vid);