vbootstrap.pot 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  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. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2012-10-20 12:45+0900\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=CHARSET\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. #. initialize rpm database
  20. #: vbootstrap.sh.in:85
  21. #, sh-format
  22. msgid "Initializing RPM database in $INSTDIR."
  23. msgstr ""
  24. #. update apt database
  25. #: vbootstrap.sh.in:90
  26. msgid "update apt database."
  27. msgstr ""
  28. #. install base vine linux system.
  29. #: vbootstrap.sh.in:105
  30. msgid "Installing basesystem."
  31. msgstr ""
  32. #: vbootstrap.sh.in:114
  33. msgid "vbootstrap done."
  34. msgstr ""
  35. #: vbuilder.sh.in:13
  36. #, sh-format
  37. msgid ""
  38. "\n"
  39. "Options:\n"
  40. "\t--profile:\t\tset a profile\n"
  41. "\t--version:\t\tset [version] (default: ${VERSION})\n"
  42. "\t--arch:\t\t\tset [arch] (default: ${UARCH})\n"
  43. "\t--category:\t\tset [categories] (default: ${CATEGORIES})\n"
  44. "\t--fetch-url:\t\tset [fetch_url] to fetch packages (default: "
  45. "${VBOOTSTRAP_FETCH_URL})\n"
  46. "\t--dist-upgrade:\t\tmake VineSeed bootstrap via ${STABLE_VERSION}\n"
  47. "\t--unionfs:\t\tcover a bootstrap with unionfs\n"
  48. "\t--target:\t\tbuild rpms with [target]\n"
  49. "\t--no-build-essential:\tdo not install build-essential\n"
  50. "\t--with-compat32:\tbuild rpms with compat32 on bootstrap\n"
  51. "\t--rpmbuild-define:\tgive a option --define [macro_expr] to rpmbuild\n"
  52. "\t--rpmbuild-with:\tgive a option --with [bcond_with] to rpmbuild\n"
  53. "\t--rpmbuild-without:\tgive a option --without [bcond_with] to rpmbuild\n"
  54. "\t--sign:\t\t\tsign built rpms\n"
  55. "\t--no-install:\t\tbuild only a source rpm - do NOT install a built rpm\n"
  56. "\t--login:\t\tlogin in chroot as root user\n"
  57. "\t--bootstrap-dir:\tset a bootstrap directory (default: ${VBOOTSTRAP_DIR})\n"
  58. "\t--unionfs-dir:\t\tset a directory to store unionfs images of vbootstrap "
  59. "(default: ${UNIONFS_DIR})\n"
  60. "\t--cache-dir:\t\tset a directory to cache rpms (default: ${CACHE_DIR})\n"
  61. "\t--built-rpms-dir:\tset a directory to store built rpms in chroot (default: "
  62. "${BUILT_RPMS_DIR})\n"
  63. "\t--debug:\t\tenable debug mode\n"
  64. "\t--help:\t\t\tshow this help\n"
  65. msgstr ""
  66. #: vbuilder.sh.in:39
  67. msgid ""
  68. "\n"
  69. "Actions:\n"
  70. "\tclean:\t\t\tclean the bootstrap of [version]\n"
  71. "\tbuild:\t\t\tbuild a bootstrap of [version]\n"
  72. "\tbuild-rpm:\t\tbuild [src.rpm] on a bootstrap\n"
  73. "\tinstall-rpm:\t\tinstall [arch.rpm|package] on a bootstrap\n"
  74. "\tremove-rpm:\t\tremove [package] on a bootstrap\n"
  75. msgstr ""
  76. #: vbuilder.sh.in:48
  77. msgid ""
  78. "\n"
  79. "Examples: \n"
  80. "* make a clean/plain build environment on the current archtecture:\n"
  81. "$(basename $0) clean build\n"
  82. "* build rpms from the specified source rpm:\n"
  83. "$(basename $0) build-rpm [src.rpm]\n"
  84. "* make a plain build environment for Vine Linux 6:\n"
  85. "$(basename $0) --version 6 clean build\n"
  86. "* make a i386 chroot on x86_64:\n"
  87. "$(basename $0) --arch i386 clean build\n"
  88. "* build a kernel package with target i686:\n"
  89. "$(basename $0) --target i686 build-rpm [kernel src.rpm]\n"
  90. "* build a compat32 package:\n"
  91. "$(basename $0) --arch i386 --with-compat32 build-rpm [src.rpm]\n"
  92. msgstr ""
  93. #: vbuilder.sh.in:110 vbuilder.sh.in:117
  94. msgid "E: You can give no more options after actions"
  95. msgstr ""
  96. #: vbuilder.sh.in:129 vbuilder.sh.in:143 vbuilder.sh.in:146
  97. msgid "E: Missing some parameters after $1"
  98. msgstr ""
  99. #: vbuilder.sh.in:137
  100. msgid "E: You must give at least one action"
  101. msgstr ""
  102. #: vbuilder.sh.in:164
  103. #, sh-format
  104. msgid "W: \\$SUDO_USER and \\$USERHELPER_UID are empty"
  105. msgstr ""
  106. #: vbuilder.sh.in:197
  107. #, sh-format
  108. msgid "E: No such profile found: ${PROFILE}"
  109. msgstr ""
  110. #: vbuilder.sh.in:239
  111. #, sh-format
  112. msgid "E: ${VERSION} is NOT supported"
  113. msgstr ""
  114. #: vbuilder.sh.in:257 vbuilder.sh.in:261 vbuilder.sh.in:265
  115. #, sh-format
  116. msgid "E: arch ${VARCH} is NOT supported on ${UARCH}"
  117. msgstr ""
  118. #: vbuilder.sh.in:273
  119. #, sh-format
  120. msgid "E: ${VERSION}_${VARCH} is NOT supported"
  121. msgstr ""
  122. #: vbuilder.sh.in:283
  123. #, sh-format
  124. msgid "E: ${BASE_PROFILE} is NOT supported"
  125. msgstr ""
  126. #: vbuilder.sh.in:290
  127. #, sh-format
  128. msgid "E: version ${VERSION} does not support --dist-upgrade option"
  129. msgstr ""
  130. #. # "test" category only exists in VineSeed
  131. #. #!! "proposed-updates" category does not exist in 4.2
  132. #. # "security" category does not exist in VineSeed
  133. #: vbuilder.sh.in:316 vbuilder.sh.in:322 vbuilder.sh.in:329 vbuilder.sh.in:333
  134. #, sh-format
  135. msgid "E: No such category exists: $cat"
  136. msgstr ""
  137. #: vbuilder.sh.in:343
  138. #, sh-format
  139. msgid "E: rpm build target ${TARGET} is NOT supported"
  140. msgstr ""
  141. #: vbuilder.sh.in:405
  142. msgid "apt-get update on host ... "
  143. msgstr ""
  144. #: vbuilder.sh.in:407 vbuilder.sh.in:412 vbuilder.sh.in:448 vbuilder.sh.in:468
  145. #: vbuilder.sh.in:578 vbuilder.sh.in:585 vbuilder.sh.in:849
  146. msgid "done."
  147. msgstr ""
  148. #: vbuilder.sh.in:410
  149. msgid "apt-get update on chroot ... "
  150. msgstr ""
  151. #: vbuilder.sh.in:446
  152. #, sh-format
  153. msgid "Retry lazy unmount ${BUILD_ROOT}${fs} ... "
  154. msgstr ""
  155. #: vbuilder.sh.in:466
  156. #, sh-format
  157. msgid "Retry lazy unmount ${BUILD_ROOT} ... "
  158. msgstr ""
  159. #: vbuilder.sh.in:575
  160. #, sh-format
  161. msgid "Cleaning build root ${UNIONFS_ROOT} via unionfs ... "
  162. msgstr ""
  163. #: vbuilder.sh.in:582
  164. #, sh-format
  165. msgid "Cleaning build root ${BUILD_ROOT} ... "
  166. msgstr ""
  167. #: vbuilder.sh.in:589
  168. #, sh-format
  169. msgid "Cleanup a build farm for ${BUILD_ROOT} done."
  170. msgstr ""
  171. #: vbuilder.sh.in:712
  172. #, sh-format
  173. msgid "Making a build farm for ${BUILD_ROOT} done."
  174. msgstr ""
  175. #. apt-get-update --chroot
  176. #: vbuilder.sh.in:726
  177. #, sh-format
  178. msgid "E: $RPM_PKG is not a package name"
  179. msgstr ""
  180. #: vbuilder.sh.in:766 vbuilder.sh.in:801
  181. #, sh-format
  182. msgid "E: No such file found: ${RPM_PKG}"
  183. msgstr ""
  184. #: vbuilder.sh.in:784
  185. #, sh-format
  186. msgid "E: $RPM_PKG is NOT a source RPM package"
  187. msgstr ""
  188. #: vbuilder.sh.in:787
  189. #, sh-format
  190. msgid "The action build-rpm cannot work such extension: ${RPM_PKG_EXT}"
  191. msgstr ""
  192. #. # copy built rpms to ${HOME}/rpm/ for each archtectures
  193. #: vbuilder.sh.in:831
  194. #, sh-format
  195. msgid "Copying built rpms to ${BUILT_RPMS_DIR} for each archtectures ... "
  196. msgstr ""
  197. #: vbuilder.sh.in:862
  198. #, sh-format
  199. msgid "Signing built rpms using ${RPM_SIGN_USER}'s key: "
  200. msgstr ""
  201. #: vbootstrap/scripts/4.2_i386.sh:9 vbootstrap/scripts/4.2_ppc.sh:9
  202. #: vbootstrap/scripts/5.2_i386.sh:9 vbootstrap/scripts/5.2_x86_64.sh:9
  203. #: vbootstrap/scripts/5.2_ppc.sh:9 vbootstrap/scripts/6_i386.sh:9
  204. #: vbootstrap/scripts/6_x86_64.sh:9 vbootstrap/scripts/VineSeed_i386.sh:9
  205. #: vbootstrap/scripts/VineSeed_x86_64.sh:9
  206. #: vbootstrap/scripts/VineSeed_ppc.sh:9
  207. #, sh-format
  208. msgid "running vbootstrap post install scripts for $INSTVER on $INSTDIR"
  209. msgstr ""
  210. #: vbootstrap/scripts/4.2_i386.sh:12 vbootstrap/scripts/4.2_ppc.sh:12
  211. #: vbootstrap/scripts/5.2_i386.sh:12 vbootstrap/scripts/5.2_x86_64.sh:12
  212. #: vbootstrap/scripts/5.2_ppc.sh:12 vbootstrap/scripts/6_i386.sh:12
  213. #: vbootstrap/scripts/6_x86_64.sh:12 vbootstrap/scripts/VineSeed_i386.sh:15
  214. #: vbootstrap/scripts/VineSeed_x86_64.sh:15
  215. #: vbootstrap/scripts/VineSeed_ppc.sh:12
  216. msgid " reinitializing rpm database... "
  217. msgstr ""
  218. #: vbootstrap/scripts/4.2_i386.sh:14 vbootstrap/scripts/4.2_i386.sh:17
  219. #: vbootstrap/scripts/4.2_i386.sh:20 vbootstrap/scripts/4.2_ppc.sh:14
  220. #: vbootstrap/scripts/4.2_ppc.sh:17 vbootstrap/scripts/4.2_ppc.sh:20
  221. #: vbootstrap/scripts/5.2_i386.sh:14 vbootstrap/scripts/5.2_i386.sh:17
  222. #: vbootstrap/scripts/5.2_i386.sh:20 vbootstrap/scripts/5.2_x86_64.sh:14
  223. #: vbootstrap/scripts/5.2_x86_64.sh:17 vbootstrap/scripts/5.2_x86_64.sh:20
  224. #: vbootstrap/scripts/5.2_ppc.sh:14 vbootstrap/scripts/5.2_ppc.sh:17
  225. #: vbootstrap/scripts/5.2_ppc.sh:20 vbootstrap/scripts/6_i386.sh:14
  226. #: vbootstrap/scripts/6_i386.sh:17 vbootstrap/scripts/6_i386.sh:20
  227. #: vbootstrap/scripts/6_x86_64.sh:14 vbootstrap/scripts/6_x86_64.sh:17
  228. #: vbootstrap/scripts/6_x86_64.sh:20 vbootstrap/scripts/VineSeed_i386.sh:14
  229. #: vbootstrap/scripts/VineSeed_i386.sh:17
  230. #: vbootstrap/scripts/VineSeed_i386.sh:20
  231. #: vbootstrap/scripts/VineSeed_i386.sh:23
  232. #: vbootstrap/scripts/VineSeed_i386.sh:29
  233. #: vbootstrap/scripts/VineSeed_x86_64.sh:14
  234. #: vbootstrap/scripts/VineSeed_x86_64.sh:17
  235. #: vbootstrap/scripts/VineSeed_x86_64.sh:20
  236. #: vbootstrap/scripts/VineSeed_x86_64.sh:23
  237. #: vbootstrap/scripts/VineSeed_x86_64.sh:29
  238. #: vbootstrap/scripts/VineSeed_ppc.sh:14 vbootstrap/scripts/VineSeed_ppc.sh:17
  239. #: vbootstrap/scripts/VineSeed_ppc.sh:20
  240. msgid "DONE."
  241. msgstr ""
  242. #: vbootstrap/scripts/4.2_i386.sh:15 vbootstrap/scripts/4.2_ppc.sh:15
  243. #: vbootstrap/scripts/5.2_i386.sh:15 vbootstrap/scripts/5.2_x86_64.sh:15
  244. #: vbootstrap/scripts/5.2_ppc.sh:15 vbootstrap/scripts/6_i386.sh:15
  245. #: vbootstrap/scripts/6_x86_64.sh:15 vbootstrap/scripts/VineSeed_i386.sh:18
  246. #: vbootstrap/scripts/VineSeed_x86_64.sh:18
  247. #: vbootstrap/scripts/VineSeed_ppc.sh:15
  248. msgid " updating apt database... "
  249. msgstr ""
  250. #: vbootstrap/scripts/4.2_i386.sh:18 vbootstrap/scripts/4.2_ppc.sh:18
  251. #: vbootstrap/scripts/5.2_i386.sh:18 vbootstrap/scripts/5.2_x86_64.sh:18
  252. #: vbootstrap/scripts/5.2_ppc.sh:18 vbootstrap/scripts/6_i386.sh:18
  253. #: vbootstrap/scripts/6_x86_64.sh:18 vbootstrap/scripts/VineSeed_i386.sh:21
  254. #: vbootstrap/scripts/VineSeed_x86_64.sh:21
  255. #: vbootstrap/scripts/VineSeed_ppc.sh:18
  256. msgid " rebuilding rpm database with chroot rpm... "
  257. msgstr ""
  258. #: vbootstrap/scripts/VineSeed_i386.sh:12
  259. #: vbootstrap/scripts/VineSeed_x86_64.sh:12
  260. msgid " mounting /proc... "
  261. msgstr ""
  262. #. echo $" installing vine-keyring... "
  263. #. chroot $INSTDIR apt-get -qq -y --reinstall install vine-keyring
  264. #. echo $"DONE."
  265. #: vbootstrap/scripts/VineSeed_i386.sh:27
  266. #: vbootstrap/scripts/VineSeed_x86_64.sh:27
  267. msgid " unmounting /proc... "
  268. msgstr ""