rust/doc/po/ja/guide-rustpkg.md.po
2014-01-28 14:52:36 -06:00

113 lines
2.8 KiB
Plaintext

# Japanese translations for Rust package
# Copyright (C) 2014 The Rust Project Developers
# This file is distributed under the same license as the Rust package.
# Automatically generated, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: Rust 0.10-pre\n"
"POT-Creation-Date: 2014-01-13 12:01+0900\n"
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. type: Plain text
#: doc/guide-conditions.md:4 doc/guide-ffi.md:4 doc/guide-lifetimes.md:4
#: doc/guide-macros.md:4 doc/guide-rustpkg.md:4 doc/guide-tasks.md:4
#: doc/rust.md:4 doc/rustpkg.md:4 doc/tutorial.md:4
msgid "# Introduction"
msgstr "# イントロダクション"
#. type: Plain text
#: doc/guide-rustpkg.md:2
#, fuzzy
#| msgid "% The Rust Language Tutorial"
msgid "% The Rust Packaging Guide"
msgstr "% Rust 言語チュートリアル"
#. type: Plain text
#: doc/guide-rustpkg.md:11
#, fuzzy
#| msgid "## Using other crates"
msgid "# Installing External Packages"
msgstr "## 他のクレートの利用"
#. type: Plain text
#: doc/guide-rustpkg.md:22
#, fuzzy, no-wrap
#| msgid "~~~~ {.ignore} // main.rs extern mod world; fn main() { println(~\"hello \" + world::explore()); } ~~~~"
msgid ""
"fn main() {\n"
" hello::world();\n"
"}\n"
"~~~~\n"
msgstr ""
"~~~~ {.ignore}\n"
"// main.rs\n"
"extern mod world;\n"
"fn main() { println(~\"hello \" + world::explore()); }\n"
"~~~~"
#. type: Plain text
#: doc/guide-rustpkg.md:91
#, fuzzy
#| msgid "## Using other crates"
msgid "# Building your own Package"
msgstr "## 他のクレートの利用"
#. type: Plain text
#: doc/guide-rustpkg.md:98
#, fuzzy
#| msgid "## Using other crates"
msgid "## Creating our workspace"
msgstr "## 他のクレートの利用"
#. type: Plain text
#: doc/guide-rustpkg.md:115
#, fuzzy
#| msgid "# Introduction"
msgid "## Installation"
msgstr "# イントロダクション"
#. type: Plain text
#: doc/guide-rustpkg.md:149
#, fuzzy, no-wrap
#| msgid "~~~~ {.ignore} // main.rs extern mod world; fn main() { println(~\"hello \" + world::explore()); } ~~~~"
msgid ""
"pub fn world() {\n"
" println!(\"Hello, world.\");\n"
"}\n"
"~~~\n"
msgstr ""
"~~~~ {.ignore}\n"
"// main.rs\n"
"extern mod world;\n"
"fn main() { println(~\"hello \" + world::explore()); }\n"
"~~~~"
#. type: Plain text
#: doc/guide-rustpkg.md:161
#, fuzzy
#| msgid "## Using other crates"
msgid "## Building your package"
msgstr "## 他のクレートの利用"
#. type: Plain text
#: doc/guide-rustpkg.md:209
#, fuzzy
#| msgid "## Using other crates"
msgid "# Testing your Package"
msgstr "## 他のクレートの利用"
#. type: Plain text
#: doc/guide-rustpkg.md:257
#, fuzzy
#| msgid "## Managed boxes"
msgid "# More resources"
msgstr "## マネージドボックス"