Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(L10n) Delivering translations for POT and README files #7

Merged
merged 2 commits into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions locales/ja/puppetlabs-zfs_core.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2018 Puppet, Inc.
# This file is distributed under the same license as the puppetlabs-zfs_core package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
# Translators:
# Erwin Hom <[email protected]>, 2018
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: puppetlabs-zfs_core 1.0.0-5-g43d6225\n"
"\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2018-08-20 08:41-0700\n"
"PO-Revision-Date: 2018-10-24 01:05+0000\n"
"Last-Translator: Erwin Hom <[email protected]>, 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/type/zpool.rb:68
msgid ""
"mirror names must be provided as string separated, not a comma-separated "
"list"
msgstr "ミラー名はカンマ区切りリストではなく、区切られた文字列として指定する必要があります。"

#: ../lib/puppet/type/zpool.rb:81
msgid ""
"raid names must be provided as string separated, not a comma-separated list"
msgstr "レイド名はカンマ区切りリストではなく、区切られた文字列として指定する必要があります。"

#: ../lib/puppet/type/zpool.rb:104
msgid "You cannot specify %{multiple_props} on this type (only one)"
msgstr "このタイプで%{multiple_props}を指定することはできません(1つのみ)。"
65 changes: 65 additions & 0 deletions readmes/README_ja_JP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@

# zfs_core

#### 目次

1. [説明](#description)
2. [セットアップ - zfs_core導入の基本](#setup)
* [zfs_coreモジュールの利用方法](#beginning-with-zfs_core)
3. [使用 - 設定オプションと追加機能](#usage)
4. [参考 - モジュールの機能と動作について](#reference)
5. [制約 - OS互換性など](#limitations)
6. [開発 - モジュール貢献についてのガイド](#development)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


## 説明

zfs_coreモジュールは、zfsリソースおよびzpoolリソースの両方を管理するために使用します。このモジュールはSolarisマシンでしかテストされていませんが、zfsまたはzpoolリソースのあるすべてのマシンで機能するはずです。

## セットアップ

### zfs_coreモジュールの利用方法

ディスク`/ztstpool/dsk`を使用するzpoolリソースを`tstpool`という名前で作成するには、以下のコードを使用します。
```
zpool { 'tstpool':
ensure => present,
disk => '/ztstpool/dsk',
}
```
上で作成したプールに基づくzfsを作成するには、以下のコードを使用します。
```
zfs { 'tstpool/tstfs':
ensure => present,
}
```

## 使用

利用方法の詳細については、[zfs puppetドキュメント](https://puppet.com/docs/puppet/latest/types/zfs.html)および[zpool puppetドキュメント](https://puppet.com/docs/puppet/latest/types/zpool.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形式のコメントから生成されます。このモジュールに関して何らかの開発をする場合は、影響を受ける文書も更新する必要があります。

## 制約

このモジュールは、zfsおよびzpoolの両方を使用できるプラットフォームでのみ使用可能です。

## 開発

Puppet ForgeのPuppet Labsモジュールは、オープンプロジェクトです。プロジェクトをさらに発展させるには、コミュニティへの貢献が不可欠です。Puppetが役立つ可能性のある膨大な数のプラットフォーム、無数のハードウェア、ソフトウェア、デプロイメント構成に我々がアクセスすることはできません。

弊社は、できるだけ変更に貢献しやすくして、弊社のモジュールがユーザの環境で機能する状態を維持したいと考えています。弊社では、状況を把握できるよう、貢献者に従っていただくべきいくつかのガイドラインを設けています。

詳細については、[モジュール貢献ガイド](https://docs.puppetlabs.com/forge/contributing.html)を参照してください。