XPressME Integration Kit

Trac


Ignore:
Timestamp:
Mar 29, 2009, 2:09:34 PM (15 years ago)
Author:
toemon
Message:

デフォルトテーマxpress_defaultの調整 bump Ver0.18
メインメニューにwordPress管理とXPressME設定を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/plugins/xpressme/include/custom_functions.php

    r140 r141  
    264264function xpress_conditional_title($display = true) 
    265265{ 
    266         $output = __('Main', 'xpress'); 
     266        $output = __('Main', 'xpressme'); 
    267267        if (is_category()) 
    268                 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpress'), single_cat_title('', false)); 
     268                $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false)); 
    269269        if (is_tag()) 
    270                 $output = sprintf(__('Posts Tagged ‘%s’', 'xpress'), single_tag_title('', false) ); 
     270                $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) ); 
    271271        if (is_day()) 
    272                 $output = sprintf(_c('Archive for %s|Daily archive page', 'xpress'), get_the_time(__('F jS, Y', 'xpress'))); 
     272                $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme'))); 
    273273        if (is_month()) 
    274                 $output = sprintf(_c('Archive for %s|Monthly archive page', 'xpress'), get_the_time(__('F, Y', 'xpress'))); 
     274                $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme'))); 
    275275        if (is_year()) 
    276                 $output = sprintf(_c('Archive for %s|Yearly archive page', 'xpress'), get_the_time(__('Y', 'xpress'))); 
     276                $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme'))); 
    277277        if (is_author()) 
    278                 $output = get_author_name( get_query_var('author')); __('Author Archive', 'xpress'); 
     278                $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author'))); 
    279279        if (is_search()) 
    280                 $output = __('Search Results', 'xpress'); 
     280                $output = __('Search Results', 'xpressme'); 
    281281                 
    282282        if ($display)  
Note: See TracChangeset for help on using the changeset viewer.