Changeset 1172

Show
Ignore:
Timestamp:
06/24/08 16:40:48 (7 months ago)
Author:
kovit
Message:

Add 'recent comments by anonymous'

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/app/controllers/comment_controller.rb

    r1164 r1172  
    99  def recent 
    1010    @title = _("Recent Comments") 
    11     @comments = Comment.paginate(:page => params[:page], :order => "created_at DESC", :per_page => $ITEMS_PER_PAGE
     11    @comments = Comment.paginate(:page => params[:page] ,:order => 'created_at DESC',  :per_page => $ITEMS_PER_PAGE
    1212    respond_to do |format| 
    1313      format.html { render :partial => 'comment_list', :layout => true } 
     
    2929    end 
    3030  end 
    31    
     31 
     32  def recent_anonymous 
     33    @title = _("Recent Comments By Anonymous") 
     34    @comments = Comment.paginate(:page => params[:page], :order => "created_at DESC" , :conditions => "user_id = 0" , :per_page => $ITEMS_PER_PAGE ) 
     35    respond_to do |format| 
     36      format.html { render :partial => 'comment_list', :layout => true } 
     37      format.all { redirect_to :action => "recent_anonymous" } 
     38    end   
     39 end 
     40 
    3241end 
  • trunk/config/routes.rb

    r1161 r1172  
    353353  map.comment_index "comment/", :controller => "comment", :action => "index" 
    354354  map.comment_recent "comment/recent", :controller => "comment", :action => "recent" 
     355  map.comment_recent_anonymous "comment/recent-anonymous", :controller => "comment", :action => "recent_anonymous" 
    355356  map.comment_user "comment/:username", :controller => "comment", :action => "user", :username => re_username 
     357   
    356358   
    357359  # spider trap 
  • trunk/po/kv.pot

    r1166 r1172  
    1 #: app/controllers/comment_controller.rb:10 
    2 #: app/controllers/comment_controller.rb:19 app/views/shared/_menu.html.erb:70 
    3 #: app/views/shared/_menu.html.erb:660 app/views/home/index.html.erb:33 
    4 msgid "Recent Comments" 
    5 msgstr "" 
    6  
    7 #: app/controllers/home_controller.rb:34 
    8 msgid "Incorrect URL" 
    9 msgstr "" 
    10  
    11 #: app/controllers/home_controller.rb:48 
    12 msgid "Cannot find a blog or a planet by the address." 
    13 msgstr "" 
    14  
    15 #: app/controllers/home_controller.rb:74 
    16 msgid "The address is incorrect." 
    17 msgstr "" 
    18  
    19 #: app/controllers/home_controller.rb:117 
    20 #: app/views/layouts/application.html.erb:81 
    21 msgid "Search" 
     1#: app/models/blog.rb:19 app/models/bookmark.rb:13 app/models/planet.rb:20 
     2#: app/models/upload.rb:24 app/models/tag_set.rb:13 
     3msgid "Please supply a user_id" 
     4msgstr "" 
     5 
     6#: app/models/blog.rb:21 
     7msgid "Please provide an address for this blog." 
     8msgstr "" 
     9 
     10#: app/models/blog.rb:22 app/models/planet.rb:23 app/models/special_page.rb:8 
     11msgid "" 
     12"Use only a-z, A-Z, 0-9, and dash in the address. Do not start or end with a " 
     13"dash." 
     14msgstr "" 
     15 
     16#: app/models/blog.rb:23 
     17msgid "A blog address must be at least 3 characters long." 
     18msgstr "" 
     19 
     20#: app/models/blog.rb:24 app/models/blog.rb:38 app/models/planet.rb:25 
     21#: app/models/planet.rb:44 app/models/special_page.rb:6 
     22msgid "This address has already been taken." 
     23msgstr "" 
     24 
     25#: app/models/blog.rb:26 
     26msgid "Please provide a title for this blog." 
     27msgstr "" 
     28 
     29#: app/models/blog.rb:30 
     30msgid "Please provide some tags to identify this blog." 
     31msgstr "" 
     32 
     33#: app/models/blog.rb:46 app/models/planet.rb:52 
     34msgid "The address is not allowed." 
     35msgstr "" 
     36 
     37#: app/models/question.rb:22 
     38msgid "Please enter a subject." 
     39msgstr "" 
     40 
     41#: app/models/question.rb:23 
     42msgid "Please enter a question." 
     43msgstr "" 
     44 
     45#: app/models/question.rb:26 
     46msgid "Please provide some tags to identify this question." 
     47msgstr "" 
     48 
     49#: app/models/bookmark.rb:15 
     50msgid "Please provide a title for the link." 
     51msgstr "" 
     52 
     53#: app/models/bookmark.rb:17 
     54msgid "A bookmark address is required." 
     55msgstr "" 
     56 
     57#: app/models/bookmark.rb:19 
     58msgid "The URL address is not correctly formatted." 
     59msgstr "" 
     60 
     61#: app/models/bookmark.rb:22 
     62msgid "Please provide some tags to identify this bookmark." 
     63msgstr "" 
     64 
     65#: app/models/section.rb:4 
     66msgid "A section name is required." 
     67msgstr "" 
     68 
     69#: app/models/section.rb:5 
     70msgid "This section name already exists." 
     71msgstr "" 
     72 
     73#: app/models/section.rb:14 
     74msgid "Select" 
     75msgstr "" 
     76 
     77#: app/models/section.rb:14 app/controllers/post_controller.rb:120 
     78#: app/controllers/post_controller.rb:166 
     79#: app/views/dashboard/_post.html.erb:11 app/views/post/_info.html.erb:9 
     80#: app/views/home/index.html.erb:89 
     81msgid "Miscellaneous" 
     82msgstr "" 
     83 
     84#: app/models/comment.rb:4 
     85msgid "commentable_id is required." 
     86msgstr "" 
     87 
     88#: app/models/comment.rb:5 
     89msgid "commentable_type is required." 
     90msgstr "" 
     91 
     92#: app/models/comment.rb:7 
     93msgid "Please enter a message." 
     94msgstr "" 
     95 
     96#: app/models/site.rb:9 
     97msgid "'Enter the post ID for a featured post or zero (0) if no featured post." 
     98msgstr "" 
     99 
     100#: app/models/site.rb:11 
     101msgid "'Max File Size' must be an integer." 
     102msgstr "" 
     103 
     104#: app/models/site.rb:12 
     105msgid "'Upload Quota' must be an integer." 
     106msgstr "" 
     107 
     108#: app/models/site.rb:32 
     109msgid "Show all user profiles to all users" 
     110msgstr "" 
     111 
     112#: app/models/site.rb:33 
     113msgid "Show all user profiles only to registered users" 
     114msgstr "" 
     115 
     116#: app/models/site.rb:34 
     117msgid "Hide all user profiles from all users" 
     118msgstr "" 
     119 
     120#: app/models/hit.rb:3 
     121msgid "hittable_id is required." 
     122msgstr "" 
     123 
     124#: app/models/hit.rb:4 
     125msgid "hittable_type is required." 
     126msgstr "" 
     127 
     128#: app/models/planet.rb:22 
     129msgid "Please provide an address for this planet." 
     130msgstr "" 
     131 
     132#: app/models/planet.rb:24 
     133msgid "A planet address must be at least 3 characters long." 
     134msgstr "" 
     135 
     136#: app/models/planet.rb:27 
     137msgid "Please provide a title for this planet." 
     138msgstr "" 
     139 
     140#: app/models/planet.rb:28 
     141msgid "Please provide a description for this planet." 
     142msgstr "" 
     143 
     144#: app/models/planet.rb:31 
     145msgid "Please provide some tags to identify this planet." 
     146msgstr "" 
     147 
     148#: app/models/assisting.rb:9 
     149msgid "An assistant_id is required." 
     150msgstr "" 
     151 
     152#: app/models/assisting.rb:10 
     153msgid "A user_id is required." 
     154msgstr "" 
     155 
     156#: app/models/journal_following.rb:3 
     157msgid "A owner_id is required." 
     158msgstr "" 
     159 
     160#: app/models/journal_following.rb:4 
     161msgid "A follower_id is required." 
     162msgstr "" 
     163 
     164#: app/models/tagging.rb:5 
     165msgid "Please provide a user_id for this tagging." 
     166msgstr "" 
     167 
     168#: app/models/tagging.rb:6 
     169msgid "Please provide a tag_id for this tagging." 
     170msgstr "" 
     171 
     172#: app/models/user.rb:56 app/controllers/admin_controller.rb:321 
     173#: app/controllers/admin_controller.rb:356 
     174msgid "A username is required." 
     175msgstr "" 
     176 
     177#: app/models/user.rb:57 
     178msgid "Use only a-z, A-Z, 0-9, dashes, and underscores in the username." 
     179msgstr "" 
     180 
     181#: app/models/user.rb:59 
     182msgid "A username cannot end with a dash." 
     183msgstr "" 
     184 
     185#: app/models/user.rb:60 
     186msgid "A username cannot start with a dash." 
     187msgstr "" 
     188 
     189#: app/models/user.rb:62 
     190msgid "A username cannot end with an underscore." 
     191msgstr "" 
     192 
     193#: app/models/user.rb:63 
     194msgid "A username cannot start with an underscore." 
     195msgstr "" 
     196 
     197#: app/models/user.rb:67 app/views/user/create.html.erb:19 
     198msgid "A username must be at least 6 characters long." 
     199msgstr "" 
     200 
     201#: app/models/user.rb:68 
     202msgid "This username has already been taken." 
     203msgstr "" 
     204 
     205#: app/models/user.rb:71 
     206msgid "A password is required." 
     207msgstr "" 
     208 
     209#: app/models/user.rb:72 
     210msgid "A password confirmation is required." 
     211msgstr "" 
     212 
     213#: app/models/user.rb:73 
     214msgid "The password and the password confirmation don't match." 
     215msgstr "" 
     216 
     217#: app/models/user.rb:74 app/views/user/create.html.erb:32 
     218msgid "A password must be at least 8 characters long." 
     219msgstr "" 
     220 
     221#: app/models/user.rb:76 
     222msgid "Authorization error. Please try again later." 
     223msgstr "" 
     224 
     225#: app/models/user.rb:80 
     226msgid "An email is required." 
     227msgstr "" 
     228 
     229#: app/models/user.rb:81 
     230msgid "The email address is incorrect." 
     231msgstr "" 
     232 
     233#: app/models/user.rb:82 
     234msgid "This email address has already been registered." 
     235msgstr "" 
     236 
     237#: app/models/user.rb:85 
     238msgid "Please enter your first name." 
     239msgstr "" 
     240 
     241#: app/models/user.rb:88 
     242msgid "Please enter your last name." 
     243msgstr "" 
     244 
     245#: app/models/user.rb:95 
     246msgid "" 
     247"Please provide some tags to identify yourself, e.g., your interests, " 
     248"careers, positions, etc." 
     249msgstr "" 
     250 
     251#: app/models/user.rb:145 
     252msgid "The username is not allowed." 
     253msgstr "" 
     254 
     255#: app/models/user.rb:153 
     256msgid "This user isn't allowed to register with this site." 
     257msgstr "" 
     258 
     259#: app/models/user.rb:159 
     260msgid "" 
     261"Your username or your passphrase doesn't match with its record in the " 
     262"following server." 
     263msgstr "" 
     264 
     265#: app/models/user.rb:175 
     266msgid "Please use the following email address:" 
     267msgstr "" 
     268 
     269#: app/models/user.rb:287 
     270msgid "Full Name" 
     271msgstr "" 
     272 
     273#: app/models/user.rb:287 app/views/profile/edit.html.erb:25 
     274#: app/views/profile/user.html.erb:38 app/views/user/create.html.erb:63 
     275#: app/views/admin/confirm_delete_content.html.erb:27 
     276msgid "Screen Name" 
     277msgstr "" 
     278 
     279#: app/models/user.rb:287 app/views/profile/edit.html.erb:34 
     280#: app/views/profile/user.html.erb:50 app/views/user/create.html.erb:41 
     281#: app/views/admin/confirm_delete_content.html.erb:25 
     282msgid "First Name" 
     283msgstr "" 
     284 
     285#: app/models/user.rb:287 app/views/profile/edit.html.erb:38 
     286#: app/views/profile/user.html.erb:55 app/views/user/create.html.erb:45 
     287msgid "Middle Name" 
     288msgstr "" 
     289 
     290#: app/models/user.rb:287 app/views/profile/edit.html.erb:42 
     291#: app/views/profile/user.html.erb:60 app/views/user/create.html.erb:49 
     292#: app/views/admin/confirm_delete_content.html.erb:26 
     293msgid "Last Name" 
     294msgstr "" 
     295 
     296#: app/models/user.rb:364 
     297msgid "Show this profile to all users" 
     298msgstr "" 
     299 
     300#: app/models/user.rb:365 
     301msgid "Show this profile only to registered users" 
     302msgstr "" 
     303 
     304#: app/models/user.rb:366 
     305msgid "Hide this profile from all users" 
     306msgstr "" 
     307 
     308#: app/models/user.rb:407 app/models/journal_entry.rb:69 
     309msgid "member only" 
     310msgstr "" 
     311 
     312#: app/models/user.rb:409 app/models/journal_entry.rb:71 
     313#: app/helpers/application_helper.rb:368 app/views/blog/toc.html.erb:35 
     314#: app/views/blog/_toc_remote.html.erb:17 
     315msgid "hidden" 
     316msgstr "" 
     317 
     318#: app/models/user.rb:441 
     319msgid "no screen name" 
     320msgstr "" 
     321 
     322#: app/models/user.rb:443 
     323msgid "no middle name" 
     324msgstr "" 
     325 
     326#: app/models/user.rb:751 
     327msgid "Cannot add an assistant. Please try again later." 
     328msgstr "" 
     329 
     330#: app/models/user.rb:753 app/controllers/admin_controller.rb:38 
     331#: app/controllers/admin_controller.rb:318 
     332msgid "Cannot find a user with the username." 
     333msgstr "" 
     334 
     335#: app/models/user.rb:756 
     336msgid "You have already added this user as your assistant." 
     337msgstr "" 
     338 
     339#: app/models/theme.rb:4 
     340msgid "themeable_id is required." 
     341msgstr "" 
     342 
     343#: app/models/theme.rb:5 
     344msgid "themeable_type is required." 
     345msgstr "" 
     346 
     347#: app/models/theme.rb:6 app/models/picture.rb:3 
     348msgid "user_id is required." 
     349msgstr "" 
     350 
     351#: app/models/upload.rb:27 
     352msgid "A filename is required." 
     353msgstr "" 
     354 
     355#: app/models/upload.rb:28 
     356msgid "The filename is too long." 
     357msgstr "" 
     358 
     359#: app/models/upload.rb:28 
     360msgid "The filename is too short." 
     361msgstr "" 
     362 
     363#: app/models/upload.rb:31 
     364msgid "A content-type is required." 
     365msgstr "" 
     366 
     367#: app/models/upload.rb:34 
     368msgid "A description is required." 
     369msgstr "" 
     370 
     371#: app/models/upload.rb:38 
     372msgid "Please provide some tags to identify this file." 
     373msgstr "" 
     374 
     375#: app/models/upload.rb:176 
     376msgid "Cannot save the file. Please report this to the system administrator." 
     377msgstr "" 
     378 
     379#: app/models/upload.rb:194 
     380msgid "You have used all of your quota. Please delete some unused files." 
     381msgstr "" 
     382 
     383#: app/models/upload.rb:208 
     384msgid "The file size is larger than the allowed size." 
     385msgstr "" 
     386 
     387#: app/models/tag_set.rb:15 
     388msgid "Please provide a title for this tag set." 
     389msgstr "" 
     390 
     391#: app/models/journal_entry.rb:9 
     392msgid "Please supply a user_id." 
     393msgstr "" 
     394 
     395#: app/models/journal_entry.rb:10 
     396msgid "Please provide the content for this journal entry." 
     397msgstr "" 
     398 
     399#: app/models/journal_entry.rb:29 
     400msgid "Show this journal entry to all users" 
     401msgstr "" 
     402 
     403#: app/models/journal_entry.rb:30 
     404msgid "Show this journal entry only to registered users" 
     405msgstr "" 
     406 
     407#: app/models/journal_entry.rb:31 
     408msgid "Hide this journal entry from all users" 
     409msgstr "" 
     410 
     411#: app/models/planet_subscription.rb:5 
     412msgid "A blog_id is required." 
     413msgstr "" 
     414 
     415#: app/models/planet_subscription.rb:6 
     416msgid "A planet_id is required." 
     417msgstr "" 
     418 
     419#: app/models/special_page.rb:2 
     420msgid "Please provide the address for this special page." 
     421msgstr "" 
     422 
     423#: app/models/special_page.rb:3 
     424msgid "Please provide the title for this special page." 
     425msgstr "" 
     426 
     427#: app/models/special_page.rb:4 
     428msgid "Please provide the content for this special page." 
     429msgstr "" 
     430 
     431#: app/models/tag.rb:4 
     432msgid "A tag name is required." 
     433msgstr "" 
     434 
     435#: app/models/tag.rb:5 
     436msgid "This tag name has already been taken." 
     437msgstr "" 
     438 
     439#: app/models/tag.rb:15 
     440msgid "A tag name must be in a single line." 
     441msgstr "" 
     442 
     443#: app/models/post.rb:22 
     444msgid "Please supply a blog_id" 
     445msgstr "" 
     446 
     447#: app/models/post.rb:24 
     448msgid "Please provide a title for this post." 
     449msgstr "" 
     450 
     451#: app/models/post.rb:26 
     452msgid "Please provide the content for this post." 
     453msgstr "" 
     454 
     455#: app/models/post.rb:28 
     456msgid "Please provide the section for this post." 
     457msgstr "" 
     458 
     459#: app/models/post.rb:31 
     460msgid "Please provide some tags to identify this post." 
     461msgstr "" 
     462 
     463#: app/helpers/bookmark_helper.rb:3 app/controllers/bookmark_controller.rb:37 
     464#: app/controllers/bookmark_controller.rb:146 
     465#: app/views/dashboard/tag.html.erb:117 
     466#: app/views/bookmark/bookmark_list.html.erb:2 
     467#: app/views/shared/_menu.html.erb:213 app/views/shared/_menu.html.erb:469 
     468#: app/views/shared/_menu.html.erb:648 
     469msgid "Bookmarks" 
     470msgstr "" 
     471 
     472#: app/helpers/application_helper.rb:27 app/views/ask/_question.html.erb:15 
     473msgid "No Picture" 
     474msgstr "" 
     475 
     476#: app/helpers/application_helper.rb:41 app/views/ask/_question.html.erb:19 
     477#: app/views/post/_post_blog.html.erb:11 app/views/post/_post.html.erb:19 
     478#: app/views/file/_file.html.erb:20 
     479msgid "more" 
     480msgstr "" 
     481 
     482#: app/helpers/application_helper.rb:50 
     483#: app/views/bookmark/_bookmark_form.html.erb:40 
     484msgid "Saving..." 
     485msgstr "" 
     486 
     487#: app/helpers/application_helper.rb:338 app/views/planet/planet.html.erb:38 
     488#: app/views/post/_posts.html.erb:11 app/views/post/post_list.html.erb:11 
     489#: app/views/blog/toc.html.erb:20 app/views/blog/_blog_index.html.erb:40 
     490#: app/views/blog/_toc_remote.html.erb:2 
     491#: app/views/blog/blog_post_tag.html.erb:10 
     492msgid "No Post" 
     493msgstr "" 
     494 
     495#: app/helpers/application_helper.rb:369 
     496msgid "login to read" 
     497msgstr "" 
     498 
     499#: app/helpers/application_helper.rb:370 
     500msgid "login to comment" 
     501msgstr "" 
     502 
     503#: app/helpers/ask_helper.rb:3 app/controllers/ask_controller.rb:310 
     504#: app/controllers/ask_controller.rb:321 
     505#: app/views/shared/_menu_shortcut.html.erb:4 
     506#: app/views/shared/_menu.html.erb:324 app/views/ask/theme.html.erb:3 
     507#: app/views/ask/question.html.erb:70 
     508msgid "Ask" 
     509msgstr "" 
     510 
     511#: app/controllers/blog_controller.rb:32 app/controllers/blog_controller.rb:34 
     512#: app/views/shared/_menu.html.erb:32 
     513msgid "Recent Blogs" 
     514msgstr "" 
     515 
     516#: app/controllers/blog_controller.rb:49 app/controllers/blog_controller.rb:56 
     517#: app/controllers/blog_controller.rb:272 app/controllers/ask_controller.rb:95 
     518#: app/controllers/post_controller.rb:20 app/controllers/post_controller.rb:25 
     519#: app/controllers/post_controller.rb:31 
     520#: app/controllers/post_controller.rb:143 
     521#: app/controllers/bookmark_controller.rb:31 
     522#: app/controllers/bookmark_controller.rb:37 
     523#: app/controllers/profile_controller.rb:25 
     524#: app/controllers/file_controller.rb:79 
     525#: app/controllers/planet_controller.rb:45 
     526#: app/views/blog/blog_post_tag.html.erb:8 
     527msgid "Tag" 
     528msgstr "" 
     529 
     530#: app/controllers/blog_controller.rb:54 
     531msgid "Cannot find a blog with the tag." 
     532msgstr "" 
     533 
     534#: app/controllers/blog_controller.rb:56 app/views/dashboard/blogs.html.erb:3 
     535#: app/views/dashboard/tag.html.erb:62 app/views/shared/_menu.html.erb:21 
     536#: app/views/shared/_menu.html.erb:109 app/views/shared/_menu.html.erb:506 
     537#: app/views/shared/_menu.html.erb:583 app/views/shared/_blogs.html.erb:3 
     538#: app/views/blog/blog_list.html.erb:2 
     539msgid "Blogs" 
     540msgstr "" 
     541 
     542#: app/controllers/blog_controller.rb:73 
     543msgid "The blog has been created." 
     544msgstr "" 
     545 
     546#: app/controllers/blog_controller.rb:80 
     547msgid "Invalid parameters, please check the form." 
     548msgstr "" 
     549 
     550#: app/controllers/blog_controller.rb:160 
     551msgid "This blog has been edited." 
     552msgstr "" 
     553 
     554#: app/controllers/blog_controller.rb:167 
     555#: app/controllers/file_controller.rb:133 
     556msgid "Invalid parameters" 
     557msgstr "" 
     558 
     559#: app/controllers/blog_controller.rb:189 
     560#: app/controllers/blog_controller.rb:203 
     561#: app/controllers/blog_controller.rb:444 
     562#: app/controllers/planet_controller.rb:56 
     563msgid "Cannot find the blog" 
     564msgstr "" 
     565 
     566#: app/controllers/blog_controller.rb:195 
     567msgid "This blog has been enabled." 
     568msgstr "" 
     569 
     570#: app/controllers/blog_controller.rb:213 
     571msgid "The blog has been disabled. You can enable it from Dashboard." 
     572msgstr "" 
     573 
     574#: app/controllers/blog_controller.rb:225 
     575msgid "The blog has been deleted." 
     576msgstr "" 
     577 
     578#: app/controllers/blog_controller.rb:231 
     579msgid "" 
     580"You can only delete an empty blog. This blog has one or more posts. If you " 
     581"want to delete this blog, please move or delete posts from this blogs first." 
     582msgstr "" 
     583 
     584#: app/controllers/blog_controller.rb:247 
     585msgid "The new post has been published." 
     586msgstr "" 
     587 
     588#: app/controllers/blog_controller.rb:262 
     589#: app/controllers/post_controller.rb:31 
     590#: app/controllers/post_controller.rb:143 
     591#: app/views/comment/_comment_form.html.erb:65 
     592#: app/views/post/popular_tag_cloud.html.erb:2 
     593#: app/views/blog/blog_tag.html.erb:8 app/views/blog/post.html.erb:3 
     594msgid "Post" 
     595msgstr "" 
     596 
     597#: app/controllers/blog_controller.rb:270 
     598#: app/controllers/post_controller.rb:29 
     599msgid "Cannot find a post with the tag." 
     600msgstr "" 
     601 
     602#: app/controllers/blog_controller.rb:281 
     603msgid "You must log in before you can read the post." 
     604msgstr "" 
     605 
     606#: app/controllers/blog_controller.rb:293 
     607#: app/views/comment/_comments.html.erb:38 
     608msgid "You must log in before you can post a comment." 
     609msgstr "" 
     610 
     611#: app/controllers/blog_controller.rb:309 
     612msgid "The post has been edited." 
     613msgstr "" 
     614 
     615#: app/controllers/blog_controller.rb:316 
     616#: app/controllers/user_controller.rb:61 
     617msgid "Incorrect parameters" 
     618msgstr "" 
     619 
     620#: app/controllers/blog_controller.rb:325 
     621#: app/controllers/ask_controller.rb:187 app/controllers/application.rb:307 
     622#: app/controllers/bookmark_controller.rb:99 
     623#: app/controllers/file_controller.rb:217 
     624#: app/controllers/planet_controller.rb:172 
     625#: app/views/dashboard/tag.html.erb:14 app/views/dashboard/tag.html.erb:25 
     626#: app/views/dashboard/tag_set.html.erb:10 
     627#: app/views/dashboard/tag_set.html.erb:21 
     628#: app/views/shared/_delete.html.erb:14 
     629#: app/views/shared/_delete_comment.html.erb:10 
     630#: app/views/shared/_delete_restful.html.erb:15 
     631#: app/views/admin/section_delete.html.erb:10 
     632#: app/views/admin/special_pages/form.html.erb:14 
     633#: app/views/blog/delete.html.erb:14 app/views/blog/disable.html.erb:15 
     634msgid "Yes" 
     635msgstr "" 
     636 
     637#: app/controllers/blog_controller.rb:326 
     638msgid "This post has been deleted." 
     639msgstr "" 
     640 
     641#: app/controllers/blog_controller.rb:342 
     642msgid "The post has been moved." 
     643msgstr "" 
     644 
     645#: app/controllers/blog_controller.rb:345 
     646msgid "Cannot move this post." 
     647msgstr "" 
     648 
     649#: app/controllers/blog_controller.rb:453 
     650msgid "Cannot find the post" 
    22651msgstr "" 
    23652 
     
    52681msgstr "" 
    53682 
    54 #: app/controllers/ask_controller.rb:95 
    55 #: app/controllers/bookmark_controller.rb:31 
    56 #: app/controllers/bookmark_controller.rb:37 
    57 #: app/controllers/profile_controller.rb:25 
    58 #: app/controllers/blog_controller.rb:49 app/controllers/blog_controller.rb:56 
    59 #: app/controllers/blog_controller.rb:272 
    60 #: app/controllers/planet_controller.rb:45 
    61 #: app/controllers/post_controller.rb:20 app/controllers/post_controller.rb:25 
    62 #: app/controllers/post_controller.rb:31 
    63 #: app/controllers/post_controller.rb:143 
    64 #: app/controllers/file_controller.rb:79 
    65 #: app/views/blog/blog_post_tag.html.erb:8 
    66 msgid "Tag" 
    67 msgstr "" 
    68  
    69683#: app/controllers/ask_controller.rb:141 
    70684msgid "Invalid parameters." 
     
    79693msgstr "" 
    80694 
    81 #: app/controllers/ask_controller.rb:187 
    82 #: app/controllers/bookmark_controller.rb:99 
    83 #: app/controllers/application.rb:307 app/controllers/blog_controller.rb:325 
    84 #: app/controllers/planet_controller.rb:172 
    85 #: app/controllers/file_controller.rb:217 app/views/shared/_delete.html.erb:14 
    86 #: app/views/shared/_delete_comment.html.erb:10 
    87 #: app/views/shared/_delete_restful.html.erb:15 
    88 #: app/views/blog/disable.html.erb:15 app/views/blog/delete.html.erb:14 
    89 #: app/views/admin/special_pages/form.html.erb:14 
    90 #: app/views/admin/section_delete.html.erb:10 
    91 #: app/views/dashboard/tag_set.html.erb:10 
    92 #: app/views/dashboard/tag_set.html.erb:21 app/views/dashboard/tag.html.erb:14 
    93 #: app/views/dashboard/tag.html.erb:25 
    94 msgid "Yes" 
    95 msgstr "" 
    96  
    97695#: app/controllers/ask_controller.rb:188 
    98696msgid "This question has been deleted." 
     
    103701msgstr "" 
    104702 
    105 #: app/controllers/ask_controller.rb:310 app/controllers/ask_controller.rb:321 
    106 #: app/helpers/ask_helper.rb:3 app/views/shared/_menu_shortcut.html.erb:4 
    107 #: app/views/shared/_menu.html.erb:324 app/views/ask/question.html.erb:70 
    108 #: app/views/ask/theme.html.erb:3 
    109 msgid "Ask" 
    110 msgstr "" 
    111  
    112 #: app/controllers/bookmark_controller.rb:14 
    113 msgid "All Bookmarks" 
    114 msgstr "" 
    115  
    116 #: app/controllers/bookmark_controller.rb:16 
    117 #: app/views/shared/_menu.html.erb:68 app/views/bookmark/user.html.erb:10 
    118 msgid "Recent Bookmarks" 
    119 msgstr "" 
    120  
    121 #: app/controllers/bookmark_controller.rb:35 
    122 msgid "Cannot find a bookmark with the tag." 
    123 msgstr "" 
    124  
    125 #: app/controllers/bookmark_controller.rb:37 
    126 #: app/controllers/bookmark_controller.rb:146 app/helpers/bookmark_helper.rb:3 
    127 #: app/views/shared/_menu.html.erb:213 app/views/shared/_menu.html.erb:469 
    128 #: app/views/shared/_menu.html.erb:648 
    129 #: app/views/bookmark/bookmark_list.html.erb:2 
    130 #: app/views/dashboard/tag.html.erb:117 
    131 msgid "Bookmarks" 
    132 msgstr "" 
    133  
    134 #: app/controllers/bookmark_controller.rb:69 
    135 msgid "The bookmark has been added." 
    136 msgstr "" 
    137  
    138 #: app/controllers/bookmark_controller.rb:85 
    139 msgid "The bookmark has been edited." 
    140 msgstr "" 
    141  
    142 #: app/controllers/bookmark_controller.rb:100 
    143 msgid "This bookmark has been deleted." 
    144 msgstr "" 
    145  
    146 #: app/controllers/bookmark_controller.rb:124 
    147 msgid "Cannot find the bookmark." 
    148 msgstr "" 
    149  
    150 #: app/controllers/user_controller.rb:18 
    151 msgid "Please enter the required data." 
    152 msgstr "" 
    153  
    154 #: app/controllers/user_controller.rb:22 
    155 msgid "Please enter your username and your passphrase." 
    156 msgstr "" 
    157  
    158 #: app/controllers/user_controller.rb:27 
    159 msgid "Incorrect username or passphrase. Please try again." 
    160 msgstr "" 
    161  
    162 #: app/controllers/user_controller.rb:27 app/controllers/user_controller.rb:51 
    163 msgid "If you haven't registered with this site, please register first." 
    164 msgstr "" 
    165  
    166 #: app/controllers/user_controller.rb:28 
    167 msgid "The username and password must match a record in the following server:" 
    168 msgstr "" 
    169  
    170 #: app/controllers/user_controller.rb:50 
    171 msgid "You can retrieve your login information from the following server." 
    172 msgstr "" 
    173  
    174 #: app/controllers/user_controller.rb:57 
    175 msgid "Please enter a username or an email address." 
    176 msgstr "" 
    177  
    178 #: app/controllers/user_controller.rb:61 
    179 #: app/controllers/blog_controller.rb:316 
    180 msgid "Incorrect parameters" 
    181 msgstr "" 
    182  
    183 #: app/controllers/user_controller.rb:66 
    184 #: app/controllers/user_controller.rb:109 
    185 msgid "Cannot find a user by the username." 
    186 msgstr "" 
    187  
    188 #: app/controllers/user_controller.rb:70 
    189 msgid "Cannot find a user by the email." 
    190 msgstr "" 
    191  
    192 #: app/controllers/user_controller.rb:106 
    193 msgid "Please check the reset adddress." 
    194 msgstr "" 
    195  
    196 #: app/controllers/user_controller.rb:112 
    197 msgid "Incorrect reset information. Please request the information again." 
    198 msgstr "" 
    199  
    200 #: app/controllers/user_controller.rb:118 
    201 #: app/controllers/dashboard_controller.rb:226 
    202 msgid "Please enter all fields." 
    203 msgstr "" 
    204  
    205 #: app/controllers/user_controller.rb:127 
    206 msgid "Your passphrase has been changed. Please login." 
    207 msgstr "" 
    208  
    209 #: app/controllers/user_controller.rb:144 
    210 msgid "You have logged out from the system." 
    211 msgstr "" 
    212  
    213 #: app/controllers/user_controller.rb:187 
    214 msgid "The registration is completed successfully, Please login." 
    215 msgstr "" 
    216  
    217 #: app/controllers/journal_entries_controller.rb:15 
    218 #: app/controllers/journals_controller.rb:25 
    219 #: app/controllers/journals_controller.rb:70 
    220 #: app/views/shared/_menu.html.erb:16 app/views/journals/show.html.erb:22 
    221 #: app/views/journals/index.html.erb:3 app/views/journals/show.rss.builder:2 
    222 msgid "Recent Journal Entries" 
    223 msgstr "" 
    224  
    225 #: app/controllers/journal_entries_controller.rb:37 
    226 msgid "The new journal entry has been published." 
    227 msgstr "" 
    228  
    229 #: app/controllers/journal_entries_controller.rb:46 
    230 msgid "Please fill the form to create a new journal entry." 
    231 msgstr "" 
    232  
    233 #: app/controllers/journal_entries_controller.rb:64 
    234 msgid "The journal entry has been edited." 
    235 msgstr "" 
    236  
    237 #: app/controllers/journal_entries_controller.rb:78 
    238 msgid "The journal entry has been deleted." 
    239 msgstr "" 
    240  
    241 #: app/controllers/journal_entries_controller.rb:100 
    242 msgid "Cannot find the journal entry." 
    243 msgstr "" 
    244  
    245 #: app/controllers/journal_entries_controller.rb:107 
    246 #: app/controllers/journals_controller.rb:250 
    247 #: app/views/shared/_menu.html.erb:11 app/views/shared/_menu.html.erb:173 
    248 #: app/views/shared/_menu.html.erb:636 app/views/journals/_info.html.erb:17 
    249 #: app/views/journals/_info.html.erb:50 
    250 #: app/views/journals/_show_items.html.erb:30 
    251 msgid "Journal" 
    252 msgstr "" 
    253  
    254 #: app/controllers/application.rb:60 app/views/planet/planet.html.erb:3 
    255 #: app/views/planet/planet_list.html.erb:3 
     703#: app/controllers/application.rb:60 app/views/layouts/application.html.erb:82 
     704#: app/views/dashboard/index.html.erb:3 app/views/bookmark/user.html.erb:3 
     705#: app/views/planet/planet.html.erb:3 app/views/planet/planet_list.html.erb:3 
    256706#: app/views/shared/_popular_tag_cloud.html.erb:3 
    257 #: app/views/home/error.html.erb:3 app/views/email/result.html.erb:3 
    258 #: app/views/email/index.html.erb:3 app/views/ask/user.html.erb:3 
    259 #: app/views/ask/view.html.erb:6 app/views/file/file_list.html.erb:3 
    260 #: app/views/user/register.html.erb:3 app/views/user/login.html.erb:3 
    261 #: app/views/bookmark/user.html.erb:3 app/views/dashboard/index.html.erb:3 
    262 #: app/views/layouts/application.html.erb:82 
     707#: app/views/ask/view.html.erb:6 app/views/ask/user.html.erb:3 
     708#: app/views/user/login.html.erb:3 app/views/user/register.html.erb:3 
     709#: app/views/file/file_list.html.erb:3 app/views/email/index.html.erb:3 
     710#: app/views/email/result.html.erb:3 app/views/home/error.html.erb:3 
    263711msgid "Welcome" 
    264712msgstr "" 
    265713 
    266714#: app/controllers/application.rb:65 
     715#: app/views/dashboard/_post_list.html.erb:38 
    267716#: app/views/shared/_browser_navigation.html.erb:4 
    268 #: app/views/dashboard/_post_list.html.erb:38 
    269717msgid "Previous" 
    270718msgstr "" 
    271719 
    272720#: app/controllers/application.rb:66 
     721#: app/views/dashboard/_post_list.html.erb:45 
     722#: app/views/shared/_browser_navigation.html.erb:18 
    273723#: app/views/shared/_image_injection.html.erb:31 
    274 #: app/views/shared/_browser_navigation.html.erb:18 
    275 #: app/views/dashboard/_post_list.html.erb:45 
    276724msgid "Next" 
    277725msgstr "" 
     
    485933msgstr "" 
    486934 
     935#: app/controllers/journals_controller.rb:25 
     936#: app/controllers/journals_controller.rb:70 
     937#: app/controllers/journal_entries_controller.rb:15 
     938#: app/views/journals/index.html.erb:3 app/views/journals/show.html.erb:22 
     939#: app/views/shared/_menu.html.erb:16 app/views/journals/show.rss.builder:2 
     940msgid "Recent Journal Entries" 
     941msgstr "" 
     942 
    487943#: app/controllers/journals_controller.rb:98 
    488944msgid "Recent Journal Entries of Others" 
     
    505961msgstr "" 
    506962 
    507 #: app/controllers/profile_controller.rb:15 
    508 msgid "All Users" 
    509 msgstr "" 
    510  
    511 #: app/controllers/profile_controller.rb:29 
    512 msgid "Cannot find a user with the tag." 
    513 msgstr "" 
    514  
    515 #: app/controllers/profile_controller.rb:54 
    516 msgid "This user has restricted access to his or her profile." 
    517 msgstr "" 
    518  
    519 #: app/controllers/profile_controller.rb:111 
    520 msgid "" 
    521 "Your profile picture has been saved. You may need to press Ctrl+F5 to see " 
    522 "the change." 
    523 msgstr "" 
    524  
    525 #: app/controllers/profile_controller.rb:114 
    526 msgid "The system cannot save your picture." 
    527 msgstr "" 
    528  
    529 #: app/controllers/profile_controller.rb:117 
    530 msgid "The system cannot read your picture. You may try another picture." 
    531 msgstr "" 
    532  
    533 #: app/controllers/blog_controller.rb:32 app/controllers/blog_controller.rb:34 
    534 #: app/views/shared/_menu.html.erb:32 
    535 msgid "Recent Blogs" 
    536 msgstr "" 
    537  
    538 #: app/controllers/blog_controller.rb:54 
    539 msgid "Cannot find a blog with the tag." 
    540 msgstr "" 
    541  
    542 #: app/controllers/blog_controller.rb:56 app/views/shared/_menu.html.erb:21 
    543 #: app/views/shared/_menu.html.erb:109 app/views/shared/_menu.html.erb:506 
    544 #: app/views/shared/_menu.html.erb:583 app/views/shared/_blogs.html.erb:3 
    545 #: app/views/blog/blog_list.html.erb:2 app/views/dashboard/blogs.html.erb:3 
    546 #: app/views/dashboard/tag.html.erb:62 
    547 msgid "Blogs" 
    548 msgstr "" 
    549  
    550 #: app/controllers/blog_controller.rb:73 
    551 msgid "The blog has been created." 
    552 msgstr "" 
    553  
    554 #: app/controllers/blog_controller.rb:80 
    555 msgid "Invalid parameters, please check the form." 
    556 msgstr "" 
    557  
    558 #: app/controllers/blog_controller.rb:160 
    559 msgid "This blog has been edited." 
    560 msgstr "" 
    561  
    562 #: app/controllers/blog_controller.rb:167 
    563 #: app/controllers/file_controller.rb:133 
    564 msgid "Invalid parameters" 
    565 msgstr "" 
    566  
    567 #: app/controllers/blog_controller.rb:189 
    568 #: app/controllers/blog_controller.rb:203 
    569 #: app/controllers/blog_controller.rb:444 
    570 #: app/controllers/planet_controller.rb:56 
    571 msgid "Cannot find the blog" 
    572 msgstr "" 
    573  
    574 #: app/controllers/blog_controller.rb:195 
    575 msgid "This blog has been enabled." 
    576 msgstr "" 
    577  
    578 #: app/controllers/blog_controller.rb:213 
    579 msgid "The blog has been disabled. You can enable it from Dashboard." 
    580 msgstr "" 
    581  
    582 #: app/controllers/blog_controller.rb:225 
    583 msgid "The blog has been deleted." 
    584 msgstr "" 
    585  
    586 #: app/controllers/blog_controller.rb:231 
    587 msgid "" 
    588 "You can only delete an empty blog. This blog has one or more posts. If you " 
    589 "want to delete this blog, please move or delete posts from this blogs first." 
    590 msgstr "" 
    591  
    592 #: app/controllers/blog_controller.rb:247 
    593 msgid "The new post has been published." 
    594 msgstr "" 
    595  
    596 #: app/controllers/blog_controller.rb:262 
    597 #: app/controllers/post_controller.rb:31 
    598 #: app/controllers/post_controller.rb:143 
    599 #: app/views/comment/_comment_form.html.erb:65 
    600 #: app/views/blog/blog_tag.html.erb:8 app/views/blog/post.html.erb:3 
    601 #: app/views/post/popular_tag_cloud.html.erb:2 
    602 msgid "Post" 
    603 msgstr "" 
    604  
    605 #: app/controllers/blog_controller.rb:270 
    606 #: app/controllers/post_controller.rb:29 
    607 msgid "Cannot find a post with the tag." 
    608 msgstr "" 
    609  
    610 #: app/controllers/blog_controller.rb:281 
    611 msgid "You must log in before you can read the post." 
    612 msgstr "" 
    613  
    614 #: app/controllers/blog_controller.rb:293 
    615 #: app/views/comment/_comments.html.erb:38 
    616 msgid "You must log in before you can post a comment." 
    617 msgstr "" 
    618  
    619 #: app/controllers/blog_controller.rb:309 
    620 msgid "The post has been edited." 
    621 msgstr "" 
    622  
    623 #: app/controllers/blog_controller.rb:326 
    624 msgid "This post has been deleted." 
    625 msgstr "" 
    626  
    627 #: app/controllers/blog_controller.rb:342 
    628 msgid "The post has been moved." 
    629 msgstr "" 
    630  
    631 #: app/controllers/blog_controller.rb:345 
    632 msgid "Cannot move this post." 
    633 msgstr "" 
    634  
    635 #: app/controllers/blog_controller.rb:453 
    636 msgid "Cannot find the post" 
    637 msgstr "" 
    638  
    639 #: app/controllers/email_controller.rb:6 
    640 #: app/controllers/admin_controller.rb:41 
    641 msgid "Please enter a username." 
    642 msgstr "" 
    643  
    644 #: app/controllers/email_controller.rb:75 
    645 msgid "All fields are required." 
     963#: app/controllers/journals_controller.rb:250 
     964#: app/controllers/journal_entries_controller.rb:107 
     965#: app/views/journals/_show_items.html.erb:30 
     966#: app/views/journals/_info.html.erb:17 app/views/journals/_info.html.erb:50 
     967#: app/views/shared/_menu.html.erb:11 app/views/shared/_menu.html.erb:173 
     968#: app/views/shared/_menu.html.erb:636 
     969msgid "Journal" 
    646970msgstr "" 
    647971 
     
    650974msgstr "" 
    651975 
    652 #: app/controllers/admin_controller.rb:38 
    653 #: app/controllers/admin_controller.rb:318 app/models/user.rb:753 
    654 msgid "Cannot find a user with the username." 
     976#: app/controllers/admin_controller.rb:41 
     977#: app/controllers/email_controller.rb:6 
     978msgid "Please enter a username." 
    655979msgstr "" 
    656980 
     
    662986#: app/controllers/admin_controller.rb:45 
    663987#: app/controllers/admin_controller.rb:336 
    664 #: app/controllers/admin_controller.rb:372 app/views/profile/user.html.erb:28 
    665 #: app/views/profile/edit.html.erb:16 app/views/email/index.html.erb:8 
    666 #: app/views/email/index.html.erb:17 app/views/user/create.html.erb:13 
    667 #: app/views/user/login.html.erb:15 app/views/user/info.html.erb:19 
     988#: app/controllers/admin_controller.rb:372 app/views/profile/edit.html.erb:16 
     989#: app/views/profile/user.html.erb:28 app/views/user/info.html.erb:19 
     990#: app/views/user/login.html.erb:15 app/views/user/create.html.erb:13 
    668991#: app/views/admin/confirm_delete_content.html.erb:23 
     992#: app/views/email/index.html.erb:8 app/views/email/index.html.erb:17 
    669993msgid "Username" 
    670994msgstr "" 
     
    6831007msgstr "" 
    6841008 
    685 #: app/controllers/admin_controller.rb:62 
     1009#: app/controllers/admin_controller.rb:62 app/views/profile/user.html.erb:32 
    6861010#: app/views/comment/_comment_form.html.erb:12 
    6871011#: app/views/comment/_comment_form.html.erb:21 
    688 #: app/views/profile/user.html.erb:32 
    689 #: app/views/user_mailer/contact.html.erb:10 
    6901012#: app/views/ask/question.html.erb:20 app/views/ask/question.html.erb:29 
    691 #: app/views/user/info.html.erb:27 
     1013#: app/views/user_mailer/contact.html.erb:10 app/views/user/info.html.erb:27 
    6921014#: app/views/admin/confirm_delete_content.html.erb:24 
    6931015msgid "Email" 
     
    6991021 
    7001022#: app/controllers/admin_controller.rb:71 
     1023#: app/views/dashboard/assistants.html.erb:17 
     1024#: app/views/bookmark/_bookmark_form.html.erb:36 
    7011025#: app/views/admin/special_pages/index.html.erb:4 
    702 #: app/views/bookmark/_bookmark_form.html.erb:36 
    703 #: app/views/dashboard/assistants.html.erb:17 
    7041026msgid "Add" 
    7051027msgstr "" 
     
    7141036 
    7151037#: app/controllers/admin_controller.rb:86 
    716 #: app/views/home/special_page.html.erb:5 app/views/blog/edit.html.erb:4 
    7171038#: app/views/journals/_show_items.html.erb:35 
     1039#: app/views/dashboard/_planet.html.erb:9 
     1040#: app/views/dashboard/_bookmark.html.erb:8 
     1041#: app/views/dashboard/_blog.html.erb:11 app/views/dashboard/_post.html.erb:14 
     1042#: app/views/dashboard/_upload.html.erb:8 
     1043#: app/views/bookmark/_bookmark.html.erb:18 
     1044#: app/views/bookmark/_bookmark_form.html.erb:38 
    7181045#: app/views/admin/special_pages/index.html.erb:9 
    7191046#: app/views/admin/special_pages/index.html.erb:18 
    720 #: app/views/bookmark/_bookmark_form.html.erb:38 
    721 #: app/views/bookmark/_bookmark.html.erb:18 
    722 #: app/views/dashboard/_planet.html.erb:9 
    723 #: app/views/dashboard/_upload.html.erb:8 
    724 #: app/views/dashboard/_bookmark.html.erb:8 
    725 #: app/views/dashboard/_blog.html.erb:11 app/views/dashboard/_post.html.erb:14 
     1047#: app/views/home/special_page.html.erb:5 app/views/blog/edit.html.erb:4 
    7261048msgid "Edit" 
    7271049msgstr "" 
     
    7861108 
    7871109#: app/controllers/admin_controller.rb:188 app/views/shared/_menu.html.erb:261 
     1110#: app/views/admin/index.html.erb:22 
    7881111#: app/views/blog/blog_post_delete.html.erb:3 
    789 #: app/views/admin/index.html.erb:22 
    7901112msgid "Delete a Post" 
    7911113msgstr "" 
     
    8121134 
    8131135#: app/controllers/admin_controller.rb:218 app/views/shared/_menu.html.erb:267 
    814 #: app/views/blog/delete.html.erb:3 app/views/admin/index.html.erb:25 
     1136#: app/views/admin/index.html.erb:25 app/views/blog/delete.html.erb:3 
    8151137msgid "Delete a Blog" 
    8161138msgstr "" 
     
    8621184 
    8631185#: app/controllers/admin_controller.rb:280 app/views/shared/_menu.html.erb:271 
    864 #: app/views/file/delete.html.erb:3 app/views/admin/index.html.erb:27 
     1186#: app/views/admin/index.html.erb:27 app/views/file/delete.html.erb:3 
    8651187msgid "Delete a File" 
    8661188msgstr "" 
     
    8911213msgstr "" 
    8921214 
    893 #: app/controllers/admin_controller.rb:321 
    894 #: app/controllers/admin_controller.rb:356 app/models/user.rb:56 
    895 msgid "A username is required." 
    896 msgstr "" 
    897  
    8981215#: app/controllers/admin_controller.rb:327 
    8991216msgid "The user is deleted." 
     
    9731290#: app/controllers/admin_controller.rb:432 
    9741291msgid "Journal Entry ID" 
     1292msgstr "" 
     1293 
     1294#: app/controllers/post_controller.rb:40 
     1295#: app/controllers/post_controller.rb:147 app/views/shared/_menu.html.erb:26 
     1296#: app/views/blog/_blog_index.html.erb:29 
     1297msgid "Recent Posts" 
     1298msgstr "" 
     1299 
     1300#: app/controllers/post_controller.rb:56 
     1301#: app/controllers/post_controller.rb:152 app/views/planet/planet.html.erb:28 
     1302#: app/views/shared/_menu.html.erb:28 app/views/blog/_blog_index.html.erb:30 
     1303msgid "Recently Commented Posts" 
     1304msgstr "" 
     1305 
     1306#: app/controllers/post_controller.rb:69 
     1307#: app/controllers/post_controller.rb:156 app/views/shared/_menu.html.erb:30 
     1308msgid "Random Posts" 
     1309msgstr "" 
     1310 
     1311#: app/controllers/post_controller.rb:84 
     1312msgid "Cannot find a post with the ID." 
     1313msgstr "" 
     1314 
     1315#: app/controllers/post_controller.rb:115 
     1316#: app/controllers/post_controller.rb:161 
     1317msgid "The section ID is not found." 
     1318msgstr "" 
     1319 
     1320#: app/controllers/bookmark_controller.rb:14 
     1321msgid "All Bookmarks" 
     1322msgstr "" 
     1323 
     1324#: app/controllers/bookmark_controller.rb:16 
     1325#: app/views/bookmark/user.html.erb:10 app/views/shared/_menu.html.erb:68 
     1326msgid "Recent Bookmarks" 
     1327msgstr "" 
     1328 
     1329#: app/controllers/bookmark_controller.rb:35 
     1330msgid "Cannot find a bookmark with the tag." 
     1331msgstr "" 
     1332 
     1333#: app/controllers/bookmark_controller.rb:69 
     1334msgid "The bookmark has been added." 
     1335msgstr "" 
     1336 
     1337#: app/controllers/bookmark_controller.rb:85 
     1338msgid "The bookmark has been edited." 
     1339msgstr "" 
     1340 
     1341#: app/controllers/bookmark_controller.rb:100 
     1342msgid "This bookmark has been deleted." 
     1343msgstr "" 
     1344 
     1345#: app/controllers/bookmark_controller.rb:124 
     1346msgid "Cannot find the bookmark." 
     1347msgstr "" 
     1348 
     1349#: app/controllers/email_controller.rb:86 
     1350msgid "All fields are required." 
     1351msgstr "" 
     1352 
     1353#: app/controllers/dashboard_controller.rb:38 
     1354msgid "All Posts" 
     1355msgstr "" 
     1356 
     1357#: app/controllers/dashboard_controller.rb:38 
     1358msgid "Posts without Section" 
     1359msgstr "" 
     1360 
     1361#: app/controllers/dashboard_controller.rb:38 
     1362msgid "Posts with Section" 
     1363msgstr "" 
     1364 
     1365#: app/controllers/dashboard_controller.rb:44 
     1366msgid "You do not own the selected blog." 
     1367msgstr "" 
     1368 
     1369#: app/controllers/dashboard_controller.rb:62 
     1370msgid "A blog with this address doesn't exist." 
     1371msgstr "" 
     1372 
     1373#: app/controllers/dashboard_controller.rb:83 
     1374msgid "The section for the selected posts has been changed successfully." 
     1375msgstr "" 
     1376 
     1377#: app/controllers/dashboard_controller.rb:87 
     1378msgid "The section for the selected posts has been removed successfully." 
     1379msgstr "" 
     1380 
     1381#: app/controllers/dashboard_controller.rb:109 
     1382msgid "You currently don't have any tag." 
     1383msgstr "" 
     1384 
     1385#: app/controllers/dashboard_controller.rb:200 
     1386msgid "The assistant is added." 
     1387msgstr "" 
     1388 
     1389#: app/controllers/dashboard_controller.rb:210 
     1390msgid "The assistant is removed." 
     1391msgstr "" 
     1392 
     1393#: app/controllers/dashboard_controller.rb:212 
     1394msgid "Cannot remove the assistant. Please verify the username." 
     1395msgstr "" 
     1396 
     1397#: app/controllers