aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppet.com>2018-11-28 17:45:27 -0800
committerGitHub <noreply@github.com>2018-11-28 17:45:27 -0800
commit569d301af16ad983232a060a5f79b6545e792dc9 (patch)
tree1bef68d243cb94ae5d43c66824f74bb3b0739a38
parent3c4a3cd58b6e6c985dae6ff22e87e48532dfcf5e (diff)
parentaa0a489c5d245ea4672d2c1ad3f6aa57950349f1 (diff)
downloadpuppet-hosts_core-569d301af16ad983232a060a5f79b6545e792dc9.tar.gz
puppet-hosts_core-569d301af16ad983232a060a5f79b6545e792dc9.tar.bz2
Merge pull request #7 from melissa/maint/master/loc-link-fix
Maint/master/loc link fix
-rw-r--r--locales/ja/puppetlabs-host_core.po53
-rw-r--r--readmes/README_ja_JP.md55
2 files changed, 108 insertions, 0 deletions
diff --git a/locales/ja/puppetlabs-host_core.po b/locales/ja/puppetlabs-host_core.po
new file mode 100644
index 0000000..0e32c37
--- /dev/null
+++ b/locales/ja/puppetlabs-host_core.po
@@ -0,0 +1,53 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2018 Puppet, Inc.
+# This file is distributed under the same license as the puppetlabs-host_core package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
+#
+# Translators:
+# Erwin Hom <erwin.hom@puppet.com>, 2018
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: puppetlabs-host_core 1.0.0-2-g10dd80a\n"
+"\n"
+"Report-Msgid-Bugs-To: docs@puppet.com\n"
+"POT-Creation-Date: 2018-08-20 11:22-0700\n"
+"PO-Revision-Date: 2018-10-23 22:50+0000\n"
+"Last-Translator: Erwin Hom <erwin.hom@puppet.com>, 2018\n"
+"Language-Team: Japanese (Japan) (https://www.transifex.com/puppet/teams/41915/ja_JP/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ja_JP\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../lib/puppet/provider/host/parsed.rb:36
+msgid "%{attr} is a required attribute for hosts"
+msgstr "%{attr}はホストの必須属性です。"
+
+#: ../lib/puppet/type/host.rb:30
+msgid "Invalid IP address %{value}"
+msgstr "無効なIPアドレス%{value}"
+
+#: ../lib/puppet/type/host.rb:49
+msgid "Host aliases cannot include whitespace"
+msgstr "ホストの別名に空白を含めることはできません。"
+
+#: ../lib/puppet/type/host.rb:50
+msgid ""
+"Host aliases cannot be an empty string. Use an empty array to delete all "
+"host_aliases "
+msgstr "ホストの別名を空文字列にすることはできません。空配列を使ってすべてのhost_aliasesを削除してください。"
+
+#: ../lib/puppet/type/host.rb:58
+msgid "Comment cannot include newline"
+msgstr "コメントに新しい行を含めることはできません。"
+
+#: ../lib/puppet/type/host.rb:84
+msgid "Invalid host name"
+msgstr "無効なホスト名"
+
+#: ../lib/puppet/type/host.rb:88
+msgid "Hostname cannot include newline"
+msgstr "ホスト名に新しい行を含めることはできません。"
diff --git a/readmes/README_ja_JP.md b/readmes/README_ja_JP.md
new file mode 100644
index 0000000..749e15d
--- /dev/null
+++ b/readmes/README_ja_JP.md
@@ -0,0 +1,55 @@
+
+# host_core
+
+#### 目次
+
+1. [説明](#description)
+2. [使用 - 設定オプションと追加機能](#usage)
+3. [開発 - モジュール貢献についてのガイド](#development)
+
+<a id="description"></a>
+## 説明
+
+host_coreモジュールは、ホストファイル内のホストエントリの管理に用いられます。ほとんどのシステムでは、ホストファイルは`/etc/hosts`にあります。
+
+### host_coreモジュールの利用方法
+
+`host_aliases`のリストを用いて`ip`を解決するための`localhost`ホストエントリを設定するには、以下のコードを使用します。
+
+```
+host { 'localhost':
+ ensure => 'present',
+ host_aliases => ['localhost.localdomain', 'localhost4', 'localhost4.localdomain4'],
+ ip => '127.0.0.1',
+ target => '/etc/hosts',
+}
+```
+
+<a id="usage"></a>
+## 使用
+
+利用方法の詳細については、[host puppetドキュメント](https://puppet.com/docs/puppet/latest/types/host.html)を参照してください。
+
+## リファレンス
+
+リファレンス文書については、REFERENCE.mdを参照してください。
+
+このモジュールは、Puppet Stringsを用いて文書化されています。
+
+Stringsの仕組みの簡単な概要については、Puppet Stringsに関する[こちらのブログ記事](https://puppet.com/blog/using-puppet-strings-generate-great-documentation-puppet-modules)または[README.md](https://github.com/puppetlabs/puppet-strings/blob/master/README.md)を参照してください。
+
+文書をローカルで作成するには、以下のコマンドを実行します。
+```
+bundle install
+bundle exec puppet strings generate ./lib/**/*.rb
+```
+このコマンドにより、閲覧可能な`_index.html`ファイルが`doc`ディレクトリに作成されます。ここで利用可能なリファレンスはすべて、コードベースに埋め込まれたYARD形式のコメントから生成されます。このモジュールに関して何らかの開発をする場合は、影響を受ける文書も更新する必要があります。
+
+<a id="development"></a>
+## 開発
+
+Puppet ForgeのPuppet Labsモジュールは、オープンプロジェクトです。プロジェクトをさらに発展させるには、コミュニティへの貢献が不可欠です。Puppetが役立つ可能性のある膨大な数のプラットフォーム、無数のハードウェア、ソフトウェア、デプロイメント構成に我々がアクセスすることはできません。
+
+弊社は、できるだけ変更に貢献しやすくして、弊社のモジュールがユーザの環境で機能する状態を維持したいと考えています。弊社では、状況を把握できるよう、貢献者に従っていただくべきいくつかのガイドラインを設けています。
+
+詳細については、[モジュール貢献ガイド](https://docs.puppetlabs.com/forge/contributing.html)を参照してください。