gdbm.po 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. msgid ""
  2. msgstr ""
  3. "X-Pootle-Revision: 9999999\n"
  4. "X-Pootle-Path: /zh_CN/lfs/chapter08/gdbm.po\n"
  5. "Project-Id-Version: PACKAGE VERSION\n"
  6. "POT-Creation-Date: 2020-08-08 19:28+0800\n"
  7. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  8. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  9. "Language-Team: LANGUAGE <LL@li.org>\n"
  10. "Language: zh_CN\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "X-Generator: Translate Toolkit 2.2.5\n"
  15. #. type: Content of: <sect1><sect1info><address>
  16. #, no-wrap
  17. msgid "&gdbm-url;"
  18. msgstr "&gdbm-url;"
  19. #. type: Content of: <sect1><sect1info>
  20. msgid ""
  21. "<productname>gdbm</productname> <productnumber>&gdbm-version;</"
  22. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  23. msgstr ""
  24. "<productname>gdbm</productname> <productnumber>&gdbm-version;</"
  25. "productnumber> <placeholder type=\"address\" id=\"0\"/>"
  26. #. type: Content of: <sect1><title>
  27. msgid "GDBM-&gdbm-version;"
  28. msgstr "GDBM-&gdbm-version;"
  29. #. type: Content of: <sect1><indexterm><primary>
  30. msgid "GDBM"
  31. msgstr "GDBM"
  32. #. type: Content of: <sect1><sect2><para>
  33. msgid ""
  34. "The GDBM package contains the GNU Database Manager. It is a library of "
  35. "database functions that use extensible hashing and works similar to the "
  36. "standard UNIX dbm. The library provides primitives for storing key/data "
  37. "pairs, searching and retrieving the data by its key and deleting a key along "
  38. "with its data."
  39. msgstr ""
  40. "GDBM 软件包包含 GNU 数据库管理器。它是一个使用可扩展散列的数据库函数库,工作"
  41. "方法和标准 UNIX dbm 类似。该库提供用于存储键值对、通过键搜索和获取数据,以及"
  42. "删除键和对应数据的原语。"
  43. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  44. msgid "&buildtime;"
  45. msgstr "&buildtime;"
  46. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  47. msgid "&diskspace;"
  48. msgstr "&diskspace;"
  49. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  50. msgid "&gdbm-fin-sbu;"
  51. msgstr "&gdbm-fin-sbu;"
  52. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  53. msgid "&gdbm-fin-du;"
  54. msgstr "&gdbm-fin-du;"
  55. #. type: Content of: <sect1><sect2><title>
  56. msgid "Installation of GDBM"
  57. msgstr "安装 GDBM"
  58. #. type: Content of: <sect1><sect2><para>
  59. msgid "First, fix an issue first identified by gcc-10:"
  60. msgstr "首先,修复一个 GCC-10 首先发现的问题:"
  61. #. type: Content of: <sect1><sect2><screen>
  62. #, no-wrap
  63. msgid "<userinput remap=\"pre\">sed -r -i '/^char.*parseopt_program_(doc|args)/d' src/parseopt.c</userinput>"
  64. msgstr "<userinput remap=\"pre\">sed -r -i '/^char.*parseopt_program_(doc|args)/d' src/parseopt.c</userinput>"
  65. #. type: Content of: <sect1><sect2><para>
  66. msgid "Prepare GDBM for compilation:"
  67. msgstr "准备编译 GDBM:"
  68. #. type: Content of: <sect1><sect2><screen>
  69. #, no-wrap
  70. msgid ""
  71. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  72. " --disable-static \\\n"
  73. " --enable-libgdbm-compat</userinput>"
  74. msgstr ""
  75. "<userinput remap=\"configure\">./configure --prefix=/usr \\\n"
  76. " --disable-static \\\n"
  77. " --enable-libgdbm-compat</userinput>"
  78. #. type: Content of: <sect1><sect2><variablelist><title>
  79. msgid "The meaning of the configure option:"
  80. msgstr "配置选项的含义:"
  81. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  82. msgid "<envar>--enable-libgdbm-compat</envar>"
  83. msgstr "<envar>--enable-libgdbm-compat</envar>"
  84. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  85. msgid ""
  86. "This switch enables building the libgdbm compatibility library. Some "
  87. "packages outside of LFS may require the older DBM routines it provides."
  88. msgstr ""
  89. "该选项启用 libgdbm 兼容性库的构建。LFS 之外的一些软件包需要它提供的老式 DBM "
  90. "子程序。"
  91. #. type: Content of: <sect1><sect2><para>
  92. msgid "Compile the package:"
  93. msgstr "编译该软件包:"
  94. #. type: Content of: <sect1><sect2><screen>
  95. #, no-wrap
  96. msgid "<userinput remap=\"make\">make</userinput>"
  97. msgstr "<userinput remap=\"make\">make</userinput>"
  98. #. type: Content of: <sect1><sect2><para>
  99. msgid "To test the results, issue:"
  100. msgstr "运行以下命令以测试编译结果:"
  101. #. type: Content of: <sect1><sect2><screen>
  102. #, no-wrap
  103. msgid "<userinput remap=\"test\">make check</userinput>"
  104. msgstr "<userinput remap=\"test\">make check</userinput>"
  105. #. type: Content of: <sect1><sect2><para>
  106. msgid "Install the package:"
  107. msgstr "安装该软件包:"
  108. #. type: Content of: <sect1><sect2><screen>
  109. #, no-wrap
  110. msgid "<userinput remap=\"install\">make install</userinput>"
  111. msgstr "<userinput remap=\"install\">make install</userinput>"
  112. #. type: Content of: <sect1><sect2><title>
  113. msgid "Contents of GDBM"
  114. msgstr "GDBM 的内容"
  115. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  116. msgid "Installed programs"
  117. msgstr "安装的程序"
  118. #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
  119. msgid "Installed libraries"
  120. msgstr "安装的库"
  121. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  122. msgid "gdbm_dump, gdbm_load, and gdbmtool"
  123. msgstr "gdbm_dump, gdbm_load, 以及 gdbmtool"
  124. #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
  125. msgid "libgdbm.so and libgdbm_compat.so"
  126. msgstr "libgdbm.so 和 libgdbm_compat.so"
  127. #. type: Content of: <sect1><sect2><variablelist><bridgehead>
  128. msgid "Short Descriptions"
  129. msgstr "简要描述"
  130. #. type: Content of: <sect1><sect2><variablelist>
  131. msgid ""
  132. "<?dbfo list-presentation=\"list\"?> <?dbhtml list-presentation=\"table\"?>"
  133. msgstr ""
  134. "<?dbfo list-presentation=\"list\"?> <?dbhtml list-presentation=\"table\"?>"
  135. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  136. msgid "<command>gdbm_dump</command>"
  137. msgstr "<command>gdbm_dump</command>"
  138. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  139. msgid "Dumps a GDBM database to a file"
  140. msgstr "将 GDBM 数据库转储到文件"
  141. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
  142. msgid "gdbm_dump"
  143. msgstr "gdbm_dump"
  144. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  145. msgid "<command>gdbm_load</command>"
  146. msgstr "<command>gdbm_load</command>"
  147. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  148. msgid "Recreates a GDBM database from a dump file"
  149. msgstr "从转储文件重建 GDBM 数据库"
  150. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
  151. msgid "gdbm_load"
  152. msgstr "gdbm_load"
  153. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  154. msgid "<command>gdbmtool</command>"
  155. msgstr "<command>gdbmtool</command>"
  156. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  157. msgid "Tests and modifies a GDBM database"
  158. msgstr "测试和修改 GDBM 数据库"
  159. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
  160. msgid "gdbmtool"
  161. msgstr "gdbmtool"
  162. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  163. msgid "<filename class=\"libraryfile\">libgdbm</filename>"
  164. msgstr "<filename class=\"libraryfile\">libgdbm</filename>"
  165. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  166. msgid "Contains functions to manipulate a hashed database"
  167. msgstr "包含用于操作散列数据库的函数"
  168. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
  169. msgid "libgdbm"
  170. msgstr "libgdbm"
  171. #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
  172. msgid "<filename class=\"libraryfile\">libgdbm_compat</filename>"
  173. msgstr "<filename class=\"libraryfile\">libgdbm_compat</filename>"
  174. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
  175. msgid "Compatibility library containing older DBM functions"
  176. msgstr "包含老式 DBM 函数的兼容性库"
  177. #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
  178. msgid "libgdbm_compat"
  179. msgstr "libgdbm_compat"