summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-01-13 10:21:32 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-01-13 10:21:32 +0000
commit68ac4772e80702cd32899e337b73a168f6d6ad73 (patch)
treea71beab121a070001b1c4444fbd63e00a51a0dfc /profiles
parentf9c83f1bac8e0b9307382a00c0787ce1ed88f16e (diff)
downloadbrdo-68ac4772e80702cd32899e337b73a168f6d6ad73.tar.gz
brdo-68ac4772e80702cd32899e337b73a168f6d6ad73.tar.bz2
#107024: Make content type name/description localizable on install time by profile.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default/default.profile8
1 files changed, 4 insertions, 4 deletions
diff --git a/profiles/default/default.profile b/profiles/default/default.profile
index cb9cfdd90..3056a2b1c 100644
--- a/profiles/default/default.profile
+++ b/profiles/default/default.profile
@@ -36,18 +36,18 @@ function default_profile_final() {
$types = array(
array(
'type' => 'page',
- 'name' => t('Page'),
+ 'name' => st('Page'),
'module' => 'node',
- 'description' => t('If you want to add a static page, like a contact page or an about page, use a page.'),
+ 'description' => st('If you want to add a static page, like a contact page or an about page, use a page.'),
'custom' => TRUE,
'modified' => TRUE,
'locked' => FALSE,
),
array(
'type' => 'story',
- 'name' => t('Story'),
+ 'name' => st('Story'),
'module' => 'node',
- 'description' => t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'),
+ 'description' => st('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'),
'custom' => TRUE,
'modified' => TRUE,
'locked' => FALSE,