浏览代码

[notebook] Github config i18n of help text

Jenny Kim 10 年之前
父节点
当前提交
2e9ec740c7
共有 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,
 )