theend.po 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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><title>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:11
  20. msgid "The End"
  21. msgstr ""
  22. #. type: Content of: <sect1><indexterm><primary>
  23. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:14
  24. msgid "/etc/lfs-release"
  25. msgstr ""
  26. #. type: Content of: <sect1><indexterm><primary>
  27. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:18
  28. msgid "/etc/lsb-release"
  29. msgstr ""
  30. #. type: Content of: <sect1><indexterm><primary>
  31. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:22
  32. msgid "/etc/os-release"
  33. msgstr ""
  34. #. type: Content of: <sect1><para>
  35. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:25
  36. msgid ""
  37. "Well done! The new LFS system is installed! We wish you much success with "
  38. "your shiny new custom-built Linux system."
  39. msgstr ""
  40. #. type: Content of: <sect1><para>
  41. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:28
  42. msgid ""
  43. "It may be a good idea to create an <filename>/etc/lfs-release</filename> "
  44. "file. By having this file, it is very easy for you (and for us if you need "
  45. "to ask for help at some point) to find out which LFS version is installed on "
  46. "the system. Create this file by running:"
  47. msgstr ""
  48. #. type: Content of: <sect1><screen>
  49. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:34
  50. #, no-wrap
  51. msgid "<userinput>echo &version; &gt; /etc/lfs-release</userinput>"
  52. msgstr ""
  53. #. type: Content of: <sect1><screen>
  54. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:36
  55. #, no-wrap
  56. msgid "<userinput>echo &versiond; &gt; /etc/lfs-release</userinput>"
  57. msgstr ""
  58. #. type: Content of: <sect1><para>
  59. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:38
  60. msgid ""
  61. "Two files describing the installed system may be used by packages that can "
  62. "be installed on the system later, either in binary form or by building them."
  63. msgstr ""
  64. #. type: Content of: <sect1><para>
  65. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:42
  66. msgid ""
  67. "The first one shows the status of your new system with respect to the Linux "
  68. "Standards Base (LSB). To create this file, run:"
  69. msgstr ""
  70. #. type: Content of: <sect1><screen>
  71. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:46
  72. #, no-wrap
  73. msgid ""
  74. "<userinput>cat &gt; /etc/lsb-release &lt;&lt; \"EOF\"\n"
  75. "DISTRIB_ID=\"Linux From Scratch\"\n"
  76. "DISTRIB_RELEASE=\"&version;\"\n"
  77. "DISTRIB_CODENAME=\"&lt;your name here&gt;\"\n"
  78. "DISTRIB_DESCRIPTION=\"Linux From Scratch\"\n"
  79. "EOF</userinput>"
  80. msgstr ""
  81. #. type: Content of: <sect1><screen>
  82. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:53
  83. #, no-wrap
  84. msgid ""
  85. "<userinput>cat &gt; /etc/lsb-release &lt;&lt; \"EOF\"\n"
  86. "DISTRIB_ID=\"Linux From Scratch\"\n"
  87. "DISTRIB_RELEASE=\"&versiond;\"\n"
  88. "DISTRIB_CODENAME=\"&lt;your name here&gt;\"\n"
  89. "DISTRIB_DESCRIPTION=\"Linux From Scratch\"\n"
  90. "EOF</userinput>"
  91. msgstr ""
  92. #. type: Content of: <sect1><para>
  93. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:60
  94. msgid ""
  95. "The second one contains roughly the same information, and is used by systemd "
  96. "and some graphical desktop environments. To create this file, run:"
  97. msgstr ""
  98. #. type: Content of: <sect1><screen>
  99. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:64
  100. #, no-wrap
  101. msgid ""
  102. "<userinput>cat &gt; /etc/os-release &lt;&lt; \"EOF\"\n"
  103. "NAME=\"Linux From Scratch\"\n"
  104. "VERSION=\"&version;\"\n"
  105. "ID=lfs\n"
  106. "PRETTY_NAME=\"Linux From Scratch &version;\"\n"
  107. "VERSION_CODENAME=\"&lt;your name here&gt;\"\n"
  108. "EOF</userinput>"
  109. msgstr ""
  110. #. type: Content of: <sect1><screen>
  111. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:72
  112. #, no-wrap
  113. msgid ""
  114. "<userinput>cat &gt; /etc/os-release &lt;&lt; \"EOF\"\n"
  115. "NAME=\"Linux From Scratch\"\n"
  116. "VERSION=\"&versiond;\"\n"
  117. "ID=lfs\n"
  118. "PRETTY_NAME=\"Linux From Scratch &versiond;\"\n"
  119. "VERSION_CODENAME=\"&lt;your name here&gt;\"\n"
  120. "EOF</userinput>"
  121. msgstr ""
  122. #. type: Content of: <sect1><para>
  123. #: /home/xry111/svn-repos/LFS-BOOK/chapter11/theend.xml:80
  124. msgid ""
  125. "Be sure to put some sort of customization for the fields 'DISTRIB_CODENAME' "
  126. "and 'VERSION_CODENAME' to make the system uniquely yours."
  127. msgstr ""