Changeset 343

Show
Ignore:
Timestamp:
06/15/06 00:51:43 (3 years ago)
Author:
Potter_System
Message:

bbPress i18, version 2.666 [the favorites function doesn't like (); ]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bb-includes/formatting-functions.php

    r336 r343  
    289289        if ( '0' === $topic->topic_open ) { 
    290290                if ( is_bb_feed() ) 
    291                         return "[closed] $title"
     291                        return sprintf(__('[closed] %s'), $title)
    292292                else 
    293                         return "[closed] <span class='closed'>$title</span>"
     293                        return sprintf(__('[closed]'). "<span class='closed'>%s</span>", $title)
    294294        } 
    295295        return $title; 
  • trunk/bb-includes/functions.php

    r341 r343  
    297297        // array of time period chunks 
    298298        $chunks = array( 
    299                 array(60 * 60 * 24 * 365 , 'year'), 
    300                 array(60 * 60 * 24 * 30 , 'month'), 
    301                 array(60 * 60 * 24 * 7, 'week'), 
    302                 array(60 * 60 * 24 , 'day'), 
    303                 array(60 * 60 , 'hour'), 
    304                 array(60 , 'minute'), 
     299                array(60 * 60 * 24 * 365 , __('year')), 
     300                array(60 * 60 * 24 * 30 , __('month')), 
     301                array(60 * 60 * 24 * 7, __('week')), 
     302                array(60 * 60 * 24 , __('day')), 
     303                array(60 * 60 , __('hour')), 
     304                array(60 , __('minute')), 
    305305        ); 
    306          
     306 
    307307        $today = time(); 
    308308        $since = $today - bb_offset_time($original); 
     
    456456        global $bbdb, $bb_table_prefix, $bb_current_user; 
    457457        bb_update_usermeta( $bb_current_user->ID, $bb_table_prefix . 'been_blocked', 1 ); // Just for logging. 
    458         die("You've been blocked.  If you think a mistake has been made, contact this site's administrator."); 
     458        die(__("You've been blocked.  If you think a mistake has been made, contact this site's administrator.")); 
    459459} 
    460460 
     
    467467        global $bb_cache, $bb_user_cache; 
    468468        if ( !is_numeric( $user_id ) ) 
    469                 die('bb_get_user needs a numeric ID'); 
     469                die(__('bb_get_user needs a numeric ID')); 
    470470        $user_id = (int) $user_id; 
    471471        if ( isset( $bb_user_cache[$user_id] ) && $cache ) 
     
    13381338 
    13391339        if ( isset($bb->debug) && 1 === $bb->debug ) : 
    1340                 echo "<table>\n<tr><td>REQUEST_URI:</td><td>"; 
     1340                echo "<table>\n<tr><td>". __('REQUEST_URI') .":</td><td>"; 
    13411341                var_dump($uri); 
    1342                 echo "</td></tr>\n<tr><td>should be:</td><td>"; 
     1342                echo "</td></tr>\n<tr><td>". __('should be') .":</td><td>"; 
    13431343                var_dump($check); 
    1344                 echo "</td></tr>\n<tr><td>full permalink:</td><td>"; 
     1344                echo "</td></tr>\n<tr><td>". __('full permalink') .":</td><td>"; 
    13451345                var_dump($permalink); 
    1346                 echo "</td></tr>\n<tr><td>PATH_INFO:</td><td>"; 
     1346                echo "</td></tr>\n<tr><td>". __('PATH_INFO') ."</td>:<td>"; 
    13471347                var_dump($_SERVER['PATH_INFO']); 
    13481348                echo "</td></tr>\n</table>"; 
  • trunk/bb-includes/registration-functions.php

    r328 r343  
    6363        bb_update_usermeta( $user->ID, 'newpwdkey', $resetkey ); 
    6464        if ( $user ) : 
    65                 mail( $user->user_email, bb_get_option('name') . ': Password Reset', "If you wanted to reset your password, you may do so by visiting the following address: 
     65                mail( $user->user_email, bb_get_option('name') . ': ' __('Password Reset'), sprintf( __("If you wanted to reset your password, you may do so by visiting the following address: 
    6666 
    67 " . bb_get_option('uri') . "bb-reset-password.php?key=$resetkey 
     67%s 
    6868 
    69 If you don't want to reset your password, just ignore this email. Thanks!", 'From: ' . bb_get_option('admin_email') ); 
     69If you don't want to reset your password, just ignore this email. Thanks!"), bb_get_option('uri')."bb-reset-password.php?key=".$resetkey ), 'From: ' . bb_get_option('admin_email') ); 
    7070 
    7171        endif; 
     
    7676        $key = user_sanitize( $key ); 
    7777        if ( empty( $key ) ) 
    78                 die('Key not found.'); 
     78                die(__('Key not found.')); 
    7979        $user_id = $bbdb->get_var("SELECT user_id FROM $bbdb->usermeta WHERE meta_key = 'newpwdkey' AND meta_value = '$key'"); 
    8080        if ( $user = bb_get_user( $user_id ) ) : 
     
    8484                bb_update_usermeta( $user->ID, 'newpwdkey', '' ); 
    8585        else : 
    86                 die('Key not found.'); 
     86                die(__('Key not found.')); 
    8787        endif; 
    8888} 
     
    115115 
    116116        if ( $user ) : 
    117                 mail( $user->user_email, bb_get_option('name') . ': Password', " 
    118 Your username is: $user->user_login 
    119 Your password is: $pas
    120 You can now login: " . bb_get_option('uri') . " 
     117                mail( $user->user_email, bb_get_option('name') . ':' __('Password'), sprintf( 
     118__("Your username is: %1$s 
     119Your password is: %2$
     120You can now login: %3$s 
    121121 
    122 Enjoy!", 'From: ' . bb_get_option('admin_email') ); 
     122Enjoy!"), $user->user_login, $pass, bb_get_option('uri') ), 'From: ' . bb_get_option('admin_email') ); 
    123123 
    124124        endif; 
  • trunk/bb-includes/template-functions.php

    r334 r343  
    4949        global $bb_current_user, $bb; 
    5050        if ($bb_current_user) { 
    51                echo '<p class="login">Welcome, ' . get_user_name( $bb_current_user->ID ) . "! <a href='" . get_user_profile_link( $bb_current_user->ID ) . "'>View your profile &raquo;</a>\n<small>("
     51        printf('<p class="login">'. __('Welcome, %1$s!'). ' <a href="' . get_user_profile_link( $bb_current_user->ID ) . '">'. __('View your profile') ."&raquo;</a>\n<small>(",get_user_name( $bb_current_user->ID ))
    5252        if ( bb_current_user_can('moderate') ) 
    5353                echo "<a href='" . bb_get_option('uri') . "bb-admin/'>Admin</a> | "; 
    54         echo "<a href='" . bb_get_option('uri') . "bb-login.php?logout'>Logout</a>)</small></p>"; 
     54        echo "<a href='" . bb_get_option('uri') . "bb-login.php?logout'>". __('Logout') ."</a>)</small></p>"; 
    5555        } else { 
    5656                include( BBPATH . '/bb-templates/login-form.php'); 
     
    405405 
    406406                $resolved_form .= "</select>\n"; 
    407                 $resolved_form .= '<input type="submit" name="submit" id="resolvedformsub" value="Change" />' . "\n</div></form>"; 
     407                $resolved_form .= '<input type="submit" name="submit" id="resolvedformsub" value="'. __('Change') .'" />' . "\n</div></form>"; 
    408408                echo $resolved_form; 
    409409        else: 
     
    462462                                                                $args, 
    463463                                                                str_replace("/page/$page", ( 2 == $page ? '' : '/page/' . ($page - 1) ), $uri) 
    464                                                                 ) ) . '">&laquo; Previous Page</a>' . "\n"; 
     464                                                                ) ) . '">&laquo; '. __('Previous Page') .'</a>' . "\n"; 
    465465        } 
    466466        if ( ( $total_pages = ceil( $total / bb_get_option('page_topics') ) ) > 1 ) { 
     
    491491                                                                $args, 
    492492                                                                str_replace("/page/$page", '/page/' . ($page + 1), $uri) 
    493                                                                 ) ) . '">Next Page &raquo;</a>' . "\n"; 
     493                                                                ) ) . '">'. __('Next Page') .' &raquo;</a>' . "\n"; 
    494494        } 
    495495        return $r; 
     
    502502 
    503503        if ( 0 == $topic->topic_status ) 
    504                 echo "<a href='" . bb_get_option('uri') . 'bb-admin/delete-topic.php?id=' . get_topic_id() . "' onclick=\"return confirm('Are you sure you wanna delete that?')\">Delete entire topic</a>"; 
    505         else 
    506                 echo "<a href='" . bb_get_option('uri') . 'bb-admin/delete-topic.php?id=' . get_topic_id() . "&#038;view=all' onclick=\"return confirm('Are you sure you wanna undelete that?')\">Undelete entire topic</a>"; 
     504                echo "<a href='" . bb_get_option('uri') . 'bb-admin/delete-topic.php?id=' . get_topic_id() . "' onclick=\"return confirm('". __('Are you sure you wanna delete that?') ."')\">Delete entire topic</a>"; 
     505        else 
     506                echo "<a href='" . bb_get_option('uri') . 'bb-admin/delete-topic.php?id=' . get_topic_id() . "&#038;view=all' onclick=\"return confirm('". __('Are you sure you wanna undelete that?') ."')\">Undelete entire topic</a>"; 
    507507} 
    508508 
     
    513513 
    514514        if ( topic_is_open( get_topic_id() ) ) 
    515                 $text = 'Close topic'
    516         else 
    517                 $text = 'Open topic'
     515                $text = __('Close topic')
     516        else 
     517                $text = __('Open topic')
    518518        echo "<a href='" . bb_get_option('uri') . 'bb-admin/topic-toggle.php?id=' . get_topic_id() . "'>$text</a>"; 
    519519} 
     
    525525 
    526526        if ( topic_is_sticky( get_topic_id() ) ) 
    527                 echo "<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "'>Unstick topic</a>"; 
    528         else 
    529                 echo "<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "'>Stick topic</a> (<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "&#038;super=1'>to front</a>)"; 
     527                echo "<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "'>". __('Unstick topic') ."</a>"; 
     528        else 
     529                echo "<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "'>". __('Stick topic') ."</a> (<a href='" . bb_get_option('uri') . 'bb-admin/sticky.php?id=' . get_topic_id() . "&#038;super=1'>". __('to front') ."</a>)"; 
    530530} 
    531531 
     
    535535                return; 
    536536        if ( 'all' == @$_GET['view'] ) 
    537                 echo "<a href='" . get_topic_link() . "'>View normal posts</a>"; 
    538         else 
    539                 echo "<a href='" . bb_specialchars( bb_add_query_arg( 'view', 'all', get_topic_link() ) ) . "'>View all posts</a>"; 
     537                echo "<a href='" . get_topic_link() . "'>". __('View normal posts') ."</a>"; 
     538        else 
     539                echo "<a href='" . bb_specialchars( bb_add_query_arg( 'view', 'all', get_topic_link() ) ) . "'>". __('View all posts') ."</a>"; 
    540540} 
    541541 
     
    548548        echo '<form id="topic-move" method="post" action="' . bb_get_option('uri') . 'bb-admin/topic-move.php"><div>' . "\n\t"; 
    549549        echo '<input type="hidden" name="topic_id" value="' . get_topic_id() . '" />' . "\n\t"; 
    550         echo '<label for="forum_id">Move this topic to the selected forum: '
     550        echo '<label for="forum_id">'. __('Move this topic to the selected forum:')
    551551        forum_dropdown(); 
    552552        echo "</label>\n\t"; 
    553         echo "<input type='submit' name='Submit' value='Move' />\n</div></form>"; 
     553        echo "<input type='submit' name='Submit' value='". __('Move') ."' />\n</div></form>"; 
    554554} 
    555555 
     
    584584                        return $user->user_login; 
    585585        else 
    586                 return 'Anonymous'
     586                return __('Anonymous')
    587587} 
    588588 
     
    643643 
    644644        if ( bb_current_user_can( 'edit_post', $bb_post->post_id ) ) 
    645                 echo "<a href='" . bb_apply_filters( 'post_edit_uri', bb_get_option('uri') . 'edit.php?id=' . get_post_id() ) . "'>Edit</a>"; 
     645                echo "<a href='" . bb_apply_filters( 'post_edit_uri', bb_get_option('uri') . 'edit.php?id=' . get_post_id() ) . "'>". __('Edit') ."</a>"; 
    646646} 
    647647 
     
    661661 
    662662        if ( 0 == $bb_post->post_status ) 
    663                 $r = "<a href='" . bb_get_option('uri') . 'bb-admin/delete-post.php?id=' . get_post_id() . "&#038;status=1' onclick='return ajaxPostDelete(" . get_post_id() . ", \"" . get_post_author() . "\");'>Delete</a>"; 
    664         else 
    665                 $r = "<a href='" . bb_get_option('uri') . 'bb-admin/delete-post.php?id=' . get_post_id() . "&#038;status=0&#038;view=all' onclick='return confirm(\"Are you sure you wanna undelete that?\");'>Undelete</a>"; 
     663                $r = "<a href='" . bb_get_option('uri') . 'bb-admin/delete-post.php?id=' . get_post_id() . "&#038;status=1' onclick='return ajaxPostDelete(" . get_post_id() . ", \"" . get_post_author() . "\");'>". __('Delete') ."</a>"; 
     664        else 
     665                $r = "<a href='" . bb_get_option('uri') . 'bb-admin/delete-post.php?id=' . get_post_id() . "&#038;status=0&#038;view=all' onclick='return confirm(\" ". __('Are you sure you wanna undelete that?') ." \");'>". __('Undelete') ."</a>"; 
    666666        $r = bb_apply_filters( 'post_delete_link', array($r, $bb_post->post_status) ); 
    667667        echo $r[0]; 
     
    861861                return false; 
    862862        $form  = "<ul id='manage-tags'>\n "; 
    863         $form .= "<li id='tag-rename'>Rename tag:\n\t"; 
     863        $form .= "<li id='tag-rename'>". __('Rename tag:') ."\n\t"; 
    864864        $form .= "<form method='post' action='" . bb_get_option('uri') . "bb-admin/tag-rename.php'><div>\n\t"; 
    865865        $form .= "<input type='text' name='tag' size='10' maxlength='30' />\n\t"; 
    866866        $form .= "<input type='hidden' name='id' value='$tag->tag_id' />\n\t"; 
    867         $form .= "<input type='submit' name='Submit' value='Rename' />\n\t</div></form>\n  </li>\n "; 
    868         $form .= "<li id='tag-merge'>Merge this tag into:\n\t"; 
     867        $form .= "<input type='submit' name='Submit' value='". __('Rename') ."' />\n\t</div></form>\n  </li>\n "; 
     868        $form .= "<li id='tag-merge'>". __('Merge this tag into:') ."\n\t"; 
    869869        $form .= "<form method='post' action='" . bb_get_option('uri') . "bb-admin/tag-merge.php'><div>\n\t"; 
    870870        $form .= "<input type='text' name='tag' size='10' maxlength='30' />\n\t"; 
    871871        $form .= "<input type='hidden' name='id' value='$tag->tag_id' />\n\t"; 
    872         $form .= "<input type='submit' name='Submit' value='Merge' "; 
    873        $form .= "onclick='return confirm(\"Are you sure you want to merge the &#039;" . bb_specialchars( $tag->raw_tag ) . "&#039; tag into the tag you specified? This is permanent and cannot be undone.\")' />\n\t</div></form>\n  </li>\n "; 
    874         $form .= "<li id='tag-destroy'>Destroy tag:\n\t"; 
     872        $form .= "<input type='submit' name='Submit' value='". __('Merge') ."'"; 
     873    $form .= "onclick='return confirm(\" ". sprintf(__('Are you sure you want to merge the &#039;%s&#039; tag into the tag you specified? This is permanent and cannot be undone.'), bb_specialchars( $tag->raw_tag )) ."\")' />\n\t</div></form>\n  </li>\n "; 
     874        $form .= "<li id='tag-destroy'>". __('Destroy tag:') ."\n\t"; 
    875875        $form .= "<form method='post' action='" . bb_get_option('uri') . "bb-admin/tag-destroy.php'><div>\n\t"; 
    876876        $form .= "<input type='hidden' name='id' value='$tag->tag_id' />\n\t"; 
    877         $form .= "<input type='submit' name='Submit' value='Destroy' "; 
    878         $form .= "onclick='return confirm(\"Are you sure you want to destroy the &#039;" . bb_specialchars( $tag->raw_tag ) . "&#039; tag? This is permanent and cannot be undone.\")' />\n\t</div></form>\n  </li>\n</ul>"; 
     877        $form .= "<input type='submit' name='Submit' value='". __('Destroy') ."'"; 
     878        $form .= "onclick='return confirm(\" ". sprintf(__('Are you sure you want to destroy the &#039;%s&#039; tag? This is permanent and cannot be undone.'), bb_specialchars( $tag->raw_tag )) ."\")' />\n\t</div></form>\n  </li>\n</ul>"; 
    879879        echo $form; 
    880880} 
     
    885885                return false; 
    886886 
    887         echo '[<a href="' . bb_get_option('uri') . 'tag-remove.php?tag=' . $tag->tag_id . '&#038;user=' . $tag->user_id . '&#038;topic=' . $tag->topic_id . '" onclick="return ajaxDelTag(' . $tag->tag_id . ', ' . $tag->user_id . ', \'' . addslashes(htmlspecialchars($tag->raw_tag)) . '\');" title="Remove this tag">x</a>]'; 
     887        echo '[<a href="' . bb_get_option('uri') . 'tag-remove.php?tag=' . $tag->tag_id . '&#038;user=' . $tag->user_id . '&#038;topic=' . $tag->topic_id . '" onclick="return ajaxDelTag(' . $tag->tag_id . ', ' . $tag->user_id . ', \'' . addslashes(htmlspecialchars($tag->raw_tag)) . '\');" title="'. __('Remove this tag') .'">x</a>]'; 
    888888} 
    889889