Created
September 12, 2010 05:21
-
-
Save gormus/575868 to your computer and use it in GitHub Desktop.
Drupal 6 (Pressflow): Disable "first-time" message
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* String overrides: | |
* | |
* To override specific strings on your site with or without enabling locale | |
* module, add an entry to this list. This functionality allows you to change | |
* a small number of your site's default English language interface strings. | |
* | |
* Remove the leading hash signs to enable. | |
*/ | |
$conf['locale_custom_strings_en'] = array( | |
# 'forum' => 'Discussion board', | |
# '@count min' => '@count minutes', | |
'<h1 class="title">Welcome to your new Pressflow website!</h1><p>Please follow these steps to set up and start using your website:</p>' => '', | |
'<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.' => '', | |
'<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.' => '', | |
'<strong>Customize your website design</strong> To change the "look and feel" of your website, visit the <a href="@themes">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href="@download_themes">Drupal themes download section</a>.' => '', | |
'<strong>Start posting content</strong> Finally, you can <a href="@content">create content</a> for your website. This message will disappear once you have promoted a post to the front page.' => '', | |
'For more information, please refer to the <a href="@help">help section</a>, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.' => '', | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment