notebook.pot 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. # Translations template for Jupyter.
  2. # Copyright (C) 2017 ORGANIZATION
  3. # This file is distributed under the same license as the Jupyter project.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: Jupyter VERSION\n"
  10. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  11. "POT-Creation-Date: 2017-07-08 21:52-0500\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=utf-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Generated-By: Babel 2.3.4\n"
  19. #: jupyter_server/serverapp.py:53
  20. msgid "The Jupyter Server requires tornado >= 4.0"
  21. msgstr ""
  22. #: jupyter_server/serverapp.py:57
  23. msgid "The Jupyter Server requires tornado >= 4.0, but you have < 1.1.0"
  24. msgstr ""
  25. #: jupyter_server/serverapp.py:59
  26. #, python-format
  27. msgid "The Jupyter Server requires tornado >= 4.0, but you have %s"
  28. msgstr ""
  29. #: jupyter_server/serverapp.py:389
  30. msgid "List currently running Jupyter servers."
  31. msgstr ""
  32. #: jupyter_server/serverapp.py:393
  33. msgid "Produce machine-readable JSON output."
  34. msgstr ""
  35. #: jupyter_server/serverapp.py:397
  36. msgid "If True, each line of output will be a JSON object with the details from the server info file."
  37. msgstr ""
  38. #: jupyter_server/serverapp.py:402
  39. msgid "Currently running servers:"
  40. msgstr ""
  41. #: jupyter_server/serverapp.py:419
  42. msgid "Don't open the jupyter_server in a browser after startup."
  43. msgstr ""
  44. #: jupyter_server/serverapp.py:423
  45. msgid "DISABLED: use %pylab or %matplotlib in the notebook to enable matplotlib."
  46. msgstr ""
  47. #: jupyter_server/serverapp.py:439
  48. msgid "Allow the server to be run from root user."
  49. msgstr ""
  50. #: jupyter_server/serverapp.py:470
  51. msgid ""
  52. "The Jupyter Server.\n"
  53. " \n"
  54. " This launches a Tornado-based Jupyter Server."
  55. msgstr ""
  56. #: jupyter_server/serverapp.py:540
  57. msgid "Set the Access-Control-Allow-Credentials: true header"
  58. msgstr ""
  59. #: jupyter_server/serverapp.py:544
  60. msgid "Whether to allow the user to run the Jupyter server as root."
  61. msgstr ""
  62. #: jupyter_server/serverapp.py:548
  63. msgid "The default URL to redirect to from `/`"
  64. msgstr ""
  65. #: jupyter_server/serverapp.py:552
  66. msgid "The IP address the Jupyter server will listen on."
  67. msgstr ""
  68. #: jupyter_server/serverapp.py:565
  69. #, python-format
  70. msgid ""
  71. "Cannot bind to localhost, using 127.0.0.1 as default ip\n"
  72. "%s"
  73. msgstr ""
  74. #: jupyter_server/serverapp.py:579
  75. msgid "The port the Jupyter server will listen on."
  76. msgstr ""
  77. #: jupyter_server/serverapp.py:583
  78. msgid "The number of additional ports to try if the specified port is not available."
  79. msgstr ""
  80. #: jupyter_server/serverapp.py:587
  81. msgid "The full path to an SSL/TLS certificate file."
  82. msgstr ""
  83. #: jupyter_server/serverapp.py:591
  84. msgid "The full path to a private key file for usage with SSL/TLS."
  85. msgstr ""
  86. #: jupyter_server/serverapp.py:595
  87. msgid "The full path to a certificate authority certificate for SSL/TLS client authentication."
  88. msgstr ""
  89. #: jupyter_server/serverapp.py:599
  90. msgid "The file where the cookie secret is stored."
  91. msgstr ""
  92. #: jupyter_server/serverapp.py:628
  93. #, python-format
  94. msgid "Writing Jupyter server cookie secret to %s"
  95. msgstr ""
  96. #: jupyter_server/serverapp.py:635
  97. #, python-format
  98. msgid "Could not set permissions on %s"
  99. msgstr ""
  100. #: jupyter_server/serverapp.py:640
  101. msgid ""
  102. "Token used for authenticating first-time connections to the server.\n"
  103. "\n"
  104. " When no password is enabled,\n"
  105. " the default is to generate a new, random token.\n"
  106. "\n"
  107. " Setting to an empty string disables authentication altogether, which is NOT RECOMMENDED.\n"
  108. " "
  109. msgstr ""
  110. #: jupyter_server/serverapp.py:650
  111. msgid ""
  112. "One-time token used for opening a browser.\n"
  113. " Once used, this token cannot be used again.\n"
  114. " "
  115. msgstr ""
  116. #: jupyter_server/serverapp.py:726
  117. msgid ""
  118. "Specify Where to open the server on startup. This is the\n"
  119. " `new` argument passed to the standard library method `webbrowser.open`.\n"
  120. " The behaviour is not guaranteed, but depends on browser support. Valid\n"
  121. " values are:\n"
  122. " 2 opens a new tab,\n"
  123. " 1 opens a new window,\n"
  124. " 0 opens in an existing window.\n"
  125. " See the `webbrowser.open` documentation for details.\n"
  126. " "
  127. msgstr ""
  128. #: jupyter_server/serverapp.py:742
  129. msgid ""
  130. "\n"
  131. " webapp_settings is deprecated, use tornado_settings.\n"
  132. msgstr ""
  133. #: jupyter_server/serverapp.py:746
  134. msgid "Supply overrides for the tornado.web.Application that the Jupyter server uses."
  135. msgstr ""
  136. #: jupyter_server/serverapp.py:750
  137. msgid ""
  138. "\n"
  139. " Set the tornado compression options for websocket connections.\n"
  140. "\n"
  141. " This value will be returned from :meth:`WebSocketHandler.get_compression_options`.\n"
  142. " None (default) will disable compression.\n"
  143. " A dict (even an empty one) will enable compression.\n"
  144. "\n"
  145. " See the tornado docs for WebSocketHandler.get_compression_options for details.\n"
  146. " "
  147. msgstr ""
  148. #: jupyter_server/serverapp.py:761
  149. msgid "Supply overrides for terminado. Currently only supports \"shell_command\"."
  150. msgstr ""
  151. #: jupyter_server/serverapp.py:764
  152. msgid "Extra keyword arguments to pass to `set_secure_cookie`. See tornado's set_secure_cookie docs for details."
  153. msgstr ""
  154. #: jupyter_server/serverapp.py:768
  155. msgid ""
  156. "Supply SSL options for the tornado HTTPServer.\n"
  157. " See the tornado docs for details."
  158. msgstr ""
  159. #: jupyter_server/serverapp.py:772
  160. msgid "Supply extra arguments that will be passed to Jinja environment."
  161. msgstr ""
  162. #: jupyter_server/serverapp.py:776
  163. msgid "Extra variables to supply to jinja templates when rendering."
  164. msgstr ""
  165. #: jupyter_server/serverapp.py:816
  166. msgid "base_project_url is deprecated, use base_url"
  167. msgstr ""
  168. #: jupyter_server/serverapp.py:832
  169. msgid "Path to search for custom.js, css"
  170. msgstr ""
  171. #: jupyter_server/serverapp.py:844
  172. msgid ""
  173. "Extra paths to search for serving jinja templates.\n"
  174. "\n"
  175. " Can be used to override templates from jupyter_server.templates."
  176. msgstr ""
  177. #: jupyter_server/serverapp.py:900
  178. #, python-format
  179. msgid "Using MathJax: %s"
  180. msgstr ""
  181. #: jupyter_server/serverapp.py:903
  182. msgid "The MathJax.js configuration file that is to be used."
  183. msgstr ""
  184. #: jupyter_server/serverapp.py:908
  185. #, python-format
  186. msgid "Using MathJax configuration file: %s"
  187. msgstr ""
  188. #: jupyter_server/serverapp.py:920
  189. msgid "The kernel manager class to use."
  190. msgstr ""
  191. #: jupyter_server/serverapp.py:926
  192. msgid "The session manager class to use."
  193. msgstr ""
  194. #: jupyter_server/serverapp.py:932
  195. msgid "The config manager class to use"
  196. msgstr ""
  197. #: jupyter_server/serverapp.py:953
  198. msgid "The login handler class to use."
  199. msgstr ""
  200. #: jupyter_server/serverapp.py:960
  201. msgid "The logout handler class to use."
  202. msgstr ""
  203. #: jupyter_server/serverapp.py:964
  204. msgid "Whether to trust or not X-Scheme/X-Forwarded-Proto and X-Real-Ip/X-Forwarded-For headerssent by the upstream reverse proxy. Necessary if the proxy handles SSL"
  205. msgstr ""
  206. #: jupyter_server/serverapp.py:976
  207. msgid ""
  208. "\n"
  209. " DISABLED: use %pylab or %matplotlib in the notebook to enable matplotlib.\n"
  210. " "
  211. msgstr ""
  212. #: jupyter_server/serverapp.py:988
  213. msgid "Support for specifying --pylab on the command line has been removed."
  214. msgstr ""
  215. #: jupyter_server/serverapp.py:990
  216. msgid "Please use `%pylab{0}` or `%matplotlib{0}` in the notebook itself."
  217. msgstr ""
  218. #: jupyter_server/serverapp.py:995
  219. msgid "The directory to use for notebooks and kernels."
  220. msgstr ""
  221. #: jupyter_server/serverapp.py:1018
  222. #, python-format
  223. msgid "No such notebook dir: '%r'"
  224. msgstr ""
  225. #: jupyter_server/serverapp.py:1036
  226. msgid "server_extensions is deprecated, use jpserver_extensions"
  227. msgstr ""
  228. #: jupyter_server/serverapp.py:1040
  229. msgid "Dict of Python modules to load as notebook server extensions. Entry values can be used to enable and disable the loading of the extensions. The extensions will be loaded in alphabetical order."
  230. msgstr ""
  231. #: jupyter_server/serverapp.py:1049
  232. msgid "Reraise exceptions encountered loading server extensions?"
  233. msgstr ""
  234. #: jupyter_server/serverapp.py:1052
  235. msgid ""
  236. "(msgs/sec)\n"
  237. " Maximum rate at which messages can be sent on iopub before they are\n"
  238. " limited."
  239. msgstr ""
  240. #: jupyter_server/serverapp.py:1056
  241. msgid ""
  242. "(bytes/sec)\n"
  243. " Maximum rate at which stream output can be sent on iopub before they are\n"
  244. " limited."
  245. msgstr ""
  246. #: jupyter_server/serverapp.py:1060
  247. msgid ""
  248. "(sec) Time window used to \n"
  249. " check the message and data rate limits."
  250. msgstr ""
  251. #: jupyter_server/serverapp.py:1071
  252. #, python-format
  253. msgid "No such file or directory: %s"
  254. msgstr ""
  255. #: jupyter_server/serverapp.py:1141
  256. msgid "Notebook servers are configured to only be run with a password."
  257. msgstr ""
  258. #: jupyter_server/serverapp.py:1142
  259. msgid "Hint: run the following command to set a password"
  260. msgstr ""
  261. #: jupyter_server/serverapp.py:1143
  262. msgid "\t$ python -m jupyter_server.auth password"
  263. msgstr ""
  264. #: jupyter_server/serverapp.py:1181
  265. #, python-format
  266. msgid "The port %i is already in use, trying another port."
  267. msgstr ""
  268. #: jupyter_server/serverapp.py:1184
  269. #, python-format
  270. msgid "Permission to listen on port %i denied"
  271. msgstr ""
  272. #: jupyter_server/serverapp.py:1193
  273. msgid "ERROR: the Jupyter server could not be started because no available port could be found."
  274. msgstr ""
  275. #: jupyter_server/serverapp.py:1199
  276. msgid "[all ip addresses on your system]"
  277. msgstr ""
  278. #: jupyter_server/serverapp.py:1223
  279. #, python-format
  280. msgid "Terminals not available (error was %s)"
  281. msgstr ""
  282. #: jupyter_server/serverapp.py:1259
  283. msgid "interrupted"
  284. msgstr ""
  285. #: jupyter_server/serverapp.py:1261
  286. msgid "y"
  287. msgstr ""
  288. #: jupyter_server/serverapp.py:1262
  289. msgid "n"
  290. msgstr ""
  291. #: jupyter_server/serverapp.py:1263
  292. #, python-format
  293. msgid "Shutdown this notebook server (%s/[%s])? "
  294. msgstr ""
  295. #: jupyter_server/serverapp.py:1269
  296. msgid "Shutdown confirmed"
  297. msgstr ""
  298. #: jupyter_server/serverapp.py:1273
  299. msgid "No answer for 5s:"
  300. msgstr ""
  301. #: jupyter_server/serverapp.py:1274
  302. msgid "resuming operation..."
  303. msgstr ""
  304. #: jupyter_server/serverapp.py:1282
  305. #, python-format
  306. msgid "received signal %s, stopping"
  307. msgstr ""
  308. #: jupyter_server/serverapp.py:1338
  309. #, python-format
  310. msgid "Error loading server extension %s"
  311. msgstr ""
  312. #: jupyter_server/serverapp.py:1369
  313. #, python-format
  314. msgid "Shutting down %d kernels"
  315. msgstr ""
  316. #: jupyter_server/serverapp.py:1375
  317. #, python-format
  318. msgid "%d active kernel"
  319. msgid_plural "%d active kernels"
  320. msgstr[0] ""
  321. msgstr[1] ""
  322. #: jupyter_server/serverapp.py:1379
  323. #, python-format
  324. msgid ""
  325. "The Jupyter Notebook is running at:\n"
  326. "\r"
  327. "%s"
  328. msgstr ""
  329. #: jupyter_server/serverapp.py:1426
  330. msgid "Running as root is not recommended. Use --allow-root to bypass."
  331. msgstr ""
  332. #: jupyter_server/serverapp.py:1432
  333. msgid "Use Control-C to stop this server and shut down all kernels (twice to skip confirmation)."
  334. msgstr ""
  335. #: jupyter_server/serverapp.py:1434
  336. msgid "Welcome to Project Jupyter! Explore the various tools available and their corresponding documentation. If you are interested in contributing to the platform, please visit the communityresources section at http://jupyter.org/community.html."
  337. msgstr ""
  338. #: jupyter_server/serverapp.py:1445
  339. #, python-format
  340. msgid "No web browser found: %s."
  341. msgstr ""
  342. #: jupyter_server/serverapp.py:1450
  343. #, python-format
  344. msgid "%s does not exist"
  345. msgstr ""
  346. #: jupyter_server/serverapp.py:1484
  347. msgid "Interrupted..."
  348. msgstr ""
  349. #: jupyter_server/services/contents/filemanager.py:506
  350. #, python-format
  351. msgid "Serving notebooks from local directory: %s"
  352. msgstr ""
  353. #: jupyter_server/services/contents/manager.py:68
  354. msgid "Untitled"
  355. msgstr ""