Explorar el Código

[notebook] Github config i18n of help text

Jenny Kim hace 10 años
padre
commit
2e9ec740c7
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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,
 )