bash.po 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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/bash.xml:14
  15. #, no-wrap
  16. msgid "&bash-url;"
  17. msgstr "&bash-url;"
  18. #. type: Content of: <sect1><sect1info>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:12
  20. msgid ""
  21. "<productname>bash</productname> <productnumber>&bash-version;</"
  22. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  23. msgstr ""
  24. "<productname>bash</productname> <productnumber>&bash-version;</"
  25. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  26. #. type: Content of: <sect1><title>
  27. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:17
  28. msgid "Bash-&bash-version;"
  29. msgstr "Bash-&bash-version;"
  30. #. type: Content of: <sect1><indexterm><primary>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:20
  32. msgid "Bash"
  33. msgstr "Bash"
  34. #. type: Content of: <sect1><indexterm><secondary>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:21
  36. msgid "tools"
  37. msgstr "工具"
  38. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  39. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:32
  40. msgid "&buildtime;"
  41. msgstr "&buildtime;"
  42. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  43. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:33
  44. msgid "&diskspace;"
  45. msgstr "&diskspace;"
  46. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  47. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:36
  48. msgid "&bash-tmp-sbu;"
  49. msgstr "&bash-tmp-sbu;"
  50. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:37
  52. msgid "&bash-tmp-du;"
  53. msgstr "&bash-tmp-du;"
  54. #. type: Content of: <sect1><sect2><title>
  55. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:44
  56. msgid "Installation of Bash"
  57. msgstr "安装 Bash"
  58. #. type: Content of: <sect1><sect2><para>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:46
  60. msgid "Prepare Bash for compilation:"
  61. msgstr "准备编译 Bash:"
  62. #. type: Content of: <sect1><sect2><screen>
  63. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:48
  64. #, no-wrap
  65. msgid ""
  66. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  67. " --build=$(support/config.guess) \\\n"
  68. " --host=$LFS_TGT \\\n"
  69. " --without-bash-malloc</userinput>"
  70. msgstr ""
  71. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  72. " --build=$(support/config.guess) \\\n"
  73. " --host=$LFS_TGT \\\n"
  74. " --without-bash-malloc</userinput>"
  75. #. type: Content of: <sect1><sect2><variablelist><title>
  76. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:54
  77. msgid "The meaning of the configure options:"
  78. msgstr "配置选项的含义:"
  79. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  80. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:57
  81. msgid "<parameter>--without-bash-malloc</parameter>"
  82. msgstr "<parameter>--without-bash-malloc</parameter>"
  83. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  84. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:59
  85. msgid ""
  86. "This option turns off the use of Bash's memory allocation (<function>malloc</"
  87. "function>) function which is known to cause segmentation faults. By turning "
  88. "this option off, Bash will use the <function>malloc</function> functions "
  89. "from Glibc which are more stable."
  90. msgstr ""
  91. "该选项禁用 Bash 自己的内存分配 (<function>malloc</function>) 函数,因为已知"
  92. "它会导致段错误。这样,Bash 就会使用 Glibc 的更加稳定的 <function>malloc</"
  93. "function> 函数。"
  94. #. type: Content of: <sect1><sect2><para>
  95. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:69
  96. msgid "Compile the package:"
  97. msgstr "编译该软件包:"
  98. #. type: Content of: <sect1><sect2><screen>
  99. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:71
  100. #, no-wrap
  101. msgid "<userinput remap=\"make\">make</userinput>"
  102. msgstr "<userinput remap=\"make\">make</userinput>"
  103. #. type: Content of: <sect1><sect2><para>
  104. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:73
  105. msgid "Install the package:"
  106. msgstr "安装该软件包:"
  107. #. type: Content of: <sect1><sect2><screen>
  108. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:75
  109. #, no-wrap
  110. msgid "<userinput remap=\"install\">make DESTDIR=$LFS install</userinput>"
  111. msgstr "<userinput remap=\"install\">make DESTDIR=$LFS install</userinput>"
  112. #. type: Content of: <sect1><sect2><para>
  113. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:77
  114. msgid "Move the excutable to where it is expected:"
  115. msgstr "将可执行文件移动到正确位置:"
  116. #. type: Content of: <sect1><sect2><screen>
  117. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:79
  118. #, no-wrap
  119. msgid "<userinput remap=\"install\">mv $LFS/usr/bin/bash $LFS/bin/bash</userinput>"
  120. msgstr "<userinput remap=\"install\">mv $LFS/usr/bin/bash $LFS/bin/bash</userinput>"
  121. #. type: Content of: <sect1><sect2><para>
  122. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:81
  123. msgid ""
  124. "Make a link for the programs that use <command>sh</command> for a shell:"
  125. msgstr ""
  126. "为那些使用 <command>sh</command> 命令运行 shell 的程序考虑,创建一个链接:"
  127. #. type: Content of: <sect1><sect2><screen>
  128. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:84
  129. #, no-wrap
  130. msgid "<userinput remap=\"install\">ln -sv bash $LFS/bin/sh</userinput>"
  131. msgstr "<userinput remap=\"install\">ln -sv bash $LFS/bin/sh</userinput>"
  132. # We don't need the additional .
  133. #. type: Content of: <sect1><sect2><para>
  134. #: /home/xry111/svn-repos/LFS-BOOK/chapter06/bash.xml:91
  135. msgid ""
  136. "Details on this package are located in <xref linkend=\"contents-bash\" role="
  137. "\".\"/>"
  138. msgstr "该软件包的详细信息可以在<xref linkend=\"contents-bash\"/>中找到。"