progress on #24 to add i18n and wpml support
This commit is contained in:
12
404.php
12
404.php
@@ -2,15 +2,15 @@
|
||||
<div id="content" class="<?php echo roots_container_class; ?>">
|
||||
<div id="main" role="main">
|
||||
<div class="container">
|
||||
<h1>File Not Found</h1>
|
||||
<h1><?php _e('File Not Found', 'roots'); ?></h1>
|
||||
<div class="error">
|
||||
<p class="bottom">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
|
||||
<p class="bottom"><?php _e('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'roots'); ?></p>
|
||||
</div>
|
||||
<p>Please try the following:</p>
|
||||
<p><?php _e('Please try the following:', 'roots'); ?></p>
|
||||
<ul>
|
||||
<li>Check your spelling</li>
|
||||
<li>Return to the <a href="<?php echo home_url(); ?>/">home page</a></li>
|
||||
<li>Click the <a href="javascript:history.back()">Back</a> button</li>
|
||||
<li><?php _e('Check your spelling', 'roots'); ?> </li>
|
||||
<li><?php printf(__('Return to the <a href="%s">home page</a>', 'roots'), home_url()); ?></li>
|
||||
<li><?php _e('Click the <a href="javascript:history.back()">Back</a> button', 'roots'); ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- /#main -->
|
||||
|
||||
Reference in New Issue
Block a user