• I have made a languages directory and I think I need an MO file. Where do I obtain one? Or is it set up in english as the default lang?

    Otherwise install.php simply not running all other info changed thusly:

    <?php
    // ** MySQL settings ** //
    define(‘DB_NAME’, ‘****’); // The name of the database
    define(‘DB_USER’, ‘*****’); // Your MySQL username
    define(‘DB_PASSWORD’, ‘********’); // …and password
    define(‘DB_HOST’, ‘********’); // 99% chance you won’t need to change this value
    define(‘DB_CHARSET’, ‘utf8’);
    define(‘DB_COLLATE’, ”);

    // Change SECRET_KEY to a unique phrase. You won’t have to remember it later,
    // so make it long and complicated. You can visit https://api.www.ads-software.com/secret-key/1.0/
    // to get a secret key generated for you, or just make something up.
    define(‘SECRET_KEY’, ‘******’); // Change this to a unique phrase.

    // You can have multiple installations in one database if you give each a unique prefix
    $table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!

    // Change this to localize WordPress. A corresponding MO file for the
    // chosen language must be installed to wp-content/languages.
    // For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
    // to enable German language support.
    define (‘WPLANG’, ‘en_UK’);//how do I get this file

    /* That’s all, stop editing! Happy blogging. */

    define(‘ABSPATH’, dirname(__FILE__).’/’);
    require_once(ABSPATH.’wp-settings.php’);
    ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • You don’t need to specify anything for English, and there is no specific localisation for UK English rather than US English. So the line in question just needs to look like this:

    define ('WPLANG', '');

    And if those were your real server details, please make sure you change your password and secret key before your site goes live. I’ve removed them from your post, but you never know who might have seen them already.

    I want to use the default english, but I want to edit some of the text strings. how do I do that. I can fine no en.mo file

    @ michaelsharp
    There is not an en.mo file

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I get my en_UK mo file?’ is closed to new replies.