1
0

python.po 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. # SOME DESCRIPTIVE TITLE
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "POT-Creation-Date: 2020-06-17 12:44+0800\n"
  11. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  12. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "Language: \n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #. type: Content of: <sect1><sect1info><address>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:14
  20. #, no-wrap
  21. msgid "&python-url;"
  22. msgstr ""
  23. #. type: Content of: <sect1><sect1info>
  24. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:12
  25. msgid ""
  26. "<productname>Python</productname> "
  27. "<productnumber>&python-version;</productnumber> <placeholder "
  28. "type=\"address\" id=\"0\"/>"
  29. msgstr ""
  30. #. type: Content of: <sect1><title>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:17
  32. msgid "Python-&python-version;"
  33. msgstr ""
  34. #. type: Content of: <sect1><indexterm><primary>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:20
  36. msgid "Python"
  37. msgstr ""
  38. #. type: Content of: <sect1><indexterm><secondary>
  39. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:21
  40. msgid "temporary"
  41. msgstr ""
  42. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  43. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:32
  44. msgid "&buildtime;"
  45. msgstr ""
  46. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  47. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:33
  48. msgid "&diskspace;"
  49. msgstr ""
  50. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:36
  52. msgid "&python-tmp-sbu;"
  53. msgstr ""
  54. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  55. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:37
  56. msgid "&python-tmp-du;"
  57. msgstr ""
  58. #. type: Content of: <sect1><sect2><title>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:44
  60. msgid "Installation of Python"
  61. msgstr ""
  62. #. type: Content of: <sect1><sect2><note><para>
  63. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:47
  64. msgid ""
  65. "There are two package files whose name starts with "
  66. "<quote>python</quote>. The one to extract from is "
  67. "<filename>Python-&python-version;.tar.xz</filename> (notice the uppercase "
  68. "first letter)."
  69. msgstr ""
  70. #. type: Content of: <sect1><sect2><para>
  71. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:53
  72. msgid "Prepare Python for compilation:"
  73. msgstr ""
  74. #. type: Content of: <sect1><sect2><screen>
  75. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:55
  76. #, no-wrap
  77. msgid ""
  78. "<userinput remap=\"configure\">./configure --prefix=/usr "
  79. "--without-ensurepip</userinput>"
  80. msgstr ""
  81. #. type: Content of: <sect1><sect2><variablelist><title>
  82. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:58
  83. msgid "The meaning of the configure option:"
  84. msgstr ""
  85. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  86. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:61
  87. msgid "<parameter>--without-ensurepip</parameter>"
  88. msgstr ""
  89. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  90. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:63
  91. msgid ""
  92. "This switch disables the Python package installer, which is not needed at "
  93. "this stage."
  94. msgstr ""
  95. #. type: Content of: <sect1><sect2><para>
  96. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:70
  97. msgid "Compile the package:"
  98. msgstr ""
  99. #. type: Content of: <sect1><sect2><screen>
  100. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:72
  101. #, no-wrap
  102. msgid "<userinput remap=\"make\">make</userinput>"
  103. msgstr ""
  104. #. type: Content of: <sect1><sect2><para>
  105. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:74
  106. msgid "Install the package:"
  107. msgstr ""
  108. #. type: Content of: <sect1><sect2><screen>
  109. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:76
  110. #, no-wrap
  111. msgid "<userinput remap=\"install\">make install</userinput>"
  112. msgstr ""
  113. #. type: Content of: <sect1><sect2><para>
  114. #: /home/xry111/svn-repos/LFS-BOOK/chapter07/python.xml:83
  115. msgid ""
  116. "Details on this package are located in <xref linkend=\"contents-python\" "
  117. "role=\".\"/>"
  118. msgstr ""