Community Documentation

Change default strings (text) without using full translation system

Last updated July 17, 2009. Created by kentr on July 17, 2009.
Log in to edit this page.

Methods

  1. Edit settings.php file
  2. String Overrides module

Method 1: Edit settings.php file

Pros

  • Quick method for small number of strings.
  • Less accessible in cases where you want to retain some control even after granting administrator access.

Cons

  • English only.
  • No admin pages, requires access to files on server (FTP / SFTP / SSH). Difficult to delegate changes to non-developers.

Procedure

  1. Edit settings.php for the site in question.
    • You'll need to either download the file, edit it, and re-upload it, or edit it in place on the server. Of course, make a backup.
    • Either way, you'll probably need to temporarily change the permissions of the file and its containing folder to to give you "write access". Be sure to take note of the permissions and change them back to what they were afterwards.
    • The default settings file is in drupal_root_folder/sites/default/settings.php
  2. Look for this code at the bottom:

    # $conf['locale_custom_strings_en'] = array(
    #   'forum'      => 'Discussion board',
    #   '@count min' => '@count minutes',
    # );
  3. Remove the comment marks ('#') and add string replacement assignments:

    $conf['locale_custom_strings_en'] = array(
       'Old string 1'      => 'New string 1',
       'Old string 2'      => 'New string 2',
    );

Method 2: String Overrides module

(http://drupal.org/project/stringoverrides)

Pros

  • Admin page for managing string replacements.
  • Uses access permissions. Easier to delegate management of replacements.

Cons

  • Yet another module to install, update, and administer.
  • Possible performance hit. Stores replacements in the database.
  • Uses access permissions. Harder to restrict changes when you have to give administrator access to others.

Procedure

  1. Install and enable the module.
  2. Follow the instructions / documentation for adding string replacements.

Comments

Variables and Wildcards?

Can method 1 be used with wild cards for string that contain Variable output?

'Sign up for %node_type.' => 'Sign up to get email reminders for %node_type.',
or
'Sign up for *' => 'Sign up to get email reminders for *.',
or something like that????

What is the secret sauce to making this work

--
Greg

Perhaps

Try placing it in settings.php exactly as it is in the code.

I discovered that the String Overrides module will work this way in one case:

Code for the specific call to t() (from the Profile Privacy module):

t('Display !field publicly', array('!field' => $form[$category][$key]['#title']))

String that I entered in the String Overrides "Original" field (exact match :-):

Display !field publicly

Cannot delete overrides

I used method number 1, and even after deleting the overrides, the overrides remain. Any suggestions?

Thanks

Page status

No known problems

Log in to edit this page

About this page

Drupal version
Drupal 6.x
Audience
Developers and coders, Site administrators, Themers

Site Building Guide

Drupal’s online documentation is © 2000-2012 by the individual contributors and can be used in accordance with the Creative Commons License, Attribution-ShareAlike 2.0. PHP code is distributed under the GNU General Public License.
nobody click here