make.po 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "POT-Creation-Date: 2020-06-17 12:44+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/chapter06/make.xml:13
  15. #, no-wrap
  16. msgid "&make-url;"
  17. msgstr "&make-url;"
  18. #. type: Content of: <sect1><sect1info>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:11
  20. msgid ""
  21. "<productname>make</productname> <productnumber>&make-version;</"
  22. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  23. msgstr ""
  24. "<productname>make</productname> <productnumber>&make-version;</"
  25. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  26. #. type: Content of: <sect1><title>
  27. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:16
  28. msgid "Make-&make-version;"
  29. msgstr "Make-&make-version;"
  30. #. type: Content of: <sect1><indexterm><primary>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:19
  32. msgid "Make"
  33. msgstr "Make"
  34. #. type: Content of: <sect1><indexterm><secondary>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:20
  36. msgid "tools"
  37. msgstr "工具"
  38. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  39. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:31
  40. msgid "&buildtime;"
  41. msgstr "&buildtime;"
  42. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  43. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:32
  44. msgid "&diskspace;"
  45. msgstr "&diskspace;"
  46. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  47. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:35
  48. msgid "&make-tmp-sbu;"
  49. msgstr "&make-tmp-sbu;"
  50. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:36
  52. msgid "&make-tmp-du;"
  53. msgstr "&make-tmp-du;"
  54. #. type: Content of: <sect1><sect2><title>
  55. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:43
  56. msgid "Installation of Make"
  57. msgstr "安装 Make"
  58. #. type: Content of: <sect1><sect2><para>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:45
  60. msgid "Prepare Make for compilation:"
  61. msgstr "准备编译 Make:"
  62. #. type: Content of: <sect1><sect2><screen>
  63. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:47
  64. #, no-wrap
  65. msgid ""
  66. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  67. " --without-guile \\\n"
  68. " --host=$LFS_TGT \\\n"
  69. " --build=$(build-aux/config.guess)</userinput>"
  70. msgstr ""
  71. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  72. " --without-guile \\\n"
  73. " --host=$LFS_TGT \\\n"
  74. " --build=$(build-aux/config.guess)</userinput>"
  75. #. type: Content of: <sect1><sect2><variablelist><title>
  76. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:53
  77. msgid "The meaning of the new configure option:"
  78. msgstr "新出现的配置选项的含义:"
  79. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  80. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:56
  81. msgid "<parameter>--without-guile</parameter>"
  82. msgstr "<parameter>--without-guile</parameter>"
  83. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  84. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:58
  85. msgid ""
  86. "Although we are cross-compiling, configure tries to use guile from the build "
  87. "host if it finds it. This makes compilation fail, so this switch prevents "
  88. "using it."
  89. msgstr ""
  90. "尽管我们在进行交叉编译,配置脚本如果找到宿主系统的 guile,"
  91. "仍然会试图使用它。这导致编译失败,因此使用该选项防止使用 guile。"
  92. #. type: Content of: <sect1><sect2><para>
  93. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:65
  94. msgid "Compile the package:"
  95. msgstr "编译该软件包:"
  96. #. type: Content of: <sect1><sect2><screen>
  97. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:67
  98. #, no-wrap
  99. msgid "<userinput remap=\"make\">make</userinput>"
  100. msgstr "<userinput remap=\"make\">make</userinput>"
  101. #. type: Content of: <sect1><sect2><para>
  102. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:69
  103. msgid "Install the package:"
  104. msgstr "安装该软件包:"
  105. #. type: Content of: <sect1><sect2><screen>
  106. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:71
  107. #, no-wrap
  108. msgid "<userinput remap=\"install\">make DESTDIR=$LFS install</userinput>"
  109. msgstr "<userinput remap=\"install\">make DESTDIR=$LFS install</userinput>"
  110. #. type: Content of: <sect1><sect2><para>
  111. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/make.xml:78
  112. msgid ""
  113. "Details on this package are located in <xref linkend=\"contents-make\" role="
  114. "\".\"/>"
  115. msgstr "该软件包的详细信息可以在<xref linkend=\"contents-make\"/>中找到。"