Show
Ignore:
Timestamp:
12/16/07 22:36:17 (1 year ago)
Author:
misja
Message:

Misja Hoebe <misja@curverider.co.uk> Merge r1456, r1457, r1458, r1459, r1460, r1461, r1462 into 0.9 branch

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • releases/0.9/mod/pages/lib/pages.inc.php

    r1443 r1463  
    4343            if (empty($messages)) { 
    4444                if ($page->name == 'New page' || $page->title == 'New page') { 
    45                     $messages[] = __gettext('You could not use "New page" as page title or menu title.'); 
     45                    $messages[] = __gettext('You cannot use "New page" as page title or menu title.'); 
    4646                }  
    4747                 
     
    9999                    // last chance to verify integrity 
    100100                    if (!pages_exists((int)$page->ident, $owner)) { 
    101                         $messages[] = __gettext('Error on update. That page does not exists.'); 
     101                        $messages[] = __gettext('Error on update. That page does not exist.'); 
    102102                        $rs = true; 
    103103                    } else { 
     
    620620    $page = new StdClass; 
    621621    $page->title = __gettext('Page Not Found'); 
    622     $page->content = pages_html_wrap('p', __gettext('The page that you requested does no exists.')); 
     622    $page->content = pages_html_wrap('p', __gettext('The page that you requested does not exist.')); 
    623623 
    624624    return $page;