surplus-dev 2 лет назад
Родитель
Сommit
495a1d411c
5 измененных файлов с 26 добавлено и 6 удалено
  1. 10 0
      lang/en-US.json
  2. 12 2
      lang/ko-KR.json
  3. 1 1
      route/bbs_w_post.py
  4. 2 2
      route/main_setting_main.py
  5. 1 1
      version.json

+ 10 - 0
lang/en-US.json

@@ -240,6 +240,8 @@
         "user_added_menu" : "User added menu",
         "move_redirect_make" : "Redirect document generation (Only if possible)",
         "user_fix" : "Fix user",
+        "main_user_name" : "Main user name",
+        "change_user_name" : "Change main user name",
         "sub_user_name" : "Sub user name",
         "_comment_" : "BBS",
             "bbs" : "BBS",
@@ -254,6 +256,10 @@
             "reply" : "Reply",
             "post_edit" : "Modify post",
             "post_add" : "Add post",
+            "last_comment_time" : "last comment time",
+            "bbs_comment_tool" : "BBS comment tool(s)",
+            "bbs_comment_edit" : "BBS comment edit",
+            "bbs_post_tool" : "BBS post tool(s)",
             "_comment_" : "BBS ACL",
                 "bbs_view_acl" : "BBS ACL to view posts",
                 "bbs_acl" : "BBS ACL",
@@ -378,6 +384,9 @@
                 "set_history_recording_off" : "Stop recording history",
                 "link_case_insensitive" : "Link case insensitive",
                 "hide_user_name" : "Hide member name",
+                "move_with_redirect" : "Create a redirect when moving a document",
+                "slow_thread" : "Continuous thread upload limit",
+                "edit_timeout" : "render timeout",
             "_comment_" : "Text",
                 "register_text" : "Terms of sign-up",
                 "non_login_alert" : "Non-login alert",
@@ -536,6 +545,7 @@
         "many_delete_help" : "Please write down the documents name one by one on the line.",
         "name_or_ip_or_regex_multiple" : "Please write down the username or IP or Regex one by one on the line.",
         "sqlite_only" : "SQLite only",
+        "linux_only" : "Linux OS only",
         "approval_question_visible_only_when_approval_on" : "Approval questions are visible only when approval requirement is on",
         "msg_whatchlist_lmt": "You can add as many as",
         "enter_html" : "Please enter HTML",

+ 12 - 2
lang/ko-KR.json

@@ -553,6 +553,16 @@
     "footnote_number": "각주 번호 출력",
     "only_number": "숫자만",
     "footnote_real_num_view": "각주 실제 번호 보기",
-    "post_edit" : "게시글 수정",
-    "post_add" : "게시글 추가"
+    "post_edit": "게시글 수정",
+    "post_add": "게시글 추가",
+    "main_user_name": "메인 사용자명",
+    "change_user_name": "메인 사용자명 변경",
+    "last_comment_time": "마지막 댓글 시간",
+    "bbs_comment_tool": "BBS 댓글 도구",
+    "bbs_comment_edit": "BBS 댓글 수정",
+    "move_with_redirect": "문서 이동시 리다이렉트 문서 생성",
+    "slow_thread": "토론 올리기 제한 시간",
+    "edit_timeout": "렌더링 제한 시간",
+    "linux_only": "리눅스 OS 전용",
+    "bbs_post_tool": "BBS 게시글 도구"
 }

+ 1 - 1
route/bbs_w_post.py

@@ -338,7 +338,7 @@ def bbs_w_post(bbs_num = '', post_num = '', do_type = ''):
                 bbs_comment_form = ''
                 if bbs_comment_acl == 0:
                     bbs_comment_form += '''
-                        ''' + comment_select + ''' <a href="javascript:opennamu_return_comment();">(R)</a>
+                        ''' + comment_select + ''' <a href="javascript:opennamu_return_comment();">''' + load_lang('return') + '''</a>
                         <hr class="main_hr">
                         
                         ''' + edit_editor(curs, ip, text, 'bbs_comment') + '''

+ 2 - 2
route/main_setting_main.py

@@ -255,12 +255,12 @@ def main_setting_main(db_set):
                         <input type="checkbox" name="move_with_redirect" ''' + check_box_div[13] + '''> ''' + load_lang('move_with_redirect') + ''' (''' + load_lang('not_working') + ''')
                         <hr class="main_hr">
 
-                        <span>''' + load_lang('slow_thread') + ''' (''' + load_lang('second') + ''') (''' + load_lang('off') + ''' : ''' + load_lang('empty') + ''') (''' + load_lang('not_working') + ''')</span>
+                        <span>''' + load_lang('slow_thread') + ''' (''' + load_lang('second') + ''') (''' + load_lang('off') + ''' : ''' + load_lang('empty') + ''')</span>
                         <hr class="main_hr">
                         <input name="slow_thread" value="''' + html.escape(d_list[38]) + '''">
                         <hr class="main_hr">
 
-                        <span>''' + load_lang('edit_timeout') + ''' (''' + load_lang('second') + ''') (''' + load_lang('off') + ''' : ''' + load_lang('empty') + ''')</span>
+                        <span>''' + load_lang('edit_timeout') + ''' (''' + load_lang('second') + ''') (''' + load_lang('off') + ''' : ''' + load_lang('empty') + ''') (''' + load_lang('linux_only') + ''')</span>
                         <hr class="main_hr">
                         <input name="edit_timeout" value="''' + html.escape(d_list[39]) + '''">
                         <hr class="main_hr">

+ 1 - 1
version.json

@@ -1,6 +1,6 @@
 {
     "beta" : {
-        "r_ver" : "v3.4.6-RC3-dev224",
+        "r_ver" : "v3.4.6-RC3-dev225",
         "c_ver" : "3500363",
         "s_ver" : "3500111"
     }