diff --git a/.rvmrc b/.rvmrc
new file mode 100644
index 0000000..ed9b4ad
--- /dev/null
+++ b/.rvmrc
@@ -0,0 +1 @@
+rvm use 1.9.2@quora --create
\ No newline at end of file
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 858284a..5fa4417 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -5,6 +5,14 @@ class ApplicationController < ActionController::Base
   before_filter :init, :load_notice
   has_mobile_fu
 
+
+  before_filter :set_locale
+  def set_locale
+    # if params[:locale] is nil then I18n.default_locale will be used
+    @locale = request.env['HTTP_ACCEPT_LANGUAGE'].scan(/^[a-z]{2}/).first
+    I18n.locale = @locale
+  end
+
   def init
     if params[:force_format] == "mobile"
       cookies[:mobile] = true
diff --git a/app/views/answers/1_vote.js.erb.bak.bak.erb b/app/views/answers/1_vote.js.erb.bak.bak.erb
new file mode 100644
index 0000000..fe51488
--- /dev/null
+++ b/app/views/answers/1_vote.js.erb.bak.bak.erb
@@ -0,0 +1 @@
+[]
diff --git a/app/views/answers/1_vote.js.erb.bak.erb b/app/views/answers/1_vote.js.erb.bak.erb
new file mode 100644
index 0000000..e69de29
diff --git a/app/views/answers/vote.js.erb b/app/views/answers/vote.js.erb
index e69de29..8b13789 100644
--- a/app/views/answers/vote.js.erb
+++ b/app/views/answers/vote.js.erb
@@ -0,0 +1 @@
+
diff --git a/app/views/answers/vote.js.erb.bak b/app/views/answers/vote.js.erb.bak
new file mode 100644
index 0000000..fe51488
--- /dev/null
+++ b/app/views/answers/vote.js.erb.bak
@@ -0,0 +1 @@
+[]
diff --git a/app/views/asks/1__answer.erb.bak.erb b/app/views/asks/1__answer.erb.bak.erb
new file mode 100644
index 0000000..3827895
--- /dev/null
+++ b/app/views/asks/1__answer.erb.bak.erb
@@ -0,0 +1,40 @@
+
+  
+  
+    <%= user_avatar_tag(item.user, :small) %>
+  
+  
+    
<%= user_name_tag(item.user) %><%= user_tagline_tag(item.user,:prefix => ",") %>
+    <% if item.up_votes_count != 0 %>
+      
 
+        <%= item.up_votes_count %> 票,来自<%= up_voter_links item.up_voters %>
+      
+    <% end %>
+    
+      
+        <%= md_body(item.chomp_body) %>
+      
+      <% if owner?(item) %>
+        <%= in_place_edit_tag item, :body, :type => :textarea, :text_id => "answer_body_#{item.id}" %>
+      <% end %>
+    
+    
+      <% if item.comments_count == 0 %>
+        
添加评论 
+      <% else %>
+        
<%= item.comments_count %> 条评论 
+      <% end %>
+      <% if not owner? item %>
+        • 
感谢 
+      <% end %>
+      • 
没有帮助 
+      • <%= l item.created_at.getlocal, :format => :short %>
+    
+  
+
+  
<%= ask_title_tag(item) %>
+    
+      <%= user_name_tag(item.user) %> 提出的问题
+      • <%= item.answers_count %> 个答案 
+			<% if current_user %>
+				<% if current_user.ask_followed?(item) %>
+      	• 
取消关注  
+				<% else %>
+				• 
关注  
+				<% end %>
+				<% if current_user.ask_muted?(item.id) %>
+				• 
取消屏蔽  
+				<% else %>
+      	• 
不感兴趣  
+				<% end %>
+			<% end %>
+    
 
+    <% if item.last_answer and (not(params[:controller] == "asks" and params[:action] == "index")) %>
+      
+        
+          <%= item.last_answer.votes_count %> 
+        
+        
+          
+            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %>匿名用户<% end %>
+          
+          
<%= md_body(item.last_answer.chomp_body) %>
+        
+      
+    <% else %>
+      
+        <%= md_body(item.chomp_body) %>
+      
+    <% end %>
+
+  
<%= ask_title_tag(item) %>
+    
+      <%= user_name_tag(item.user) %> 提出的问题
+      • <%= item.answers_count %> 个答案 
+			<% if current_user %>
+				<% if current_user.ask_followed?(item) %>
+      	• 
取消关注  
+				<% else %>
+				• 
关注  
+				<% end %>
+				<% if current_user.ask_muted?(item.id) %>
+				• 
取消屏蔽  
+				<% else %>
+      	• 
不感兴趣  
+				<% end %>
+			<% end %>
+    
 
+    <% if item.last_answer and (not(params[:controller] == "asks" and params[:action] == "index")) %>
+      
+        
+          <%= item.last_answer.votes_count %> 
+        
+        
+          
+            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %>匿名用户<% end %>
+          
+          
<%= md_body(item.last_answer.chomp_body) %>
+        
+      
+    <% else %>
+      
+        <%= md_body(item.chomp_body) %>
+      
+    <% end %>
+
+<%= simple_form_for(@ask) do |f| %>
+  
+    <%= f.input :title, :label => "标题", :input_html => {:class => "long"}%>
+    <%= f.input :body, :label => "正文", :as => :text, :input_html => {:class => "long"} %>
+      
+  
+  
+    提交问题  或者 <%= link_to '返回', asks_path %>
+  
+<% end %>
+
+  <%= user_avatar_tag(item.user,:small) %>
+  
+  <% if current_user and item.invitor_ids.index(current_user.id) %>
+    <%= item.count %> 
+  
+
+  
+    
+      该问题被添加到 <%= raw item.topics.map {|t| "
#{t} "}.join("、") %> 这<%= item.topics.size %>个话题
+    
 
+
+        
你可能会感兴趣的人或话题 
+        
+          <% for item in items %>
+            <% if item.class.to_s == 'User' %>
+            <%= render "home/recommended_user", :follower => item %>
+            <% elsif item.class.to_s == 'Topic' %>
+            <%= render "home/recommended_topic", :topic => item %>
+            <% end %>
+          <% end %>
+         
+      
+    <% if current_user %>
+    
+      ">首页 
+     
+    
+      ">所有问题 
+     
+    <% else %>
+       ">首页   
+    <% end %>
+    
+      ">动态 
+     
+   
+<% end %>
diff --git a/app/views/asks/1_answer.js.erb.bak.erb b/app/views/asks/1_answer.js.erb.bak.erb
new file mode 100644
index 0000000..fa5fde1
--- /dev/null
+++ b/app/views/asks/1_answer.js.erb.bak.erb
@@ -0,0 +1,15 @@
+<% if @success %>
+html = "<%= escape_javascript(render("answer", :item => @answer)) %>";
+$("#answer_body").text("").focus();
+answer = $(html);
+$(".answers").append(answer);
+answerPreview = $("#answer_body").next();
+answerPreview.html("");
+answerPreview.focus();
+answer.fadeOut(100).fadeIn(200);
+$(".answer_form").remove();
+<% else %>
+$("#answer_body").focus();
+<% end %>
+App.loading(false);
+$(".answer_form button.submit").attr("disabled",false);
diff --git a/app/views/asks/1_edit.html.erb.bak.erb b/app/views/asks/1_edit.html.erb.bak.erb
new file mode 100644
index 0000000..9f3bf71
--- /dev/null
+++ b/app/views/asks/1_edit.html.erb.bak.erb
@@ -0,0 +1,6 @@
+<%= content_for :sitemap do %>
+修改 
+<% end %>
+<%= render 'base' %>
+<%= render 'form' %>
+
diff --git a/app/views/asks/1_index.html.erb.bak.erb b/app/views/asks/1_index.html.erb.bak.erb
new file mode 100644
index 0000000..8e18e14
--- /dev/null
+++ b/app/views/asks/1_index.html.erb.bak.erb
@@ -0,0 +1,22 @@
+<%= render 'asks/base' %>
+<%= content_for :scripts do %>
+  
+<% end %>
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item, :only_title => true %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/asks/1_index.js.erb.bak.erb b/app/views/asks/1_index.js.erb.bak.erb
new file mode 100644
index 0000000..7451cbe
--- /dev/null
+++ b/app/views/asks/1_index.js.erb.bak.erb
@@ -0,0 +1,12 @@
+<% if !@asks.blank? %>
+  <% @asks.each do |item| %>
+    $(".pagination").before('<%= escape_javascript(render("/asks/ask",:item => item)) %>');
+  <% end %>
+  current_page = "<%= (params[:page] || "1").to_i + 1 %>";
+  <% if @asks.count < @per_page %>
+  $(".pagination").remove();
+  <% end %>
+<% else %>
+  $(".pagination").remove();
+<% end %>
+
diff --git a/app/views/asks/1_index.mobile.erb.bak.erb b/app/views/asks/1_index.mobile.erb.bak.erb
new file mode 100644
index 0000000..8e18e14
--- /dev/null
+++ b/app/views/asks/1_index.mobile.erb.bak.erb
@@ -0,0 +1,22 @@
+<%= render 'asks/base' %>
+<%= content_for :scripts do %>
+  
+<% end %>
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item, :only_title => true %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/asks/1_invite_to_answer.js.erb.bak.erb b/app/views/asks/1_invite_to_answer.js.erb.bak.erb
new file mode 100644
index 0000000..0c2eec6
--- /dev/null
+++ b/app/views/asks/1_invite_to_answer.js.erb.bak.erb
@@ -0,0 +1,10 @@
+<% if @success %>
+i = $("#ask_invite_<%= @invite.id %>");
+if(i.length == 0){
+  $("#ask_invited_users").append('<%= escape_javascript(render("invited_user", :item => @invite)) %>');
+}
+else{
+  $(".count",i).text('<%= @invite.count %>');
+}
+<% end %>
+App.loading(false);
diff --git a/app/views/asks/1_new.erb.bak.erb b/app/views/asks/1_new.erb.bak.erb
new file mode 100644
index 0000000..a6c1d08
--- /dev/null
+++ b/app/views/asks/1_new.erb.bak.erb
@@ -0,0 +1,5 @@
+<%= content_for :sitemap do %>
+新建 
+<% end %>
+<%= render 'base' %>
+<%= render 'form' %>
diff --git a/app/views/asks/1_recommended.js.erb.bak.erb b/app/views/asks/1_recommended.js.erb.bak.erb
new file mode 100644
index 0000000..502b230
--- /dev/null
+++ b/app/views/asks/1_recommended.js.erb.bak.erb
@@ -0,0 +1,12 @@
+<% if !@asks.blank? %>
+  <% @asks.each do |item| %>
+    $(".pagination").before('<%= escape_javascript(render("/asks/recommended_ask",:item => item)) %>');
+  <% end %>
+  current_page = "<%= (params[:page] || "1").to_i + 1 %>";
+  <% if @asks.count < @per_page %>
+  $(".pagination").remove();
+  <% end %>
+<% else %>
+  $(".pagination").remove();
+<% end %>
+
diff --git a/app/views/asks/1_share.html.erb.bak.erb b/app/views/asks/1_share.html.erb.bak.erb
new file mode 100644
index 0000000..66ef0ad
--- /dev/null
+++ b/app/views/asks/1_share.html.erb.bak.erb
@@ -0,0 +1,52 @@
+
+
diff --git a/app/views/asks/1_share.js.erb.bak.erb b/app/views/asks/1_share.js.erb.bak.erb
new file mode 100644
index 0000000..8a7f728
--- /dev/null
+++ b/app/views/asks/1_share.js.erb.bak.erb
@@ -0,0 +1,6 @@
+<% if @success %>
+  App.notice('<%= @msg %>');
+  $.facebox.close();
+<% else %>
+  alert('<%= @msg %>');
+<% end %>
diff --git a/app/views/asks/1_show.html.erb.bak.erb b/app/views/asks/1_show.html.erb.bak.erb
new file mode 100644
index 0000000..425b270
--- /dev/null
+++ b/app/views/asks/1_show.html.erb.bak.erb
@@ -0,0 +1,240 @@
+<% content_for :scripts do %>
+  
+<% end %>
+<%= render 'base' %>
+<% if not @rf_ask.blank? %>
+  
+<% end %>
+<% if not @r_ask.blank? %>
+  
+<% end %>
+<% if can_edit?(@ask) %>
+  <% if !@suggest_topics.blank? %>
+    
+  <% end %>
+<% end %>
+
+  
+    
+      <% if !@ask.topics.blank? %>
+        <%= topics_name_tag(@ask.topics) %>
+      <% else %>
+        <% if current_user %>
+          
给这个问题选个话题吧,好让别人来回答 
+        <% end %>
+      <% end %>
+      <% if can_edit?(@ask) %>
+        
修改 
+      <% end %>
+    
+    
+      
+        <% if !@ask.topics.blank? %>
+          <% @ask.topics.each_with_index do |item,i| %>
+          
+          <% end %>
+        <% end %>
+      
+      
+        <%= auth_token  %>
+        添加  
+        完成 
+       
+      
+    
+  
+  
+    
<%= "#{@ask.to_user.name}:" if !@ask.to_user.blank? %><%= @ask.title %>  
+    <% if can_edit?(@ask) %>
+      <%= in_place_edit_tag @ask, :title, :type => :textarea, :width => 598, :height => 40, :rich => false, :text_id => "ask_title" %>
+    <% end %>
+  
+  
+    
 class="blank-body"<% end %>><%= md_body(@ask.chomp_body) %>
+    <% if can_edit?(@ask) %>
+      <% if @ask.chomp_body.blank? %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "添加补充资料" %>
+      <% else %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body" %>
+      <% end %>
+    <% end %>
+  
+  
+    <% if @ask.comments_count == 0 %>
+      
添加评论 
+    <% else %>
+      
<%= @ask.comments_count %> 条评论 
+    <% end %>
+    • 
添加答案 
+    • 
举报 
+    • 
烂问题 
+    <% if !@ask.spams_count.blank? %>(
<%= @ask.spams_count %> 人认为)<% end %>
+    • 
<%= l @ask.created_at.getlocal, :format => :short %> 
+  
+
+	有<%= @ask.answers_count %>个回答
+
+<% end %>
+
+
+  <% user_answered = false %>
+  <% if !@answers.blank? %>
+    <% @answers.each do |item| %>
+      <% user_answered = true if owner?(item) %>
+      <%= render("answer", :item => item) %>
+    <% end %>
+  <% end %>
+
+
+<% if current_user %>
+  <% if user_answered %>
+    一个问题你只能回答一次,但你可以对现有的回答进行修改。
+  <% elsif !@ask.to_user.blank? and current_user.id != @ask.to_user_id %>
+    这个问题是对 <%= user_name_tag(@ask.to_user) %> 提问的,只有<%= user_sex_title(@ask.to_user) %>才能回答。
+  <% else %>
+    
+  <% end %>
+<% end %>
+<% content_for :sidebar do %>
+    <% if current_user %>
+      
+        
+          <% if current_user.ask_followed?(@ask) %>
+          
取消关注 
+          <% else %>
+          
关注此问题 
+          <% end %>
+          
选项 
+        
+      
+			
相关问题 
+			
+				
+				<% @relation_asks.each_with_index do |ask,i| %>
+           4 %>><%= ask.title %>  
+				<% end %>
+        <% if @relation_asks.count > 4 %>
+          
+            查看更多相关问题 
+           
+        <% end %>
+				 
+    
+        
+        
+          
+          
+            
+            
+              <% for item in @invites %>
+                <% if item.count > 0 %>
+                  <%= render "invited_user", :item => item %>
+                <% end %>
+              <% end %>
+            
+          
+        
+        
+      
+			
问题状态 
+			
+				
最近活动:<%= l @ask.last_updated_at ? @ask.last_updated_at.getlocal : (@ask.answered_at ? @ask.answered_at.getlocal : @ask.updated_at.getlocal), :format => :min %>
+				
被浏览 <%= @ask.views_count %> 次,<%= @ask.followers.count %> 人关注了该问题
+				<% if @ask.user %>
+				
<%= user_name_tag(@ask.user) %> 创建了该问题
+				<% end %>
+				
+					<% for item in @ask.followers %>
+            <%= user_avatar_tag(item,:small) %>
+					<% end %>
+				
+			
+    
+  <% if current_user %>
+  
+  <% end %>
+  
+    
+      <% if !@ask.topics.blank? %>
+        <%= topics_name_tag(@ask.topics) %>
+      <% else %>
+        <% if current_user %>
+          
给这个问题选个话题吧,好让别人来回答 
+        <% end %>
+      <% end %>
+      <% if can_edit?(@ask) %>
+        
修改 
+      <% end %>
+    
+    
+      
+        <% if !@ask.topics.blank? %>
+          <% @ask.topics.each_with_index do |item,i| %>
+          
+          <% end %>
+        <% end %>
+      
+      
+        <%= auth_token  %>
+        添加  
+        完成 
+       
+      
+    
+  
+  
+    
<%= "#{@ask.to_user.name}:" if !@ask.to_user.blank? %><%= @ask.title %>  
+    <% if can_edit?(@ask) %>
+      <%= in_place_edit_tag @ask, :title, :type => :textarea, :width => 300, :height => 40, :rich => false, :text_id => "ask_title" %>
+    <% end %>
+  
+  
+    
 class="blank-body"<% end %>><%= md_body(@ask.chomp_body) %>
+    <% if can_edit?(@ask) %>
+      <% if @ask.chomp_body.blank? %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "添加补充资料" %>
+      <% else %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body" %>
+      <% end %>
+    <% end %>
+  
+  
+    <% if @ask.comments_count == 0 %>
+      
添加评论 
+    <% else %>
+      
<%= @ask.comments_count %> 条评论 
+    <% end %>
+    • 
添加答案 
+    • 
举报 
+    • 
烂问题 
+    <% if !@ask.spams_count.blank? %>(
<%= @ask.spams_count %> 人认为)<% end %>
+    • 
<%= l @ask.created_at.getlocal, :format => :short %> 
+  
+
+	有<%= @ask.answers_count %>个回答
+
+<% end %>
+
+
+  <% user_answered = false %>
+  <% if !@answers.blank? %>
+    <% @answers.each do |item| %>
+      <% user_answered = true if owner?(item) %>
+      <%= render("answer", :item => item) %>
+    <% end %>
+  <% end %>
+
+
+<% if current_user %>
+  <% if user_answered %>
+    一个问题你只能回答一次,但你可以对现有的回答进行修改。
+  <% elsif !@ask.to_user.blank? and current_user.id != @ask.to_user_id %>
+    这个问题是对 <%= user_name_tag(@ask.to_user) %> 提问的,只有<%= user_sex_title(@ask.to_user) %>才能回答。
+  <% else %>
+    
+  <% end %>
+<% end %>
+<% content_for :sidebar do %>
+<% end %>
+
+<% if params[:eawc] == "yes" or params[:easc] == "yes" %>
+	<% content_for :scripts do %>
+	  
+	<% end %>
+<% end %>
diff --git a/app/views/asks/1_update_topic.js.erb.bak.erb b/app/views/asks/1_update_topic.js.erb.bak.erb
new file mode 100644
index 0000000..b8f2867
--- /dev/null
+++ b/app/views/asks/1_update_topic.js.erb.bak.erb
@@ -0,0 +1,6 @@
+<% if @success %>
+  Asks.addTopic("<%= @name %>");
+  $(".ask .edit_topics input.name").val("").focus();
+<% else %>
+<% end %>
+App.loading(false);
diff --git a/app/views/asks/_answer.erb b/app/views/asks/_answer.erb
index 3827895..07361f0 100644
--- a/app/views/asks/_answer.erb
+++ b/app/views/asks/_answer.erb
@@ -2,8 +2,8 @@
     class="answer<%= ' spam_answer' if spam_answer?(item) %>">
   
   
@@ -13,7 +13,7 @@
     
<%= user_name_tag(item.user) %><%= user_tagline_tag(item.user,:prefix => ",") %>
     <% if item.up_votes_count != 0 %>
       
 
-        <%= item.up_votes_count %> 票,来自<%= up_voter_links item.up_voters %>
+        <%= item.up_votes_count %> <%=t(:votes)%>,<%=t(:from)%><%= up_voter_links item.up_voters %>
       
     <% end %>
     
@@ -26,14 +26,14 @@
     
     
   取消关注  
+      	• <%=t(:cancel_concern)%>  
 				<% else %>
 				• 关注  
 				<% end %>
 				<% if current_user.ask_muted?(item.id) %>
-				• 取消屏蔽  
+				• <%=t(:unmasked)%>  
 				<% else %>
-      	• 不感兴趣  
+      	• <%=t(:not_interested)%>  
 				<% end %>
 			<% end %>
      
     <% if item.last_answer and (not(params[:controller] == "asks" and params[:action] == "index")) %>
       
         
-          <%= item.last_answer.votes_count %> 
+          <%= item.last_answer.votes_count %> 
         
         
           
-            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %>匿名用户<% end %>
+            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %><%=t(:anonymous_user)%><% end %>
           
           <%= md_body(item.last_answer.chomp_body) %>
          
diff --git a/app/views/asks/_ask.mobile.erb b/app/views/asks/_ask.mobile.erb
index 3fc59e2..ede8fe1 100644
--- a/app/views/asks/_ask.mobile.erb
+++ b/app/views/asks/_ask.mobile.erb
@@ -5,14 +5,14 @@
       • <%= item.answers_count %> 个答案 
 			<% if current_user %>
 				<% if current_user.ask_followed?(item) %>
-      	• 
取消关注  
+      	• 
<%=t(:cancel_concern)%>  
 				<% else %>
 				• 
关注  
 				<% end %>
 				<% if current_user.ask_muted?(item.id) %>
-				• 
取消屏蔽  
+				• 
<%=t(:unmasked)%>  
 				<% else %>
-      	• 
不感兴趣  
+      	• 
<%=t(:not_interested)%>  
 				<% end %>
 			<% end %>
     
  
@@ -23,7 +23,7 @@
         
         
           
-            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %>匿名用户<% end %>
+            <% if item.last_answer_user %><%= user_name_tag(item.last_answer_user) %><%= user_tagline_tag(item.last_answer_user,:prefix => ",") %> <% else %><%=t(:anonymous_user)%><% end %>
           
           <%= md_body(item.last_answer.chomp_body) %>
          
diff --git a/app/views/asks/_form.erb b/app/views/asks/_form.erb
index 8be967f..e00f8d2 100644
--- a/app/views/asks/_form.erb
+++ b/app/views/asks/_form.erb
@@ -1,14 +1,14 @@
 
 <%= simple_form_for(@ask) do |f| %>
   
-    <%= f.input :title, :label => "标题", :input_html => {:class => "long"}%>
-    <%= f.input :body, :label => "正文", :as => :text, :input_html => {:class => "long"} %>
+    <%= f.input :title, :label => "#{t(:title)}", :input_html => {:class => "long"}%>
+    <%= f.input :body, :label => "#{t(:text)}", :as => :text, :input_html => {:class => "long"} %>
       
   
   
-    提交问题  或者 <%= link_to '返回', asks_path %>
+    <%=t(:submit_a_question)%>  或者 <%= link_to "#{t(:back)}", asks_path %>
   
 <% end %>
 
   
     
-      该问题被添加到 <%= raw item.topics.map {|t| "
#{t} "}.join("、") %> 这<%= item.topics.size %>个话题
+      <%=t(:the_problem_is_added_to_the)%> <%= raw item.topics.map {|t| "
#{t} "}.join("、") %> <%=t(:this)%><%= item.topics.size %><%=t(:topics)%>
     
 
diff --git a/app/views/asks/_sidebar.html.erb b/app/views/asks/_sidebar.html.erb
index 839aef8..f81c2e8 100644
--- a/app/views/asks/_sidebar.html.erb
+++ b/app/views/asks/_sidebar.html.erb
@@ -3,34 +3,34 @@
     
   
 	<% if current_user %>
 		
-			
邀请好友 
+			
<%=t(:invite_friends)%> 
 	    
 		
-        
你可能会感兴趣的人或话题 
+        
<%=t(:you_may_be_interested_in_the_person_or_topic)%> 
         
           <% for item in items %>
             <% if item.class.to_s == 'User' %>
diff --git a/app/views/asks/_sidebar.mobile.erb b/app/views/asks/_sidebar.mobile.erb
index 6b7ae8b..a26cec6 100644
--- a/app/views/asks/_sidebar.mobile.erb
+++ b/app/views/asks/_sidebar.mobile.erb
@@ -5,13 +5,13 @@
       ">首页 
     
     
-      ">所有问题 
+      "><%=t(:all_issues)%> 
      
     <% else %>
        ">首页   
     <% end %>
     
-      ">动态 
+      "><%=t(:news)%> 
      
    
 <% end %>
diff --git a/app/views/asks/edit.html.erb b/app/views/asks/edit.html.erb
index 9f3bf71..b7d20a0 100644
--- a/app/views/asks/edit.html.erb
+++ b/app/views/asks/edit.html.erb
@@ -1,5 +1,5 @@
 <%= content_for :sitemap do %>
-
修改 
+
<%=t(:modify)%> 
 <% end %>
 <%= render 'base' %>
 <%= render 'form' %>
diff --git a/app/views/asks/index.html.erb b/app/views/asks/index.html.erb
index 8e18e14..be4f43d 100644
--- a/app/views/asks/index.html.erb
+++ b/app/views/asks/index.html.erb
@@ -16,7 +16,7 @@
     <%= render "asks/ask", :item => item, :only_title => true %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
-  
分享问题 
+  
<%=t(:sharing)%> 
   
   
     <%= auth_token %>
     
     
       
-        
推荐文字: 
+        
<%=t(:recommended_text)%>: 
         <%= @ask.title %>
 <%= ask_url(@ask.id) %> 
-        
你可以复制上面的内容,并把它转发到你的微博或发送给你的QQ好友,他们点击链接就能看到此页面。
+        
<%=t(:you_can_copy_the_contents_of_the_above)%>,并把它转发到你的微博<%=t(:or)%>发送给你的QQ<%=t(:friends)%>,<%=t(:they_will_be_able_to_see_this_page_click_on_the_link)%>。
       
-      
+      
      
    
 给这个问题选个话题吧,好让别人来回答 
+          <%=t(:choose_a_topic_to_this_question_it)%>,<%=t(:to_allow_someone_else_to_answer)%> 
         <% end %>
       <% end %>
       <% if can_edit?(@ask) %>
-        修改 
+        <%=t(:modify)%> 
       <% end %>
     
     
@@ -51,10 +51,10 @@
       
       
         <%= auth_token  %>
-        添加  
-        完成 
+        <%=t(:add)%>  
+        <%=t(:complete)%> 
        
       
     
@@ -69,7 +69,7 @@
      class="blank-body"<% end %>><%= md_body(@ask.chomp_body) %>
     <% if can_edit?(@ask) %>
       <% if @ask.chomp_body.blank? %>
-        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "添加补充资料" %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "#{t(:add)}补充资料" %>
       <% else %>
         <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body" %>
       <% end %>
@@ -77,21 +77,21 @@
   
   
 
 
 <% if @ask.answers_count > 0 %>
 
-	有<%= @ask.answers_count %>个回答
+	<%=t(:there)%><%= @ask.answers_count %><%=t(:an_answer)%>
 
 <% end %>
 
@@ -107,17 +107,17 @@
 
 <% if current_user %>
   <% if user_answered %>
-    一个问题你只能回答一次,但你可以对现有的回答进行修改。
+    <%=t(:you_can_only_answer_one_question)%>,但你可以对现<%=t(:there)%>的回答进行<%=t(:modify)%>。
   <% elsif !@ask.to_user.blank? and current_user.id != @ask.to_user_id %>
-    这个问题是对 <%= user_name_tag(@ask.to_user) %> 提问的,只有<%= user_sex_title(@ask.to_user) %>才能回答。
+    <%=t(:this_problem_is)%> <%= user_name_tag(@ask.to_user) %> 提问的,只<%=t(:there)%><%= user_sex_title(@ask.to_user) %><%=t(:to_answer)%>。
   <% else %>
     
         
-          提交回答 
+          <%=t(:submit_answers)%> 
         
       <% end %>
       
     
@@ -75,7 +75,7 @@
      class="blank-body"<% end %>><%= md_body(@ask.chomp_body) %>
     <% if can_edit?(@ask) %>
       <% if @ask.chomp_body.blank? %>
-        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "添加补充资料" %>
+        <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body",:label => "#{t(:add)}补充资料" %>
       <% else %>
         <%= in_place_edit_tag @ask, :body, :type => :textarea, :text_id => "ask_body" %>
       <% end %>
@@ -83,21 +83,21 @@
   
   
 
 
 <% if @ask.answers_count > 0 %>
 
-	有<%= @ask.answers_count %>个回答
+	<%=t(:there)%><%= @ask.answers_count %><%=t(:an_answer)%>
 
 <% end %>
 
@@ -113,17 +113,17 @@
 
 <% if current_user %>
   <% if user_answered %>
-    一个问题你只能回答一次,但你可以对现有的回答进行修改。
+    <%=t(:you_can_only_answer_one_question)%>,但你可以对现<%=t(:there)%>的回答进行<%=t(:modify)%>。
   <% elsif !@ask.to_user.blank? and current_user.id != @ask.to_user_id %>
-    这个问题是对 <%= user_name_tag(@ask.to_user) %> 提问的,只有<%= user_sex_title(@ask.to_user) %>才能回答。
+    <%=t(:this_problem_is)%> <%= user_name_tag(@ask.to_user) %> 提问的,只<%=t(:there)%><%= user_sex_title(@ask.to_user) %><%=t(:to_answer)%>。
   <% else %>
     
         
-          提交回答 
+          <%=t(:submit_answers)%> 
         
       <% end %>
       
+<% end %>
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/home/1_index.mobile.erb.bak.erb b/app/views/home/1_index.mobile.erb.bak.erb
new file mode 100644
index 0000000..352af7e
--- /dev/null
+++ b/app/views/home/1_index.mobile.erb.bak.erb
@@ -0,0 +1,23 @@
+<%= render 'asks/base' %>
+<%= content_for :scripts do %>
+  
+<% end %>
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/home/1_newbie.html.erb.bak.erb b/app/views/home/1_newbie.html.erb.bak.erb
new file mode 100644
index 0000000..009cd1e
--- /dev/null
+++ b/app/views/home/1_newbie.html.erb.bak.erb
@@ -0,0 +1,50 @@
+<%= render :partial => 'logs/notifies' %>
+
+
+	
欢迎来到者也 
+	
+		这里是一个满足你各种好奇、求知、探索、社交、讨论欲望的地方。她由来自无数行业无数地方的 
人们 、各种他们提出的 
问题  以及各个用以组织问题的 
话题  组成。你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词,并关注一些话题、问题或者人。当你关注过之后,你可以看到这些人、问题的动态,还可以在“
我关注的问题 ”里看到你感兴趣的新老问题。
+	
+	
+	有时候去“
者也正在发生 ”闲逛也是不错的发现感兴趣的问题和讨论的方法。
+	
+	
+	
+	<% if !@hot_topics.nil? and @hot_topics.size > 0 %>
+	
或者你可以去看看这些最近比较热门的话题: 
+	
+		<% for topic in @hot_topics %>
+		<%= topic %>  
+	<% end %>
+	
+	<% 
+	waiting_asks = @asks.where(:answers_count.lte => 2).where(:created_at.lte => (Time.now - 12.hours)).limit(10)
+	if waiting_asks.size > 0
+	%>
+	
+	
又或者是去给这些等待回答的问题添加一些你所知道的答案: 
+	
+	<% end %>
+	
+	<% if @asks.size > 0 %>
+	
+	
还可以看看这些热门问题: 
+	
+		<% for ask in @asks.order_by(:answers_count.desc, :views_count.desc).limit(10) %>
+		<%= ask.title %>  
+	<% end %>
+	
+	
+	
+		祝你在“者也”愉快。
+	
+
+	
欢迎来到者也 
+	
+		这里是一个满足你各种好奇、求知、探索、社交、讨论欲望的地方。她由来自无数行业无数地方的 
人们 、各种他们提出的 
问题  以及各个用以组织问题的 
话题  组成。你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词,并关注一些话题、问题或者人。当你关注过之后,你可以看到这些人、问题的动态,还可以在“
我关注的问题 ”里看到你感兴趣的新老问题。
+	
+	
+	有时候去“
者也正在发生 ”闲逛也是不错的发现感兴趣的问题和讨论的方法。
+	
+	
+	
+	<% if !@hot_topics.nil? and @hot_topics.size > 0 %>
+	
或者你可以去看看这些最近比较热门的话题: 
+	
+		<% for topic in @hot_topics %>
+		<%= topic %>  
+	<% end %>
+	
+	<% 
+	waiting_asks = @asks.where(:answers_count.lte => 2).where(:created_at.lte => (Time.now - 12.hours)).limit(10)
+	if waiting_asks.size > 0
+	%>
+	
+	
又或者是去给这些等待回答的问题添加一些你所知道的答案: 
+	
+	<% end %>
+	
+	<% if @asks.size > 0 %>
+	
+	
还可以看看这些热门问题: 
+	
+		<% for ask in @asks.order_by(:answers_count.desc, :views_count.desc).limit(10) %>
+		<%= ask.title %>  
+	<% end %>
+	
+	
+	
+		祝你在“者也”愉快。
+	
+
你或许能回答:
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/recommended_ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/home/1_recommended.mobile.erb.bak.erb b/app/views/home/1_recommended.mobile.erb.bak.erb
new file mode 100644
index 0000000..82ea24d
--- /dev/null
+++ b/app/views/home/1_recommended.mobile.erb.bak.erb
@@ -0,0 +1,25 @@
+<%= render 'asks/base' %>
+<%= content_for :scripts do %>
+  
+<% end %>
+
+你或许能回答:
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/recommended_ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/home/_recommended_topic.html.erb b/app/views/home/_recommended_topic.html.erb
index dd72679..ae54672 100644
--- a/app/views/home/_recommended_topic.html.erb
+++ b/app/views/home/_recommended_topic.html.erb
@@ -1,6 +1,6 @@
 
   
   
     
@@ -9,7 +9,7 @@
       
       
         <%= topic_name_tag(topic, :prefix => "#") %>
-        
话题
+        
<%=t(:topic)%>
        
     
diff --git a/app/views/home/_recommended_user.html.erb b/app/views/home/_recommended_user.html.erb
index a64002c..ff9d8df 100644
--- a/app/views/home/_recommended_user.html.erb
+++ b/app/views/home/_recommended_user.html.erb
@@ -1,6 +1,6 @@
 
   
   
     
diff --git a/app/views/home/about.html.erb b/app/views/home/about.html.erb
index 0338002..4c49364 100644
--- a/app/views/home/about.html.erb
+++ b/app/views/home/about.html.erb
@@ -5,18 +5,18 @@
   
 <% end %>
 
-  
关于者也 
+  
<%=t(:who_is_also_on_the)%> 
   
-    我们是一群向往自由开放的程序员,立志构建一个开放的问答社区站点。
-  
团队成员 
+  
<%=t(:team_members)%> 
   
     <% @users.each do |u| %>
       <%= user_avatar_tag(u,:normal) %>
     <% end %>
   
-  
贡献者 
+  
<%=t(:contributors)%> 
   
 <%= content_for :sidebar do %>
   
-    
常见问题 
+    
<%=t(:frequently_asked_questions)%> 
     
   
 <% end %>
diff --git a/app/views/home/about.mobile.erb b/app/views/home/about.mobile.erb
index 0338002..4c49364 100644
--- a/app/views/home/about.mobile.erb
+++ b/app/views/home/about.mobile.erb
@@ -5,18 +5,18 @@
   
 <% end %>
 
-  
关于者也 
+  
<%=t(:who_is_also_on_the)%> 
   
-    我们是一群向往自由开放的程序员,立志构建一个开放的问答社区站点。
-  
团队成员 
+  
<%=t(:team_members)%> 
   
     <% @users.each do |u| %>
       <%= user_avatar_tag(u,:normal) %>
     <% end %>
   
-  
贡献者 
+  
<%=t(:contributors)%> 
   
 <%= content_for :sidebar do %>
   
-    
常见问题 
+    
<%=t(:frequently_asked_questions)%> 
     
   
 <% end %>
diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb
index 352af7e..db61a3c 100644
--- a/app/views/home/index.html.erb
+++ b/app/views/home/index.html.erb
@@ -17,7 +17,7 @@
     <%= render "asks/ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 <%= render "asks/sidebar" %>
diff --git a/app/views/home/index.mobile.erb b/app/views/home/index.mobile.erb
index 352af7e..db61a3c 100644
--- a/app/views/home/index.mobile.erb
+++ b/app/views/home/index.mobile.erb
@@ -17,7 +17,7 @@
     <%= render "asks/ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 <%= render "asks/sidebar" %>
diff --git a/app/views/home/newbie.html.erb b/app/views/home/newbie.html.erb
index 009cd1e..bb45005 100644
--- a/app/views/home/newbie.html.erb
+++ b/app/views/home/newbie.html.erb
@@ -1,17 +1,17 @@
 <%= render :partial => 'logs/notifies' %>
 
 
-	
欢迎来到者也 
+	
<%=t(:welcome_to_those_who_have)%> 
 	
-		这里是一个满足你各种好奇、求知、探索、社交、讨论欲望的地方。她由来自无数行业无数地方的 
人们 、各种他们提出的 
问题  以及各个用以组织问题的 
话题  组成。你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词,并关注一些话题、问题或者人。当你关注过之后,你可以看到这些人、问题的动态,还可以在“
我关注的问题 ”里看到你感兴趣的新老问题。
+		<%=t(:here_is_a_variety_to_satisfy_your_curiosity)%>、<%=t(:knowledge)%>、<%=t(:discover)%>、<%=t(:social)%>、<%=t(:desire_to_place_the_discussion)%>。<%=t(:her_numerous_industries_from_many_parts_of_the)%> 
<%=t(:people)%> 、<%=t(:they_proposed_a_variety_of)%> 
<%=t(:problem)%>  以及各个用以组织<%=t(:problem)%>的 
<%=t(:topic)%>  <%=t(:composition)%>。<%=t(:you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in)%>,并关注一些<%=t(:topic)%>、<%=t(:problem)%>或者人。<%=t(:when_you_look_over_after)%>,<%=t(:you_can_see_these_people)%>、<%=t(:problem)%>的动态,<%=t(:you_can_also)%>“
我关注的<%=t(:problem)%> ”里看到你感兴趣的新老<%=t(:problem)%>。
 	
-	有时候去“
者也正在发生 ”闲逛也是不错的发现感兴趣的问题和讨论的方法。
+	<%=t(:sometimes_go)%>“
<%=t(:were_also_taking_place)%> ”闲逛也是不错的发现感兴趣的<%=t(:problem)%>和讨论的方法。
 	
 	
 	
 	<% if !@hot_topics.nil? and @hot_topics.size > 0 %>
-	
或者你可以去看看这些最近比较热门的话题: 
+	
或者你可以去看看这些最近比较热门的<%=t(:topic)%>: 
 	
 		<% for topic in @hot_topics %>
 		<%= topic %> 又或者是去给这些等待回答的问题添加一些你所知道的答案: 
+	又或者是去给这些等待回答的<%=t(:problem)%>添加一些你所知道的答案: 
 	 
 <%= render "asks/sidebar" %>
diff --git a/app/views/home/newbie.mobile.erb b/app/views/home/newbie.mobile.erb
index 009cd1e..bb45005 100644
--- a/app/views/home/newbie.mobile.erb
+++ b/app/views/home/newbie.mobile.erb
@@ -1,17 +1,17 @@
 <%= render :partial => 'logs/notifies' %>
 
 
-	
欢迎来到者也 
+	
<%=t(:welcome_to_those_who_have)%> 
 	
-		这里是一个满足你各种好奇、求知、探索、社交、讨论欲望的地方。她由来自无数行业无数地方的 
人们 、各种他们提出的 
问题  以及各个用以组织问题的 
话题  组成。你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词,并关注一些话题、问题或者人。当你关注过之后,你可以看到这些人、问题的动态,还可以在“
我关注的问题 ”里看到你感兴趣的新老问题。
+		<%=t(:here_is_a_variety_to_satisfy_your_curiosity)%>、<%=t(:knowledge)%>、<%=t(:discover)%>、<%=t(:social)%>、<%=t(:desire_to_place_the_discussion)%>。<%=t(:her_numerous_industries_from_many_parts_of_the)%> 
<%=t(:people)%> 、<%=t(:they_proposed_a_variety_of)%> 
<%=t(:problem)%>  以及各个用以组织<%=t(:problem)%>的 
<%=t(:topic)%>  <%=t(:composition)%>。<%=t(:you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in)%>,并关注一些<%=t(:topic)%>、<%=t(:problem)%>或者人。<%=t(:when_you_look_over_after)%>,<%=t(:you_can_see_these_people)%>、<%=t(:problem)%>的动态,<%=t(:you_can_also)%>“
我关注的<%=t(:problem)%> ”里看到你感兴趣的新老<%=t(:problem)%>。
 	
-	有时候去“
者也正在发生 ”闲逛也是不错的发现感兴趣的问题和讨论的方法。
+	<%=t(:sometimes_go)%>“
<%=t(:were_also_taking_place)%> ”闲逛也是不错的发现感兴趣的<%=t(:problem)%>和讨论的方法。
 	
 	
 	
 	<% if !@hot_topics.nil? and @hot_topics.size > 0 %>
-	
或者你可以去看看这些最近比较热门的话题: 
+	
或者你可以去看看这些最近比较热门的<%=t(:topic)%>: 
 	
 		<% for topic in @hot_topics %>
 		<%= topic %> 又或者是去给这些等待回答的问题添加一些你所知道的答案: 
+	又或者是去给这些等待回答的<%=t(:problem)%>添加一些你所知道的答案: 
 	 
 <%= render "asks/sidebar" %>
diff --git a/app/views/home/recommended.html.erb b/app/views/home/recommended.html.erb
index 82ea24d..d3dbac4 100644
--- a/app/views/home/recommended.html.erb
+++ b/app/views/home/recommended.html.erb
@@ -12,14 +12,14 @@
   
 <% end %>
 
-
你或许能回答:
+
<%=t(:you_may_be_able_to_answer)%>:
 
 
   <% @asks.each do |item| %>
     <%= render "asks/recommended_ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 <%= render "asks/sidebar" %>
diff --git a/app/views/home/recommended.mobile.erb b/app/views/home/recommended.mobile.erb
index 82ea24d..d3dbac4 100644
--- a/app/views/home/recommended.mobile.erb
+++ b/app/views/home/recommended.mobile.erb
@@ -12,14 +12,14 @@
   
 <% end %>
 
-
你或许能回答:
+
<%=t(:you_may_be_able_to_answer)%>:
 
 
   <% @asks.each do |item| %>
     <%= render "asks/recommended_ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 <%= render "asks/sidebar" %>
diff --git a/app/views/layouts/1_application.html.erb.bak.erb b/app/views/layouts/1_application.html.erb.bak.erb
new file mode 100644
index 0000000..80146c6
--- /dev/null
+++ b/app/views/layouts/1_application.html.erb.bak.erb
@@ -0,0 +1,174 @@
+<%= spaceless do %>
+
+
+
+
+  
+  
<%= raw @page_title %><%= Setting.app_name %> 
+  <% if use_yahei_font?(request.env["HTTP_USER_AGENT"]) %>
+  <%= stylesheet_link_tag "font","application","users","asks","front","facebox","jquery.jdialog","jquery.qeditor","jquery.autocomplete", "jquery.tipsy", :cache => "cached_front" %>
+  <% else %>
+  <%= stylesheet_link_tag "font_no_cleartype","application","users","asks","front","facebox","jquery.jdialog","jquery.qeditor","jquery.autocomplete", "jquery.tipsy", :cache => "cached_front_for_xp" %>
+  <% end %>
+	<%= yield :styles %>
+  
+  
+  
 
+  <%= csrf_meta_tag %>
+  <%= javascript_include_tag "jquery.min","rails","facebox","jquery.jdialog","jquery.qeditor","jquery.autocomplete", "jquery.cookie","jquery.tipsy" ,"jcaches","application","asks","topics","users", :cache => "cached_application" %>
+	
+  <%= yield :scripts %>
+  
+
+
+  
+  
+    
+      
+        <% if !@notice.blank? %>
+          <% if cookies[:hide_notice] != @notice.id.to_s %>
+            
+              <%= raw @notice.body %>
+              
+                
<%= l @notice.updated_at.getlocal, :format => :long %> 
+                
我知道了 
+              
+            
+          <% end %>
+        <% end %>
+        <% if !notice.blank? %>
+          
<%= notice %>
+          
+        <% end %>
+        <% if !alert.blank? %>
+          
<%= alert %>
+          
+        <% end %> 
+        <%= yield %>
+      
+      
+    
+  
+  
+  <%= yield :bottom %>
+  
+    
创建新问题 
+    
+      <%= auth_token %>
+      可选: 添加更多描述
+      添加问题  取消 
+     
+  
+  
 
+  
+    <%= image_tag("loading.gif") %>
+    
+      
举报内容 
+      
+        <%= auth_token %>
+        
+          请填写举报原因: 
+          
+        
+       
+    
+  
+  
+
+
+<% end %>
diff --git a/app/views/layouts/1_application.mobile.erb.bak.erb b/app/views/layouts/1_application.mobile.erb.bak.erb
new file mode 100644
index 0000000..2f88643
--- /dev/null
+++ b/app/views/layouts/1_application.mobile.erb.bak.erb
@@ -0,0 +1,132 @@
+<%= spaceless do %>
+
+
+
+
+  
+  
+  
<%= raw @page_title %><%= Setting.app_name %> 
+  <%= stylesheet_link_tag "application","users","asks","mobile","facebox","jquery.jdialog","jquery.qeditor","jquery.autocomplete", :cache => "cached_mobile_front" %>
+	<%= yield :styles %>
+  
 
+  <%= csrf_meta_tag %>
+  <%= javascript_include_tag "jquery.min","rails","facebox","jquery.jdialog","jquery.qeditor","jquery.autocomplete", "jquery.cookie" ,"jcaches","application","asks","topics","users", :cache => "cached_application" %>
+  <%= yield :scripts %>
+  
+
+
+  
+  
+  
+    
+      
+        <% if !@notice.blank? %>
+          <% if cookies[:hide_notice] != @notice.id.to_s %>
+            
+              <%= raw @notice.body %>
+              
+                
<%= l @notice.updated_at.getlocal, :format => :long %> 
+                
我知道了 
+              
+            
+          <% end %>
+        <% end %>
+        <% if !notice.blank? %>
+          
<%= notice %>
+          
+        <% end %>
+        <% if !alert.blank? %>
+          
<%= alert %>
+          
+        <% end %> 
+        <%= yield %>
+      
+    
+  
+  
+  <%= yield :bottom %>
+  
+    
创建新问题 
+    
+      <%= auth_token %>
+      可选: 添加更多描述
+      添加问题  取消 
+     
+  
+  
 
+  
+    <%= image_tag("loading.gif") %>
+    
+      
举报内容 
+      
+        <%= auth_token %>
+        
+          请填写举报原因: 
+          
+        
+       
+    
+  
+  
+
+
+<% end %>
diff --git a/app/views/layouts/1_cpanel.html.erb.bak.erb b/app/views/layouts/1_cpanel.html.erb.bak.erb
new file mode 100644
index 0000000..497e8bb
--- /dev/null
+++ b/app/views/layouts/1_cpanel.html.erb.bak.erb
@@ -0,0 +1,64 @@
+ 
+ 
+ 
+  
<%= Setting.app_name %> - 后台  
+	
 
+  <%= stylesheet_link_tag "application","cpanel","wice_grid", :cache => "cached_cpanel" %>
+  <%= javascript_include_tag "jquery.min","rails","wice_grid", :cache => "cached_cpanel" %>
+  <%= csrf_meta_tag %>
+ 
+ 
+   
+  
 
+    
+		 导航: 
控制台  > <%= yield :sitemap %>
+   
+	
 
+  
+    
+      <% if !notice.blank? %>
+        
<%= notice %>
+        
+      <% end %>
+      <% if !alert.blank? %>
+        
<%= alert %>
+        
+      <% end %> 
+      <%= yield %>
+		
 
+  
 
+   
+ 
+ 
diff --git a/app/views/layouts/1_mailer.html.erb.bak.erb b/app/views/layouts/1_mailer.html.erb.bak.erb
new file mode 100644
index 0000000..9c7590a
--- /dev/null
+++ b/app/views/layouts/1_mailer.html.erb.bak.erb
@@ -0,0 +1,27 @@
+<%= spaceless do %>
+
+  
+    
+      
+         
+      
+        <%= @title %> 
+       
+     
+    
+      
+        <%= yield %>
+        
+        
+       
+     
+  
+
+<% end %>
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index f4ddab5..45ff98c 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -26,18 +26,18 @@
     var logined = false;
     <% end %>
 
-		<% if current_user %>
-		window.WEB_SOCKET_SWF_LOCATION = "http://<%= @zomet_config["server"] %>/WebSocketMain.swf";
-		$(document).ready(function() {
-			var jug = new Juggernaut({host: '<%= @zomet_config["host"] %>', port: <%= @zomet_config["port"] || 80 %>});
-			jug.subscribe("/notifications/<%= current_user.slug %>", function(data){
-				$('#notify_badge').removeClass("force-hide");
-				if ($(document).attr("title").indexOf("(新) ") < 0) {
-					$(document).attr("title", "(新) " + $(document).attr("title"));
-				}
-			});
-		});
-		<% end %>
+    <% if current_user %>
+    window.WEB_SOCKET_SWF_LOCATION = "http://<%= @zomet_config["server"] %>/WebSocketMain.swf";
+    $(document).ready(function() {
+      var jug = new Juggernaut({host: '<%= @zomet_config["host"] %>', port: <%= @zomet_config["port"] || 80 %>});
+      jug.subscribe("/notifications/<%= current_user.slug %>", function(data){
+        $('#notify_badge').removeClass("force-hide");
+        if ($(document).attr("title").indexOf("(#{t(:new)}) ") < 0) {
+          $(document).attr("title", "(#{t(:new)}) " + $(document).attr("title"));
+        }
+      });
+    });
+    <% end %>
   
 
 
@@ -48,8 +48,8 @@
           
<%= image_tag("logo.png") %> 
         
         
+<% end %>
+
+<%= render :partial => 'logs/notifies' %>
+
+
+
+<% for log in @logs %>
+  <%= render "logs/log", :log => log %>
+<% end %>
+
+
+<% if @logs.length == @per_page %>
+  
+<% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/logs/1_index.js.erb.bak.erb b/app/views/logs/1_index.js.erb.bak.erb
new file mode 100644
index 0000000..5176948
--- /dev/null
+++ b/app/views/logs/1_index.js.erb.bak.erb
@@ -0,0 +1,11 @@
+<% if !@logs.blank? %>
+  <% @logs.each do |item| %>
+    $(".pagination").before('<%= escape_javascript(render("/logs/log",:log => item)) %>');
+  <% end %>
+  current_page = "<%= (params[:page] || "1").to_i + 1 %>";
+  <% if @logs.count < @per_page %>
+  $(".pagination").remove();
+  <% end %>
+<% else %>
+  $(".pagination").remove();
+<% end %>
\ No newline at end of file
diff --git a/app/views/logs/1_index.mobile.erb.bak.erb b/app/views/logs/1_index.mobile.erb.bak.erb
new file mode 100644
index 0000000..f367268
--- /dev/null
+++ b/app/views/logs/1_index.mobile.erb.bak.erb
@@ -0,0 +1,27 @@
+<%= content_for :scripts do %>
+  
+<% end %>
+
+<%= render :partial => 'logs/notifies' %>
+
+
+
+<% for log in @logs %>
+  <%= render "logs/log", :log => log %>
+<% end %>
+
+
+<% if @logs.length == @per_page %>
+  
+<% end %>
+
+<%= render "asks/sidebar" %>
diff --git a/app/views/logs/_log.html.erb b/app/views/logs/_log.html.erb
index 389a715..4899b9c 100644
--- a/app/views/logs/_log.html.erb
+++ b/app/views/logs/_log.html.erb
@@ -24,13 +24,13 @@ when "AskLog"
         case action
         when "NEW"
       %>
-      <%= user_name_tag(log.user) %> 添加了该问题
+      <%= user_name_tag(log.user) %> <%=t(:add_the_problem)%>
       <% when "NEW_TO_USER" %>
-        <%= user_name_tag(log.user) %> 向 <%= user_name_tag(item.to_user) %> 提出了问题
+        <%= user_name_tag(log.user) %> <%=t(:to)%> <%= user_name_tag(item.to_user) %> <%=t(:issues_raised)%>
       <% when "EDIT" %>
-      <%= user_name_tag(log.user) %> <%= log.target_attr == "TITLE" ? "修改了该问题" : "修改了该问题的补充说明" %>
+      <%= user_name_tag(log.user) %> <%= log.target_attr == "TITLE" ? "#{t(:modify_the_problem)}" : "#{t(:modify_the_problem)}#{t(:the)}补充说明" %>
       <% when "ADD_TOPIC" %>
-      <%= user_name_tag(log.user) %> 给该问题添加了话题 
+      <%= user_name_tag(log.user) %> <%=t(:add_the_topic_to_the_problem)%> 
         <%
           topics = log.title.split(',')
           for topic in topics
@@ -38,7 +38,7 @@ when "AskLog"
         
#<%= topic %>   
         <% end %>
       <% when "DEL_TOPIC" %>
-      <%= user_name_tag(log.user) %> 从该问题删除了话题 
+      <%= user_name_tag(log.user) %> <%=t(:remove_the_subject_from_the_issue)%> 
         <%
           topics = log.title.split(',')
           for topic in topics
@@ -51,14 +51,14 @@ when "AskLog"
         • <%= item.answers_count %> 个答案 
         <% if current_user %>
           <% if current_user.ask_followed?(item) %>
-          • 
取消关注  
+          • 
<%=t(:cancel_concern)%>  
           <% else %>
           • 
关注  
           <% end %>
           <% if current_user.ask_muted?(item.id) %>
-          • 
取消屏蔽  
+          • 
<%=t(:unmasked)%>  
           <% else %>
-          • 
不感兴趣  
+          • 
<%=t(:not_interested)%>  
           <% end %>
         <% end %>
       <% end %>
@@ -87,30 +87,30 @@ when "UserLog"
 %>	
 	
 		<% if ["FOLLOW_TOPIC", "UNFOLLOW_TOPIC"].include?(action) %>
-	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_TOPIC" ? "关注" : "取消关注" %>了话题 
#<%= item.name %> 
+	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_TOPIC" ? "关注" : "#{t(:cancel_concern)}" %><%=t(:the_topic)%> 
#<%= item.name %> 
 		<% elsif ["FOLLOW_USER", "UNFOLLOW_USER"].include?(action) %>
-	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_USER" ? "关注" : "取消关注" %>了 <%= user_name_tag(item) %>
+	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_USER" ? "关注" : "#{t(:cancel_concern)}" %><%=t(:a)%> <%= user_name_tag(item) %>
     <% elsif action == "THANK_ANSWER"  %>
-      
+      
 		<% else %>
 			
 	      <%= user_avatar_tag(log.user,:small) %>
 	    
      small_title<% end %>"><%= ask_title_tag(item) %>
       
-        <%= user_name_tag(log.user) %> <%= action == "FOLLOW" ? "关注了该问题" : (action == "UNFOLLOW" ? "取消关注了该问题" : "赞同该回答") %>
+        <%= user_name_tag(log.user) %> <%= action == "FOLLOW" ? "关注#{t(:a)}该问题" : (action == "UNFOLLOW" ? "#{t(:cancel_concern)}#{t(:a)}该问题" : "#{t(:agree_with_the_answer)}") %>
         • <%= item.answers_count %> 个答案 
         <% if current_user %>
           <% if current_user.ask_followed?(item) %>
-          • 
取消关注  
+          • 
<%=t(:cancel_concern)%>  
           <% else %>
           • 
关注  
           <% end %>
           <% if current_user.ask_muted?(item.id) %>
-          • 
取消屏蔽  
+          • 
<%=t(:unmasked)%>  
           <% else %>
-          • 
不感兴趣  
+          • 
<%=t(:not_interested)%>  
           <% end %>
         <% end %>
       
@@ -118,7 +118,7 @@ when "UserLog"
     <% if ["AGREE"].include?(action) %>
     
       
-        <%= answer.votes_count %> 
+        <%= answer.votes_count %> 
       
 			
 				
@@ -130,7 +130,7 @@ when "UserLog"
 					<% else %>
 					
<%= md_body(answer.chomp_body) %>
           <%= raw truncate(answer.body.gsub(/<.*?>/,''),:length => 100, :truncate_string =>"……") %> 
-          
(更多) 
+          
(<%=t(:more)%>) 
 					<% end %>
 				
 
 			 
@@ -150,25 +150,25 @@ when "AnswerLog"
     
<%= ask_title_tag(item) %>
 	    
-	      <%= user_name_tag(log.user) %> <%= action == "NEW" ? "回答了该问题" : "修改了自己的回答" %>
+	      <%= user_name_tag(log.user) %> <%= action == "NEW" ? "回答#{t(:a)}该问题" : "修改#{t(:a)}自己#{t(:the)}回答" %>
 	      • <%= item.answers_count %> 个答案 
 				<% if current_user %>
 					<% if current_user.ask_followed?(item) %>
-	      	• 
取消关注  
+	      	• 
<%=t(:cancel_concern)%>  
 					<% else %>
 					• 
关注  
 					<% end %>
 					<% if current_user.ask_muted?(item.id) %>
-					• 
取消屏蔽  
+					• 
<%=t(:unmasked)%>  
 					<% else %>
-	      	• 
不感兴趣  
+	      	• 
<%=t(:not_interested)%>  
 					<% end %>
 				<% end %>
 	    
 
 			<% if action == "NEW" and log.user %>
 	    
 	      
-          <%= log.answer.votes_count %> 
+          <%= log.answer.votes_count %> 
 	      
 				
 					
@@ -180,7 +180,7 @@ when "AnswerLog"
 						<% else %>
 						
<%= md_body(log.answer.chomp_body) %>
             <%= raw truncate(log.answer.body.gsub(/<.*?>/,''),:length => 100, :truncate_string =>"……") %> 
-              
(更多) 
+              
(<%=t(:more)%>) 
 						<% end %>
 					
 
 				 
@@ -197,10 +197,10 @@ when "TopicLog"
   
     
     <% if log.action == "EDIT" %>
-      <%= user_name_tag(log.user) %> 为话题 
#<%= item.name %>  
-      的<%= log.target_attr == "COVER" ?  "上传了封面图片。" : "提交了介绍。" %>
+      <%= user_name_tag(log.user) %> <%=t(:as_the_topic)%> 
#<%= item.name %>  
+      <%=t(:the)%><%= log.target_attr == "COVER" ?  "上传#{t(:a)}封面图片。" : "提交#{t(:a)}介绍。" %>
     <% else %>
-      <%= user_name_tag(log.user) %> 创建了话题 
#<%= item.name %> 
+      <%= user_name_tag(log.user) %> 创建<%=t(:the_topic)%> 
#<%= item.name %> 
     <% end %>
       
     
@@ -214,13 +214,13 @@ when "CommentLog"
 		when "Ask"
 %>
 	
 <%
 		when "Answer"
 %>
 	
 <%
 		end
diff --git a/app/views/logs/_log.mobile.erb b/app/views/logs/_log.mobile.erb
index 871e1f2..e34165d 100644
--- a/app/views/logs/_log.mobile.erb
+++ b/app/views/logs/_log.mobile.erb
@@ -24,13 +24,13 @@ when "AskLog"
         case action
         when "NEW"
       %>
-      <%= user_name_tag(log.user) %> 添加了该问题
+      <%= user_name_tag(log.user) %> <%=t(:add_the_problem)%>
       <% when "NEW_TO_USER" %>
-        <%= user_name_tag(log.user) %> 向 <%= user_name_tag(item.to_user) %> 提出了问题
+        <%= user_name_tag(log.user) %> <%=t(:to)%> <%= user_name_tag(item.to_user) %> <%=t(:issues_raised)%>
       <% when "EDIT" %>
-      <%= user_name_tag(log.user) %> <%= log.target_attr == "TITLE" ? "修改了该问题" : "修改了该问题的补充说明" %>
+      <%= user_name_tag(log.user) %> <%= log.target_attr == "TITLE" ? "#{t(:modify_the_problem)}" : "#{t(:modify_the_problem)}#{t(:the)}补充说明" %>
       <% when "ADD_TOPIC" %>
-      <%= user_name_tag(log.user) %> 给该问题添加了话题 
+      <%= user_name_tag(log.user) %> <%=t(:add_the_topic_to_the_problem)%> 
         <%
           topics = log.title.split(',')
           for topic in topics
@@ -38,7 +38,7 @@ when "AskLog"
         
#<%= topic %>   
         <% end %>
       <% when "DEL_TOPIC" %>
-      <%= user_name_tag(log.user) %> 从该问题删除了话题 
+      <%= user_name_tag(log.user) %> <%=t(:remove_the_subject_from_the_issue)%> 
         <%
           topics = log.title.split(',')
           for topic in topics
@@ -51,14 +51,14 @@ when "AskLog"
         • <%= item.answers_count %> 个答案 
         <% if current_user %>
           <% if current_user.ask_followed?(item) %>
-          • 
取消关注  
+          • 
<%=t(:cancel_concern)%>  
           <% else %>
           • 
关注  
           <% end %>
           <% if current_user.ask_muted?(item.id) %>
-          • 
取消屏蔽  
+          • 
<%=t(:unmasked)%>  
           <% else %>
-          • 
不感兴趣  
+          • 
<%=t(:not_interested)%>  
           <% end %>
         <% end %>
       <% end %>
@@ -86,30 +86,30 @@ when "UserLog"
 %>	
 	
 		<% if ["FOLLOW_TOPIC", "UNFOLLOW_TOPIC"].include?(action) %>
-	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_TOPIC" ? "关注" : "取消关注" %>了话题 
#<%= item.name %> 
+	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_TOPIC" ? "关注" : "#{t(:cancel_concern)}" %><%=t(:the_topic)%> 
#<%= item.name %> 
 		<% elsif ["FOLLOW_USER", "UNFOLLOW_USER"].include?(action) %>
-	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_USER" ? "关注" : "取消关注" %>了 <%= user_name_tag(item) %>
+	  
<%= user_name_tag(log.user) %> <%= action == "FOLLOW_USER" ? "关注" : "#{t(:cancel_concern)}" %><%=t(:a)%> <%= user_name_tag(item) %>
     <% elsif action == "THANK_ANSWER"  %>
-      
+      
 		<% else %>
 			
 	      <%= user_avatar_tag(log.user,:small) %>
 	    
      small_title<% end %>"><%= ask_title_tag(item) %>
       
-        <%= user_name_tag(log.user) %> <%= action == "FOLLOW" ? "关注了该问题" : (action == "UNFOLLOW" ? "取消关注了该问题" : "赞同该回答") %>
+        <%= user_name_tag(log.user) %> <%= action == "FOLLOW" ? "关注#{t(:a)}该问题" : (action == "UNFOLLOW" ? "#{t(:cancel_concern)}#{t(:a)}该问题" : "#{t(:agree_with_the_answer)}") %>
         • <%= item.answers_count %> 个答案 
         <% if current_user %>
           <% if current_user.ask_followed?(item) %>
-          • 
取消关注  
+          • 
<%=t(:cancel_concern)%>  
           <% else %>
           • 
关注  
           <% end %>
           <% if current_user.ask_muted?(item.id) %>
-          • 
取消屏蔽  
+          • 
<%=t(:unmasked)%>  
           <% else %>
-          • 
不感兴趣  
+          • 
<%=t(:not_interested)%>  
           <% end %>
         <% end %>
       
@@ -129,7 +129,7 @@ when "UserLog"
 					<% else %>
 					
<%= md_body(answer.chomp_body) %>
           <%= raw truncate(answer.body.gsub(/<.*?>/,''),:length => 100, :truncate_string =>"……") %> 
-          
(更多) 
+          
(<%=t(:more)%>) 
 					<% end %>
 				
 
 			 
@@ -149,18 +149,18 @@ when "AnswerLog"
      <%= ask_title_tag(item) %>
 	    
-	      <%= user_name_tag(log.user) %> <%= action == "NEW" ? "回答了该问题" : "修改了自己的回答" %>
+	      <%= user_name_tag(log.user) %> <%= action == "NEW" ? "回答#{t(:a)}该问题" : "修改#{t(:a)}自己#{t(:the)}回答" %>
 	      • <%= item.answers_count %> 个答案 
 				<% if current_user %>
 					<% if current_user.ask_followed?(item) %>
-	      	• 
取消关注  
+	      	• 
<%=t(:cancel_concern)%>  
 					<% else %>
 					• 
关注  
 					<% end %>
 					<% if current_user.ask_muted?(item.id) %>
-					• 
取消屏蔽  
+					• 
<%=t(:unmasked)%>  
 					<% else %>
-	      	• 
不感兴趣  
+	      	• 
<%=t(:not_interested)%>  
 					<% end %>
 				<% end %>
 	    
<%= md_body(log.answer.chomp_body) %>
             <%= raw truncate(log.answer.body.gsub(/<.*?>/,''),:length => 100, :truncate_string =>"……") %> 
-              
(更多) (<%=t(:more)%>) 
 						<% end %>
 					
 				
@@ -196,10 +196,10 @@ when "TopicLog"
   
     
     <% if log.action == "EDIT" %>
-      <%= user_name_tag(log.user) %> 为话题 
#<%= item.name %>  
-      的<%= log.target_attr == "COVER" ?  "上传了封面图片。" : "提交了介绍。" %>
+      <%= user_name_tag(log.user) %> <%=t(:as_the_topic)%> 
#<%= item.name %>  
+      <%=t(:the)%><%= log.target_attr == "COVER" ?  "上传#{t(:a)}封面图片。" : "提交#{t(:a)}介绍。" %>
     <% else %>
-      <%= user_name_tag(log.user) %> 创建了话题 
#<%= item.name %> 
+      <%= user_name_tag(log.user) %> 创建<%=t(:the_topic)%> 
#<%= item.name %> 
     <% end %>
       
     
@@ -213,13 +213,13 @@ when "CommentLog"
 		when "Ask"
 %>
 	
 <%
 		when "Answer"
 %>
 	
 <%
 		end
diff --git a/app/views/logs/_notifies.html.erb b/app/views/logs/_notifies.html.erb
index 675e72b..9bf025e 100644
--- a/app/views/logs/_notifies.html.erb
+++ b/app/views/logs/_notifies.html.erb
@@ -1,6 +1,6 @@
 <% if @notifies and @notifies.size > 0 %>
 
-	
新通知 
+	
<%=t(:new_notifications)%> 
 	<%
 	@notifies.each do |k, children|
 		next if k.to_s.blank?
@@ -9,7 +9,7 @@
 		<%
     if children[:type] == "USER"
 		%>
-      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> 关注了你。
+      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> <%=t(:concern_you)%>。
 		<%
     else
       if ["THANK_ANSWER"].include?children[:type]
@@ -37,9 +37,9 @@
           
@@ -75,7 +75,7 @@
 	
 	<% end %>
 	
  
-<% end %>
\ No newline at end of file
+<% end %>
diff --git a/app/views/logs/_notifies.js.erb b/app/views/logs/_notifies.js.erb
index 675e72b..9bf025e 100644
--- a/app/views/logs/_notifies.js.erb
+++ b/app/views/logs/_notifies.js.erb
@@ -1,6 +1,6 @@
 <% if @notifies and @notifies.size > 0 %>
 
-	
新通知 
+	
<%=t(:new_notifications)%> 
 	<%
 	@notifies.each do |k, children|
 		next if k.to_s.blank?
@@ -9,7 +9,7 @@
 		<%
     if children[:type] == "USER"
 		%>
-      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> 关注了你。
+      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> <%=t(:concern_you)%>。
 		<%
     else
       if ["THANK_ANSWER"].include?children[:type]
@@ -37,9 +37,9 @@
           
@@ -75,7 +75,7 @@
 	
-	
新通知 
+	
<%=t(:new_notifications)%> 
 	<%
 	@notifies.each do |k, children|
 		next if k.to_s.blank?
@@ -9,7 +9,7 @@
 		<%
     if children[:type] == "USER"
 		%>
-      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> 关注了你。
+      <%= raw children[:items].map {|n| (n.log and n.log.user) ? user_name_tag(User.find(n.log.user_id), {:is_notify => true, :notify => n}) : "" }.uniq.join("、") %> <%=t(:concern_you)%>。
 		<%
     else
       if ["THANK_ANSWER"].include?children[:type]
@@ -37,9 +37,9 @@
           
@@ -75,7 +75,7 @@
 	
设置 <% end %>
+
+  
+    
个人资料 
+    <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put, :enctype =>  "multipart/form-data" }) do |f| %>
+    <%= render "shared/error_messages", :target => resource %> 
+      <%= f.input :slug, :label => "个性域名", :hint => "格式要求4-20个字符(可以是字母,数字,中横线),如果格式不对将会自动处理。" %>
+      <%= f.input :girl, :as => :boolean, :label => "我是女性" %>
+      <%= f.input :email, :label => "邮箱" %>
+      <%= f.input :avatar, :label => "头像" %>
+      <% if not @user.avatar.blank? %>
+      
+        预览 
+        <%= image_tag(@user.avatar.normal.url) %>
+      
+      <% end %>
+      <%= f.input :website, :input_html => { :placeholder => "http://", :class => "long" }, :label => "个人站点" %>
+      <%= f.input :tagline, :input_html => { :class => "long" }, :label => "最能概括你的标志性语言" %>
+      <%= f.input :bio, :as => :text, :input_html => { :class => "long", :style => "height:120px;"}, :label => "个人经历" %>
+      
+      
+        保存 
+      
+    <% end %>
+  
+  
+    
邮件提醒设置 
+    
+      <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put, :enctype =>  "multipart/form-data" }) do |f| %>
+        <%= f.input :mail_be_followed, :as => :boolean, :label => "被人关注" %>
+        <%= f.input :mail_new_answer, :as => :boolean, :label => "关注的问题有新回答" %>
+        <%= f.input :mail_invite_to_ask, :as => :boolean, :label => "有人邀请我回答问题" %>
+        <%= f.input :mail_ask_me, :as => :boolean, :label => "有人向我提问" %>
+        
+          保存 
+        
+      <% end %>
+    
+  
+
+    
删除我的帐号 
+    
不喜欢? <%= link_to "删除此帐号", registration_path(resource_name), :confirm => "删除后无法恢复,你确定吗?", :method => :delete %>.
+  
加入社区 <% end %>
+
+	
+    <% if not Setting.allow_register %>
+      
如何注册用户? 
+      
+        为控制社区内容质量,加入必须通过别人邀请。
+        你可以动用你的社会化资源,找其他人邀请你。
+        
或者把你的个人资料发到: 
+        
+          <% Setting.admin_emails.each do |email| %>
+            <%= email %>  
+        
我们审核过后,如果你符合要求,便会给你发送邀请链接 ,所以,请尽量描述你自己。
+      
+    <% else %>
+      
注册新用户 
+      
目前是临时开放注册期间,如果你还没有<%= Setting.app_name %>帐号的话,赶紧注册吧!
+      <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name) ) do |f| %>
+        <%= render "shared/error_messages", :target => resource %> 
+        <%= f.input :name, :label => "姓名(注册后不可更改)" %>
+        <%= f.input :email, :label => "邮箱" %>
+        <%= f.input :password, :as => :password, :label => "密码" %>
+        <%= f.input :password_confirmation, :as => :password, :label => "确认密码"  %>
+        
提交注册信息 
+      <% end %>
+    <% end %>
+  
+
+    
已经有帐号了? 
+    
+    <%= render :partial => "devise/shared/links" %>
+    
+  
+    
关于注册 
+    
+      <%= Setting.app_name %>本身需要邀请才可以注册的,但是我们会偶尔在一些特别的日子临时性的开放注册。
+  
加入社区 <% end %>
+
+	
+    <% if not Setting.allow_register %>
+      
如何注册用户? 
+      
+        为控制社区内容质量,加入必须通过别人邀请。
+        你可以动用你的社会化资源,找其他人邀请你。
+        
或者把你的个人资料发到: 
+        
+          <% Setting.admin_emails.each do |email| %>
+            <%= email %>  
+        
我们审核过后,如果你符合要求,便会给你发送邀请链接 ,所以,请尽量描述你自己。
+      
+    <% else %>
+      
注册新用户 
+      
目前是临时开放注册期间,如果你还没有<%= Setting.app_name %>帐号的话,赶紧注册吧!
+      <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name) ) do |f| %>
+        <%= render "shared/error_messages", :target => resource %> 
+        <%= f.input :name, :label => "姓名(注册后不可更改)" %>
+        <%= f.input :email, :label => "邮箱" %>
+        <%= f.input :password, :as => :password, :label => "密码" %>
+        <%= f.input :password_confirmation, :as => :password, :label => "确认密码"  %>
+        
提交注册信息 
+      <% end %>
+    <% end %>
+  
+
设置 <% end %>
+<% content_for :sitemap do %><%=t(:set)%> <% end %>
 
   
-    
个人资料 
+    
<%=t(:personal_information)%> 
     <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put, :enctype =>  "multipart/form-data" }) do |f| %>
     <%= render "shared/error_messages", :target => resource %> 
-      <%= f.input :slug, :label => "个性域名", :hint => "格式要求4-20个字符(可以是字母,数字,中横线),如果格式不对将会自动处理。" %>
-      <%= f.input :girl, :as => :boolean, :label => "我是女性" %>
-      <%= f.input :email, :label => "邮箱" %>
-      <%= f.input :avatar, :label => "头像" %>
+      <%= f.input :slug, :label => "#{t(:personalized_domain_name)}", :hint => "#{t(:format_requirements)}4-20#{t(:characters)}(#{t(:can_be_a_letter)},#{t(:digital)},#{t(:the_horizontal_line)}),#{t(:if_the_wrong_format_will_be_automatically_processed)}。" %>
+      <%= f.input :girl, :as => :boolean, :label => "#{t(:i_am_a_female)}" %>
+      <%= f.input :email, :label => "#{t(:email)}" %>
+      <%= f.input :avatar, :label => "#{t(:avatar)}" %>
       <% if not @user.avatar.blank? %>
       
-        预览 
+        <%=t(:preview)%> 
         <%= image_tag(@user.avatar.normal.url) %>
       
       <% end %>
-      <%= f.input :website, :input_html => { :placeholder => "http://", :class => "long" }, :label => "个人站点" %>
-      <%= f.input :tagline, :input_html => { :class => "long" }, :label => "最能概括你的标志性语言" %>
-      <%= f.input :bio, :as => :text, :input_html => { :class => "long", :style => "height:120px;"}, :label => "个人经历" %>
+      <%= f.input :website, :input_html => { :placeholder => "http://", :class => "long" }, :label => "#{t(:personal_site)}" %>
+      <%= f.input :tagline, :input_html => { :class => "long" }, :label => "#{t(:best_summarize_your_sign_language)}" %>
+      <%= f.input :bio, :as => :text, :input_html => { :class => "long", :style => "height:120px;"}, :label => "#{t(:personal_experience)}" %>
       
       
-        保存 
+        <%=t(:save)%> 
       
     <% end %>
   
-    
邮件提醒设置 
+    
邮件提醒<%=t(:set)%> 
     
       <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put, :enctype =>  "multipart/form-data" }) do |f| %>
-        <%= f.input :mail_be_followed, :as => :boolean, :label => "被人关注" %>
-        <%= f.input :mail_new_answer, :as => :boolean, :label => "关注的问题有新回答" %>
-        <%= f.input :mail_invite_to_ask, :as => :boolean, :label => "有人邀请我回答问题" %>
-        <%= f.input :mail_ask_me, :as => :boolean, :label => "有人向我提问" %>
+        <%= f.input :mail_be_followed, :as => :boolean, :label => "#{t(:be_concerned)}" %>
+        <%= f.input :mail_new_answer, :as => :boolean, :label => "#{t(:to_answer_the_concerns_of_a_new)}" %>
+        <%= f.input :mail_invite_to_ask, :as => :boolean, :label => "#{t(:i_was_invited_to_answer_questions)}" %>
+        <%= f.input :mail_ask_me, :as => :boolean, :label => "#{t(:some_people_have_asked_me)}" %>
         
-          保存 
+          <%=t(:save)%> 
         
       <% end %>
     
@@ -41,7 +41,7 @@
 <% content_for :sidebar do %>
   <%= render "/shared/omniauth_links" %>
   
-    
删除我的帐号 
-    
不喜欢? <%= link_to "删除此帐号", registration_path(resource_name), :confirm => "删除后无法恢复,你确定吗?", :method => :delete %>.
+    
<%=t(:delete_my_account)%> 
+    
<%=t(:do_not_like)%>? <%= link_to "#{t(:delete_this_account)}", registration_path(resource_name), :confirm => "#{t(:can_not_recover_deleted)},#{t(:are_you_sure_you)}?", :method => :delete %>.
   
 <% end %>
diff --git a/app/views/registrations/new.html.erb b/app/views/registrations/new.html.erb
index 2ccb097..0846989 100644
--- a/app/views/registrations/new.html.erb
+++ b/app/views/registrations/new.html.erb
@@ -1,45 +1,45 @@
-<% content_for :sitemap do %>
加入社区 <% end %>
+<% content_for :sitemap do %>
<%=t(:join_the_community)%> <% end %>
 
 	
     <% if not Setting.allow_register %>
-      
如何注册用户? 
+      
<%=t(:how_to_registered_users)%>? 
       
-        为控制社区内容质量,加入必须通过别人邀请。
-        你可以动用你的社会化资源,找其他人邀请你。
-        
或者把你的个人资料发到: 
+        <%=t(:to_control_the_quality_of_community_content)%>,<%=t(:invite_others_to_join_must)%>。
+        <%=t(:you_can_use_your_social_resources)%>,<%=t(:invite_you_to_find_other_people)%>。
+        
<%=t(:or_send_your_personal_data_to)%>: 
         
           <% Setting.admin_emails.each do |email| %>
             <%= email %>  
-        
我们审核过后,如果你符合要求,便会给你发送邀请链接 ,所以,请尽量描述你自己。
+        
<%=t(:after_we_review)%>,<%=t(:if_you_meet_the_requirements)%>,<%=t(:will_send_you)%><%=t(:invitation_link)%> ,<%=t(:therefore)%>,<%=t(:please_try_to_describe_yourself)%>。
       
     <% else %>
-      
注册新用户 
-      
目前是临时开放注册期间,如果你还没有<%= Setting.app_name %>帐号的话,赶紧注册吧!
+      
<%=t(:new_user_registration)%> 
+      
<%=t(:provisional_registration_period_is_currently_open)%>,<%=t(:if_you_have_not)%><%= Setting.app_name %><%=t(:account_then)%>,<%=t(:hurry_up_now)%>!
       <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name) ) do |f| %>
         <%= render "shared/error_messages", :target => resource %> 
-        <%= f.input :name, :label => "姓名(注册后不可更改)" %>
-        <%= f.input :email, :label => "邮箱" %>
-        <%= f.input :password, :as => :password, :label => "密码" %>
-        <%= f.input :password_confirmation, :as => :password, :label => "确认密码"  %>
-        
提交注册信息 
+        <%= f.input :name, :label => "#{t(:name)}(#{t(:can_not_be_changed_after_registration)})" %>
+        <%= f.input :email, :label => "#{t(:email)}" %>
+        <%= f.input :password, :as => :password, :label => "#{t(:password)}" %>
+        <%= f.input :password_confirmation, :as => :password, :label => "#{t(:password)}"  %>
+        
<%=t(:submit_registration_information)%> 
       <% end %>
     <% end %>
   
 
 <%= content_for :sidebar do %>
   
-    
已经有帐号了? 
+    
<%=t(:new_account)%>? 
     
     <%= render :partial => "devise/shared/links" %>
     
   
-    
关于注册 
+    
<%=t(:about_registration)%> 
     
-      <%= Setting.app_name %>本身需要邀请才可以注册的,但是我们会偶尔在一些特别的日子临时性的开放注册。
   
 <% end %>
diff --git a/app/views/registrations/new.mobile.erb b/app/views/registrations/new.mobile.erb
index 029ca6c..4126e89 100644
--- a/app/views/registrations/new.mobile.erb
+++ b/app/views/registrations/new.mobile.erb
@@ -1,45 +1,45 @@
-<% content_for :sitemap do %>
加入社区 <% end %>
+<% content_for :sitemap do %>
<%=t(:join_the_community)%> <% end %>
 
 	
     <% if not Setting.allow_register %>
-      
如何注册用户? 
+      
<%=t(:how_to_registered_users)%>? 
       
-        为控制社区内容质量,加入必须通过别人邀请。
-        你可以动用你的社会化资源,找其他人邀请你。
-        
或者把你的个人资料发到: 
+        <%=t(:to_control_the_quality_of_community_content)%>,<%=t(:invite_others_to_join_must)%>。
+        <%=t(:you_can_use_your_social_resources)%>,<%=t(:invite_you_to_find_other_people)%>。
+        
<%=t(:or_send_your_personal_data_to)%>: 
         
           <% Setting.admin_emails.each do |email| %>
             <%= email %>  
-        
我们审核过后,如果你符合要求,便会给你发送邀请链接 ,所以,请尽量描述你自己。
+        
<%=t(:after_we_review)%>,<%=t(:if_you_meet_the_requirements)%>,<%=t(:will_send_you)%><%=t(:invitation_link)%> ,<%=t(:therefore)%>,<%=t(:please_try_to_describe_yourself)%>。
       
     <% else %>
-      
注册新用户 
-      
目前是临时开放注册期间,如果你还没有<%= Setting.app_name %>帐号的话,赶紧注册吧!
+      
<%=t(:new_user_registration)%> 
+      
<%=t(:provisional_registration_period_is_currently_open)%>,<%=t(:if_you_have_not)%><%= Setting.app_name %><%=t(:account_then)%>,<%=t(:hurry_up_now)%>!
       <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name) ) do |f| %>
         <%= render "shared/error_messages", :target => resource %> 
-        <%= f.input :name, :label => "姓名(注册后不可更改)" %>
-        <%= f.input :email, :label => "邮箱" %>
-        <%= f.input :password, :as => :password, :label => "密码" %>
-        <%= f.input :password_confirmation, :as => :password, :label => "确认密码"  %>
-        
提交注册信息 
+        <%= f.input :name, :label => "#{t(:name)}(#{t(:can_not_be_changed_after_registration)})" %>
+        <%= f.input :email, :label => "#{t(:email)}" %>
+        <%= f.input :password, :as => :password, :label => "#{t(:password)}" %>
+        <%= f.input :password_confirmation, :as => :password, :label => "#{t(:confirm_password)}"  %>
+        
<%=t(:submit_registration_information)%> 
       <% end %>
     <% end %>
   
 
 
diff --git a/app/views/shared/1__error_messages.erb.bak.erb b/app/views/shared/1__error_messages.erb.bak.erb
new file mode 100644
index 0000000..524b050
--- /dev/null
+++ b/app/views/shared/1__error_messages.erb.bak.erb
@@ -0,0 +1,12 @@
+<% if target.errors.any? %>  
+ 
+   
有 <%= target.errors.count %> 处问题导至无法提交: 
+
+   
+   <% target.errors.full_messages.each do |msg| %>
+     <%= msg %> 
+   <% end %>
+    
+ 
+<% end %>
+
diff --git a/app/views/shared/1__omniauth_links.erb.bak.erb b/app/views/shared/1__omniauth_links.erb.bak.erb
new file mode 100644
index 0000000..5757809
--- /dev/null
+++ b/app/views/shared/1__omniauth_links.erb.bak.erb
@@ -0,0 +1,61 @@
+
+  
用其他平台的帐号登陆 
+  <% if not current_user %>
+    
+  <% else %>
+    
+      <% if not current_user.auths.index("google") %>
+        Google帐号 Google帐号 [已绑定] Github Github [已绑定] 豆瓣 豆瓣 [已绑定] QQ帐号(腾讯微博) QQ帐号 [已绑定] 新浪微博 新浪微博 [已绑定] 网易帐号 网易帐号 [已绑定] 搜狐帐号 搜狐帐号 [已绑定]  
+  <% end %>
+
+
diff --git a/app/views/shared/_error_messages.erb b/app/views/shared/_error_messages.erb
index 524b050..0483326 100644
--- a/app/views/shared/_error_messages.erb
+++ b/app/views/shared/_error_messages.erb
@@ -1,6 +1,6 @@
 <% if target.errors.any? %>  
  
-   
有 <%= target.errors.count %> 处问题导至无法提交: 
+   
<%=t(:there)%> <%= target.errors.count %> <%=t(:department_can_not_submit_the_issue_lead_to)%>: 
 
    
    <% target.errors.full_messages.each do |msg| %>
diff --git a/app/views/shared/_omniauth_links.erb b/app/views/shared/_omniauth_links.erb
index 5757809..7de8169 100644
--- a/app/views/shared/_omniauth_links.erb
+++ b/app/views/shared/_omniauth_links.erb
@@ -1,51 +1,51 @@
 
-  
用其他平台的帐号登陆 
+  
<%=t(:login_account_with_other_platforms)%> 
   <% if not current_user %>
     
   <% else %>
     
   <% end %>
diff --git a/app/views/topics/1_edit.html.erb.bak.erb b/app/views/topics/1_edit.html.erb.bak.erb
new file mode 100644
index 0000000..e69de29
diff --git a/app/views/topics/1_show.html.erb.bak.erb b/app/views/topics/1_show.html.erb.bak.erb
new file mode 100644
index 0000000..96d354c
--- /dev/null
+++ b/app/views/topics/1_show.html.erb.bak.erb
@@ -0,0 +1,79 @@
+<%= content_for :scripts do %>
+  <%= javascript_include_tag("topics", :cache => "cached_topics") %>
+  
+<% end %>
+
+  
+    <%= image_tag(@topic.cover.normal.url) %>
+    
+  
+  
+    
修改话题图片 
+    <%= simple_form_for(@topic,:class => "form",:html => { :multipart =>  true, :onsubmit => "App.loading();" }) do |f| %>
+      <%= f.input :cover, :label => "本地上传",:hint => "支持 jpg, gif, png 格式的图片,不要超过 2MB。建议图片尺寸大于 100×100。" %>
+      
+    <% end %>
+  
+  
+  
+    
<%= @topic.name %> 
+    
+      <%= md_body @topic.summary  %> 
+      <% if @topic.summary.blank? %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "添加补充资料" %>
+      <% else %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary" %>
+      <% end %>
+    
+  
+
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+
+<% content_for :sidebar do %>
+  <% if current_user %>
+    
+      
+				<% if current_user.topic_followed?(@topic) %>
+				
取消关注 
+				<% else %>
+        
关注 
+				<% end %>
+      
+		
+	<% end %>
+
+		
+<% end %>
diff --git a/app/views/topics/1_show.mobile.erb.bak.erb b/app/views/topics/1_show.mobile.erb.bak.erb
new file mode 100644
index 0000000..46469a2
--- /dev/null
+++ b/app/views/topics/1_show.mobile.erb.bak.erb
@@ -0,0 +1,80 @@
+<%= content_for :scripts do %>
+  <%= javascript_include_tag("topics", :cache => "cached_topics") %>
+  
+<% end %>
+
+  
+    <% if current_user %>
+      
+        
+          <% if current_user.topic_followed?(@topic) %>
+          
取消关注 
+          <% else %>
+          
关注 
+          <% end %>
+        
+      
+    <% end %>
+  
+  
+    <%= image_tag(@topic.cover.normal.url) %>
+    
+  
+  
+    
修改话题图片 
+    <%= simple_form_for(@topic,:class => "form",:html => { :multipart =>  true, :onsubmit => "App.loading();" }) do |f| %>
+      <%= f.input :cover, :label => "本地上传",:hint => "支持 jpg, gif, png 格式的图片,不要超过 2MB。建议图片尺寸大于 100×100。" %>
+      
+    <% end %>
+  
+  
+  
+    
<%= @topic.name %> 
+    
+      <%= md_body @topic.summary  %> 
+      <% if @topic.summary.blank? %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "添加补充资料" %>
+      <% else %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary" %>
+      <% end %>
+    
+  
+
+
+
+  <% @asks.each do |item| %>
+    <%= render "asks/ask", :item => item %>
+  <% end %>
+  <% if @asks.length == @per_page %>
+    
+  <% end %>
+
+
+
diff --git a/app/views/topics/1_update.js.erb.bak.erb b/app/views/topics/1_update.js.erb.bak.erb
new file mode 100644
index 0000000..1432f34
--- /dev/null
+++ b/app/views/topics/1_update.js.erb.bak.erb
@@ -0,0 +1,6 @@
+<% if @success == true %>
+  $("#topic .cover img").attr("src",'<%= @topic.cover.normal.url %>');
+<% else %>
+  alert("上传失败,格式有问题.");
+<% end %>
+App.loading(false);
diff --git a/app/views/topics/edit.html.erb b/app/views/topics/edit.html.erb
index e69de29..8b13789 100644
--- a/app/views/topics/edit.html.erb
+++ b/app/views/topics/edit.html.erb
@@ -0,0 +1 @@
+
diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb
index 96d354c..6235a2a 100644
--- a/app/views/topics/show.html.erb
+++ b/app/views/topics/show.html.erb
@@ -16,15 +16,15 @@
 
   
     <%= image_tag(@topic.cover.normal.url) %>
-    
+    
   
-    
修改话题图片 
+    
<%=t(:modify_the_topic_image)%> 
     <%= simple_form_for(@topic,:class => "form",:html => { :multipart =>  true, :onsubmit => "App.loading();" }) do |f| %>
-      <%= f.input :cover, :label => "本地上传",:hint => "支持 jpg, gif, png 格式的图片,不要超过 2MB。建议图片尺寸大于 100×100。" %>
+      <%= f.input :cover, :label => "#{t(:local_upload)}",:hint => "#{t(:support)} jpg, gif, png #{t(:picture_format)},#{t(:do_not_exceed)} 2MB。#{t(:recommended_image_size_is_larger_than)} 100×100。" %>
       
     <% end %>
   
@@ -34,7 +34,7 @@
     
       <%= md_body @topic.summary  %> 
       <% if @topic.summary.blank? %>
-        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "添加补充资料" %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "#{t(:add_additional_information)}" %>
       <% else %>
         <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary" %>
       <% end %>
@@ -47,7 +47,7 @@
     <%= render "asks/ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 
@@ -56,7 +56,7 @@
     
       
 				<% if current_user.topic_followed?(@topic) %>
-				
取消关注 
+				
<%=t(:cancel_concern)%> 
 				<% else %>
         
关注 
 				<% end %>
@@ -65,7 +65,7 @@
 	<% end %>
 
 		
-			
最近关注此话题的人 
+			
<%=t(:people_concerned_about_this_topic_recently)%> 
 			
 				
 					<% for follower in @topic.followers.desc("$natural").limit(40) %>
diff --git a/app/views/topics/show.mobile.erb b/app/views/topics/show.mobile.erb
index 46469a2..5c703c9 100644
--- a/app/views/topics/show.mobile.erb
+++ b/app/views/topics/show.mobile.erb
@@ -19,7 +19,7 @@
       
         
   
     <%= image_tag(@topic.cover.normal.url) %>
-    
+    
   
-    
修改话题图片 
+    
<%=t(:modify_the_topic_image)%> 
     <%= simple_form_for(@topic,:class => "form",:html => { :multipart =>  true, :onsubmit => "App.loading();" }) do |f| %>
-      <%= f.input :cover, :label => "本地上传",:hint => "支持 jpg, gif, png 格式的图片,不要超过 2MB。建议图片尺寸大于 100×100。" %>
+      <%= f.input :cover, :label => "#{t(:local_upload)}",:hint => "#{t(:support)} jpg, gif, png #{t(:picture_format)},#{t(:do_not_exceed)} 2MB。#{t(:recommended_image_size_is_larger_than)} 100×100。" %>
       
     <% end %>
   
@@ -47,7 +47,7 @@
     
       <%= md_body @topic.summary  %> 
       <% if @topic.summary.blank? %>
-        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "添加补充资料" %>
+        <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary",:label => "#{t(:add_additional_information)}" %>
       <% else %>
         <%= in_place_edit_tag @topic, :summary, :type => :textarea, :text_id => "topic_summary" %>
       <% end %>
@@ -60,13 +60,13 @@
     <%= render "asks/ask", :item => item %>
   <% end %>
   <% if @asks.length == @per_page %>
-    
+    
   <% end %>
 
 
 
diff --git a/app/views/users/_follower.erb b/app/views/users/_follower.erb
index 216c1b6..a830d09 100644
--- a/app/views/users/_follower.erb
+++ b/app/views/users/_follower.erb
@@ -13,7 +13,7 @@
 	<% if current_user %>
 	
 		<% if current_user.followed?(follower) %>
-		
取消关注 
+		
<%=t(:cancel_concern)%> 
 		<% else %>
 		
关注 
 		<% end %>
diff --git a/app/views/users/_head.html.erb b/app/views/users/_head.html.erb
index c9c8dda..9c595a6 100644
--- a/app/views/users/_head.html.erb
+++ b/app/views/users/_head.html.erb
@@ -26,29 +26,29 @@
 		
 			
 	      <% if @user.bio.blank? and (not owner?@user) %>
-	        <%= @user.name %>还没来得及写他的个人介绍.
+	        <%= @user.name %><%=t(:have_not_had_time_to_write_his_personal_introduction)%>.
 	      <% else %>
 	        <%= md_body @user.bio %>
 	      <% end %>
 	     
-	    <% if owner?@user %> <%= in_place_edit_tag(@user,:bio,:type => :textarea, :text_id => "user_bio", :label => "修改个人经历") %> <% end %>
+	    <% if owner?@user %> <%= in_place_edit_tag(@user,:bio,:type => :textarea, :text_id => "user_bio", :label => "#{t(:modify_personal_experience)}") %> <% end %>
 		
 	 
 
 
 
 <% if not owner? user %>
 
 
 
 <% if not owner? user %>
 
  
@@ -31,16 +31,16 @@
 		
 			
 			<%= @user.following_ids.size %> 
-			<%= user_sex_title(@user) %>关注的人 
+			<%= user_sex_title(@user) %><%=t(:persons_of_concern)%> 
 			 
 	
-	
注册于 <%= l user.created_at.to_date, :format => :long %>
+	
<%=t(:registered_in)%> <%= l user.created_at.to_date, :format => :long %>
 
 
 <% if @user.followed_topic_ids.size > 0 %>
 
-	
+	
 	
 		<% for topic in @user.followed_topics.desc("$natural").limit(7) %>
 		<%= render "topic", :topic => topic %>
@@ -51,7 +51,7 @@
 
 <% if @user.follower_ids.size > 0 %>
 
-  
最近关注<%= user_sex_title(@user) %>的人 
+  
<%=t(:recent_attention)%><%= user_sex_title(@user) %>的人 
 	
 		
 			<% for follower in @user.followers.desc("$natural").limit(42) %>
@@ -66,7 +66,7 @@
 
 <% if @user.following_ids.size > 0 %>
 
-  
<%= user_sex_title(@user) %>最近关注的人 
+  
<%= user_sex_title(@user) %>最近<%=t(:persons_of_concern)%> 
 	
 		
 
   <% if @user.followed_topic_ids.size > 0 %>
   
-  
+  
   
     <% for topic in @user.followed_topics.desc("$natural").limit(7) %>
     <%= render "topic", :topic => topic %>
diff --git a/app/views/users/_topic.erb b/app/views/users/_topic.erb
index c19572d..c5cfeb1 100644
--- a/app/views/users/_topic.erb
+++ b/app/views/users/_topic.erb
@@ -5,7 +5,7 @@
 	<% if current_user %>
 	
 		<% if current_user.topic_followed?(topic) %>
-		
取消关注 
+		
<%=t(:cancel_concern)%> 
 		<% else %>
 		
关注 
 		<% end %>
diff --git a/app/views/users/answered.html.erb b/app/views/users/answered.html.erb
index 1ca254d..720706c 100644
--- a/app/views/users/answered.html.erb
+++ b/app/views/users/answered.html.erb
@@ -7,7 +7,7 @@
   <% end %>
 
 
 <% if @asks.length == @per_page %>
-  
+  
 <% end %>
 <%= render "sidebar", :user => @user %>
 
diff --git a/app/views/users/asked.html.erb b/app/views/users/asked.html.erb
index 10942bd..58b7527 100644
--- a/app/views/users/asked.html.erb
+++ b/app/views/users/asked.html.erb
@@ -7,7 +7,7 @@
   <% end %>
 
 
 <% if @asks.length == @per_page %>
-  
+  
 <% end %>
 <%= render "sidebar", :user => @user %>
 
diff --git a/app/views/users/asked.mobile.erb b/app/views/users/asked.mobile.erb
index 10942bd..58b7527 100644
--- a/app/views/users/asked.mobile.erb
+++ b/app/views/users/asked.mobile.erb
@@ -7,7 +7,7 @@
   <% end %>
 
 <% if @asks.length == @per_page %>
-  
+  
 <% end %>
 <%= render "sidebar", :user => @user %>
 
diff --git a/app/views/users/followers.html.erb b/app/views/users/followers.html.erb
index 48512e9..dea5569 100644
--- a/app/views/users/followers.html.erb
+++ b/app/views/users/followers.html.erb
@@ -6,7 +6,7 @@
     <%= render "follower", :follower => item %>
   <% end %>
 	<% if @followers.length == @per_page %>
-	
+	
 	<% end %>
 
 <%= render "sidebar", :user => @user %>
diff --git a/app/views/users/followers.mobile.erb b/app/views/users/followers.mobile.erb
index 48512e9..dea5569 100644
--- a/app/views/users/followers.mobile.erb
+++ b/app/views/users/followers.mobile.erb
@@ -6,7 +6,7 @@
     <%= render "follower", :follower => item %>
   <% end %>
 	<% if @followers.length == @per_page %>
-	
+	
 	<% end %>
 
 <%= render "sidebar", :user => @user %>
diff --git a/app/views/users/following_topics.html.erb b/app/views/users/following_topics.html.erb
index 68c7246..7aad30d 100644
--- a/app/views/users/following_topics.html.erb
+++ b/app/views/users/following_topics.html.erb
@@ -6,7 +6,7 @@
     <%= render "topic", :topic => item %>
   <% end %>
 	<% if @topics.length == @per_page %>
-	
+	
 	<% end %>
 
 <%= render "sidebar", :user => @user %>
diff --git a/app/views/users/following_topics.mobile.erb b/app/views/users/following_topics.mobile.erb
index 68c7246..7aad30d 100644
--- a/app/views/users/following_topics.mobile.erb
+++ b/app/views/users/following_topics.mobile.erb
@@ -6,7 +6,7 @@
     <%= render "topic", :topic => item %>
   <% end %>
 	<% if @topics.length == @per_page %>
-	
+	
 	<% end %>
 
 <%= render "sidebar", :user => @user %>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 10ed32e..5795f26 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -5,7 +5,7 @@
 			$(el).attr("onclick", "return false;");
 			$.get("/users/"+id+"/follow",{}, function(res){
         App.loading(false);
-        $(el).replaceWith('
取消关注 ');
+        $(el).replaceWith('
<%=t(:cancel_concern)%> ');
 	    });
       return false;
     }
@@ -31,8 +31,8 @@
 	<% end %>
 
 	<% if @logs.length == @per_page %>
-	  
+	  
 	<% end %>
 
 <%= render "sidebar", :user => @user %>
-
\ No newline at end of file
+
diff --git a/app/views/users/show.mobile.erb b/app/views/users/show.mobile.erb
index 4c17d7f..d097d79 100644
--- a/app/views/users/show.mobile.erb
+++ b/app/views/users/show.mobile.erb
@@ -5,7 +5,7 @@
 			$(el).attr("onclick", "return false;");
 			$.get("/users/"+id+"/follow",{}, function(res){
         App.loading(false);
-        $(el).replaceWith('
取消关注 ');
+        $(el).replaceWith('
<%=t(:cancel_concern)%> ');
 	    });
       return false;
     }
@@ -30,7 +30,7 @@
           
         <% elsif owner? @user %>
-          这就是你自己
+          <%=t(:this_is_your_own)%>
         <% else %>
-          登录后你可以关注<%= user_sex_title(@user) %>
+          <%=t(:after_logging_you_can_focus)%><%= user_sex_title(@user) %>
         <% end %>
       
 
      
 <%= render "sidebar", :user => @user %>
diff --git a/chinese_words.txt b/chinese_words.txt
new file mode 100644
index 0000000..9d607cc
--- /dev/null
+++ b/chinese_words.txt
@@ -0,0 +1,557 @@
+暂时不使用
+的功能
+仅仅使用其
+方法
+你还没有登陆
+调用的时候如果没有登陆
+那直接返回
+前段自动处理
+所有问题
+关于
+的搜索结果
+转向问题
+由于
+目前的按
+排序有问题
+没投过票的无法排序
+被邀请回答的用户
+推荐话题
+如果没有设置话题的话
+已经将问题连接发送到了
+已有相同的问题存在
+已重定向
+问题创建成功
+问题更新成功
+这里需要过滤掉烂问题
+将回答次数
+以加入回答次数
+者也
+知乎
+反馈
+查看用户不感兴趣的问题
+我屏蔽掉的问题
+验证权限
+用户是否有修改制定信息的权限
+访客
+举报信息已经提交
+谢谢你
+注册
+个人设置
+话题封面上传成功
+话题封面上传失败
+请检查你上传的图片适合符合格式要求
+回答过的问题
+问
+的问题
+问过的问题
+关注的话题
+关注
+的人
+关注的人
+成功绑定了
+帐号
+登陆成功
+欢迎来自
+的用户
+你的帐号已经创建成功
+的帐号提供信息不全
+无法直接登陆
+请先注册
+你还没有注册用户
+赞成
+评论
+了你在
+该问题中的回答
+中的回答
+问题
+回答
+了
+该问题
+感谢了你
+在
+的回答
+邀请你回答
+向你询问
+可信用户
+管理员
+可以
+去除区域里面的内容的换行标记
+检测是否
+过
+判断是否是
+过这个回答
+修改
+匿名用户
+我
+他
+她
+支持者列表
+更多
+欢迎加入
+被关注
+跳过
+如果用户不允许发邮件
+关注了你
+问题有了新回答
+有了新的回答
+等人邀请你回答
+向用户提问
+投票对应的分数
+支持者
+这里需要加上缓存
+敏感词验证
+没有帮助
+限制
+一人一次
+回答默认关注问题
+保存用户回答过的问题列表
+最后回答时间
+最后活动时间
+这个时间应该设置为该问题下辖最后一条
+的发生时间
+重定向问题编号
+提问人
+对指定人的提问
+最后个回答
+最后回答者
+正常可显示的问题
+前台调用都带上这个过滤
+除开一些
+如用到
+传入用户的
+问我的问题
+向某人提问
+默认回复时间为当前时间
+已便于排序
+更新话题
+参数
+可以是数组或者字符串
+增加
+去掉
+分割逗号
+去两边空格
+保存为独立的话题
+提交问题为
+修正顺序
+重定向问题
+不能重定向自己
+如果重定向目标的是重定向目前这个问题的
+就跳过
+防止无限重定向
+取消重定向
+多少人邀请
+邀请者
+发送邮件
+插入
+和
+生成内容
+检测敏感词
+带有敏感内容
+请注意一下
+搜索存储索引
+分三次查询
+依次按
+排列
+以下两个方法是给
+用
+上传图片
+用于记录
+是否改变过
+是否是女人
+软删除标记
+表示已经删除
+是否是可信用户
+可信用户有更多修改权限
+不感兴趣的问题
+关注的问题
+提醒的状态
+邀请字段
+用户评分
+暂时方案
+三方网站没有提供你的
+信息
+无法直接注册
+此方法用于处理开始注册是自动生成
+因为没表单
+只能自动
+如果
+被
+后是空的
+就用
+代替
+防止重复
+不感兴趣问题
+清除推荐话题
+发送被
+的邮件
+感谢回答
+软删除
+只是把用户信息修改了
+已注销
+我的通知
+推荐给我的人或者话题
+刷新推荐的人
+存入
+先删除就的缓存
+的信息
+跳过删除的用户
+从数组右边新增
+用于更新的时候先删除
+去得单个
+这里有性能问题
+查询的时候是把用户所有的项从
+里面去出来的
+多余的浪费内存传输
+一致
+删除
+返回原始字符串格式
+返回
+格式
+取得不感兴趣的列表
+不感兴趣
+需要防止重复插入
+赞同
+排序将上升
+反对
+不会显示你的名字
+票
+来自
+添加评论
+条评论
+向回答者表示感谢
+感谢
+认为此回答与问题不相干
+或者没有实际作用
+提出的问题
+个答案
+取消关注
+取消屏蔽
+参与投票人数
+标题
+正文
+提交问题
+或者
+该问题被添加到
+这
+个话题
+我的首页
+我关注的问题
+推荐给我的问题
+我屏蔽的问题
+者也正在发生
+邀请好友
+邀请你的朋友注册
+你可能会感兴趣的人或话题
+首页
+动态
+查看更多
+新建
+分享问题
+转发地址
+收件人
+如
+邮件主题
+向你推荐问题
+说
+向你推荐这个问题
+访问地址
+分享
+或
+关闭
+推荐文字
+你可以复制上面的内容
+并把它转发到你的微博或发送给你的
+好友
+他们点击链接就能看到此页面
+给这个问题选个话题吧
+好让别人来回答
+搜索话题
+添加
+完成
+添加补充资料
+添加答案
+举报
+你认为这个不算是一个问题
+或者答案可以很容易在
+上面找到
+问题被
+个网友认为是烂问题以后
+问题将会隐藏
+烂问题
+人认为
+有
+个回答
+一个问题你只能回答一次
+但你可以对现有的回答进行修改
+这个问题是对
+提问的
+只有
+才能回答
+修改简介
+提交回答
+关注此问题
+选项
+指向另外个已经存在的问题
+把问题
+指向
+搜索标题
+确定重定向
+取消
+相关问题
+查看更多相关问题
+邀请他人回答此问题
+搜索人
+问题状态
+最近活动
+被浏览
+次
+人关注了该问题
+创建了该问题
+并把它转发到你的微博
+发送给你的
+补充资料
+答案
+但你可以对现
+的回答进行
+只
+简介
+页面不存在
+非常抱歉
+你请求的页面我们无法找到
+话题
+关于者也
+我们是一群向往自由开放的程序员
+立志构建一个开放的问答社区站点
+我们乐于分享我们的项目源代码以及设计思路
+以供有非盈利性目的的个人
+公司使用
+团队成员
+贡献者
+常见问题
+为啥起
+这个名字
+者也每天都做了哪些更新
+代码部署和二次开发容易吗
+者也比知乎好在哪里
+用户名称可以修改么
+者也是个怎样的问答社区
+欢迎来到者也
+这里是一个满足你各种好奇
+求知
+探索
+社交
+讨论欲望的地方
+她由来自无数行业无数地方的
+人们
+各种他们提出的
+以及各个用以组织问题的
+组成
+你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词
+并关注一些话题
+问题或者人
+当你关注过之后
+你可以看到这些人
+问题的动态
+还可以在
+里看到你感兴趣的新老问题
+有时候去
+闲逛也是不错的发现感兴趣的问题和讨论的方法
+或者你可以去看看这些最近比较热门的话题
+又或者是去给这些等待回答的问题添加一些你所知道的答案
+还可以看看这些热门问题
+祝你在
+愉快
+你或许能回答
+每天都做了哪些更新
+比知乎好在哪里
+是个怎样的问答社区
+以及各个用以组织
+的
+并关注一些
+或者人
+的动态
+我关注的
+里看到你感兴趣的新老
+闲逛也是不错的发现感兴趣的
+和讨论的方法
+或者你可以去看看这些最近比较热门的
+又或者是去给这些等待回答的
+添加一些你所知道的答案
+还可以看看这些热门
+新
+搜索问题
+会员
+我要提问
+随便看看
+设置
+我知道了
+每天进步一点
+博客
+如何注册
+合作联系
+手机版
+创建新问题
+在这里输入问题
+可选
+添加更多描述
+添加问题
+加载中
+举报内容
+请填写举报原因
+提交
+手机版首页
+登录
+如何才能注册
+登出
+普通版
+后台
+控制台
+回前台
+公告
+用户
+你好
+导航
+者也团队
+这封邮件发自
+一个新型问答社区
+邮件通知设置
+创建
+如何才能
+添加了该问题
+向
+提出了问题
+修改了该问题
+修改了该问题的补充说明
+给该问题添加了话题
+从该问题删除了话题
+了话题
+感谢了
+关注了该问题
+取消关注了该问题
+赞同该回答
+回答了该问题
+修改了自己的回答
+为话题
+上传了封面图片
+提交了介绍
+创建了话题
+评论了问题
+新通知
+项
+关于问题
+清除这些提醒
+补充说明
+自己
+上传
+封面图片
+介绍
+个人资料
+个性域名
+格式要求
+个字符
+可以是字母
+数字
+中横线
+如果格式不对将会自动处理
+我是女性
+邮箱
+头像
+预览
+个人站点
+最能概括你的标志性语言
+个人经历
+保存
+邮件提醒设置
+被人关注
+关注的问题有新回答
+有人邀请我回答问题
+有人向我提问
+删除我的帐号
+不喜欢
+删除此帐号
+删除后无法恢复
+你确定吗
+加入社区
+如何注册用户
+为控制社区内容质量
+加入必须通过别人邀请
+你可以动用你的社会化资源
+找其他人邀请你
+或者把你的个人资料发到
+我们审核过后
+如果你符合要求
+便会给你发送
+邀请链接
+所以
+请尽量描述你自己
+注册新用户
+目前是临时开放注册期间
+如果你还没有
+帐号的话
+赶紧注册吧
+姓名
+注册后不可更改
+密码
+确认密码
+提交注册信息
+已经有帐号了
+关于注册
+本身需要邀请才可以注册的
+但是我们会偶尔在一些特别的日子临时性的开放注册
+如果你看到了这个页面
+那恭喜你
+邮件提醒
+确认
+处问题导至无法提交
+用其他平台的帐号登陆
+豆瓣
+腾讯微博
+新浪微博
+网易帐号
+搜狐帐号
+已绑定
+网易
+搜狐
+修改图片
+修改话题图片
+本地上传
+支持
+格式的图片
+不要超过
+建议图片尺寸大于
+最近关注此话题的人
+上传失败
+格式有问题
+你可以点击下面的链接进入这个问题的页面
+上
+他有
+个问题
+关注了
+邀请你回答这个问题
+你可以点击下面的链接查看这个问题以及回答
+你已经成功地注册成为了
+的成员
+者也目前还处于
+阶段
+我们正在努力完善它
+如果有问题还请多多谅解
+反馈与建议可以发往
+或者可以直接提交到
+还没来得及写他的个人介绍
+修改个人经历
+主页
+问过
+回答过
+对
+提问
+添加问题描述
+问题描述
+这就是你自己
+登录后你可以关注
+注册于
+最近关注
+最近关注的人
+提
+题描述
+题
+最近
diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml
new file mode 100644
index 0000000..7457c4b
--- /dev/null
+++ b/config/locales/devise.en.yml
@@ -0,0 +1,39 @@
+"zh-CN":
+   errors:
+     messages:
+       not_found: "not found "
+       already_confirmed: "has confirmed"
+       not_locked: "not locked"
+       not_saved: "there are %{count} errors, %{resource} can not be saved. "
+   devise:
+     failure:
+       unauthenticated: 'Your account has not been authenticated.'
+       unconfirmed: 'Please activate your account.'
+       locked: 'Your account has been locked.'
+       invalid: 'E-mail or password is incorrect'
+       invalid_token: 'authentication code is invalid.'
+       timeout: 'You have been logged out, please log in again.'
+       inactive: 'Your account is inactive.'#TODO double check this one.
+     sessions:
+       signed_in: 'Login successful'
+       signed_out: 'Logged out'
+     passwords:
+       send_instructions: 'After a few minutes, you will receive an e-mail to reset your password. '
+       updated: 'Your password has been changed successfully, please log in again.'
+     confirmations:
+       send_instructions: 'After a few minutes, you will receive account activation email.'
+       confirmed: 'Your account has been activated, please login.'
+     registrations:
+       signed_up: 'Your account has been registered successfully, if nothing unexpected happens, you will receive a confirmation e-mail to'
+       updated: 'account information updated successfully.'
+       destroyed: 'Goodbye! Your account has been successfully canceled. We hope to see you again soon. '
+     unlocks:
+       send_instructions: 'a bit, you will receive an e-mail account to unlock'
+       unlocked: 'Your account has been successfully unlocked, please login.'
+     mailer:
+       confirmation_instructions:
+         subject: 'confirmation'
+       reset_password_instructions:
+         subject: 'reset password information'
+       unlock_instructions:
+         subject: 'unlock information'
\ No newline at end of file
diff --git a/config/locales/en.yml b/config/locales/en.yml
index a747bfa..96c165d 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1,5 +1,758 @@
-# Sample localization file for English. Add more files in this directory for other locales.
-# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
+#Translated from the zh-CN.yml using google translate and Kelly Mahan
 
-en:
-  hello: "Hello world"
+"en":
+  login: Login
+  register: Register
+  how_to_register: How to Register
+  logout: Logout
+  
+  
+  
+  ################################################ bad translation conversion
+    
+  
+  ################################################ added by localization scripts by: Kelly Mahan
+  
+  not_to_be_used: "Not to be used"
+  features: "Features"
+  only_the_use_of_its: "Only the use of its"
+  methods: "Methods"
+  you_have_not_landed: "You have not landed"
+  if_you_do_not_log_calls_when_the: "If you do not log calls when the"
+  that_directly_return: "That directly return"
+  automatic_processing_of_the_preceding: "Automatic processing of the preceding"
+  all_issues: "All issues"
+  about: "About"
+  search_results: "Search results"
+  steering_problem: "Steering problem"
+  as: "As"
+  according_to_the_present: "According to the present"
+  sorting_problem: "Sorting problem"
+  did_not_cast_votes_can_not_sort: "Did not cast votes can not sort"
+  users_are_invited_to_answer: "Users are invited to answer"
+  recommended_topics: "Recommended Topics"
+  if_there_is_no_subject_then_set: "If there is no subject, then set"
+  the_problem_has_been_sent_to_the_connected: "The problem has been sent to the connected"
+  have_the_same_problem: "Have the same problem"
+  redirected: "Redirected"
+  problems_created_successfully: "Problems created successfully"
+  problem_successfully_updated: "Problem successfully updated"
+  need_to_filter_out_bad_problem_here: "Need to filter out bad problem here"
+  will_answer_the_number_of: "Will answer the number of"
+  to_add_the_number_to_answer: "To add the number to answer"
+  are_also: "Are also"
+  know_almost: "Know almost"
+  feedback: "Feedback"
+  view_user_not_interested_in_the_problem: "View user not interested in the problem"
+  i_block_out_the_problem: "I block out the problem"
+  verify_permissions: "Verify Permissions"
+  whether_the_user_has_permissions_to_modify_the_development_of_information: "Whether the user has permissions to modify the development of information"
+  visitors: "Visitors"
+  report_information_has_been_submitted: "Report information has been submitted"
+  thank_you: "Thank you"
+  up: "Up"
+  personal_settings: "Personal Settings"
+  topics_cover_upload_successful: "Topics cover Upload successful"
+  topics_cover_upload_failed: "Topics cover Upload failed"
+  please_check_your_uploaded_images_comply_with_format_requirements_for: "Please check your uploaded images comply with format requirements for"
+  answered_question: "Answered question"
+  q: "Q"
+  problems: "Problems"
+  the_question_asked: "The question asked"
+  a_topic_of_concern: "A topic of concern"
+  concern: "Concern"
+  people: "People"
+  persons_of_concern: "Following"
+  successfully_bound: "Successfully bound"
+  account: "Account"
+  new_account: "New Account"
+  forgot_password: "Forgot password"
+  password_mail_message: "This feature will send a special link to retrieve the password to your mailbox"
+  login_successful: "Login Successful"
+  welcome: "Welcome"
+  users: "Users"
+  your_account_has_been_created_successfully: "Your account has been created successfully"
+  incomplete_account_information: "Incomplete account information"
+  landing_can_not_be_directly: "Landing can not be directly"
+  please_register: "Please register"
+  you_have_not_registered_users: "You have not registered users"
+  in_favor: "In favor"
+  comments: "Comments"
+  you_in: "You in"
+  the_answer_to_this_question: "The answer to this question"
+  the_answer: "The answer"
+  problem: "Problem"
+  answer: "Answer"
+  a: "A"
+  the_problem: "The problem"
+  thank_you: "Thank you"
+  in: "In"
+  answer: "Answer"
+  invite_you_to_answer: "Invite you to answer"
+  to_ask_you: "To ask you"
+  trusted_users: "Trusted Users"
+  administrator: "Administrator"
+  can: "Can"
+  removal_of_the_contents_of_the_area_inside_the_line_marked: "Removal of the contents of the area inside the line marked"
+  detect: "Detect"
+  over: "Over"
+  determine_whether: "Determine whether"
+  about_this_answer: "About this answer"
+  modify: "Modify"
+  anonymous_user: "Anonymous User"
+  i: "I"
+  he: "He"
+  she: "She"
+  supporters_list: "Supporters List"
+  more: "More"
+  welcome: "Welcome"
+  be_concerned: "Be concerned"
+  skip: "Skip"
+  if_the_user_does_not_allow_email: "If the user does not allow email"
+  concern_you: "Concern you"
+  with_the_new_answer_to_the_problem: "With the new answer to the problem"
+  with_the_new_answers: "With the new answers"
+  others_invite_you_to_answer: "Others invite you to answer"
+  ask_the_user: "Ask the user"
+  vote_score_corresponding: "Vote score corresponding"
+  supporters: "Supporters"
+  there_need_to_add_caching: "There need to add caching"
+  sensitive_to_the_word_verification: "Sensitive to the word verification"
+  no_help: "No help"
+  limit: "Limit"
+  one_time: "One time"
+  the_default_answer_to_the_concerns_of: "The default answer to the concerns of"
+  save_a_list_of_the_user_answered_the_question: "Save a list of the user answered the question"
+  last_replied_time: "Last replied time"
+  last_active_time: "Last active time"
+  this_time_should_be_set_under_the_jurisdiction_of_the_issue_last: "This time should be set under the jurisdiction of the issue last"
+  time_of_occurrence: "Time of occurrence"
+  redirection_number: "Redirection number"
+  asked: "Asked"
+  questions_on_the_nominee: "Questions on the nominee"
+  finally_an_answer: "Finally, an answer"
+  finally_respondents: "Finally, respondents"
+  problems_that_can_be_displayed_properly: "Problems that can be displayed properly"
+  front_desk_calls_to_bring_this_filter: "Front desk calls to bring this filter"
+  except_some_of: "Except some of"
+  if_used: "If used"
+  incoming_user: "Incoming user"
+  question_to_me: "Question to me"
+  question_to_a_person: "Question to a person"
+  the_default_response_time_for_the_current_time: "The default response time for the current time"
+  have_been_easy_to_sort: "Have been easy to sort"
+  updated_topics: "Updated Topics"
+  parameters: "Parameters"
+  can_be_array_or_string: "Can be array or string"
+  increase: "Increase"
+  remove: "Remove"
+  comma_separated: "Comma separated"
+  to_both_sides_of_the_space: "To both sides of the space"
+  saved_as_a_separate_topic: "Saved as a separate topic"
+  submit_a_question_for_the: "Submit a question for the"
+  fixed_order: "Fixed order"
+  redirection: "Redirection"
+  can_not_redirect_their: "Can not redirect their"
+  if_the_redirect_target_is_to_redirect_the_present_problem: "If the redirect target is to redirect the present problem"
+  to_skip: "To skip"
+  prevent_infinite_redirection: "Prevent infinite redirection"
+  cancel_redirect: "Cancel Redirect"
+  how_many_people_invite: "How many people invite"
+  invitation: "Invitation"
+  send_email: "Send e-mail"
+  insert: "Insert"
+  and: "And"
+  generated_content: "Generated content"
+  detection_of_sensitive_words: "Detection of sensitive words"
+  with_sensitive_content: "With sensitive content"
+  please_note: "Please note"
+  search_store_the_index: "Search store the index"
+  three_times_a_query: "Three times a query"
+  followed_by: "Followed by"
+  arrangement: "Arrangement"
+  the_following_two_methods_are_for: "The following two methods are for"
+  with: "With"
+  upload: "Upload"
+  used_to_record: "Used to record"
+  is_changed: "Is changed"
+  whether_a_woman: "Whether a woman"
+  soft_delete_tag: "Soft delete tag"
+  that_have_been_deleted: "That have been deleted"
+  whether_it_is_trusted_users: "Whether it is trusted users"
+  more_trusted_users_to_modify_permissions: "More trusted users to modify permissions"
+  not_interested_in_the_problem: "Not interested in the problem"
+  concern: "Concern"
+  reminded_of_the_state: "Reminded of the state"
+  invite_field: "Invite field"
+  user_rating: "User Rating"
+  temporary_solution: "Temporary solution"
+  three_sites_do_not_provide_your: "Three sites do not provide your"
+  information: "Information"
+  can_not_be_directly_up: "Can not be directly up"
+  this_method_is_used_to_process_start_up_automatically: "This method is used to process start up automatically"
+  because_no_form: "Because no form"
+  automatic_only: "Automatic only"
+  if: "If"
+  was: "Was"
+  is_empty_after: "Is empty after"
+  to_use: "To use"
+  instead_of: "Instead of"
+  prevent_duplication: "Prevent duplication"
+  not_interested_in_the_problem: "Not interested in the problem"
+  clear_recommended_topics: "Clear Recommended Topics"
+  sent_by: "Sent by"
+  mail: "Mail"
+  thanks_for_replying: "Thanks for replying"
+  soft_delete: "Soft Delete"
+  just_modify_user_information: "Just modify user information"
+  cancelled: "Cancelled"
+  my_notifications: "My notifications"
+  i_recommend_to_people_or_topics: "I recommend to people or topics"
+  refresh_person_recommended: "Refresh person recommended"
+  into: "Into"
+  delete_the_cache_to: "Delete the cache to"
+  information: "Information"
+  skip_to_delete_user: "Skip to delete user"
+  add_the_right_from_an_array: "Add the right from an array"
+  used_to_update_the_time_to_delete: "Used to update the time to delete"
+  to_have_a_single: "To have a single"
+  there_are_performance_issues: "There are performance issues"
+  when_the_query_is_the_user_all_the_items_from: "When the query is the user all the items from"
+  to_go_out_there: "To go out there"
+  unnecessary_waste_of_memory_transmission: "Unnecessary waste of memory transmission"
+  consistent: "Consistent"
+  delete: "Delete"
+  return_to_the_original_string_format: "Return to the original string format"
+  back: "Back"
+  format: "Format"
+  not_interested_in_obtaining_a_list_of: "Not interested in obtaining a list of"
+  not_interested: "Not interested"
+  need_to_prevent_duplicate_insertion: "Need to prevent duplicate insertion"
+  agree: "Agree"
+  sort_will_rise: "Sort will rise"
+  against: "Against"
+  does_not_display_your_name: "Does not display your name"
+  votes: "Votes"
+  from: "From"
+  add_a_comment: "Add a comment"
+  comments: "Comments"
+  expressed_appreciation_to_the_respondents: "Expressed appreciation to the respondents"
+  thanks: "Thanks"
+  and_pertain_to_the_question_that_this_answer: "And pertain to the question that this answer"
+  or_no_practical_effect: "Or no practical effect"
+  questions: "Questions"
+  an_answer: "An answer"
+  cancel_concern: "Cancel concern"
+  unmasked: "Unmasked"
+  number_of_people_to_vote: "Number of people to vote"
+  title: "Title"
+  text: "Text"
+  submit_a_question: "Submit a question"
+  or: "Or"
+  the_problem_is_added_to_the: "The problem is added to the"
+  this: "This"
+  topics: "Topics"
+  my_home: "My Home"
+  my_concern: "My concern"
+  recommend_to_my_question: "Recommend to my question"
+  my_question_shielding: "My question shielding"
+  open_questions: "Open Questions"
+  invite_friends: "Invite friends"
+  invite_your_friends_to_register: "Invite your friends to register"
+  you_may_be_interested_in_the_person_or_topic: "You may be interested in the person or topic"
+  home: "Home"
+  news: "News"
+  see_more: "See more"
+  new: "New"
+  sharing: "Sharing"
+  forwarding_address: "Forwarding address"
+  recipient: "Recipient"
+  if: "If"
+  message_subject: "Message subject"
+  to_recommend_to_you_the_problem: "To recommend to you the problem"
+  said: "Said"
+  to_recommend_to_you_this_question: "To recommend to you this question"
+  visiting_address: "Visiting address"
+  share: "Share"
+  or: "Or"
+  close: "Close"
+  recommended_text: "Recommended Text"
+  you_can_copy_the_contents_of_the_above: "You can copy the contents of the above"
+  and_to_forward_it_to_your_microblog_or_send_to_you: "And to forward it to your micro-blog or send to you"
+  friends: "Friends"
+  they_will_be_able_to_see_this_page_click_on_the_link: "They will be able to see this page, click on the link"
+  choose_a_topic_to_this_question_it: "Choose a topic to this question it"
+  to_allow_someone_else_to_answer: "To allow someone else to answer"
+  search_topic: "Search Topic"
+  add: "Add"
+  complete: "Complete"
+  add_additional_information: "Add additional information"
+  add_answer: "Add Answer"
+  report: "Report"
+  do_you_think_this_is_not_a_problem: "Do you think this is not a problem"
+  or_the_answer_can_easily: "Or the answer can easily"
+  found_above: "Found above"
+  problem_is: "Problem is"
+  a_user_that_is_the_problem_after_bad: "A User that is the problem after bad"
+  problem_will_be_hidden: "Problem will be hidden"
+  bad_question: "Bad question"
+  people_think_that: "People think that"
+  there: "There"
+  an_answer: "An answer"
+  you_can_only_answer_one_question: "You can only answer one question"
+  but_you_can_modify_the_existing_answers: "But you can modify the existing answers"
+  this_problem_is: "This problem is"
+  question: "Question"
+  only: "Only"
+  to_answer: "To answer"
+  edit_profile: "Edit Profile"
+  submit_answers: "Submit answers"
+  this_problem_concerns: "This problem concerns"
+  options: "Options"
+  another_point_to_a_problem_that_already_exists: "Another point to a problem that already exists"
+  the_problem: "The problem"
+  point: "Point"
+  search_title: "Search Title"
+  determine_the_redirection: "Determine the redirection"
+  cancel: "Cancel"
+  related_issues: "Related issues"
+  see_more_related_issues: "See more related issues"
+  invite_others_to_answer_this_question: "Invite others to answer this question"
+  search_people: "Search people"
+  issue_status: "Issue status"
+  recent_activity: "Recent Activity"
+  viewed: "Viewed"
+  times: "Times"
+  people_are_concerned_about_the_problem: "People are concerned about the problem"
+  created_the_problem: "Created the problem"
+  page_does_not_exist: "Page does not exist"
+  im_sorry: "I'm sorry"
+  the_page_you_requested_could_not_find_us: "The page you requested could not find us"
+  topic: "Topic"
+  about: "About"
+  we_are_a_group_of_programmers_who_aspire_to_a_free_and_open: "We are a group of programmers who aspire to a free and open"
+  determined_to_build_an_open_question_and_answer_community_site: "Determined to build an open question and answer community site"
+  we_are_happy_to_share_our_project_source_code_and_design_ideas: "We are happy to share our project source code and design ideas"
+  for_a_nonprofit_personal_purposes: "For a non-profit personal purposes"
+  companies_use: "Companies use"
+  team_members: "Team members"
+  contributors: "Contributors"
+  frequently_asked_questions: "Frequently Asked Questions"
+  why_play: "Why play"
+  the_name: "The name"
+  are_also_updated_every_day_what_to_do: "Are also updated every day what to do"
+  code_deploy_and_easy_for_secondary_development: "Code, deploy and easy for secondary development"
+  fortunately_than_who_knows_where_almost: "Fortunately, than who knows where almost"
+  what_can_change_the_user_name: "What can change the user name"
+  who_is_also_a_kind_of_q__a_community: "Who is also a kind of Q & A community"
+  welcome_to_those_who_have: "Welcome to those who have"
+  here_is_a_variety_to_satisfy_your_curiosity: "Here is a variety to satisfy your curiosity"
+  knowledge: "Knowledge"
+  discover: "Discover"
+  social: "Social"
+  desire_to_place_the_discussion: "Desire to place the discussion"
+  her_numerous_industries_from_many_parts_of_the: "Her numerous industries from many parts of the"
+  people: "People"
+  they_proposed_a_variety_of: "They proposed a variety of"
+  and_various_organizational_problems_for: "And various organizational problems for"
+  composition: "Composition"
+  you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in: "You can use the search box at the top to try to search for the keywords you are interested in"
+  and_focus_on_some_topics: "And focus on some topics"
+  problems_or_who: "Problems or who"
+  when_you_look_over_after: "When you look over after"
+  you_can_see_these_people: "You can see these people"
+  the_dynamic: "THE DYNAMIC"
+  you_can_also: "You can also"
+  see_you_are_interested_in_new_and_old_problems: "See you are interested in new and old problems"
+  sometimes_go: "Sometimes go"
+  found_wandering_is_also_a_good_discussion_of_issues_of_interest_and_the_methods: "Found wandering is also a good discussion of issues of interest and the methods"
+  or_you_can_go_see_the_more_popular_recent_topics: "Or you can go see the more popular recent topics"
+  or_is_it_going_to_those_waiting_for_questions_to_add_some_of_you_know_the_answer: "Or is it going to those waiting for questions to add some of you know the answer"
+  you_can_also_look_at_these_hot_issues: "You can also look at these hot issues"
+  good_luck_in_your: "Good luck in your"
+  happy: "Happy"
+  you_may_be_able_to_answer: "You may be able to answer"
+  new: "New"
+  search_problems: "Search problems"
+  member: "Member"
+  add_question: "Add Question"
+  set: "Edit"
+  i_know: "I know"
+  a_little_progress_every_day: "A little progress every day"
+  blog: "Blog"
+  how_to_register: "How to register"
+  cooperative_links: "Cooperative links"
+  mobile: "Mobile"
+  create_new_problems: "Create new problems"
+  enter_your_question_here: "Enter your question here"
+  optional: "Optional"
+  add_more_description: "Add more description"
+  add_a_question: "Add a question"
+  loading: "Loading"
+  report_content: "Report Content"
+  please_fill_in_the_reasons_reported: "Please fill in the reasons reported"
+  submitted: "Submitted"
+  mobile_home: "Mobile Home"
+  login: "Login"
+  how_to_register: "How to register"
+  logout: "Logout"
+  regular_edition: "Regular edition"
+  background: "Background"
+  console: "Console"
+  back_to_front: "Back to front"
+  notice: "Notice"
+  users: "Users"
+  hello: "Hello"
+  navigation: "Navigation"
+  who_is_also_team: "Who is also team"
+  from_the_bottom_of_this_message: "From the bottom of this message"
+  a_new_q__a_community: "A new Q & A community"
+  email_notification_settings: "E-mail notification settings"
+  add_the_problem: "Add the problem"
+  to: "To"
+  issues_raised: "Issues raised"
+  modify_the_problem: "Modify the problem"
+  modify_a_supplementary_explanation_of_the_problem: "Modify a supplementary explanation of the problem"
+  add_the_topic_to_the_problem: "Add the topic to the problem"
+  remove_the_subject_from_the_issue: "Remove the subject from the issue"
+  the_topic: "The topic"
+  thanked: "Thanked"
+  concerned_about_the_problem: "Concerned about the problem"
+  cancel_the_problem_concerns: "Cancel the problem concerns"
+  agree_with_the_answer: "Agree with the answer"
+  answered_the_question: "Answered the question"
+  changed_their_answers: "Changed their answers"
+  as_the_topic: "As the topic"
+  the: "The"
+  from_the_cover_image: "From the cover image"
+  submitted_a_description: "Submitted a description"
+  create_a_topic: "Create a topic"
+  review_the_problem: "Review the problem"
+  new_notifications: "New notifications"
+  items: "Items"
+  regards: "Regards"
+  remove_these_reminders: "Remove these reminders"
+  personal_information: "Personal Information"
+  personalized_domain_name: "Personalized domain name"
+  format_requirements: "Format requirements"
+  characters: "Characters"
+  can_be_a_letter: "Can be a letter"
+  digital: "Digital"
+  the_horizontal_line: "The horizontal line"
+  if_the_wrong_format_will_be_automatically_processed: "If the wrong format will be automatically processed"
+  i_am_a_female: "I am a female"
+  email: "E-mail"
+  avatar: "Avatar"
+  preview: "Preview"
+  personal_site: "Personal Site"
+  best_summarize_your_sign_language: "Best summarize your sign language"
+  personal_experience: "Personal experience"
+  save: "Save"
+  email_alert_settings: "E-mail alert settings"
+  be_concerned: "Be concerned"
+  to_answer_the_concerns_of_a_new: "To answer the concerns of a new"
+  i_was_invited_to_answer_questions: "I was invited to answer questions"
+  some_people_have_asked_me: "Some people have asked me"
+  delete_my_account: "Delete My Account"
+  do_not_like: "Do not like"
+  delete_this_account: "Delete this account"
+  can_not_recover_deleted: "Can not recover deleted"
+  are_you_sure_you: "Are you sure you"
+  join_the_community: "Join the community"
+  how_to_registered_users: "How to Registered Users"
+  to_control_the_quality_of_community_content: "To control the quality of community content"
+  invite_others_to_join_must: "Invite others to join must"
+  you_can_use_your_social_resources: "You can use your social resources"
+  invite_you_to_find_other_people: "Invite you to find other people"
+  or_send_your_personal_data_to: "Or send your personal data to"
+  after_we_review: "After we review"
+  if_you_meet_the_requirements: "If you meet the requirements"
+  will_send_you: "Will send you"
+  invitation_link: "Invitation link"
+  therefore: "Therefore,"
+  please_try_to_describe_yourself: "Please try to describe yourself"
+  new_user_registration: "New user registration"
+  provisional_registration_period_is_currently_open: "Provisional registration period is currently open"
+  if_you_have_not: "If don't have a "
+  account_then: " Account, then"
+  hurry_up_now: "Hurry up now"
+  name: "Name"
+  can_not_be_changed_after_registration: "Can not be changed after registration"
+  password: "Password"
+  remember_me: "Remember Me"
+  confirm_password: "Confirm Password"
+  submit_registration_information: "Submit registration information"
+  about_registration: "About Registration"
+  itself_can_be_invited_to_register: "Itself can be invited to register"
+  but_we_will_occasionally_some_special_days_in_the_temporary_open_up: "But we will occasionally some special days in the temporary open up"
+  if_you_see_this_page: "If you see this page"
+  congratulations_you: "Congratulations, you"
+  department_can_not_submit_the_issue_lead_to: "Department can not submit the issue lead to"
+  login_account_with_other_platforms: "Login account with other platforms"
+  douban: "Douban"
+  tencent_microblogging: "Tencent microblogging"
+  sina_microblogging: "Sina microblogging"
+  netease_account: "NetEase account"
+  sohu_account: "Sohu account"
+  is_bound: "Is bound"
+  edit_image: "Edit image"
+  modify_the_topic_image: "Modify the topic image"
+  local_upload: "Local upload"
+  support: "Support"
+  picture_format: "Picture format"
+  do_not_exceed: "Do not exceed"
+  recommended_image_size_is_larger_than: "Recommended image size is larger than"
+  people_concerned_about_this_topic_recently: "People concerned about this topic recently"
+  upload_failed: "Upload failed"
+  format_problem: "Format problem"
+  you_can_click_on_the_link_below_to_access_this_page: "You can click on the link below to access this page"
+  on: "On"
+  he_has: "He has"
+  question: "Question"
+  concerned_about_the: "Concerned about the"
+  invite_you_to_answer_this_question: "Invite you to answer this question"
+  you_can_click_on_the_link_below_and_answer_this_question: "You can click on the link below and answer this question"
+  you_have_successfully_registered_as_a: "You have successfully registered as a"
+  members: "Members"
+  who_also_is_still_in: "Who also is still in"
+  stage: "Stage"
+  we_are_trying_to_improve_it: "We are trying to improve it"
+  if_there_are_issues_that_a_lot_of_understanding: "If there are issues that a lot of understanding"
+  feedback_and_suggestions_can_be_sent_to: "Feedback and suggestions can be sent to"
+  or_can_be_submitted_directly_to_the: "Or can be submitted directly to the"
+  have_not_had_time_to_write_his_personal_introduction: "Have not had time to write his personal introduction"
+  modify_personal_experience: "Modify my bio."
+  home: "Home"
+  asked: "Asked"
+  answered: "Answered"
+  on: "On"
+  questions: "Questions"
+  add_a_description_of_the_problem: "Add a description of the problem"
+  problem_description: "Problem Description"
+  this_is_your_own: "This is your own"
+  after_logging_you_can_focus: "After logging you can focus"
+  registered_in: "Registered in"
+  recent_attention: "Recent attention"
+  recent_attention_to_the_people: "Recent attention to the people"
+  
+  
+  ##############################################################################################
+  
+  
+
+  
+  date:
+    formats:
+      default: "% Y-% m-% d"
+      short: "% b% d days"
+      long: "% Y% b% d day of"
+    day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
+    abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
+    month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
+    abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sept, Oct, Nov, Dec]
+    order: [:year, :month, :day]
+  
+  time:
+    formats:
+      default: "% Y% b% d day of% A% H:% M:% S% Z"
+      short: "% b% d at% H:% M"
+      long: "% Y% b% d day of% H:% M"
+      min: "% H:% M"
+    am: "am"
+    pm: "pm"
+  
+  datetime:
+    distance_in_words:
+      half_a_minute: "half a minute"
+      less_than_x_seconds:
+        one: "less than one second"
+        other: "Less than %{count} seconds"
+      x_seconds:
+        one: "one second"
+        other: " %{count} seconds"
+      less_than_x_minutes:
+        one: "less than a minute"
+        other: "Less than %{count} minutes"
+      x_minutes:
+        one: "One Minute"
+        other: " %{count} minutes"
+      about_x_hours:
+        one: "About an hour"
+        other: "about %{count} hours"
+      x_days:
+        one: "one day"
+        other: " %{count} days"
+      about_x_months:
+        one: "About a month"
+        other: "about %{count} months"
+      x_months:
+        one: "one month"
+        other: " %{count} months"
+      about_x_years:
+        one: "About a year"
+        other: "In about %{count}"
+      over_x_years:
+        one: "one year"
+        other: " %{count} years"
+      almost_x_years:
+        one: "for nearly a year"
+        other: "In close to %{count}"
+    prompts:
+      year: "Year"
+      month: "Month"
+      day: "Day"
+      hour: "Hour"
+      minute: "Minutes"
+      second: "Seconds"
+  
+  number:
+    format:
+      separator: "."
+      delimiter: ","
+      precision: 3
+    currency:
+      format:
+        format: "% u% n"
+        unit: "CN ¥"
+        separator: "."
+        delimiter: ","
+        precision: 2
+    percentage:
+      format:
+        delimiter: ""
+    precision:
+      format:
+        delimiter: ""
+    human:
+      format:
+        delimiter: ""
+        precision: 1
+      storage_units:
+        format: "% n% u"
+        units:
+          byte:
+            one: "Byte"
+            other: "Bytes"
+          kb: "KB"
+          mb: "MB"
+          gb: "GB"
+          tb: "TB"
+  
+  support:
+    array:
+      words_connector: ","
+      two_words_connector: "and"
+      last_word_connector: ", and"
+    select:
+      prompt: "Select"
+  
+  activemodel:
+    errors:
+      template: # ~ 2.3.5 backward compatible
+        header:
+          one: "there is an error, %{model} can not be saved. "
+          other: "there are %{count} errors, %{model} can not be saved. "
+        body: "the following fields are invalid:"
+      messages:
+        inclusion: "is not included in the list"
+        exclusion: "is a reserved keyword"
+        invalid: "is invalid"
+        confirmation: "and confirm the value does not match"
+        accepted: "must be accepted"
+        empty: "can not be empty"
+        blank: "can not be null"
+        too_long: "is too long (up to %{count} characters)"
+        too_short: "is too short (minimum is %{count} characters)"
+        wrong_length: "Illegal length (must be a %{count} characters)"
+        taken: "has been used"
+        not_a_number: "is not a number"
+        not_an_integer: "must be an integer"
+        greater_than: "must be greater than %{count}"
+        greater_than_or_equal_to: "must be greater than or equal to %{count}"
+        equal_to: "must be equal to %{count}"
+        less_than: "must be less than %{count}"
+        less_than_or_equal_to: "must be less than or equal to %{count}"
+        odd: "must be singular"
+        even: "must be a two-number"
+        record_invalid: "validation failed: %{errors}"
+    models:
+      user: "Users"
+      topic: "Topics"
+      ask: "Issues"
+      answer: "Answers"
+    attributes:
+      user:
+        name: "name"
+        slug: "personal url slug"
+        email: "Email"
+        bio: "Bio"
+        password: "password"
+        password_confirmation: "Confirm password"
+        website: "Your Website"
+        avatar: "Avatar"
+        last_logined_at: "Last Login Time"
+        tagline: "signature"
+      topic:
+        title: "Title"
+      ask:
+        title: "Title"
+  
+  activemodel:
+    errors:
+      template:
+        header:
+          one: "there is an error occurs that causes %{model} can not be saved. "
+          other: "there are %{count} error occurs that causes %{model} can not be saved. "
+        body: "the following fields appear in the error:"
+          
+  mongoid:
+    errors:
+      models:
+        user: User
+      messages:
+        inclusion: "is not included in the list"
+        exclusion: "is reserved keyword"
+        invalid: "is invalid"
+        confirmation: "and confirm the value does not match"
+        accepted: "must be accepted"
+        empty: "can not be empty"
+        blank: "can not be null"
+        too_long: "too long (up to %{count} characters)"
+        too_short: "is too short (minimum is %{count} characters)"
+        wrong_length: "Illegal length (must be a %{count} characters)"
+        taken: "has been used"
+        not_a_number: "not a number"
+        not_an_integer: "must be an integer"
+        greater_than: "must be greater than %{count}"
+        greater_than_or_equal_to: "must be greater than or equal to %{count}"
+        equal_to: "must be equal to %{count}"
+        less_than: "must be less than %{count}"
+        less_than_or_equal_to: "must be less than or equal to %{count}"
+        odd: "must be odd"
+        even: "must be even"
+        record_invalid: "validation failed: %{errors}"
+        document_not_found:
+          "Found no class is %{klass} ID is the document %{identifiers}"
+        invalid_database:
+          "Database should be Mongo::DB, rather than %{name}."
+        invalid_type:
+          "In the class %{klass} is defined in a field, the actual value is %{value} of %{other}."
+        unsupported_version:
+          "MongoDB %{version} version has expired, please upgrade to %{mongo_version}."
+        validations:
+          "Validation failed - %{errors}."
+        invalid_collection:
+          "Does not allow direct access to the embedded set %{klass}, root access from the document collection."
+        invalid_field:
+          "Field name does not allow for %{name}. You should not define the internal property or method with Mongoid the same name, see detailed Use Document # instance_methods."
+        too_many_nested_attribute_records:
+          "Was associated with %{association} embedded property can not exceed %{limit}."
+        embedded_in_must_have_inverse_of:
+          "embedded_in association property must contain inverse_of."
+        dependent_only_references_one_or_many:
+          "dependent => destroy | delete option is only valid when the references_one or references_many."
+        association_cant_have_inverse_of:
+          "In the current association does not allow to define inverse_of, the only embedded_in or references_many an array of circumstances under"
+        unsaved_document:
+          "You cannot call create or create! Through a relational association
+          relation ( %{document}) who's parent ( %{base}) is not already saved."
\ No newline at end of file
diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml
index be192a9..967eca3 100644
--- a/config/locales/zh-CN.yml
+++ b/config/locales/zh-CN.yml
@@ -2,6 +2,551 @@
 # by tsechingho (http://github.com/tsechingho)
 
 "zh-CN":
+  
+  login: 登录
+  register: 注册
+  how_to_register: 如何才能注册
+  logout: 退出
+  
+  ################################################ bad translation conversion
+  
+  
+  
+  
+  
+  ################################################ added by localization scripts by: Kelly Mahan
+  
+  not_to_be_used: 暂时不使用
+  features: 的功能
+  only_the_use_of_its: 仅仅使用其
+  methods: 方法
+  you_have_not_landed: 你还没有登陆
+  if_you_do_not_log_calls_when_the: 调用的时候如果没有登陆
+  that_directly_return: 那直接返回
+  automatic_processing_of_the_preceding: 前段自动处理
+  all_issues: 所有问题
+  about: 关于
+  search_results: 的搜索结果
+  steering_problem: 转向问题
+  as: 由于
+  according_to_the_present: 目前的按
+  sorting_problem: 排序有问题
+  did_not_cast_votes_can_not_sort: 没投过票的无法排序
+  users_are_invited_to_answer: 被邀请回答的用户
+  recommended_topics: 推荐话题
+  if_there_is_no_subject_then_set: 如果没有设置话题的话
+  the_problem_has_been_sent_to_the_connected: 已经将问题连接发送到了
+  have_the_same_problem: 已有相同的问题存在
+  redirected: 已重定向
+  problems_created_successfully: 问题创建成功
+  problem_successfully_updated: 问题更新成功
+  need_to_filter_out_bad_problem_here: 这里需要过滤掉烂问题
+  will_answer_the_number_of: 将回答次数
+  to_add_the_number_to_answer: 以加入回答次数
+  are_also: 者也
+  know_almost: 知乎
+  feedback: 反馈
+  view_user_not_interested_in_the_problem: 查看用户不感兴趣的问题
+  i_block_out_the_problem: 我屏蔽掉的问题
+  verify_permissions: 验证权限
+  whether_the_user_has_permissions_to_modify_the_development_of_information: 用户是否有修改制定信息的权限
+  visitors: 访客
+  report_information_has_been_submitted: 举报信息已经提交
+  thank_you: 谢谢你
+  up: 注册
+  personal_settings: 个人设置
+  topics_cover_upload_successful: 话题封面上传成功
+  topics_cover_upload_failed: 话题封面上传失败
+  please_check_your_uploaded_images_comply_with_format_requirements_for: 请检查你上传的图片适合符合格式要求
+  answered_question: 回答过的问题
+  q: 问
+  problems: 的问题
+  the_question_asked: 问过的问题
+  a_topic_of_concern: 关注的话题
+  concern: 关注
+  people: 的人
+  persons_of_concern: 关注的人
+  successfully_bound: 成功绑定了
+  account: 帐号
+  login_successful: 登陆成功
+  welcome: 欢迎来自
+  users: 的用户
+  your_account_has_been_created_successfully: 你的帐号已经创建成功
+  incomplete_account_information: 的帐号提供信息不全
+  landing_can_not_be_directly: 无法直接登陆
+  please_register: 请先注册
+  you_have_not_registered_users: 你还没有注册用户
+  in_favor: 赞成
+  comments: 评论
+  you_in: 了你在
+  the_answer_to_this_question: 该问题中的回答
+  the_answer: 中的回答
+  problem: 问题
+  answer: 回答
+  a: 了
+  the_problem: 该问题
+  thank_you: 感谢了你
+  in: 在
+  answer: 的回答
+  invite_you_to_answer: 邀请你回答
+  to_ask_you: 向你询问
+  trusted_users: 可信用户
+  administrator: 管理员
+  can: 可以
+  removal_of_the_contents_of_the_area_inside_the_line_marked: 去除区域里面的内容的换行标记
+  detect: 检测是否
+  over: 过
+  determine_whether: 判断是否是
+  about_this_answer: 过这个回答
+  modify: 修改
+  anonymous_user: 匿名用户
+  i: 我
+  he: 他
+  she: 她
+  supporters_list: 支持者列表
+  more: 更多
+  welcome: 欢迎加入
+  be_concerned: 被关注
+  skip: 跳过
+  if_the_user_does_not_allow_email: 如果用户不允许发邮件
+  concern_you: 关注了你
+  with_the_new_answer_to_the_problem: 问题有了新回答
+  with_the_new_answers: 有了新的回答
+  others_invite_you_to_answer: 等人邀请你回答
+  ask_the_user: 向用户提问
+  vote_score_corresponding: 投票对应的分数
+  supporters: 支持者
+  there_need_to_add_caching: 这里需要加上缓存
+  sensitive_to_the_word_verification: 敏感词验证
+  no_help: 没有帮助
+  limit: 限制
+  one_time: 一人一次
+  the_default_answer_to_the_concerns_of: 回答默认关注问题
+  save_a_list_of_the_user_answered_the_question: 保存用户回答过的问题列表
+  last_replied_time: 最后回答时间
+  last_active_time: 最后活动时间
+  this_time_should_be_set_under_the_jurisdiction_of_the_issue_last: 这个时间应该设置为该问题下辖最后一条
+  time_of_occurrence: 的发生时间
+  redirection_number: 重定向问题编号
+  asked: 提问人
+  questions_on_the_nominee: 对指定人的提问
+  finally_an_answer: 最后个回答
+  finally_respondents: 最后回答者
+  problems_that_can_be_displayed_properly: 正常可显示的问题
+  front_desk_calls_to_bring_this_filter: 前台调用都带上这个过滤
+  except_some_of: 除开一些
+  if_used: 如用到
+  incoming_user: 传入用户的
+  question_to_me: 问我的问题
+  question_to_a_person: 向某人提问
+  the_default_response_time_for_the_current_time: 默认回复时间为当前时间
+  have_been_easy_to_sort: 已便于排序
+  updated_topics: 更新话题
+  parameters: 参数
+  can_be_array_or_string: 可以是数组或者字符串
+  increase: 增加
+  remove: 去掉
+  comma_separated: 分割逗号
+  to_both_sides_of_the_space: 去两边空格
+  saved_as_a_separate_topic: 保存为独立的话题
+  submit_a_question_for_the: 提交问题为
+  fixed_order: 修正顺序
+  redirection: 重定向问题
+  can_not_redirect_their: 不能重定向自己
+  if_the_redirect_target_is_to_redirect_the_present_problem: 如果重定向目标的是重定向目前这个问题的
+  to_skip: 就跳过
+  prevent_infinite_redirection: 防止无限重定向
+  cancel_redirect: 取消重定向
+  how_many_people_invite: 多少人邀请
+  invitation: 邀请者
+  send_email: 发送邮件
+  insert: 插入
+  and: 和
+  generated_content: 生成内容
+  detection_of_sensitive_words: 检测敏感词
+  with_sensitive_content: 带有敏感内容
+  please_note: 请注意一下
+  search_store_the_index: 搜索存储索引
+  three_times_a_query: 分三次查询
+  followed_by: 依次按
+  arrangement: 排列
+  the_following_two_methods_are_for: 以下两个方法是给
+  with: 用
+  upload: 上传图片
+  used_to_record: 用于记录
+  is_changed: 是否改变过
+  whether_a_woman: 是否是女人
+  soft_delete_tag: 软删除标记
+  that_have_been_deleted: 表示已经删除
+  whether_it_is_trusted_users: 是否是可信用户
+  more_trusted_users_to_modify_permissions: 可信用户有更多修改权限
+  not_interested_in_the_problem: 不感兴趣的问题
+  concern: 关注的问题
+  reminded_of_the_state: 提醒的状态
+  invite_field: 邀请字段
+  user_rating: 用户评分
+  temporary_solution: 暂时方案
+  three_sites_do_not_provide_your: 三方网站没有提供你的
+  information: 信息
+  can_not_be_directly_up: 无法直接注册
+  this_method_is_used_to_process_start_up_automatically: 此方法用于处理开始注册是自动生成
+  because_no_form: 因为没表单
+  automatic_only: 只能自动
+  if: 如果
+  was: 被
+  is_empty_after: 后是空的
+  to_use: 就用
+  instead_of: 代替
+  prevent_duplication: 防止重复
+  not_interested_in_the_problem: 不感兴趣问题
+  clear_recommended_topics: 清除推荐话题
+  sent_by: 发送被
+  mail: 的邮件
+  thanks_for_replying: 感谢回答
+  soft_delete: 软删除
+  just_modify_user_information: 只是把用户信息修改了
+  cancelled: 已注销
+  my_notifications: 我的通知
+  i_recommend_to_people_or_topics: 推荐给我的人或者话题
+  refresh_person_recommended: 刷新推荐的人
+  into: 存入
+  delete_the_cache_to: 先删除就的缓存
+  information: 的信息
+  skip_to_delete_user: 跳过删除的用户
+  add_the_right_from_an_array: 从数组右边新增
+  used_to_update_the_time_to_delete: 用于更新的时候先删除
+  to_have_a_single: 去得单个
+  there_are_performance_issues: 这里有性能问题
+  when_the_query_is_the_user_all_the_items_from: 查询的时候是把用户所有的项从
+  to_go_out_there: 里面去出来的
+  unnecessary_waste_of_memory_transmission: 多余的浪费内存传输
+  consistent: 一致
+  delete: 删除
+  return_to_the_original_string_format: 返回原始字符串格式
+  back: 返回
+  format: 格式
+  not_interested_in_obtaining_a_list_of: 取得不感兴趣的列表
+  not_interested: 不感兴趣
+  need_to_prevent_duplicate_insertion: 需要防止重复插入
+  agree: 赞同
+  sort_will_rise: 排序将上升
+  against: 反对
+  does_not_display_your_name: 不会显示你的名字
+  votes: 票
+  from: 来自
+  add_a_comment: 添加评论
+  comments: 条评论
+  expressed_appreciation_to_the_respondents: 向回答者表示感谢
+  thanks: 感谢
+  and_pertain_to_the_question_that_this_answer: 认为此回答与问题不相干
+  or_no_practical_effect: 或者没有实际作用
+  questions: 提出的问题
+  an_answer: 个答案
+  cancel_concern: 取消关注
+  unmasked: 取消屏蔽
+  number_of_people_to_vote: 参与投票人数
+  title: 标题
+  text: 正文
+  submit_a_question: 提交问题
+  or: 或者
+  the_problem_is_added_to_the: 该问题被添加到
+  this: 这
+  topics: 个话题
+  my_home: 我的首页
+  my_concern: 我关注的问题
+  recommend_to_my_question: 推荐给我的问题
+  my_question_shielding: 我屏蔽的问题
+  open_questions: 者也正在发生
+  invite_friends: 邀请好友
+  invite_your_friends_to_register: 邀请你的朋友注册
+  you_may_be_interested_in_the_person_or_topic: 你可能会感兴趣的人或话题
+  home: 首页
+  remember_me: "记住登录状态"
+  news: 动态
+  see_more: 查看更多
+  new: 新建
+  sharing: 分享问题
+  forwarding_address: 转发地址
+  recipient: 收件人
+  if: 如
+  message_subject: 邮件主题
+  to_recommend_to_you_the_problem: 向你推荐问题
+  said: 说
+  to_recommend_to_you_this_question: 向你推荐这个问题
+  visiting_address: 访问地址
+  share: 分享
+  or: 或
+  close: 关闭
+  recommended_text: 推荐文字
+  you_can_copy_the_contents_of_the_above: 你可以复制上面的内容
+  and_to_forward_it_to_your_microblog_or_send_to_you: 并把它转发到你的微博或发送给你的
+  friends: 好友
+  they_will_be_able_to_see_this_page_click_on_the_link: 他们点击链接就能看到此页面
+  choose_a_topic_to_this_question_it: 给这个问题选个话题吧
+  to_allow_someone_else_to_answer: 好让别人来回答
+  search_topic: 搜索话题
+  add: 添加
+  complete: 完成
+  add_additional_information: 添加补充资料
+  add_answer: 添加答案
+  report: 举报
+  do_you_think_this_is_not_a_problem: 你认为这个不算是一个问题
+  or_the_answer_can_easily: 或者答案可以很容易在
+  found_above: 上面找到
+  problem_is: 问题被
+  a_user_that_is_the_problem_after_bad: 个网友认为是烂问题以后
+  problem_will_be_hidden: 问题将会隐藏
+  bad_question: 烂问题
+  people_think_that: 人认为
+  there: 有
+  an_answer: 个回答
+  you_can_only_answer_one_question: 一个问题你只能回答一次
+  but_you_can_modify_the_existing_answers: 但你可以对现有的回答进行修改
+  this_problem_is: 这个问题是对
+  question: 提问的
+  only: 只有
+  to_answer: 才能回答
+  edit_profile: 修改简介
+  submit_answers: 提交回答
+  this_problem_concerns: 关注此问题
+  options: 选项
+  another_point_to_a_problem_that_already_exists: 指向另外个已经存在的问题
+  the_problem: 把问题
+  point: 指向
+  search_title: 搜索标题
+  determine_the_redirection: 确定重定向
+  cancel: 取消
+  related_issues: 相关问题
+  see_more_related_issues: 查看更多相关问题
+  invite_others_to_answer_this_question: 邀请他人回答此问题
+  search_people: 搜索人
+  issue_status: 问题状态
+  recent_activity: 最近活动
+  viewed: 被浏览
+  times: 次
+  people_are_concerned_about_the_problem: 人关注了该问题
+  created_the_problem: 创建了该问题
+  page_does_not_exist: 页面不存在
+  im_sorry: 非常抱歉
+  the_page_you_requested_could_not_find_us: 你请求的页面我们无法找到
+  topic: 话题
+  about: 关于者也
+  we_are_a_group_of_programmers_who_aspire_to_a_free_and_open: 我们是一群向往自由开放的程序员
+  determined_to_build_an_open_question_and_answer_community_site: 立志构建一个开放的问答社区站点
+  we_are_happy_to_share_our_project_source_code_and_design_ideas: 我们乐于分享我们的项目源代码以及设计思路
+  for_a_nonprofit_personal_purposes: 以供有非盈利性目的的个人
+  companies_use: 公司使用
+  team_members: 团队成员
+  contributors: 贡献者
+  frequently_asked_questions: 常见问题
+  why_play: 为啥起
+  the_name: 这个名字
+  are_also_updated_every_day_what_to_do: 者也每天都做了哪些更新
+  code_deploy_and_easy_for_secondary_development: 代码部署和二次开发容易吗
+  fortunately_than_who_knows_where_almost: 者也比知乎好在哪里
+  what_can_change_the_user_name: 用户名称可以修改么
+  who_is_also_a_kind_of_q__a_community: 者也是个怎样的问答社区
+  welcome_to_those_who_have: 欢迎来到者也
+  here_is_a_variety_to_satisfy_your_curiosity: 这里是一个满足你各种好奇
+  knowledge: 求知
+  discover: 探索
+  social: 社交
+  desire_to_place_the_discussion: 讨论欲望的地方
+  her_numerous_industries_from_many_parts_of_the: 她由来自无数行业无数地方的
+  people: 人们
+  they_proposed_a_variety_of: 各种他们提出的
+  and_various_organizational_problems_for: 以及各个用以组织问题的
+  composition: 组成
+  you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in: 你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词
+  and_focus_on_some_topics: 并关注一些话题
+  problems_or_who: 问题或者人
+  when_you_look_over_after: 当你关注过之后
+  you_can_see_these_people: 你可以看到这些人
+  the_dynamic: 问题的动态
+  you_can_also: 还可以在
+  see_you_are_interested_in_new_and_old_problems: 里看到你感兴趣的新老问题
+  sometimes_go: 有时候去
+  found_wandering_is_also_a_good_discussion_of_issues_of_interest_and_the_methods: 闲逛也是不错的发现感兴趣的问题和讨论的方法
+  or_you_can_go_see_the_more_popular_recent_topics: 或者你可以去看看这些最近比较热门的话题
+  or_is_it_going_to_those_waiting_for_questions_to_add_some_of_you_know_the_answer: 又或者是去给这些等待回答的问题添加一些你所知道的答案
+  you_can_also_look_at_these_hot_issues: 还可以看看这些热门问题
+  good_luck_in_your: 祝你在
+  happy: 愉快
+  you_may_be_able_to_answer: 你或许能回答
+  new: 新
+  search_problems: 搜索问题
+  member: 会员
+  add_question: 我要提问
+  home: 随便看看
+  set: 设置
+  i_know: 我知道了
+  a_little_progress_every_day: 每天进步一点
+  blog: 博客
+  how_to_register: 如何注册
+  cooperative_links: 合作联系
+  mobile: 手机版
+  create_new_problems: 创建新问题
+  enter_your_question_here: 在这里输入问题
+  optional: 可选
+  add_more_description: 添加更多描述
+  add_a_question: 添加问题
+  loading: 加载中
+  report_content: 举报内容
+  please_fill_in_the_reasons_reported: 请填写举报原因
+  submitted: 提交
+  mobile_home: 手机版首页
+  login: 登录
+  how_to_register: 如何才能注册
+  logout: 登出
+  no_account: 还没有帐号
+  regular_edition: 普通版
+  background: 后台
+  console: 控制台
+  back_to_front: 回前台
+  notice: 公告
+  users: 用户
+  hello: 你好
+  navigation: 导航
+  who_is_also_team: 者也团队
+  from_the_bottom_of_this_message: 这封邮件发自
+  a_new_q__a_community: 一个新型问答社区
+  email_notification_settings: 邮件通知设置
+  add_the_problem: 添加了该问题
+  to: 向
+  issues_raised: 提出了问题
+  modify_the_problem: 修改了该问题
+  modify_a_supplementary_explanation_of_the_problem: 修改了该问题的补充说明
+  add_the_topic_to_the_problem: 给该问题添加了话题
+  remove_the_subject_from_the_issue: 从该问题删除了话题
+  the_topic: 了话题
+  thanked: 感谢了
+  concerned_about_the_problem: 关注了该问题
+  cancel_the_problem_concerns: 取消关注了该问题
+  agree_with_the_answer: 赞同该回答
+  answered_the_question: 回答了该问题
+  changed_their_answers: 修改了自己的回答
+  as_the_topic: 为话题
+  the: 的
+  from_the_cover_image: 上传了封面图片
+  submitted_a_description: 提交了介绍
+  create_a_topic: 创建了话题
+  review_the_problem: 评论了问题
+  new_notifications: 新通知
+  items: 项
+  regards: 关于问题
+  remove_these_reminders: 清除这些提醒
+  personal_information: 个人资料
+  personalized_domain_name: 个性域名
+  format_requirements: 格式要求
+  characters: 个字符
+  can_be_a_letter: 可以是字母
+  digital: 数字
+  the_horizontal_line: 中横线
+  if_the_wrong_format_will_be_automatically_processed: 如果格式不对将会自动处理
+  i_am_a_female: 我是女性
+  email: 邮箱
+  avatar: 头像
+  preview: 预览
+  personal_site: 个人站点
+  best_summarize_your_sign_language: 最能概括你的标志性语言
+  personal_experience: 个人经历
+  save: 保存
+  email_alert_settings: 邮件提醒设置
+  be_concerned: 被人关注
+  to_answer_the_concerns_of_a_new: 关注的问题有新回答
+  i_was_invited_to_answer_questions: 有人邀请我回答问题
+  some_people_have_asked_me: 有人向我提问
+  delete_my_account: 删除我的帐号
+  do_not_like: 不喜欢
+  delete_this_account: 删除此帐号
+  can_not_recover_deleted: 删除后无法恢复
+  are_you_sure_you: 你确定吗
+  join_the_community: 加入社区
+  how_to_registered_users: 如何注册用户
+  to_control_the_quality_of_community_content: 为控制社区内容质量
+  invite_others_to_join_must: 加入必须通过别人邀请
+  you_can_use_your_social_resources: 你可以动用你的社会化资源
+  invite_you_to_find_other_people: 找其他人邀请你
+  or_send_your_personal_data_to: 或者把你的个人资料发到
+  after_we_review: 我们审核过后
+  if_you_meet_the_requirements: 如果你符合要求
+  will_send_you: 便会给你发送
+  invitation_link: 邀请链接
+  therefore: 所以
+  please_try_to_describe_yourself: 请尽量描述你自己
+  new_user_registration: 注册新用户
+  provisional_registration_period_is_currently_open: 目前是临时开放注册期间
+  if_you_have_not: 如果你还没有
+  account_then: 帐号的话
+  hurry_up_now: 赶紧注册吧
+  name: 姓名
+  can_not_be_changed_after_registration: 注册后不可更改
+  password: 密码
+  confirm_password: 确认密码
+  submit_registration_information: 提交注册信息
+  new_account: 已经有帐号了
+  about_registration: 关于注册
+  forgot_password: 忘记了密码
+  password_mail_message: 此功能将会发送一个找回密码的特别链接到你的邮箱
+  itself_can_be_invited_to_register: 本身需要邀请才可以注册的
+  but_we_will_occasionally_some_special_days_in_the_temporary_open_up: 但是我们会偶尔在一些特别的日子临时性的开放注册
+  if_you_see_this_page: 如果你看到了这个页面
+  congratulations_you: 那恭喜你
+  department_can_not_submit_the_issue_lead_to: 处问题导至无法提交
+  login_account_with_other_platforms: 用其他平台的帐号登陆
+  douban: 豆瓣
+  tencent_microblogging: 腾讯微博
+  sina_microblogging: 新浪微博
+  netease_account: 网易帐号
+  sohu_account: 搜狐帐号
+  is_bound: 已绑定
+  edit_image: 修改图片
+  modify_the_topic_image: 修改话题图片
+  local_upload: 本地上传
+  support: 支持
+  picture_format: 格式的图片
+  do_not_exceed: 不要超过
+  recommended_image_size_is_larger_than: 建议图片尺寸大于
+  people_concerned_about_this_topic_recently: 最近关注此话题的人
+  upload_failed: 上传失败
+  format_problem: 格式有问题
+  you_can_click_on_the_link_below_to_access_this_page: 你可以点击下面的链接进入这个问题的页面
+  on: 上
+  he_has: 他有
+  question: 个问题
+  concerned_about_the: 关注了
+  invite_you_to_answer_this_question: 邀请你回答这个问题
+  you_can_click_on_the_link_below_and_answer_this_question: 你可以点击下面的链接查看这个问题以及回答
+  you_have_successfully_registered_as_a: 你已经成功地注册成为了
+  members: 的成员
+  who_also_is_still_in: 者也目前还处于
+  stage: 阶段
+  we_are_trying_to_improve_it: 我们正在努力完善它
+  if_there_are_issues_that_a_lot_of_understanding: 如果有问题还请多多谅解
+  feedback_and_suggestions_can_be_sent_to: 反馈与建议可以发往
+  or_can_be_submitted_directly_to_the: 或者可以直接提交到
+  have_not_had_time_to_write_his_personal_introduction: 还没来得及写他的个人介绍
+  modify_personal_experience: 修改个人经历
+  home: 主页
+  asked: 问过
+  answered: 回答过
+  on: 对
+  questions: 提问
+  add_a_description_of_the_problem: 添加问题描述
+  problem_description: 问题描述
+  this_is_your_own: 这就是你自己
+  after_logging_you_can_focus: 登录后你可以关注
+  registered_in: 注册于
+  recent_attention: 最近关注
+  recent_attention_to_the_people: 最近关注的人
+  
+  
+  
+  
+  ###############################################################################################
+  
+  
+  
   date:
     formats:
       default: "%Y-%m-%d"
diff --git a/convert_chinese_to_localization.rb b/convert_chinese_to_localization.rb
new file mode 100644
index 0000000..83dd774
--- /dev/null
+++ b/convert_chinese_to_localization.rb
@@ -0,0 +1,54 @@
+require 'yaml'
+require 'fileutils'
+chinese_words = []
+scan_dirs = [
+  "views/answers",
+  "views/asks",
+  "views/comments",
+  "views/cpanel",
+  "views/devise",
+  "views/errors",
+  "views/home",
+  "views/layouts",
+  "views/logs",
+  "views/registrations",
+  "views/shared",
+  "views/topics",
+  "views/user_mailer",
+  "views/users"
+]
+conversion_hash = YAML.load_file("./zh-CN.yml")
+scan_dirs.each do |dir|
+  Dir.entries("./app/#{dir}").each do |file| 
+    if file.match(/\.bak\.erb$/)
+      FileUtils.cp("./app/#{dir}/#{file}", "./app/#{dir}/#{file.gsub(/^1_/,'').gsub(/\.bak\.erb/,'')}")
+      File.delete("./app/#{dir}/#{file}")
+    else
+      if file!=".." && file!="."
+        if File.stat("./app/#{dir}/#{file}").file?
+          FileUtils.cp("./app/#{dir}/#{file}", "./app/#{dir}/1_#{file}.bak.erb")
+          File.open("./app/#{dir}/#{file}") do |f| 
+            @filestr = f.readlines.join("")
+            chinese_words = @filestr.scan(/[\u4e00-\u9fff]+/)
+            chinese_words.each do |value|
+              key = conversion_hash.key(value)
+              if key
+                
+                @filestr = @filestr.gsub(/placeholder="([^"]*)#{value}([^"]*)"/,"placeholder=\"\\1<%=t(:#{key})%>\\2\"")
+                @filestr = @filestr.gsub(/"([^"<>]*)#{value}([^<>"]*)"/,"\"\\1\#{t(:#{key})}\\2\"")
+                @filestr = @filestr.gsub(/'#{value}'/,"\"\#{t(:#{key})}\"")
+                @filestr = @filestr.gsub(/#{value}/,"<%=t(:#{key})%>")
+              else
+                puts "could not find key for #{value}"
+              end
+            end
+            #chinese_words << filestr.scan(/[\u4e00-\u9fff]+/) if filestr
+          end
+          File.open("./app/#{dir}/#{file}", "w") do |f|
+            f.puts @filestr
+          end
+        end
+      end
+    end
+  end
+end
\ No newline at end of file
diff --git a/en-US.yml b/en-US.yml
new file mode 100644
index 0000000..895922e
--- /dev/null
+++ b/en-US.yml
@@ -0,0 +1,519 @@
+not_to_be_used: "Not to be used"
+features: "Features"
+only_the_use_of_its: "Only the use of its"
+methods: "Methods"
+you_have_not_landed: "You have not landed"
+if_you_do_not_log_calls_when_the: "If you do not log calls when the"
+that_directly_return: "That directly return"
+automatic_processing_of_the_preceding: "Automatic processing of the preceding"
+all_issues: "All issues"
+about: "About"
+search_results: "Search results"
+steering_problem: "Steering problem"
+as: "As"
+according_to_the_present: "According to the present"
+sorting_problem: "Sorting problem"
+did_not_cast_votes_can_not_sort: "Did not cast votes can not sort"
+users_are_invited_to_answer: "Users are invited to answer"
+recommended_topics: "Recommended Topics"
+if_there_is_no_subject_then_set: "If there is no subject, then set"
+the_problem_has_been_sent_to_the_connected: "The problem has been sent to the connected"
+have_the_same_problem: "Have the same problem"
+redirected: "Redirected"
+problems_created_successfully: "Problems created successfully"
+problem_successfully_updated: "Problem successfully updated"
+need_to_filter_out_bad_problem_here: "Need to filter out bad problem here"
+will_answer_the_number_of: "Will answer the number of"
+to_add_the_number_to_answer: "To add the number to answer"
+are_also: "Are also"
+know_almost: "Know almost"
+feedback: "Feedback"
+view_user_not_interested_in_the_problem: "View user not interested in the problem"
+i_block_out_the_problem: "I block out the problem"
+verify_permissions: "Verify Permissions"
+whether_the_user_has_permissions_to_modify_the_development_of_information: "Whether the user has permissions to modify the development of information"
+visitors: "Visitors"
+report_information_has_been_submitted: "Report information has been submitted"
+thank_you: "Thank you"
+up: "Up"
+personal_settings: "Personal Settings"
+topics_cover_upload_successful: "Topics cover Upload successful"
+topics_cover_upload_failed: "Topics cover Upload failed"
+please_check_your_uploaded_images_comply_with_format_requirements_for: "Please check your uploaded images comply with format requirements for"
+answered_question: "Answered question"
+q: "Q"
+problems: "Problems"
+the_question_asked: "The question asked"
+a_topic_of_concern: "A topic of concern"
+concern: "Concern"
+people: "People"
+persons_of_concern: "Persons of concern"
+successfully_bound: "Successfully bound"
+account: "Account"
+login_successful: "Login Successful"
+welcome: "Welcome"
+users: "Users"
+your_account_has_been_created_successfully: "Your account has been created successfully"
+incomplete_account_information: "Incomplete account information"
+landing_can_not_be_directly: "Landing can not be directly"
+please_register: "Please register"
+you_have_not_registered_users: "You have not registered users"
+in_favor: "In favor"
+comments: "Comments"
+you_in: "You in"
+the_answer_to_this_question: "The answer to this question"
+the_answer: "The answer"
+problem: "Problem"
+answer: "Answer"
+a: "A"
+the_problem: "The problem"
+thank_you: "Thank you"
+in: "In"
+answer: "Answer"
+invite_you_to_answer: "Invite you to answer"
+to_ask_you: "To ask you"
+trusted_users: "Trusted Users"
+administrator: "Administrator"
+can: "Can"
+removal_of_the_contents_of_the_area_inside_the_line_marked: "Removal of the contents of the area inside the line marked"
+detect: "Detect"
+over: "Over"
+determine_whether: "Determine whether"
+about_this_answer: "About this answer"
+modify: "Modify"
+anonymous_user: "Anonymous User"
+i: "I"
+he: "He"
+she: "She"
+supporters_list: "Supporters List"
+more: "More"
+welcome: "Welcome"
+be_concerned: "Be concerned"
+skip: "Skip"
+if_the_user_does_not_allow_email: "If the user does not allow email"
+concern_you: "Concern you"
+with_the_new_answer_to_the_problem: "With the new answer to the problem"
+with_the_new_answers: "With the new answers"
+others_invite_you_to_answer: "Others invite you to answer"
+ask_the_user: "Ask the user"
+vote_score_corresponding: "Vote score corresponding"
+supporters: "Supporters"
+there_need_to_add_caching: "There need to add caching"
+sensitive_to_the_word_verification: "Sensitive to the word verification"
+no_help: "No help"
+limit: "Limit"
+one_time: "One time"
+the_default_answer_to_the_concerns_of: "The default answer to the concerns of"
+save_a_list_of_the_user_answered_the_question: "Save a list of the user answered the question"
+last_replied_time: "Last replied time"
+last_active_time: "Last active time"
+this_time_should_be_set_under_the_jurisdiction_of_the_issue_last: "This time should be set under the jurisdiction of the issue last"
+time_of_occurrence: "Time of occurrence"
+redirection_number: "Redirection number"
+asked: "Asked"
+questions_on_the_nominee: "Questions on the nominee"
+finally_an_answer: "Finally, an answer"
+finally_respondents: "Finally, respondents"
+problems_that_can_be_displayed_properly: "Problems that can be displayed properly"
+front_desk_calls_to_bring_this_filter: "Front desk calls to bring this filter"
+except_some_of: "Except some of"
+if_used: "If used"
+incoming_user: "Incoming user"
+question_to_me: "Question to me"
+question_to_a_person: "Question to a person"
+the_default_response_time_for_the_current_time: "The default response time for the current time"
+have_been_easy_to_sort: "Have been easy to sort"
+updated_topics: "Updated Topics"
+parameters: "Parameters"
+can_be_array_or_string: "Can be array or string"
+increase: "Increase"
+remove: "Remove"
+comma_separated: "Comma separated"
+to_both_sides_of_the_space: "To both sides of the space"
+saved_as_a_separate_topic: "Saved as a separate topic"
+submit_a_question_for_the: "Submit a question for the"
+fixed_order: "Fixed order"
+redirection: "Redirection"
+can_not_redirect_their: "Can not redirect their"
+if_the_redirect_target_is_to_redirect_the_present_problem: "If the redirect target is to redirect the present problem"
+to_skip: "To skip"
+prevent_infinite_redirection: "Prevent infinite redirection"
+cancel_redirect: "Cancel Redirect"
+how_many_people_invite: "How many people invite"
+invitation: "Invitation"
+send_email: "Send e-mail"
+insert: "Insert"
+and: "And"
+generated_content: "Generated content"
+detection_of_sensitive_words: "Detection of sensitive words"
+with_sensitive_content: "With sensitive content"
+please_note: "Please note"
+search_store_the_index: "Search store the index"
+three_times_a_query: "Three times a query"
+followed_by: "Followed by"
+arrangement: "Arrangement"
+the_following_two_methods_are_for: "The following two methods are for"
+with: "With"
+upload: "Upload"
+used_to_record: "Used to record"
+is_changed: "Is changed"
+whether_a_woman: "Whether a woman"
+soft_delete_tag: "Soft delete tag"
+that_have_been_deleted: "That have been deleted"
+whether_it_is_trusted_users: "Whether it is trusted users"
+more_trusted_users_to_modify_permissions: "More trusted users to modify permissions"
+not_interested_in_the_problem: "Not interested in the problem"
+concern: "Concern"
+reminded_of_the_state: "Reminded of the state"
+invite_field: "Invite field"
+user_rating: "User Rating"
+temporary_solution: "Temporary solution"
+three_sites_do_not_provide_your: "Three sites do not provide your"
+information: "Information"
+can_not_be_directly_up: "Can not be directly up"
+this_method_is_used_to_process_start_up_automatically: "This method is used to process start up automatically"
+because_no_form: "Because no form"
+automatic_only: "Automatic only"
+if: "If"
+was: "Was"
+is_empty_after: "Is empty after"
+to_use: "To use"
+instead_of: "Instead of"
+prevent_duplication: "Prevent duplication"
+not_interested_in_the_problem: "Not interested in the problem"
+clear_recommended_topics: "Clear Recommended Topics"
+sent_by: "Sent by"
+mail: "Mail"
+thanks_for_replying: "Thanks for replying"
+soft_delete: "Soft Delete"
+just_modify_user_information: "Just modify user information"
+cancelled: "Cancelled"
+my_notifications: "My notifications"
+i_recommend_to_people_or_topics: "I recommend to people or topics"
+refresh_person_recommended: "Refresh person recommended"
+into: "Into"
+delete_the_cache_to: "Delete the cache to"
+information: "Information"
+skip_to_delete_user: "Skip to delete user"
+add_the_right_from_an_array: "Add the right from an array"
+used_to_update_the_time_to_delete: "Used to update the time to delete"
+to_have_a_single: "To have a single"
+there_are_performance_issues: "There are performance issues"
+when_the_query_is_the_user_all_the_items_from: "When the query is the user all the items from"
+to_go_out_there: "To go out there"
+unnecessary_waste_of_memory_transmission: "Unnecessary waste of memory transmission"
+consistent: "Consistent"
+delete: "Delete"
+return_to_the_original_string_format: "Return to the original string format"
+back: "Back"
+format: "Format"
+not_interested_in_obtaining_a_list_of: "Not interested in obtaining a list of"
+not_interested: "Not interested"
+need_to_prevent_duplicate_insertion: "Need to prevent duplicate insertion"
+agree: "Agree"
+sort_will_rise: "Sort will rise"
+against: "Against"
+does_not_display_your_name: "Does not display your name"
+votes: "Votes"
+from: "From"
+add_a_comment: "Add a comment"
+comments: "Comments"
+expressed_appreciation_to_the_respondents: "Expressed appreciation to the respondents"
+thanks: "Thanks"
+and_pertain_to_the_question_that_this_answer: "And pertain to the question that this answer"
+or_no_practical_effect: "Or no practical effect"
+questions: "Questions"
+an_answer: "An answer"
+cancel_concern: "Cancel concern"
+unmasked: "Unmasked"
+number_of_people_to_vote: "Number of people to vote"
+title: "Title"
+text: "Text"
+submit_a_question: "Submit a question"
+or: "Or"
+the_problem_is_added_to_the: "The problem is added to the"
+this: "This"
+topics: "Topics"
+my_home: "My Home"
+my_concern: "My concern"
+recommend_to_my_question: "Recommend to my question"
+my_question_shielding: "My question shielding"
+were_also_taking_place: "Were also taking place"
+invite_friends: "Invite friends"
+invite_your_friends_to_register: "Invite your friends to register"
+you_may_be_interested_in_the_person_or_topic: "You may be interested in the person or topic"
+home: "Home"
+news: "News"
+see_more: "See more"
+new: "New"
+sharing: "Sharing"
+forwarding_address: "Forwarding address"
+recipient: "Recipient"
+if: "If"
+message_subject: "Message subject"
+to_recommend_to_you_the_problem: "To recommend to you the problem"
+said: "Said"
+to_recommend_to_you_this_question: "To recommend to you this question"
+visiting_address: "Visiting address"
+share: "Share"
+or: "Or"
+close: "Close"
+recommended_text: "Recommended Text"
+you_can_copy_the_contents_of_the_above: "You can copy the contents of the above"
+and_to_forward_it_to_your_microblog_or_send_to_you: "And to forward it to your micro-blog or send to you"
+friends: "Friends"
+they_will_be_able_to_see_this_page_click_on_the_link: "They will be able to see this page, click on the link"
+choose_a_topic_to_this_question_it: "Choose a topic to this question it"
+to_allow_someone_else_to_answer: "To allow someone else to answer"
+search_topic: "Search Topic"
+add: "Add"
+complete: "Complete"
+add_additional_information: "Add additional information"
+add_answer: "Add Answer"
+report: "Report"
+do_you_think_this_is_not_a_problem: "Do you think this is not a problem"
+or_the_answer_can_easily: "Or the answer can easily"
+found_above: "Found above"
+problem_is: "Problem is"
+a_user_that_is_the_problem_after_bad: "A User that is the problem after bad"
+problem_will_be_hidden: "Problem will be hidden"
+bad_question: "Bad question"
+people_think_that: "People think that"
+there: "There"
+an_answer: "An answer"
+you_can_only_answer_one_question: "You can only answer one question"
+but_you_can_modify_the_existing_answers: "But you can modify the existing answers"
+this_problem_is: "This problem is"
+question: "Question"
+only: "Only"
+to_answer: "To answer"
+edit_profile: "Edit Profile"
+submit_answers: "Submit answers"
+this_problem_concerns: "This problem concerns"
+options: "Options"
+another_point_to_a_problem_that_already_exists: "Another point to a problem that already exists"
+the_problem: "The problem"
+point: "Point"
+search_title: "Search Title"
+determine_the_redirection: "Determine the redirection"
+cancel: "Cancel"
+related_issues: "Related issues"
+see_more_related_issues: "See more related issues"
+invite_others_to_answer_this_question: "Invite others to answer this question"
+search_people: "Search people"
+issue_status: "Issue status"
+recent_activity: "Recent Activity"
+viewed: "Viewed"
+times: "Times"
+people_are_concerned_about_the_problem: "People are concerned about the problem"
+created_the_problem: "Created the problem"
+page_does_not_exist: "Page does not exist"
+im_sorry: "I'm sorry"
+the_page_you_requested_could_not_find_us: "The page you requested could not find us"
+topic: "Topic"
+who_is_also_on_the: "Who is also on the"
+we_are_a_group_of_programmers_who_aspire_to_a_free_and_open: "We are a group of programmers who aspire to a free and open"
+determined_to_build_an_open_question_and_answer_community_site: "Determined to build an open question and answer community site"
+we_are_happy_to_share_our_project_source_code_and_design_ideas: "We are happy to share our project source code and design ideas"
+for_a_nonprofit_personal_purposes: "For a non-profit personal purposes"
+companies_use: "Companies use"
+team_members: "Team members"
+contributors: "Contributors"
+frequently_asked_questions: "Frequently Asked Questions"
+why_play: "Why play"
+the_name: "The name"
+are_also_updated_every_day_what_to_do: "Are also updated every day what to do"
+code_deploy_and_easy_for_secondary_development: "Code, deploy and easy for secondary development"
+fortunately_than_who_knows_where_almost: "Fortunately, than who knows where almost"
+what_can_change_the_user_name: "What can change the user name"
+who_is_also_a_kind_of_q__a_community: "Who is also a kind of Q & A community"
+welcome_to_those_who_have: "Welcome to those who have"
+here_is_a_variety_to_satisfy_your_curiosity: "Here is a variety to satisfy your curiosity"
+knowledge: "Knowledge"
+discover: "Discover"
+social: "Social"
+desire_to_place_the_discussion: "Desire to place the discussion"
+her_numerous_industries_from_many_parts_of_the: "Her numerous industries from many parts of the"
+people: "People"
+they_proposed_a_variety_of: "They proposed a variety of"
+and_various_organizational_problems_for: "And various organizational problems for"
+composition: "Composition"
+you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in: "You can use the search box at the top to try to search for the keywords you are interested in"
+and_focus_on_some_topics: "And focus on some topics"
+problems_or_who: "Problems or who"
+when_you_look_over_after: "When you look over after"
+you_can_see_these_people: "You can see these people"
+the_dynamic: "THE DYNAMIC"
+you_can_also: "You can also"
+see_you_are_interested_in_new_and_old_problems: "See you are interested in new and old problems"
+sometimes_go: "Sometimes go"
+found_wandering_is_also_a_good_discussion_of_issues_of_interest_and_the_methods: "Found wandering is also a good discussion of issues of interest and the methods"
+or_you_can_go_see_the_more_popular_recent_topics: "Or you can go see the more popular recent topics"
+or_is_it_going_to_those_waiting_for_questions_to_add_some_of_you_know_the_answer: "Or is it going to those waiting for questions to add some of you know the answer"
+you_can_also_look_at_these_hot_issues: "You can also look at these hot issues"
+good_luck_in_your: "Good luck in your"
+happy: "Happy"
+you_may_be_able_to_answer: "You may be able to answer"
+new: "New"
+search_problems: "Search problems"
+member: "Member"
+add_question: "I want to ask questions"
+casual_look: "Casual look"
+set: "Set"
+i_know: "I know"
+a_little_progress_every_day: "A little progress every day"
+blog: "Blog"
+how_to_register: "How to register"
+cooperative_links: "Cooperative links"
+mobile: "Mobile"
+create_new_problems: "Create new problems"
+enter_your_question_here: "Enter your question here"
+optional: "Optional"
+add_more_description: "Add more description"
+add_a_question: "Add a question"
+loading: "Loading"
+report_content: "Report Content"
+please_fill_in_the_reasons_reported: "Please fill in the reasons reported"
+submitted: "Submitted"
+mobile_home: "Mobile Home"
+login: "Login"
+how_to_register: "How to register"
+logout: "Logout"
+regular_edition: "Regular edition"
+background: "Background"
+console: "Console"
+back_to_front: "Back to front"
+notice: "Notice"
+users: "Users"
+hello: "Hello"
+navigation: "Navigation"
+who_is_also_team: "Who is also team"
+from_the_bottom_of_this_message: "From the bottom of this message"
+a_new_q__a_community: "A new Q & A community"
+email_notification_settings: "E-mail notification settings"
+add_the_problem: "Add the problem"
+to: "To"
+issues_raised: "Issues raised"
+modify_the_problem: "Modify the problem"
+modify_a_supplementary_explanation_of_the_problem: "Modify a supplementary explanation of the problem"
+add_the_topic_to_the_problem: "Add the topic to the problem"
+remove_the_subject_from_the_issue: "Remove the subject from the issue"
+the_topic: "The topic"
+thanked: "Thanked"
+concerned_about_the_problem: "Concerned about the problem"
+cancel_the_problem_concerns: "Cancel the problem concerns"
+agree_with_the_answer: "Agree with the answer"
+answered_the_question: "Answered the question"
+changed_their_answers: "Changed their answers"
+as_the_topic: "As the topic"
+the: "The"
+from_the_cover_image: "From the cover image"
+submitted_a_description: "Submitted a description"
+create_a_topic: "Create a topic"
+review_the_problem: "Review the problem"
+new_notifications: "New notifications"
+items: "Items"
+regards: "Regards"
+remove_these_reminders: "Remove these reminders"
+personal_information: "Personal Information"
+personalized_domain_name: "Personalized domain name"
+format_requirements: "Format requirements"
+characters: "Characters"
+can_be_a_letter: "Can be a letter"
+digital: "Digital"
+the_horizontal_line: "The horizontal line"
+if_the_wrong_format_will_be_automatically_processed: "If the wrong format will be automatically processed"
+i_am_a_female: "I am a female"
+email: "E-mail"
+avatar: "Avatar"
+preview: "Preview"
+personal_site: "Personal Site"
+best_summarize_your_sign_language: "Best summarize your sign language"
+personal_experience: "Personal experience"
+save: "Save"
+email_alert_settings: "E-mail alert settings"
+be_concerned: "Be concerned"
+to_answer_the_concerns_of_a_new: "To answer the concerns of a new"
+i_was_invited_to_answer_questions: "I was invited to answer questions"
+some_people_have_asked_me: "Some people have asked me"
+delete_my_account: "Delete My Account"
+do_not_like: "Do not like"
+delete_this_account: "Delete this account"
+can_not_recover_deleted: "Can not recover deleted"
+are_you_sure_you: "Are you sure you"
+join_the_community: "Join the community"
+how_to_registered_users: "How to Registered Users"
+to_control_the_quality_of_community_content: "To control the quality of community content"
+invite_others_to_join_must: "Invite others to join must"
+you_can_use_your_social_resources: "You can use your social resources"
+invite_you_to_find_other_people: "Invite you to find other people"
+or_send_your_personal_data_to: "Or send your personal data to"
+after_we_review: "After we review"
+if_you_meet_the_requirements: "If you meet the requirements"
+will_send_you: "Will send you"
+invitation_link: "Invitation link"
+therefore: "Therefore,"
+please_try_to_describe_yourself: "Please try to describe yourself"
+new_user_registration: "New user registration"
+provisional_registration_period_is_currently_open: "Provisional registration period is currently open"
+if_you_have_not: "If you have not"
+account_then: "Account, then"
+hurry_up_now: "Hurry up now"
+name: "Name"
+can_not_be_changed_after_registration: "Can not be changed after registration"
+password: "Password"
+confirm_password: "Confirm Password"
+submit_registration_information: "Submit registration information"
+already_have_an_account_of_the: "Already have an account of the"
+about_registration: "About Registration"
+itself_can_be_invited_to_register: "Itself can be invited to register"
+but_we_will_occasionally_some_special_days_in_the_temporary_open_up: "But we will occasionally some special days in the temporary open up"
+if_you_see_this_page: "If you see this page"
+congratulations_you: "Congratulations, you"
+department_can_not_submit_the_issue_lead_to: "Department can not submit the issue lead to"
+login_account_with_other_platforms: "Login account with other platforms"
+douban: "Douban"
+tencent_microblogging: "Tencent microblogging"
+sina_microblogging: "Sina microblogging"
+netease_account: "NetEase account"
+sohu_account: "Sohu account"
+is_bound: "Is bound"
+edit_image: "Edit image"
+modify_the_topic_image: "Modify the topic image"
+local_upload: "Local upload"
+support: "Support"
+picture_format: "Picture format"
+do_not_exceed: "Do not exceed"
+recommended_image_size_is_larger_than: "Recommended image size is larger than"
+people_concerned_about_this_topic_recently: "People concerned about this topic recently"
+upload_failed: "Upload failed"
+format_problem: "Format problem"
+you_can_click_on_the_link_below_to_access_this_page: "You can click on the link below to access this page"
+on: "On"
+he_has: "He has"
+question: "Question"
+concerned_about_the: "Concerned about the"
+invite_you_to_answer_this_question: "Invite you to answer this question"
+you_can_click_on_the_link_below_and_answer_this_question: "You can click on the link below and answer this question"
+you_have_successfully_registered_as_a: "You have successfully registered as a"
+members: "Members"
+who_also_is_still_in: "Who also is still in"
+stage: "Stage"
+we_are_trying_to_improve_it: "We are trying to improve it"
+if_there_are_issues_that_a_lot_of_understanding: "If there are issues that a lot of understanding"
+feedback_and_suggestions_can_be_sent_to: "Feedback and suggestions can be sent to"
+or_can_be_submitted_directly_to_the: "Or can be submitted directly to the"
+have_not_had_time_to_write_his_personal_introduction: "Have not had time to write his personal introduction"
+modify_personal_experience: "Modify personal experience"
+home: "Home"
+asked: "Asked"
+answered: "Answered"
+on: "On"
+questions: "Questions"
+add_a_description_of_the_problem: "Add a description of the problem"
+problem_description: "Problem Description"
+this_is_your_own: "This is your own"
+after_logging_you_can_focus: "After logging you can focus"
+registered_in: "Registered in"
+recent_attention: "Recent attention"
+recent_attention_to_the_people: "Recent attention to the people"
diff --git a/localization.rb b/localization.rb
new file mode 100644
index 0000000..86d8f39
--- /dev/null
+++ b/localization.rb
@@ -0,0 +1,58 @@
+chinese_words = []
+scan_dirs = [
+  "controllers",
+  "helpers",
+  "mailers",
+  "models",
+  "views/answers",
+  "views/asks",
+  "views/comments",
+  "views/cpanel",
+  "views/devise",
+  "views/errors",
+  "views/home",
+  "views/layouts",
+  "views/logs",
+  "views/registrations",
+  "views/shared",
+  "views/topics",
+  "views/user_mailer",
+  "views/users"
+]
+unless File.exists?("./chinese_words.txt")
+  scan_dirs.each do |dir|
+    Dir.entries("./app/#{dir}").each do |file| 
+      if file!=".." && file!="."
+        File.open("./app/#{dir}/#{file}") do |f| 
+          filestr = f.readlines.to_s if File.stat("./app/#{dir}/#{file}").file?
+          chinese_words << filestr.scan(/[\u4e00-\u9fff]+/).map(&:strip) if filestr
+        end
+      end
+    end
+  end
+  File.open("./chinese_words.txt", "w+") do |file|
+    chinese_words.flatten.uniq.each do |word|
+      file.puts word
+    end
+  end
+end
+
+if File.exists?("./english_words.txt")
+
+  chinese_words = File.open("./chinese_words.txt").readlines
+  #used google translate to produce the english_words.txt file
+  english_words = File.open("./english_words.txt").readlines
+  File.open('./zh-CN.yml', 'w') do |f|
+    english_words.each_with_index do |e, i|
+      f.puts "#{e.downcase.gsub(/[^a-z|1-9| ]|\n/,'').gsub(/ /,"_")}: #{chinese_words[i]}"
+    end
+  end
+  File.open('./en-US.yml', 'w') do |f|
+    english_words.each_with_index do |e, i|
+      f.puts "#{e.downcase.gsub(/[^a-z|1-9| ]|\n/,'').gsub(/ /,"_")}: \"#{e.gsub(/\n/,'')}\""
+    end
+  end
+else
+  puts "Now create your english_words.txt file useing translate.google.com"
+  puts "The line numbers must match up."
+end
\ No newline at end of file
diff --git a/localization_key_fix.rb b/localization_key_fix.rb
new file mode 100644
index 0000000..3c13fab
--- /dev/null
+++ b/localization_key_fix.rb
@@ -0,0 +1 @@
+who_is_also_on_the: about
\ No newline at end of file
diff --git a/zh-CN.yml b/zh-CN.yml
new file mode 100644
index 0000000..b67d24c
--- /dev/null
+++ b/zh-CN.yml
@@ -0,0 +1,519 @@
+not_to_be_used: 暂时不使用
+features: 的功能
+only_the_use_of_its: 仅仅使用其
+methods: 方法
+you_have_not_landed: 你还没有登陆
+if_you_do_not_log_calls_when_the: 调用的时候如果没有登陆
+that_directly_return: 那直接返回
+automatic_processing_of_the_preceding: 前段自动处理
+all_issues: 所有问题
+about: 关于
+search_results: 的搜索结果
+steering_problem: 转向问题
+as: 由于
+according_to_the_present: 目前的按
+sorting_problem: 排序有问题
+did_not_cast_votes_can_not_sort: 没投过票的无法排序
+users_are_invited_to_answer: 被邀请回答的用户
+recommended_topics: 推荐话题
+if_there_is_no_subject_then_set: 如果没有设置话题的话
+the_problem_has_been_sent_to_the_connected: 已经将问题连接发送到了
+have_the_same_problem: 已有相同的问题存在
+redirected: 已重定向
+problems_created_successfully: 问题创建成功
+problem_successfully_updated: 问题更新成功
+need_to_filter_out_bad_problem_here: 这里需要过滤掉烂问题
+will_answer_the_number_of: 将回答次数
+to_add_the_number_to_answer: 以加入回答次数
+are_also: 者也
+know_almost: 知乎
+feedback: 反馈
+view_user_not_interested_in_the_problem: 查看用户不感兴趣的问题
+i_block_out_the_problem: 我屏蔽掉的问题
+verify_permissions: 验证权限
+whether_the_user_has_permissions_to_modify_the_development_of_information: 用户是否有修改制定信息的权限
+visitors: 访客
+report_information_has_been_submitted: 举报信息已经提交
+thank_you: 谢谢你
+up: 注册
+personal_settings: 个人设置
+topics_cover_upload_successful: 话题封面上传成功
+topics_cover_upload_failed: 话题封面上传失败
+please_check_your_uploaded_images_comply_with_format_requirements_for: 请检查你上传的图片适合符合格式要求
+answered_question: 回答过的问题
+q: 问
+problems: 的问题
+the_question_asked: 问过的问题
+a_topic_of_concern: 关注的话题
+concern: 关注
+people: 的人
+persons_of_concern: 关注的人
+successfully_bound: 成功绑定了
+account: 帐号
+login_successful: 登陆成功
+welcome: 欢迎来自
+users: 的用户
+your_account_has_been_created_successfully: 你的帐号已经创建成功
+incomplete_account_information: 的帐号提供信息不全
+landing_can_not_be_directly: 无法直接登陆
+please_register: 请先注册
+you_have_not_registered_users: 你还没有注册用户
+in_favor: 赞成
+comments: 评论
+you_in: 了你在
+the_answer_to_this_question: 该问题中的回答
+the_answer: 中的回答
+problem: 问题
+answer: 回答
+a: 了
+the_problem: 该问题
+thank_you: 感谢了你
+in: 在
+answer: 的回答
+invite_you_to_answer: 邀请你回答
+to_ask_you: 向你询问
+trusted_users: 可信用户
+administrator: 管理员
+can: 可以
+removal_of_the_contents_of_the_area_inside_the_line_marked: 去除区域里面的内容的换行标记
+detect: 检测是否
+over: 过
+determine_whether: 判断是否是
+about_this_answer: 过这个回答
+modify: 修改
+anonymous_user: 匿名用户
+i: 我
+he: 他
+she: 她
+supporters_list: 支持者列表
+more: 更多
+welcome: 欢迎加入
+be_concerned: 被关注
+skip: 跳过
+if_the_user_does_not_allow_email: 如果用户不允许发邮件
+concern_you: 关注了你
+with_the_new_answer_to_the_problem: 问题有了新回答
+with_the_new_answers: 有了新的回答
+others_invite_you_to_answer: 等人邀请你回答
+ask_the_user: 向用户提问
+vote_score_corresponding: 投票对应的分数
+supporters: 支持者
+there_need_to_add_caching: 这里需要加上缓存
+sensitive_to_the_word_verification: 敏感词验证
+no_help: 没有帮助
+limit: 限制
+one_time: 一人一次
+the_default_answer_to_the_concerns_of: 回答默认关注问题
+save_a_list_of_the_user_answered_the_question: 保存用户回答过的问题列表
+last_replied_time: 最后回答时间
+last_active_time: 最后活动时间
+this_time_should_be_set_under_the_jurisdiction_of_the_issue_last: 这个时间应该设置为该问题下辖最后一条
+time_of_occurrence: 的发生时间
+redirection_number: 重定向问题编号
+asked: 提问人
+questions_on_the_nominee: 对指定人的提问
+finally_an_answer: 最后个回答
+finally_respondents: 最后回答者
+problems_that_can_be_displayed_properly: 正常可显示的问题
+front_desk_calls_to_bring_this_filter: 前台调用都带上这个过滤
+except_some_of: 除开一些
+if_used: 如用到
+incoming_user: 传入用户的
+question_to_me: 问我的问题
+question_to_a_person: 向某人提问
+the_default_response_time_for_the_current_time: 默认回复时间为当前时间
+have_been_easy_to_sort: 已便于排序
+updated_topics: 更新话题
+parameters: 参数
+can_be_array_or_string: 可以是数组或者字符串
+increase: 增加
+remove: 去掉
+comma_separated: 分割逗号
+to_both_sides_of_the_space: 去两边空格
+saved_as_a_separate_topic: 保存为独立的话题
+submit_a_question_for_the: 提交问题为
+fixed_order: 修正顺序
+redirection: 重定向问题
+can_not_redirect_their: 不能重定向自己
+if_the_redirect_target_is_to_redirect_the_present_problem: 如果重定向目标的是重定向目前这个问题的
+to_skip: 就跳过
+prevent_infinite_redirection: 防止无限重定向
+cancel_redirect: 取消重定向
+how_many_people_invite: 多少人邀请
+invitation: 邀请者
+send_email: 发送邮件
+insert: 插入
+and: 和
+generated_content: 生成内容
+detection_of_sensitive_words: 检测敏感词
+with_sensitive_content: 带有敏感内容
+please_note: 请注意一下
+search_store_the_index: 搜索存储索引
+three_times_a_query: 分三次查询
+followed_by: 依次按
+arrangement: 排列
+the_following_two_methods_are_for: 以下两个方法是给
+with: 用
+upload: 上传图片
+used_to_record: 用于记录
+is_changed: 是否改变过
+whether_a_woman: 是否是女人
+soft_delete_tag: 软删除标记
+that_have_been_deleted: 表示已经删除
+whether_it_is_trusted_users: 是否是可信用户
+more_trusted_users_to_modify_permissions: 可信用户有更多修改权限
+not_interested_in_the_problem: 不感兴趣的问题
+concern: 关注的问题
+reminded_of_the_state: 提醒的状态
+invite_field: 邀请字段
+user_rating: 用户评分
+temporary_solution: 暂时方案
+three_sites_do_not_provide_your: 三方网站没有提供你的
+information: 信息
+can_not_be_directly_up: 无法直接注册
+this_method_is_used_to_process_start_up_automatically: 此方法用于处理开始注册是自动生成
+because_no_form: 因为没表单
+automatic_only: 只能自动
+if: 如果
+was: 被
+is_empty_after: 后是空的
+to_use: 就用
+instead_of: 代替
+prevent_duplication: 防止重复
+not_interested_in_the_problem: 不感兴趣问题
+clear_recommended_topics: 清除推荐话题
+sent_by: 发送被
+mail: 的邮件
+thanks_for_replying: 感谢回答
+soft_delete: 软删除
+just_modify_user_information: 只是把用户信息修改了
+cancelled: 已注销
+my_notifications: 我的通知
+i_recommend_to_people_or_topics: 推荐给我的人或者话题
+refresh_person_recommended: 刷新推荐的人
+into: 存入
+delete_the_cache_to: 先删除就的缓存
+information: 的信息
+skip_to_delete_user: 跳过删除的用户
+add_the_right_from_an_array: 从数组右边新增
+used_to_update_the_time_to_delete: 用于更新的时候先删除
+to_have_a_single: 去得单个
+there_are_performance_issues: 这里有性能问题
+when_the_query_is_the_user_all_the_items_from: 查询的时候是把用户所有的项从
+to_go_out_there: 里面去出来的
+unnecessary_waste_of_memory_transmission: 多余的浪费内存传输
+consistent: 一致
+delete: 删除
+return_to_the_original_string_format: 返回原始字符串格式
+back: 返回
+format: 格式
+not_interested_in_obtaining_a_list_of: 取得不感兴趣的列表
+not_interested: 不感兴趣
+need_to_prevent_duplicate_insertion: 需要防止重复插入
+agree: 赞同
+sort_will_rise: 排序将上升
+against: 反对
+does_not_display_your_name: 不会显示你的名字
+votes: 票
+from: 来自
+add_a_comment: 添加评论
+comments: 条评论
+expressed_appreciation_to_the_respondents: 向回答者表示感谢
+thanks: 感谢
+and_pertain_to_the_question_that_this_answer: 认为此回答与问题不相干
+or_no_practical_effect: 或者没有实际作用
+questions: 提出的问题
+an_answer: 个答案
+cancel_concern: 取消关注
+unmasked: 取消屏蔽
+number_of_people_to_vote: 参与投票人数
+title: 标题
+text: 正文
+submit_a_question: 提交问题
+or: 或者
+the_problem_is_added_to_the: 该问题被添加到
+this: 这
+topics: 个话题
+my_home: 我的首页
+my_concern: 我关注的问题
+recommend_to_my_question: 推荐给我的问题
+my_question_shielding: 我屏蔽的问题
+were_also_taking_place: 者也正在发生
+invite_friends: 邀请好友
+invite_your_friends_to_register: 邀请你的朋友注册
+you_may_be_interested_in_the_person_or_topic: 你可能会感兴趣的人或话题
+home: 首页
+news: 动态
+see_more: 查看更多
+new: 新建
+sharing: 分享问题
+forwarding_address: 转发地址
+recipient: 收件人
+if: 如
+message_subject: 邮件主题
+to_recommend_to_you_the_problem: 向你推荐问题
+said: 说
+to_recommend_to_you_this_question: 向你推荐这个问题
+visiting_address: 访问地址
+share: 分享
+or: 或
+close: 关闭
+recommended_text: 推荐文字
+you_can_copy_the_contents_of_the_above: 你可以复制上面的内容
+and_to_forward_it_to_your_microblog_or_send_to_you: 并把它转发到你的微博或发送给你的
+friends: 好友
+they_will_be_able_to_see_this_page_click_on_the_link: 他们点击链接就能看到此页面
+choose_a_topic_to_this_question_it: 给这个问题选个话题吧
+to_allow_someone_else_to_answer: 好让别人来回答
+search_topic: 搜索话题
+add: 添加
+complete: 完成
+add_additional_information: 添加补充资料
+add_answer: 添加答案
+report: 举报
+do_you_think_this_is_not_a_problem: 你认为这个不算是一个问题
+or_the_answer_can_easily: 或者答案可以很容易在
+found_above: 上面找到
+problem_is: 问题被
+a_user_that_is_the_problem_after_bad: 个网友认为是烂问题以后
+problem_will_be_hidden: 问题将会隐藏
+bad_question: 烂问题
+people_think_that: 人认为
+there: 有
+an_answer: 个回答
+you_can_only_answer_one_question: 一个问题你只能回答一次
+but_you_can_modify_the_existing_answers: 但你可以对现有的回答进行修改
+this_problem_is: 这个问题是对
+question: 提问的
+only: 只有
+to_answer: 才能回答
+edit_profile: 修改简介
+submit_answers: 提交回答
+this_problem_concerns: 关注此问题
+options: 选项
+another_point_to_a_problem_that_already_exists: 指向另外个已经存在的问题
+the_problem: 把问题
+point: 指向
+search_title: 搜索标题
+determine_the_redirection: 确定重定向
+cancel: 取消
+related_issues: 相关问题
+see_more_related_issues: 查看更多相关问题
+invite_others_to_answer_this_question: 邀请他人回答此问题
+search_people: 搜索人
+issue_status: 问题状态
+recent_activity: 最近活动
+viewed: 被浏览
+times: 次
+people_are_concerned_about_the_problem: 人关注了该问题
+created_the_problem: 创建了该问题
+page_does_not_exist: 页面不存在
+im_sorry: 非常抱歉
+the_page_you_requested_could_not_find_us: 你请求的页面我们无法找到
+topic: 话题
+who_is_also_on_the: 关于者也
+we_are_a_group_of_programmers_who_aspire_to_a_free_and_open: 我们是一群向往自由开放的程序员
+determined_to_build_an_open_question_and_answer_community_site: 立志构建一个开放的问答社区站点
+we_are_happy_to_share_our_project_source_code_and_design_ideas: 我们乐于分享我们的项目源代码以及设计思路
+for_a_nonprofit_personal_purposes: 以供有非盈利性目的的个人
+companies_use: 公司使用
+team_members: 团队成员
+contributors: 贡献者
+frequently_asked_questions: 常见问题
+why_play: 为啥起
+the_name: 这个名字
+are_also_updated_every_day_what_to_do: 者也每天都做了哪些更新
+code_deploy_and_easy_for_secondary_development: 代码部署和二次开发容易吗
+fortunately_than_who_knows_where_almost: 者也比知乎好在哪里
+what_can_change_the_user_name: 用户名称可以修改么
+who_is_also_a_kind_of_q__a_community: 者也是个怎样的问答社区
+welcome_to_those_who_have: 欢迎来到者也
+here_is_a_variety_to_satisfy_your_curiosity: 这里是一个满足你各种好奇
+knowledge: 求知
+discover: 探索
+social: 社交
+desire_to_place_the_discussion: 讨论欲望的地方
+her_numerous_industries_from_many_parts_of_the: 她由来自无数行业无数地方的
+people: 人们
+they_proposed_a_variety_of: 各种他们提出的
+and_various_organizational_problems_for: 以及各个用以组织问题的
+composition: 组成
+you_can_use_the_search_box_at_the_top_to_try_to_search_for_the_keywords_you_are_interested_in: 你可以利用顶部的搜索框来尝试搜索你感兴趣的关键词
+and_focus_on_some_topics: 并关注一些话题
+problems_or_who: 问题或者人
+when_you_look_over_after: 当你关注过之后
+you_can_see_these_people: 你可以看到这些人
+the_dynamic: 问题的动态
+you_can_also: 还可以在
+see_you_are_interested_in_new_and_old_problems: 里看到你感兴趣的新老问题
+sometimes_go: 有时候去
+found_wandering_is_also_a_good_discussion_of_issues_of_interest_and_the_methods: 闲逛也是不错的发现感兴趣的问题和讨论的方法
+or_you_can_go_see_the_more_popular_recent_topics: 或者你可以去看看这些最近比较热门的话题
+or_is_it_going_to_those_waiting_for_questions_to_add_some_of_you_know_the_answer: 又或者是去给这些等待回答的问题添加一些你所知道的答案
+you_can_also_look_at_these_hot_issues: 还可以看看这些热门问题
+good_luck_in_your: 祝你在
+happy: 愉快
+you_may_be_able_to_answer: 你或许能回答
+new: 新
+search_problems: 搜索问题
+member: 会员
+add_question: 我要提问
+casual_look: 随便看看
+set: 设置
+i_know: 我知道了
+a_little_progress_every_day: 每天进步一点
+blog: 博客
+how_to_register: 如何注册
+cooperative_links: 合作联系
+mobile: 手机版
+create_new_problems: 创建新问题
+enter_your_question_here: 在这里输入问题
+optional: 可选
+add_more_description: 添加更多描述
+add_a_question: 添加问题
+loading: 加载中
+report_content: 举报内容
+please_fill_in_the_reasons_reported: 请填写举报原因
+submitted: 提交
+mobile_home: 手机版首页
+login: 登录
+how_to_register: 如何才能注册
+logout: 登出
+regular_edition: 普通版
+background: 后台
+console: 控制台
+back_to_front: 回前台
+notice: 公告
+users: 用户
+hello: 你好
+navigation: 导航
+who_is_also_team: 者也团队
+from_the_bottom_of_this_message: 这封邮件发自
+a_new_q__a_community: 一个新型问答社区
+email_notification_settings: 邮件通知设置
+add_the_problem: 添加了该问题
+to: 向
+issues_raised: 提出了问题
+modify_the_problem: 修改了该问题
+modify_a_supplementary_explanation_of_the_problem: 修改了该问题的补充说明
+add_the_topic_to_the_problem: 给该问题添加了话题
+remove_the_subject_from_the_issue: 从该问题删除了话题
+the_topic: 了话题
+thanked: 感谢了
+concerned_about_the_problem: 关注了该问题
+cancel_the_problem_concerns: 取消关注了该问题
+agree_with_the_answer: 赞同该回答
+answered_the_question: 回答了该问题
+changed_their_answers: 修改了自己的回答
+as_the_topic: 为话题
+the: 的
+from_the_cover_image: 上传了封面图片
+submitted_a_description: 提交了介绍
+create_a_topic: 创建了话题
+review_the_problem: 评论了问题
+new_notifications: 新通知
+items: 项
+regards: 关于问题
+remove_these_reminders: 清除这些提醒
+personal_information: 个人资料
+personalized_domain_name: 个性域名
+format_requirements: 格式要求
+characters: 个字符
+can_be_a_letter: 可以是字母
+digital: 数字
+the_horizontal_line: 中横线
+if_the_wrong_format_will_be_automatically_processed: 如果格式不对将会自动处理
+i_am_a_female: 我是女性
+email: 邮箱
+avatar: 头像
+preview: 预览
+personal_site: 个人站点
+best_summarize_your_sign_language: 最能概括你的标志性语言
+personal_experience: 个人经历
+save: 保存
+email_alert_settings: 邮件提醒设置
+be_concerned: 被人关注
+to_answer_the_concerns_of_a_new: 关注的问题有新回答
+i_was_invited_to_answer_questions: 有人邀请我回答问题
+some_people_have_asked_me: 有人向我提问
+delete_my_account: 删除我的帐号
+do_not_like: 不喜欢
+delete_this_account: 删除此帐号
+can_not_recover_deleted: 删除后无法恢复
+are_you_sure_you: 你确定吗
+join_the_community: 加入社区
+how_to_registered_users: 如何注册用户
+to_control_the_quality_of_community_content: 为控制社区内容质量
+invite_others_to_join_must: 加入必须通过别人邀请
+you_can_use_your_social_resources: 你可以动用你的社会化资源
+invite_you_to_find_other_people: 找其他人邀请你
+or_send_your_personal_data_to: 或者把你的个人资料发到
+after_we_review: 我们审核过后
+if_you_meet_the_requirements: 如果你符合要求
+will_send_you: 便会给你发送
+invitation_link: 邀请链接
+therefore: 所以
+please_try_to_describe_yourself: 请尽量描述你自己
+new_user_registration: 注册新用户
+provisional_registration_period_is_currently_open: 目前是临时开放注册期间
+if_you_have_not: 如果你还没有
+account_then: 帐号的话
+hurry_up_now: 赶紧注册吧
+name: 姓名
+can_not_be_changed_after_registration: 注册后不可更改
+password: 密码
+confirm_password: 确认密码
+submit_registration_information: 提交注册信息
+already_have_an_account_of_the: 已经有帐号了
+about_registration: 关于注册
+itself_can_be_invited_to_register: 本身需要邀请才可以注册的
+but_we_will_occasionally_some_special_days_in_the_temporary_open_up: 但是我们会偶尔在一些特别的日子临时性的开放注册
+if_you_see_this_page: 如果你看到了这个页面
+congratulations_you: 那恭喜你
+department_can_not_submit_the_issue_lead_to: 处问题导至无法提交
+login_account_with_other_platforms: 用其他平台的帐号登陆
+douban: 豆瓣
+tencent_microblogging: 腾讯微博
+sina_microblogging: 新浪微博
+netease_account: 网易帐号
+sohu_account: 搜狐帐号
+is_bound: 已绑定
+edit_image: 修改图片
+modify_the_topic_image: 修改话题图片
+local_upload: 本地上传
+support: 支持
+picture_format: 格式的图片
+do_not_exceed: 不要超过
+recommended_image_size_is_larger_than: 建议图片尺寸大于
+people_concerned_about_this_topic_recently: 最近关注此话题的人
+upload_failed: 上传失败
+format_problem: 格式有问题
+you_can_click_on_the_link_below_to_access_this_page: 你可以点击下面的链接进入这个问题的页面
+on: 上
+he_has: 他有
+question: 个问题
+concerned_about_the: 关注了
+invite_you_to_answer_this_question: 邀请你回答这个问题
+you_can_click_on_the_link_below_and_answer_this_question: 你可以点击下面的链接查看这个问题以及回答
+you_have_successfully_registered_as_a: 你已经成功地注册成为了
+members: 的成员
+who_also_is_still_in: 者也目前还处于
+stage: 阶段
+we_are_trying_to_improve_it: 我们正在努力完善它
+if_there_are_issues_that_a_lot_of_understanding: 如果有问题还请多多谅解
+feedback_and_suggestions_can_be_sent_to: 反馈与建议可以发往
+or_can_be_submitted_directly_to_the: 或者可以直接提交到
+have_not_had_time_to_write_his_personal_introduction: 还没来得及写他的个人介绍
+modify_personal_experience: 修改个人经历
+home: 主页
+asked: 问过
+answered: 回答过
+on: 对
+questions: 提问
+add_a_description_of_the_problem: 添加问题描述
+problem_description: 问题描述
+this_is_your_own: 这就是你自己
+after_logging_you_can_focus: 登录后你可以关注
+registered_in: 注册于
+recent_attention: 最近关注
+recent_attention_to_the_people: 最近关注的人