소스 검색

[notebook] Github config i18n of help text

Jenny Kim 10 년 전
부모
커밋
2e9ec74
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      desktop/libs/notebook/src/notebook/conf.py

+ 2 - 2
desktop/libs/notebook/src/notebook/conf.py

@@ -67,14 +67,14 @@ ENABLE_DBPROXY_SERVER = Config(
 
 GITHUB_REMOTE_URL = Config(
     key="github_remote_url",
-    help="Base URL to GitHub Remote Server",
+    help=_t("Base URL to GitHub Remote Server"),
     default='https://github.com',
     type=coerce_string,
 )
 
 GITHUB_API_URL = Config(
     key="github_api_url",
-    help="Base URL to GitHub API",
+    help=_t("Base URL to GitHub API"),
     default='https://api.github.com',
     type=coerce_string,
 )