Make WordPress Core

Ticket #1762: gettext_perma.diff

File gettext_perma.diff, 1.0 KB (added by ryan, 19 years ago)

Apply gettext to permalink structure elements

  • classes.php

     
    806806        var $permalink_structure;
    807807        var $category_base;
    808808        var $category_structure;
    809         var $author_base = 'author';
     809        var $author_base;
    810810        var $author_structure;
    811811        var $date_structure;
    812812        var $page_structure;
    813         var $search_base = 'search';
     813        var $search_base;
    814814        var $search_structure;
    815         var $comments_base = 'comments';
    816         var $feed_base = 'feed';
     815        var $comments_base;
     816        var $feed_base;
    817817        var $comments_feed_structure;
    818818        var $feed_structure;
    819819        var $front;
     
    13521352                        $this->root = $this->index . '/';
    13531353                }
    13541354                $this->category_base = get_settings('category_base');
     1355                $this->author_base = trim(__('/author/'), '/');
     1356                $this->search_base = trim(__('/search/'), '/');
     1357                $this->comments_base = trim(__('/comments/'), '/');
     1358                $this->feed_base = trim(__('/feed/'), '/');
     1359
    13551360                unset($this->category_structure);
    13561361                unset($this->author_structure);
    13571362                unset($this->date_structure);