#690622 by jhodgdon: Remove the word 'node' from various strings.
parent
46808e29c1
commit
6d0ca97b8f
|
@ -124,7 +124,7 @@ function field_help($path, $arg) {
|
|||
case 'admin/help#field':
|
||||
$output = '';
|
||||
$output .= '<h3>' . t('About') . '</h3>';
|
||||
$output .= '<p>' . t('The Field module allows custom data fields to be attached to Drupal <em>entities</em> (content nodes, users, taxonomy vocabularies, etc.) and takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href="@field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new entities "fieldable" and thus allow fields to be attached to their entities. For more information, see the online handbook entry for <a href="@field">Field module</a>.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '</p>';
|
||||
$output .= '<p>' . t('The Field module allows custom data fields to be defined for <em>entity</em> types (entities include content items, comments, user accounts, and taxonomy terms). The Field module takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href="@field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new entity types "fieldable" and thus allow fields to be attached to them. For more information, see the online handbook entry for <a href="@field">Field module</a>.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '</p>';
|
||||
$output .= '<h3>' . t('Uses') . '</h3>';
|
||||
$output .= '<dl>';
|
||||
$output .= '<dt>' . t('Enabling field types') . '</dt>';
|
||||
|
|
|
@ -137,7 +137,7 @@ function path_form_node_form_alter(&$form, $form_state) {
|
|||
'#maxlength' => 255,
|
||||
'#collapsible' => TRUE,
|
||||
'#collapsed' => TRUE,
|
||||
'#description' => t('Optionally specify an alternative URL by which this node can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
|
||||
'#description' => t('Optionally specify an alternative URL by which this content can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
|
||||
);
|
||||
$form['path']['pid'] = array('#type' => 'value', '#value' => $path['pid']);
|
||||
$form['path']['source'] = array('#type' => 'value', '#value' => $path['source']);
|
||||
|
|
|
@ -14,7 +14,7 @@ function php_help($path, $arg) {
|
|||
case 'admin/help#php':
|
||||
$output = '';
|
||||
$output .= '<h3>' . t('About') . '</h3>';
|
||||
$output .= '<p>' . t('The PHP filter module adds a PHP filter to your site, for use with <a href="@filter">text formats</a>. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a node or the text of a comment). <a href="@php-net">PHP</a> is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the <a href="@php">PHP filter module</a>.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '</p>';
|
||||
$output .= '<p>' . t('The PHP filter module adds a PHP filter to your site, for use with <a href="@filter">text formats</a>. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a content item or the text of a comment). <a href="@php-net">PHP</a> is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the <a href="@php">PHP filter module</a>.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '</p>';
|
||||
$output .= '<h3>' . t('Uses') . '</h3>';
|
||||
$output .= '<dl>';
|
||||
$output .= '<dt>' . t('Enabling execution of PHP in text fields') . '</dt>';
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
function poll_token_info() {
|
||||
$node['poll-votes'] = array(
|
||||
'name' => t("Poll votes"),
|
||||
'description' => t("The number of votes that have been cast on a poll node."),
|
||||
'description' => t("The number of votes that have been cast on a poll."),
|
||||
);
|
||||
$node['poll-winner'] = array(
|
||||
'name' => t("Poll winner"),
|
||||
|
@ -28,7 +28,7 @@ function poll_token_info() {
|
|||
);
|
||||
$node['poll-duration'] = array(
|
||||
'name' => t("Poll duration"),
|
||||
'description' => t("The length of time the poll node is set to run."),
|
||||
'description' => t("The length of time the poll is set to run."),
|
||||
);
|
||||
|
||||
return array(
|
||||
|
|
|
@ -139,7 +139,7 @@ function tracker_cron() {
|
|||
// Prepare a starting point for the next run.
|
||||
variable_set('tracker_index_nid', $last_nid - 1);
|
||||
|
||||
watchdog('tracker', t('Indexed %count nodes for tracking.', array('%count' => $count)));
|
||||
watchdog('tracker', t('Indexed %count content items for tracking.', array('%count' => $count)));
|
||||
}
|
||||
else {
|
||||
// If all nodes have been indexed, set to zero to skip future cron runs.
|
||||
|
|
Loading…
Reference in New Issue