views:

10

answers:

0

I followed this tutorial about internationalization and localization in CodeIgniter. The final view file looks like this:

<head>
    <title>{title}</title>
</head>

<body>
    <h1>{title}</h1>
    <p>{description}</p>
    <a href="">{homepage}</a>
</body>

How do I make the default language the string? For instance:

<html>

    <head>
        <title><?php __(This is the title) ?></title>
    </head>

Like you do in Kohana.