python.po 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "POT-Creation-Date: 2020-07-05 16:17+0800\n"
  5. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  6. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  7. "Language-Team: LANGUAGE <LL@li.org>\n"
  8. "Language: zh_CN\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "X-Generator: Translate Toolkit 2.2.5\n"
  13. #. type: Content of: <sect1><sect1info><address>
  14. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:14
  15. #, no-wrap
  16. msgid "&python-url;"
  17. msgstr "&python-url;"
  18. #. type: Content of: <sect1><sect1info>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:12
  20. msgid ""
  21. "<productname>Python</productname> <productnumber>&python-version;</"
  22. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  23. msgstr ""
  24. "<productname>Python</productname> <productnumber>&python-version;</"
  25. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  26. #. type: Content of: <sect1><title>
  27. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:17
  28. msgid "Python-&python-version;"
  29. msgstr "Python-&python-version;"
  30. #. type: Content of: <sect1><indexterm><primary>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:20
  32. msgid "Python"
  33. msgstr "Python"
  34. #. type: Content of: <sect1><indexterm><secondary>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:21
  36. msgid "temporary"
  37. msgstr "临时的"
  38. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  39. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:32
  40. msgid "&buildtime;"
  41. msgstr "&buildtime;"
  42. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  43. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:33
  44. msgid "&diskspace;"
  45. msgstr "&diskspace;"
  46. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  47. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:36
  48. msgid "&python-tmp-sbu;"
  49. msgstr "&python-tmp-sbu;"
  50. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:37
  52. msgid "&python-tmp-du;"
  53. msgstr "&python-tmp-du;"
  54. #. type: Content of: <sect1><sect2><title>
  55. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:44
  56. msgid "Installation of Python"
  57. msgstr "安装 Python"
  58. #. type: Content of: <sect1><sect2><note><para>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:47
  60. msgid ""
  61. "There are two package files whose name starts with <quote>python</quote>. "
  62. "The one to extract from is <filename>Python-&python-version;.tar.xz</"
  63. "filename> (notice the uppercase first letter)."
  64. msgstr ""
  65. "该软件包包含两个以 <quote>python</quote> 开头的压缩包。我们应该解压的包是 "
  66. "<filename>Python-&python-version;.tar.xz</filename> (注意首字母是大写的)。"
  67. #. type: Content of: <sect1><sect2><para>
  68. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:53
  69. msgid "Prepare Python for compilation:"
  70. msgstr "准备编译 Python:"
  71. #. type: Content of: <sect1><sect2><screen>
  72. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:55
  73. #, no-wrap
  74. msgid ""
  75. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  76. " --enable-shared \\\n"
  77. " --without-ensurepip</userinput>"
  78. msgstr ""
  79. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  80. " --enable-shared \\\n"
  81. " --without-ensurepip</userinput>"
  82. #. type: Content of: <sect1><sect2><variablelist><title>
  83. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:60
  84. msgid "The meaning of the configure option:"
  85. msgstr "配置选项的含义:"
  86. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  87. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:63
  88. msgid "<parameter>--enable-shared</parameter>"
  89. msgstr "<parameter>--enable-shared</parameter>"
  90. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  91. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:65
  92. msgid "This switch prevents installation of static libraries."
  93. msgstr "该选项防止安装静态库。"
  94. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  95. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:70
  96. msgid "<parameter>--without-ensurepip</parameter>"
  97. msgstr "<parameter>--without-ensurepip</parameter>"
  98. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  99. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:72
  100. msgid ""
  101. "This switch disables the Python package installer, which is not needed at "
  102. "this stage."
  103. msgstr "该选项禁止构建 Python 软件包安装器,它在当前阶段没有必要。"
  104. #. type: Content of: <sect1><sect2><para>
  105. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:79
  106. msgid "Compile the package:"
  107. msgstr "编译该软件包:"
  108. #. type: Content of: <sect1><sect2><screen>
  109. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:81
  110. #, no-wrap
  111. msgid "<userinput remap=\"make\">make</userinput>"
  112. msgstr "<userinput remap=\"make\">make</userinput>"
  113. #. type: Content of: <sect1><sect2><para>
  114. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:83
  115. msgid "Install the package:"
  116. msgstr "安装该软件包:"
  117. #. type: Content of: <sect1><sect2><screen>
  118. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:85
  119. #, no-wrap
  120. msgid "<userinput remap=\"install\">make install</userinput>"
  121. msgstr "<userinput remap=\"install\">make install</userinput>"
  122. #. type: Content of: <sect1><sect2><para>
  123. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:92
  124. msgid ""
  125. "Details on this package are located in <xref linkend=\"contents-python\" "
  126. "role=\".\"/>"
  127. msgstr ""
  128. "关于该软件包的详细信息可以在<xref linkend=\"contents-python\"/>中找到。"