1. Download http://ftp.drupal.org/files/projects/drupal-6.22.zip at http://drupal.org/node/1168950
2. Install with english as default language
3. Active locale module
4. Download http://ftp.drupal.org/files/translations/6.x/drupal/drupal-6.22.de.po at http://localize.drupal.org/translate/languages/de
5. Import the file at /admin/build/translate/import
6. At /admin/settings/language/configure set "Path prefix with language fallback."

At /de/admin/content/types you get what's on the screenshot.

CommentFileSizeAuthor
drupal.png73.87 KBraelianer

Comments

raelianer’s picture

Seems to come from /profiles/default/default.profile:

function default_profile_tasks(&$task, $url) {

  // Insert default user-defined node types into the database. For a complete
  // list of available node type attributes, refer to the node type API
  // documentation at: http://api.drupal.org/api/HEAD/function/hook_node_info.
  $types = array(
    array(
      'type' => 'page',
      'name' => st('Page'),
      'module' => 'node',
      'description' => st("A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page."),
      'custom' => TRUE,
      'modified' => TRUE,
      'locked' => FALSE,
      'help' => '',
      'min_word_count' => '',
    ),
    array(
      'type' => 'story',
      'name' => st('Story'),
      'module' => 'node',
      'description' => st("A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments."),
      'custom' => TRUE,
      'modified' => TRUE,
      'locked' => FALSE,
      'help' => '',
      'min_word_count' => '',
    ),
  );
raelianer’s picture

also strings at /de/admin/settings/actions

Status: Active » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.