Explorar o código

오탈자 수정

잉여개발기 hai 8 meses
pai
achega
cacee6888e
Modificáronse 3 ficheiros con 3 adicións e 3 borrados
  1. 1 1
      lang/en-US.json
  2. 1 1
      lang/ko-KR.json
  3. 1 1
      route/view_w.py

+ 1 - 1
lang/en-US.json

@@ -745,7 +745,7 @@
     "topic_long_error": "The discussions topic must not exceed 256 characters.",
     "email_error": "No one has this email.",
     "regex_error": "There is an error in the regular expression.",
-    "decument_404_error": "This document does not exist.",
+    "document_404_error": "This document does not exist.",
     "func_404_error": "This URL does not have the correct function.",
     "fast_edit_error": "You can edit another document after this period (Second(s)): ",
     "too_many_dec_error": "This feature is not supported because there are too many documents.",

+ 1 - 1
lang/ko-KR.json

@@ -110,7 +110,7 @@
     "user_document": "사용자 문서",
     "id": "아이디",
     "no_login_warning": "비로그인 상태입니다. 편집 시 지금 접속한 IP가 기록됩니다.",
-    "decument_404_error": "이 문서는 존재하지 않습니다.",
+    "document_404_error": "이 문서는 존재하지 않습니다.",
     "key": "키",
     "lastest": "최신",
     "now_password": "현재 비밀번호",

+ 1 - 1
route/view_w.py

@@ -220,7 +220,7 @@ async def view_w(name = 'Test', do_type = '', doc_rev = ''):
             if db_data and db_data[0][0] != '':
                 end_data = '<h2>' + await get_lang('error') + '</h2><ul><li>' + db_data[0][0] + '</li></ul>'
             else:
-                end_data = '<h2>' + await get_lang('error') + '</h2><ul><li>' + await get_lang('decument_404_error') + '</li></ul>'
+                end_data = '<h2>' + await get_lang('error') + '</h2><ul><li>' + await get_lang('document_404_error') + '</li></ul>'
 
             curs.execute(db_change('select ip from history where title = ? limit 1'), [name])
             db_data = curs.fetchall()