You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/10/16 22:06:19 UTC

svn commit: r1398968 [15/28] - in /incubator/bloodhound/trunk/trac: ./ contrib/ doc/ doc/api/ doc/utils/ sample-plugins/ sample-plugins/permissions/ sample-plugins/workflow/ trac/ trac/admin/ trac/admin/templates/ trac/admin/tests/ trac/db/ trac/db/tes...

Modified: incubator/bloodhound/trunk/trac/trac/locale/ja/LC_MESSAGES/tracini.po
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/trac/trac/locale/ja/LC_MESSAGES/tracini.po?rev=1398968&r1=1398967&r2=1398968&view=diff
==============================================================================
--- incubator/bloodhound/trunk/trac/trac/locale/ja/LC_MESSAGES/tracini.po (original)
+++ incubator/bloodhound/trunk/trac/trac/locale/ja/LC_MESSAGES/tracini.po Tue Oct 16 20:06:09 2012
@@ -1,15 +1,15 @@
 # Japanese translations for Trac.
-# Copyright (C) 2011 Edgewall Software
+# Copyright (C) 2012 Edgewall Software
 # This file is distributed under the same license as the Trac project.
-# FIRST AUTHOR <EM...@ADDRESS>, 2011.
+# Jun Omae <ju...@gmail.com>, 2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Trac 0.13\n"
+"Project-Id-Version: Trac 1.0\n"
 "Report-Msgid-Bugs-To: trac-dev@googlegroups.com\n"
-"POT-Creation-Date: 2012-02-10 02:32+0100\n"
+"POT-Creation-Date: 2012-09-02 08:26+0200\n"
 "PO-Revision-Date: 2011-02-23 22:27+0900\n"
-"Last-Translator: FULL NAME <EM...@ADDRESS>\n"
+"Last-Translator: Jun Omae <ju...@gmail.com>\n"
 "Language-Team: ja <LL...@li.org>\n"
 "Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
@@ -19,7 +19,7 @@ msgstr ""
 
 #: tracopt/mimeview/enscript.py:105
 msgid "Path to the Enscript executable."
-msgstr ""
+msgstr "Enscript 実行ファイルへのパスを指定します。"
 
 #: tracopt/mimeview/enscript.py:108
 msgid ""
@@ -33,10 +33,14 @@ msgid ""
 "quality ratio used by the Enscript render, which is 2\n"
 "(''since 0.10'')."
 msgstr ""
+"Enscript に処理を行わせる MIME タイプを追加します。\n"
+"各々を `mimetype:mode:quality` という組合せで指定します。`mimetype` には MIME タイプ、`mode` "
+"には変換に使う Enscript のモード、`quality` にはその変換処理に対する割合を指定します。\n"
+"また、これは Enscript の描画時に使われるデフォルトの比率2を上書きすることもできます。(''0.10 以降'')"
 
 #: tracopt/mimeview/php.py:67
 msgid "Path to the PHP executable (''since 0.9'')."
-msgstr ""
+msgstr "PHP 実行可能ファイルへのパス (''0.9 以降'')"
 
 #: tracopt/mimeview/silvercity.py:81
 msgid ""
@@ -50,10 +54,58 @@ msgid ""
 "quality ratio used by the SilverCity render, which is 3\n"
 "(''since 0.10'')."
 msgstr ""
+"SilverCity に処理を行わせる MIME タイプを追加します。\n"
+"各々を `mimetype:mode:quality` という組合せで指定します。`mimetype` には MIME タイプ、`mode` "
+"には変換に使う SilverCity のモード、`quality` にはその変換処理に対する割合を指定します。\n"
+"またこれは SilverCity の描画時に使われるデフォルトの比率3を上書きすることもできます。(''0.10 以降'')"
 
-#: tracopt/perm/authz_policy.py:133
+#: tracopt/perm/authz_policy.py:132
 msgid "Location of authz policy configuration file."
+msgstr "authz ポリシーの設定ファイルのパスを指定します。"
+
+#: tracopt/perm/config_perm_provider.py:24
+msgid ""
+"This section provides a way to add arbitrary permissions to a\n"
+"Trac environment. This can be useful for adding new permissions to use\n"
+"for workflow actions, for example.\n"
+"\n"
+"To add new permissions, create a new section `[extra-permissions]` in\n"
+"your `trac.ini`. Every entry in that section defines a meta-permission\n"
+"and a comma-separated list of permissions. For example:\n"
+"{{{\n"
+"[extra-permissions]\n"
+"extra_admin = extra_view, extra_modify, extra_delete\n"
+"}}}\n"
+"This entry will define three new permissions `EXTRA_VIEW`,\n"
+"`EXTRA_MODIFY` and `EXTRA_DELETE`, as well as a meta-permissions\n"
+"`EXTRA_ADMIN` that grants all three permissions.\n"
+"\n"
+"If you don't want a meta-permission, start the meta-name with an\n"
+"underscore (`_`):\n"
+"{{{\n"
+"[extra-permissions]\n"
+"_perms = extra_view, extra_modify\n"
+"}}}"
 msgstr ""
+"このセクションは、Trac "
+"の環境に任意の権限を追加する方法を提供します。例えば、ワークフローのアクションで使う権限を追加するのに利用できます。\n"
+"\n"
+"新しい権限を追加するには、`trac.ini` に `[extra-permissions]` "
+"セクションを作成し、個々の項目ごとにメタ権限とカンマ区切りで権限のリストを定義します。\n"
+"\n"
+"例:\n"
+"{{{\n"
+"[extra-permissions]\n"
+"extra_admin = extra_view, extra_modify, extra_delete\n"
+"}}}\n"
+"この項目では、3つの権限 `EXTRA_VIEW`、`EXTRA_MODIFY`、`EXTRA_DELETE` "
+"および3つの権限すべてを許可したメタ権限 `EXTRA_ADMIN` を定義します。\n"
+"\n"
+"メタ権限が必要でない場合は、名前をアンダースコア (`_`) で始めてください。\n"
+"{{{\n"
+"[extra-permissions]\n"
+"_perms = extra_view, extra_modify\n"
+"}}}"
 
 #: tracopt/ticket/commit_updater.py:107
 msgid ""
@@ -62,10 +114,14 @@ msgid ""
 "Must be empty or contain two characters. For example, if set to \"[]\",\n"
 "then commands must be in the form of [closes #4]."
 msgstr ""
+"コマンドを囲む文字を指定することができます。\n"
+"\n"
+"空にするか、2つの文字にする必要があります。例えば、\"[]\" を設定するとコマンドは [close #4] "
+"という形式にしなければならないようになります。"
 
 #: tracopt/ticket/commit_updater.py:113
 msgid "Commands that close tickets, as a space-separated list."
-msgstr ""
+msgstr "チケットをクローズするコマンド。クローズ対象のチケットは空白区切りにします。"
 
 #: tracopt/ticket/commit_updater.py:117
 msgid ""
@@ -74,6 +130,9 @@ msgid ""
 "If set to the special value <ALL>, all tickets referenced by the\n"
 "message will get a reference to the changeset."
 msgstr ""
+"参照を追加するコマンドを空白区切りで指定します。\n"
+"\n"
+"特別な値である <ALL> を設定した場合、メッセージ中のすべてのチケットに参照を追加します。"
 
 #: tracopt/ticket/commit_updater.py:124
 msgid ""
@@ -83,25 +142,197 @@ msgid ""
 "This requires that the user names be the same for Trac and repository\n"
 "operations."
 msgstr ""
+"コミットした更新者がそのチケットに対して要求の操作を行う権限を持っているかチェックします。\n"
+"\n"
+"これは、Trac とリポジトリとでユーザ名が同じ必要があります。"
 
 #: tracopt/ticket/commit_updater.py:132
 msgid "Send ticket change notification when updating a ticket."
+msgstr "チケットの更新時にチケットの変更通知を送信するかどうかを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:169
+msgid "Enable persistent caching of commit tree."
+msgstr "コミットツリーの永続的なキャッシュを有効にするかどうかを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:172
+msgid "Wrap `GitRepository` in `CachedRepository`."
+msgstr "`GitRepository` を `CachedRepository` でラップするかを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:175
+msgid ""
+"The length at which a sha1 should be abbreviated to (must\n"
+"be >= 4 and <= 40)."
+msgstr "sha1 ハッシュを省略する際の長さを指定します (4~40であること)。"
+
+#: tracopt/versioncontrol/git/git_fs.py:180
+msgid ""
+"The minimum length of an hex-string for which\n"
+"auto-detection as sha1 is performed (must be >= 4 and <= 40)."
+msgstr "sha1 ハッシュを自動的に検出する際における16進文字列の最小長を指定します (4~40であること)。"
+
+#: tracopt/versioncontrol/git/git_fs.py:185
+msgid ""
+"Enable reverse mapping of git email addresses to trac user ids\n"
+"(costly if you have many users)."
+msgstr "git のメールアドレスから Trac ユーザ名への逆マッピングを有効にするかを指定します (ユーザが多い場合には高コストになります)。"
+
+#: tracopt/versioncontrol/git/git_fs.py:189
+msgid ""
+"Use git-committer id instead of git-author id for the\n"
+"changeset ''Author'' field."
+msgstr "チェンジセットの''更新者''項目として git-author id の代わりに git-committer id を使うかどうかを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:194
+msgid ""
+"Use git-committer timestamp instead of git-author timestamp\n"
+"for the changeset ''Timestamp'' field."
+msgstr ""
+"チェンジセットの''日時''項目として git-author timestamp の代わりに git-committer timestamp "
+"を使うかどうかを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:199
+msgid "Define charset encoding of paths within git repositories."
+msgstr "git リポジトリ中のパスに対する文字エンコーディングを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:202
+msgid ""
+"Path to git executable (relative to the Trac configuration folder,\n"
+"so better use an absolute path here)."
+msgstr "git 実行ファイルへのパスを指定します (Trac 設定フォルダに対して相対パスだが絶対パスのほうが望ましい)。"
+
+#: tracopt/versioncontrol/git/git_fs.py:750
+msgid "Path to a gitweb-formatted projects.list"
+msgstr "gitweb 形式の projects.list ファイルへのパスを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:753
+msgid "Path to the base of your git projects"
+msgstr "git プロジェクトのベースディレクトリのパスを指定します。"
+
+#: tracopt/versioncontrol/git/git_fs.py:756
+#, python-format
+msgid ""
+"Template for project URLs. %s will be replaced with the repo\n"
+"name"
+msgstr "プロジェクト URL のテンプレート。%s はリポジトリ名に置換されます。"
+
+#: tracopt/versioncontrol/svn/svn_fs.py:253
+msgid ""
+"Comma separated list of paths categorized as branches.\n"
+"If a path ends with '*', then all the directory entries found below \n"
+"that path will be included. \n"
+"Example: `/trunk, /branches/*, /projectAlpha/trunk, /sandbox/*`"
+msgstr ""
+"ブランチとして分類させるパスをカンマ区切りで指定します。\n"
+"パスが '*' で終わっている場合は、そのパス配下にあるすべてのエントリになります。\n"
+"例: `/trunk, /branches/*, /projectAlpha/trunk, /sandbox/*`"
+
+#: tracopt/versioncontrol/svn/svn_fs.py:260
+msgid ""
+"Comma separated list of paths categorized as tags.\n"
+"\n"
+"If a path ends with '*', then all the directory entries found below\n"
+"that path will be included.\n"
+"Example: `/tags/*, /projectAlpha/tags/A-1.0, /projectAlpha/tags/A-v1.1`"
 msgstr ""
+"タグとして分類させるパスをカンマ区切りで指定します。\n"
+"\n"
+"パスが '*' で終わっている場合は、そのパス配下にあるすべてのエントリになります。\n"
+"例: `/tags/*, /projectAlpha/tags/A-1.0, /projectAlpha/tags/A-v1.1`"
 
-#: trac/attachment.py:386
+#: tracopt/versioncontrol/svn/svn_prop.py:37
+msgid ""
+"The TracBrowser for Subversion can interpret the `svn:externals`\n"
+"property of folders. By default, it only turns the URLs into links as\n"
+"Trac can't browse remote repositories.\n"
+"\n"
+"However, if you have another Trac instance (or an other repository\n"
+"browser like [http://www.viewvc.org/ ViewVC]) configured to browse the\n"
+"target repository, then you can instruct Trac which other repository\n"
+"browser to use for which external URL. This mapping is done in the\n"
+"`[svn:externals]` section of the TracIni.\n"
+"\n"
+"Example:\n"
+"{{{\n"
+"[svn:externals]\n"
+"1 = svn://server/repos1                       "
+"http://trac/proj1/browser/$path?rev=$rev\n"
+"2 = svn://server/repos2                       "
+"http://trac/proj2/browser/$path?rev=$rev\n"
+"3 = http://theirserver.org/svn/eng-soft       "
+"http://ourserver/viewvc/svn/$path/?pathrev=25914\n"
+"4 = svn://anotherserver.com/tools_repository  "
+"http://ourserver/tracs/tools/browser/$path?rev=$rev\n"
+"}}}\n"
+"With the above, the\n"
+"`svn://anotherserver.com/tools_repository/tags/1.1/tools` external will\n"
+"be mapped to `http://ourserver/tracs/tools/browser/tags/1.1/tools?rev=`\n"
+"(and `rev` will be set to the appropriate revision number if the\n"
+"external additionally specifies a revision, see the\n"
+"[http://svnbook.red-bean.com/en/1.4/svn.advanced.externals.html SVN Book "
+"on externals]\n"
+"for more details).\n"
+"\n"
+"Note that the number used as a key in the above section is purely used\n"
+"as a place holder, as the URLs themselves can't be used as a key due to\n"
+"various limitations in the configuration file parser.\n"
+"\n"
+"Finally, the relative URLs introduced in\n"
+"[http://subversion.apache.org/docs/release-notes/1.5.html#externals "
+"Subversion 1.5]\n"
+"are not yet supported.\n"
+"\n"
+"(''since 0.11'')"
+msgstr ""
+"Subversion に対する TracBrowser はフォルダの `svn:externals` "
+"プロパティを解釈できるようになっています。Trac はリモートにあるリポジトリを参照できないため、デフォルトでは単に URL "
+"をリンクに変換するだけです。\n"
+"\n"
+"しかし、対象のリポジトリを参照できるようにしている Trac (または [http://www.viewvc.org/ ViewVC] "
+"などのリポジトリブラウザ) がある場合は、外部参照の URL に対してそのリポジトリブラウザを使うように設定することができます。このマッピングは "
+"TracIni の `[svn:externals]` セクションで行います。\n"
+"\n"
+"例:\n"
+"{{{\n"
+"[svn:externals]\n"
+"1 = svn://server/repos1                       "
+"http://trac/proj1/browser/$path?rev=$rev\n"
+"2 = svn://server/repos2                       "
+"http://trac/proj2/browser/$path?rev=$rev\n"
+"3 = http://theirserver.org/svn/eng-soft       "
+"http://ourserver/viewvc/svn/$path/?pathrev=25914\n"
+"4 = svn://anotherserver.com/tools_repository  "
+"http://ourserver/tracs/tools/browser/$path?rev=$rev\n"
+"}}}\n"
+"上記では、外部参照 `svn://anotherserver.com/tools_repository/tags/1.1/tools` を "
+"`http://ourserver/tracs/tools/browser/tags/1.1/tools?rev=` "
+"にマッピングするようになります。(また外部参照がリビジョン番号を指定している場合 `rev` にはリビジョン番号が割り当てられます。詳細は "
+"[http://svnbook.red-bean.com/en/1.4/svn.advanced.externals.html SVN Book "
+"on externals] を参照してください)。\n"
+"\n"
+"注意事項として、設定ファイルのパーサーの制限により URL "
+"自体をキーにすることができないため、上記セクションのキーに単なるプレースホルダとして数字を使っています。\n"
+"\n"
+"最後に、[http://subversion.apache.org/docs/release-notes/1.5.html#externals "
+"Subversion 1.5] から導入された相対 URL はまだサポートしていません。\n"
+"\n"
+"(''0.11 以降'')"
+
+#: trac/attachment.py:429
 msgid ""
 "Maximum allowed file size (in bytes) for ticket and wiki \n"
 "attachments."
-msgstr ""
+msgstr "チケットと Wiki の添付ファイルの上限サイズを指定します (バイト単位)"
 
-#: trac/attachment.py:390
+#: trac/attachment.py:433
 msgid ""
 "Maximum allowed total size (in bytes) for an attachment list to be\n"
 "downloadable as a `.zip`. Set this to -1 to disable download as `.zip`.\n"
-"(''since 0.13'')"
+"(''since 1.0'')"
 msgstr ""
+"`.zip` ダウンロードを許可する合計に対する上限サイズ (バイト単位) です。-1 を指定した場合は `.zip` "
+"でのダウンロード機能を無効にします。(''1.0 以降'')"
 
-#: trac/attachment.py:395
+#: trac/attachment.py:438
 msgid ""
 "Whether attachments should be rendered in the browser, or\n"
 "only made downloadable.\n"
@@ -113,8 +344,14 @@ msgid ""
 "For public sites where anonymous users can create attachments it is\n"
 "recommended to leave this option disabled (which is the default)."
 msgstr ""
+"添付ファイルをブラウザ上で表示するか、単にダウンロード可能にしておくかどうかを指定します。\n"
+"\n"
+"ブラウザはほとんどのファイルを HTML "
+"として解釈するため、悪意のあるユーザにクロスサイトスクリプティング攻撃を行うファイルの作成を許すことになります。\n"
+"\n"
+"匿名ユーザが添付ファイルを作成できるような公開サイトでは、このオプションを無効 (これがデフォルトです) のままにしておくことを推奨します。"
 
-#: trac/env.py:105
+#: trac/env.py:121
 msgid ""
 "This section is used to enable or disable components\n"
 "provided by plugins, as well as by Trac itself. The component\n"
@@ -149,8 +386,32 @@ msgid ""
 "\n"
 "See also: TracPlugins"
 msgstr ""
+"このセクションは、プラグインが提供するコンポーネント、および、Trac "
+"自身のコンポーネントを有効または無効にするのに使います。有効/無効にするコンポーネントは、オプションの名前で特定します。オプションの値で有効なのかどうかを決定します。値を"
+" `enabled` または `on` に設定するとそのコンポーネントは有効になります。その他の値 (通常は `disabled` または "
+"`off`) だとそのコンポーネントは無効になります。\n"
+"\n"
+"オプション名は、コンポーネントの完全修飾名、または、コンポーネントに対するモジュール/パッケージのプレフィックスのどちらかです。前者は特定のコンポーネントを有効/無効にし、後者は特定のパッケージ/モジュールのコンポーネントを有効/無効にします。"
+"\n"
+"\n"
+"次にあげる設定 (抜粋) を考えてみます。\n"
+"{{{\n"
+"[components]\n"
+"trac.ticket.report.ReportModule = disabled\n"
+"webadmin.* = enabled\n"
+"}}}\n"
+"\n"
+"1つ目のオプションは、[wiki:TracReports レポートモジュール]を無効にするように指定しています。\n"
+"2つ目のオプションは、`webadmin` "
+"パッケージのすべてのコンポーネントを有効にするように指定しています。注意することは、末尾のワイルドカードはモジュール/パッケージにマッチさせるのに必要であることです。"
+"\n"
+"\n"
+"アクティブなコンポーネントの一覧を参照するには、''Trac について''の''プラグイン''ページにアクセスします (`CONFIG_VIEW`"
+" [wiki:TracPermissions 権限]が必要です)。\n"
+"\n"
+"関連項目: TracPlugins"
 
-#: trac/env.py:140
+#: trac/env.py:156
 msgid ""
 "Path to the //shared plugins directory//.\n"
 "\n"
@@ -160,8 +421,13 @@ msgid ""
 "\n"
 "(''since 0.11'')"
 msgstr ""
+"//共有させるプラグインディレクトリ//へのパスを指定します。\n"
+"\n"
+"このディレクトリのプラグインは、この環境にある `plugins` ディレクトリのものに加えて、優先してロードします。\n"
+"\n"
+"(''0.11 以降'')"
 
-#: trac/env.py:149
+#: trac/env.py:165
 msgid ""
 "Reference URL for the Trac deployment.\n"
 "\n"
@@ -170,8 +436,12 @@ msgid ""
 "context, like for example when inserting URLs pointing to Trac\n"
 "resources in notification e-mails."
 msgstr ""
+"Trac の展開先を指す URL を指定します。\n"
+"\n"
+"これは Web アクセスではないところからドキュメントを提示する場合に使用するベース URL です。例えば、通知メールで Trac "
+"のリソースを指し示す URL を入れる場合などです。"
 
-#: trac/env.py:157
+#: trac/env.py:173
 msgid ""
 "Optionally use `[trac] base_url` for redirects.\n"
 "\n"
@@ -183,8 +453,13 @@ msgid ""
 "environment will only be usable when accessible from that URL,\n"
 "as redirects are frequently used. ''(since 0.10.5)''"
 msgstr ""
+"`[trac] base_url` の設定値をリダイレクトに使用するかどうかを指定します。\n"
+"\n"
+"HTTP プロキシの背後で Trac を実行するような環境では、アクセスに使用した URL を自動で再構成することはできません。強制的に "
+"`base_url` 設定値にリダイレクトさせるこのオプションを設定しなければいけないかも知れません。これにより、リダイレクトに使われるこの "
+"URL からだけこの環境を利用できるような制限が設けられます。''(0.10.5 以降)''"
 
-#: trac/env.py:169
+#: trac/env.py:185
 msgid ""
 "Restrict cookies to HTTPS connections.\n"
 "\n"
@@ -193,27 +468,31 @@ msgid ""
 "your Trac instance is only accessible through HTTPS. (''since\n"
 "0.11.2'')"
 msgstr ""
+"HTTPS 接続でのみ Cookie を使用するかどうかを指定します。\n"
+"\n"
+"true に設定すると、すべての Cookie に `secure` フラグを設定することでサーバへ HTTPS 接続でのみ Cookie "
+"を送信するようにします。Trac を HTTPS 経由でだけアクセス可能にする場合、これを指定します。(''0.11.2 以降'')"
 
-#: trac/env.py:177
+#: trac/env.py:193
 msgid "Name of the project."
-msgstr ""
+msgstr "プロジェクトの名前を指定します。"
 
-#: trac/env.py:180
+#: trac/env.py:196
 msgid "Short description of the project."
-msgstr ""
+msgstr "プロジェクトの概要を指定します。"
 
-#: trac/env.py:183
+#: trac/env.py:199
 msgid ""
 "URL of the main project web site, usually the website in\n"
 "which the `base_url` resides. This is used in notification\n"
 "e-mails."
-msgstr ""
+msgstr "プロジェクトに対するメインの Web サイトの URL を指定します。通常は `base_url` のサイトにあります。通知メールでこれを使います。"
 
-#: trac/env.py:188
+#: trac/env.py:204
 msgid "E-Mail address of the project's administrator."
-msgstr ""
+msgstr "プロジェクト管理者のメールアドレスを指定します。"
 
-#: trac/env.py:191
+#: trac/env.py:207
 msgid ""
 "Base URL of a Trac instance where errors in this Trac\n"
 "should be reported.\n"
@@ -222,37 +501,49 @@ msgid ""
 "this Trac instance. An empty value will disable the reporting\n"
 "buttons.  (''since 0.11.3'')"
 msgstr ""
+"この Trac で発生したエラーの報告先になる Trac サイトのベース URL を指定します。\n"
+"\n"
+"これには、完全 URL または相対 URL、もしくはこの Trac を指す '.' "
+"を指定できます。空の値にすると報告用のボタンは使えなくなります。 (''0.11.3 以降'')"
 
-#: trac/env.py:200
+#: trac/env.py:216
 msgid "Page footer text (right-aligned)."
-msgstr ""
+msgstr "ページフッタのテキストを指定します (右揃え)。"
 
-#: trac/env.py:205
+#: trac/env.py:221
 msgid "URL of the icon of the project."
-msgstr ""
+msgstr "プロジェクトアイコンの URL を指定します。"
 
-#: trac/env.py:208
+#: trac/env.py:224
 msgid ""
 "Logging facility to use.\n"
 "\n"
 "Should be one of (`none`, `file`, `stderr`, `syslog`, `winlog`)."
 msgstr ""
+"ロギングに使用する出力先を指定します。\n"
+"\n"
+"(`none`, `file`, `stderr`, `syslog`, `winlog`) のうちのどれかを指定します。"
 
-#: trac/env.py:213
+#: trac/env.py:229
 msgid ""
 "If `log_type` is `file`, this should be a path to the\n"
 "log-file.  Relative paths are resolved relative to the `log`\n"
 "directory of the environment."
 msgstr ""
+"`log_type` が `file` の場合、ログファイルのパスを指定します。相対パスは、Trac 環境にある `log` "
+"ディレクトリから相対的に解釈します。"
 
-#: trac/env.py:218
+#: trac/env.py:234
 msgid ""
 "Level of verbosity in log.\n"
 "\n"
 "Should be one of (`CRITICAL`, `ERROR`, `WARN`, `INFO`, `DEBUG`)."
 msgstr ""
+"ログレベルを指定します。\n"
+"\n"
+"(`CRITICAL`, `ERROR`, `WARN`, `INFO`, `DEBUG`) のうちのどれかを指定します。"
 
-#: trac/env.py:223
+#: trac/env.py:239
 msgid ""
 "Custom logging format.\n"
 "\n"
@@ -263,9 +554,10 @@ msgid ""
 "In addition to regular key names supported by the Python\n"
 "logger library (see\n"
 "http://docs.python.org/library/logging.html), one could use:\n"
-" - $(path)s     the path for the current environment\n"
-" - $(basename)s the last path component of the current environment\n"
-" - $(project)s  the project name\n"
+"\n"
+"- $(path)s     the path for the current environment\n"
+"- $(basename)s the last path component of the current environment\n"
+"- $(project)s  the project name\n"
 "\n"
 "Note the usage of `$(...)s` instead of `%(...)s` as the latter form\n"
 "would be interpreted by the ConfigParser itself.\n"
@@ -275,6 +567,27 @@ msgid ""
 "\n"
 "''(since 0.10.5)''"
 msgstr ""
+"ログフォーマットを指定します。\n"
+"\n"
+"何も設定しない場合は、以下のものを使用します。\n"
+"\n"
+"Trac[$(module)s] $(levelname)s: $(message)s\n"
+"\n"
+"Python logging ライブラリ (http://docs.python.org/library/logging.html 参照) "
+"がサポートしている標準のキー名に加えて、使えるものがあります。\n"
+"\n"
+"- $(path)s     現在の Trac 環境のパス\n"
+"- $(basename)s 現在の Trac 環境のパスのベース名\n"
+"- $(project)s  プロジェクト名\n"
+"\n"
+"`%(...)s` の代わりに `$(...)s` を使っていることに注意してください。後者の形式は "
+"[http://docs.python.org/library/configparser.html ConfigParser] "
+"自身が解釈を行います。\n"
+"\n"
+"例:\n"
+"`($(thread)d) Trac[$(basename)s:$(module)s] $(levelname)s: $(message)s`\n"
+"\n"
+"''(0.10.5 以降)''"
 
 #: trac/notification.py:49
 msgid ""
@@ -285,58 +598,63 @@ msgid ""
 "server, and `SendmailEmailSender` for running a `sendmail`-compatible\n"
 "executable. (''since 0.12'')"
 msgstr ""
+"`IEmailSender` を実装しているコンポーネントの名前を指定します。\n"
+"\n"
+"このコンポーネントは、メール送信による通知処理で使います。Trac は今のところ SMTP サーバと接続を行う `SmtpEmailSender`"
+" と `sendmail` と互換性のあるコマンドを実行する `SendmailEmailSender` を用意しています。(''0.12 "
+"以降'')"
 
 #: trac/notification.py:58
 msgid "Enable email notification."
-msgstr ""
+msgstr "メール通知機能を有効にするかどうかを指定します。"
 
 #: trac/notification.py:61
 msgid "Sender address to use in notification emails."
-msgstr ""
+msgstr "通知メールに使用する送信者アドレスを指定します。"
 
 #: trac/notification.py:64
 msgid "Sender name to use in notification emails."
-msgstr ""
+msgstr "通知メールに使用する送信者名を指定します。"
 
 #: trac/notification.py:67
 msgid ""
 "Use the action author as the sender of notification emails.\n"
-"(''since 0.13'')"
-msgstr ""
+"(''since 1.0'')"
+msgstr "通知メールの送信者として実行者の名前を使うかどうかを指定します。(''1.0 以降'')"
 
 #: trac/notification.py:71
 msgid "Reply-To address to use in notification emails."
-msgstr ""
+msgstr "通知メールに使用する返信先アドレスを指定します。"
 
 #: trac/notification.py:74
 msgid ""
 "Email address(es) to always send notifications to,\n"
 "addresses can be seen by all recipients (Cc:)."
-msgstr ""
+msgstr "メールアドレスがすべての受信者から見えるように常に通知を送信するかどうかを指定します (Cc:)。"
 
 #: trac/notification.py:78
 msgid ""
 "Email address(es) to always send notifications to,\n"
 "addresses do not appear publicly (Bcc:). (''since 0.10'')"
-msgstr ""
+msgstr "メールアドレスが公開状態で現れないように常に通知を送信するかどうかを指定します (Bcc:)。(''0.10 以降'')"
 
 #: trac/notification.py:82
 msgid ""
 "Default host/domain to append to address that do not specify\n"
 "one."
-msgstr ""
+msgstr "ドメインがないアドレスに付加するデフォルトのホスト名/ドメイン名を指定します。"
 
 #: trac/notification.py:86
 msgid ""
 "Comma-separated list of domains that should not be considered\n"
 "part of email addresses (for usernames with Kerberos domains)."
-msgstr ""
+msgstr "メールアドレスだと判定させたくないドメイン名をカンマ区切りで指定します。(Kerberos ドメイン付きのユーザ名のため)"
 
 #: trac/notification.py:90
 msgid ""
 "Comma-separated list of domains that should be considered as\n"
 "valid for email addresses (such as localdomain)."
-msgstr ""
+msgstr "メールアドレス (localdomain のような) として有効だと判定させたいドメイン名をカンマ区切りで指定します。"
 
 #: trac/notification.py:94
 msgid ""
@@ -347,6 +665,10 @@ msgid ""
 "be sent as 7bit if the content is all ASCII, or 8bit otherwise.\n"
 "(''since 0.10'')"
 msgstr ""
+"メールの MIME エンコーディングを指定します。\n"
+"\n"
+"有効な設定は、Base64 エンコーディングの `base64`、Quoted-Printable の `qp`、エンコーディングなしの "
+"`none` で内容がすべて ASCII コードなら 7bit、そうでないなら 8bit として送信します。(''0.10 以降'')"
 
 #: trac/notification.py:102
 msgid ""
@@ -355,6 +677,9 @@ msgid ""
 "If this option is disabled (the default), recipients are put on BCC.\n"
 "(''since 0.10'')"
 msgstr ""
+"受信者アドレスを Cc で他の更新者から見えるようにするかどうかを指定します。\n"
+"\n"
+"このオプションに無効 (デフォルト) を設定している場合、受信者アドレスは Bcc に列挙します。(''0.10 以降'')"
 
 #: trac/notification.py:108
 msgid ""
@@ -363,6 +688,9 @@ msgid ""
 "The SMTP server should accept those addresses, and either append\n"
 "a FQDN or use local delivery. (''since 0.10'')"
 msgstr ""
+"ホスト名/ドメイン名なし (つまりユーザ名のみ) のメールアドレスを許可するかどうかを指定します。\n"
+"\n"
+"SMTP サーバはそれらのアドレスを受け入れて、FQDN を追加する、またはローカル配送のどちらかを行うべきです。(''0.10 以降'')"
 
 #: trac/notification.py:114
 msgid ""
@@ -372,26 +700,30 @@ msgid ""
 "If no prefix is desired, then specifying an empty option \n"
 "will disable it. (''since 0.10.1'')"
 msgstr ""
+"通知メールの件名の先頭に追加するテキストを指定します。\n"
+"\n"
+"設定が定義されていない場合は、[$project_name] プレフィックスとなります。\n"
+"プレフィックスが必要ない場合は、空を指定すると無効になります。(''0.10.1 以降'')"
 
 #: trac/notification.py:132
 msgid "SMTP server hostname to use for email notifications."
-msgstr ""
+msgstr "メール通知に使用する SMTP サーバのホスト名を指定します。"
 
 #: trac/notification.py:135
 msgid "SMTP server port to use for email notification."
-msgstr ""
+msgstr "メール通知に使用する SMTP サーバのポート番号を指定します。"
 
 #: trac/notification.py:138
 msgid "Username for SMTP server. (''since 0.9'')"
-msgstr ""
+msgstr "SMTP サーバのユーザ名を指定します。(''0.9 以降'')"
 
 #: trac/notification.py:141
 msgid "Password for SMTP server. (''since 0.9'')"
-msgstr ""
+msgstr "SMTP サーバのパスワードを指定します。(''0.9 以降'')"
 
 #: trac/notification.py:144
 msgid "Use SSL/TLS to send notifications over SMTP. (''since 0.10'')"
-msgstr ""
+msgstr "SMTP 接続により通知を送信する際に SSL/TLS を使用するかどうかを指定します。(''0.10 以降'')"
 
 #: trac/notification.py:188
 msgid ""
@@ -400,14 +732,17 @@ msgid ""
 "The sendmail program must accept the `-i` and `-f` options.\n"
 " (''since 0.12'')"
 msgstr ""
+"sendmail 実行ファイルへのパスを指定します。\n"
+"\n"
+"sendmail プログラムは `-i` と `-f` オプションを受け付ける必要があります。(''0.12 以降'')"
 
-#: trac/perm.py:300
+#: trac/perm.py:312
 msgid ""
 "Name of the component implementing `IPermissionStore`, which is used\n"
 "for managing user and group permissions."
-msgstr ""
+msgstr "`IPermissionStore` を実装しているコンポーネントの名前を指定します。これはユーザとグループの権限を管理するのに使います。"
 
-#: trac/perm.py:305
+#: trac/perm.py:317
 msgid ""
 "List of components implementing `IPermissionPolicy`, in the order in\n"
 "which they will be applied. These components manage fine-grained access\n"
@@ -416,6 +751,10 @@ msgid ""
 "LegacyAttachmentPolicy (map ATTACHMENT_* permissions to realm specific\n"
 "ones)"
 msgstr ""
+"適用する順番で `IPermissionPolicy` を実装しているコンポーネントのリストを指定します。それらのコンポーネントは Trac "
+"のソリースに対して細かい粒度のアクセス制御を行います。\n"
+"`DefaultPermissionPolicy` (0.11 以前の挙動) と `LegacyAttachmentPolicy` "
+"(ATTACHMENT_* 権限を個々のレルムの権限にマッピング) がデフォルトです。"
 
 #: trac/db/api.py:216
 msgid ""
@@ -423,66 +762,83 @@ msgid ""
 "[wiki:TracEnvironment#DatabaseConnectionStrings string] for this\n"
 "project"
 msgstr ""
+"このプロジェクトのデータベース接続[wiki:TracEnvironment#DatabaseConnectionStrings "
+"文字列]を指定します。"
 
 #: trac/db/api.py:221
 msgid "Database backup location"
-msgstr ""
+msgstr "データベースバックアップの場所を指定します。"
 
 #: trac/db/api.py:224
 msgid ""
 "Timeout value for database connection, in seconds.\n"
 "Use '0' to specify ''no timeout''. ''(Since 0.11)''"
 msgstr ""
+"データベース接続のタイムアウトを秒単位で指定します。\n"
+"''タイムアウトなし''を指定するには '0' を使います。''(0.11 以降)''"
 
 #: trac/db/api.py:228
 msgid ""
 "Show the SQL queries in the Trac log, at DEBUG level.\n"
 "''(Since 0.11.5)''"
-msgstr ""
+msgstr "DEBUG レベルのときに SQL クエリをログに表示するかどうかを指定します。''(0.11.5 以降)''"
 
 #: trac/db/mysql_backend.py:78
 msgid "Location of mysqldump for MySQL database backups"
-msgstr ""
+msgstr "MySQL データベースのバックアップに使う mysqldump の場所を指定します。"
 
 #: trac/db/postgres_backend.py:72
 msgid "Location of pg_dump for Postgres database backups"
-msgstr ""
+msgstr "Postgres データベースのバックアップに使う pg_dump の場所を指定します。"
 
 #: trac/db/sqlite_backend.py:143
 msgid ""
 "Paths to sqlite extensions, relative to Trac environment's\n"
 "directory or absolute. (''since 0.12'')"
-msgstr ""
+msgstr "SQLite 拡張のパスを Trac 環境ディレクトリからの相対パス、または、絶対パスで指定します。(''0.12 以降'')"
 
-#: trac/mimeview/api.py:590
+#: trac/mimeview/api.py:613
 msgid "Charset to be used when in doubt."
-msgstr ""
+msgstr "文字コードが不明な場合に使用する文字コードを指定します。"
 
-#: trac/mimeview/api.py:593
+#: trac/mimeview/api.py:616
 msgid "Displayed tab width in file preview. (''since 0.9'')"
-msgstr ""
+msgstr "ファイルのプレビューで表示するタブの幅を指定します。(''0.9 以降'')"
 
-#: trac/mimeview/api.py:596
+#: trac/mimeview/api.py:619
 msgid "Maximum file size for HTML preview. (''since 0.9'')"
-msgstr ""
+msgstr "HTML プレビューするファイルの上限サイズを指定します。(''0.9 以降'')"
 
-#: trac/mimeview/api.py:599
+#: trac/mimeview/api.py:622
 msgid ""
 "List of additional MIME types and keyword mappings.\n"
 "Mappings are comma-separated, and for each MIME type,\n"
 "there's a colon (\":\") separated list of associated keywords\n"
 "or file extensions. (''since 0.10'')"
 msgstr ""
+"追加する MIME タイプとキーワードのマッピングのリストを指定します。\n"
+"マッピングはカンマ区切りで、MIME タイプごとに関連するキーワードまたはファイル拡張子のコロン区切り (\":\") "
+"のリストを持ちます。(''0.10 以降'')"
 
-#: trac/mimeview/api.py:606
+#: trac/mimeview/api.py:629
+msgid ""
+"List of additional MIME types associated to filename patterns.\n"
+"Mappings are comma-separated, and each mapping consists of a MIME type\n"
+"and a Python regexp used for matching filenames, separated by a colon\n"
+"(\":\"). (''since 1.0'')"
+msgstr ""
+"追加する MIME タイプとそれに対応させるファイルパターンを指定します。マッピングはカンマ区切りで、マッピングごとに MIME "
+"タイプとファイルマッチングに使う Python 正規表現をコロン (`:`) で区切るようにします。(''1.0 以降'')"
+
+#: trac/mimeview/api.py:636
 msgid ""
 "Comma-separated list of MIME types that should be treated as\n"
 "binary data. (''since 0.11.5'')"
-msgstr ""
+msgstr "バイナリデータとして扱わせる MIME タイプをカンマ区切りで指定します。(''0.11.5 以降'')"
 
 #: trac/mimeview/pygments.py:50
 msgid "The default style to use for Pygments syntax highlighting."
-msgstr ""
+msgstr "Pygments のシンタックスハイライトに使用するデフォルトのスタイルを指定します。"
 
 #: trac/mimeview/pygments.py:53
 msgid ""
@@ -496,10 +852,15 @@ msgid ""
 "to override the default quality ratio used by the\n"
 "Pygments render."
 msgstr ""
+"Pygments が処理できる追加の MIME タイプを指定します。\n"
+"\n"
+"各々を `mimetype:mode:quality` という組合せで指定します。`mimetype` には MIME タイプ、`mode` "
+"には変換に使う Pygments のモード、`quality` にはその変換処理に対する割合を指定します。またこれは Pygments "
+"の描画時に使われるデフォルトの比率を上書きすることもできます。"
 
 #: trac/search/web_ui.py:49
 msgid "Minimum length of query string allowed when performing a search."
-msgstr ""
+msgstr "検索の実行を許可する検索文字列の最小の長さを指定します。"
 
 #: trac/search/web_ui.py:52
 msgid ""
@@ -514,26 +875,24 @@ msgid ""
 "be manually enabled by the user on the search page.\n"
 "(since 0.12)"
 msgstr ""
-
-#: trac/tests/config.py:195
-msgid "b"
-msgstr ""
-
-#: trac/tests/config.py:297
-msgid "Doc for c"
-msgstr ""
+"検索ページのフィルタをデフォルトで無効にするものを指定します。クイック検索機能のフィルタにも適用します。デフォルトのコンポーネントが定義しているフィルタ名は"
+" `wiki`、`ticket`、`milestone`、`changeset` です。プラグインについては、ISearchSource "
+"インターフェイスの実装を探してください。`get_search_method()` "
+"メソッドが返すタプルの最初の要素になります。無効にしても、検索ページでユーザが手動でフィルタを有効にすることができます。(0.12 以降)"
 
 #: trac/ticket/api.py:166
 msgid ""
 "In this section, you can define additional fields for tickets. See\n"
 "TracTicketsCustomFields for more details."
 msgstr ""
+"このセクションでは、チケットに追加したいフィールドを定義することができます。詳細については TracTicketsCustomFields "
+"を参照してください。"
 
 #: trac/ticket/api.py:170
 msgid ""
 "Ordered list of workflow controllers to use for ticket actions\n"
 "(''since 0.11'')."
-msgstr ""
+msgstr "チケットのアクションに使用するワークフローコントローラを順番に指定します。(''0.11 以降'')"
 
 #: trac/ticket/api.py:176
 msgid ""
@@ -547,56 +906,63 @@ msgid ""
 "e-mail addresses must remain protected.\n"
 "(''since 0.9'')"
 msgstr ""
+"チケットの担当者フィールドにドロップダウンメニューを使うようになります。\n"
+"このオプションを有効にする前にパフォーマンスに対する影響を把握するようにしてください。[TracTickets#Assign-toasDrop-"
+"DownList ドロップダウンで担当振り分け]を参照。\n"
+"\n"
+"ドロップダウンメニュー中ではメールアドレスを隠せ'''ない'''ことに注意してください。そのため、メールアドレスを保護したままにしないといけない場合には、このオプションを使用するべきではありません。"
+"\n"
+"(''0.9 以降'')"
 
 #: trac/ticket/api.py:187
 msgid "Default version for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトのバージョンを指定します。"
 
 #: trac/ticket/api.py:190
 msgid "Default type for newly created tickets (''since 0.9'')."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの分類を指定します。(''0.9 以降'')"
 
 #: trac/ticket/api.py:193
 msgid "Default priority for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの優先度を指定します。"
 
 #: trac/ticket/api.py:196
 msgid "Default milestone for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトのマイルストーンを指定します。"
 
 #: trac/ticket/api.py:199
 msgid "Default component for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトのコンポーネントを指定します。"
 
 #: trac/ticket/api.py:202
 msgid "Default severity for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの重要度を指定します。"
 
 #: trac/ticket/api.py:205
 msgid "Default summary (title) for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの概要 (タイトル) を指定します。"
 
 #: trac/ticket/api.py:208
 msgid "Default description for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの詳細を指定します。"
 
 #: trac/ticket/api.py:211
 msgid "Default keywords for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトのキーワードを指定します。"
 
 #: trac/ticket/api.py:214
 msgid "Default owner for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの担当者を指定します。"
 
 #: trac/ticket/api.py:217
 msgid "Default cc: list for newly created tickets."
-msgstr ""
+msgstr "新規登録チケットに対するデフォルトの関係者を指定します。"
 
 #: trac/ticket/api.py:220
 msgid ""
 "Default resolution for resolving (closing) tickets\n"
 "(''since 0.11'')."
-msgstr ""
+msgstr "解決 (クローズ) になるチケットに対するデフォルトの解決方法を指定します (''0.11 以降'')。"
 
 #: trac/ticket/default_workflow.py:105
 msgid ""
@@ -607,22 +973,28 @@ msgid ""
 "\n"
 "(''since 0.11'')"
 msgstr ""
+"チケットのワークフローはプラグインで制御します。デフォルトで制御しているのは `ConfigurableTicketWorkflow` "
+"コンポーネントのみです。\n"
+"そのコンポーネントは `trac.ini` ファイルのこのセクションでワークフローを設定するようになっています。詳細については "
+"TracWorkflow を参照してください。\n"
+"\n"
+"(''0.11 以降'')"
 
 #: trac/ticket/notification.py:36
 msgid "Always send notifications to the ticket owner (''since 0.9'')."
-msgstr ""
+msgstr "常にチケット担当者に通知を送信するかどうかを指定します。('' 0.9 以降'')"
 
 #: trac/ticket/notification.py:40
 msgid ""
 "Always send notifications to any address in the ''reporter''\n"
 "field."
-msgstr ""
+msgstr "常に''報告者''フィールドにあるアドレスに通知を送信するかどうかを指定します。"
 
 #: trac/ticket/notification.py:46
 msgid ""
 "Always send notifications to the person who causes the ticket \n"
 "property change and to any previous updater of that ticket."
-msgstr ""
+msgstr "チケットを変更した人とこれまでにそのチケットを変更した人に常に通知を送信するかどうかを指定します。"
 
 #: trac/ticket/notification.py:51
 msgid ""
@@ -632,9 +1004,25 @@ msgid ""
 "`$prefix` being the value of the `smtp_subject_prefix` option.\n"
 "''(since 0.11)''"
 msgstr ""
+"通知メールの件名を生成するのに使う Genshi テキストテンプレートを指定します。\n"
+"\n"
+"デフォルトでは、件名のテンプレートは `$prefix #$ticket.id: $summary` です。\n"
+"`$prefix` は `smtp_subject_prefix` の設定値になります。\n"
+"''(0.11 以降)''"
 
 #: trac/ticket/notification.py:59
 msgid ""
+"Like ticket_subject_template but for batch modifications.\n"
+"\n"
+"By default, the template is `$prefix Batch modify: $tickets_descr`.\n"
+"''(since 1.0)''"
+msgstr ""
+"ticket_subject_template に似ていますが一括更新用のものです。\n"
+"\n"
+"デフォルトでは `$prefix Batch modify: $tickets_descr` になります ''(1.0 以降)''。"
+
+#: trac/ticket/notification.py:66
+msgid ""
 "Which width of ambiguous characters (e.g. 'single' or\n"
 "'double') should be used in the table of notification mail.\n"
 "\n"
@@ -643,6 +1031,11 @@ msgid ""
 "US-ASCII characters.  This is expected by CJK users. ''(since\n"
 "0.12.2)''"
 msgstr ""
+"通知メールのテーブルで使用する ambiguous 文字の幅 ('single' または 'double') を指定します。\n"
+"\n"
+"'single' の場合、US-ASCII 文字と同じ幅となります。これは大部分のユーザが期待するものです。'double' の場合、US-"
+"ASCII 文字の倍の幅になります。これは CJK ユーザが期待するものです。\n"
+"''(0.12.2 以降)''"
 
 #: trac/ticket/query.py:821
 msgid ""
@@ -652,6 +1045,10 @@ msgid ""
 "[TracQuery#UsingTracLinks Trac links].\n"
 "(''since 0.11.2'')"
 msgstr ""
+"認証しているユーザ向けのデフォルトのクエリを指定します。このクエリは、[TracQuery#QueryLanguage クエリ言語] "
+"シンタックス、または `query:` [TracQuery#UsingTracLinks Trac リンク]で使う `?` で始まる URL "
+"クエリ文字列のどちらかを指定します。\n"
+"(''0.11.2 以降'')"
 
 #: trac/ticket/query.py:829
 msgid ""
@@ -661,24 +1058,28 @@ msgid ""
 "[TracQuery#UsingTracLinks Trac links].\n"
 "(''since 0.11.2'')"
 msgstr ""
+"匿名ユーザ向けのデフォルトのクエリを指定します。このクエリは、[TracQuery#QueryLanguage クエリ言語] シンタックス、または"
+" `query:` [TracQuery#UsingTracLinks Trac リンク]で使う `?` で始まる URL "
+"クエリ文字列のどちらかを指定します。\n"
+"(''0.11.2 以降'')"
 
 #: trac/ticket/query.py:837
 msgid ""
 "Number of tickets displayed per page in ticket queries,\n"
 "by default (''since 0.11'')"
-msgstr ""
+msgstr "チケットクエリで1ページあたりに表示するチケット数のデフォルトを指定します (''0.11 以降'')"
 
-#: trac/ticket/report.py:59
+#: trac/ticket/report.py:116
 msgid ""
 "Number of tickets displayed per page in ticket reports,\n"
 "by default (''since 0.11'')"
-msgstr ""
+msgstr "チケットのレポートで1ページあたりに表示するチケット数のデフォルトを指定します (''0.11 以降'')"
 
-#: trac/ticket/report.py:63
+#: trac/ticket/report.py:120
 msgid ""
 "Number of tickets displayed in the rss feeds for reports\n"
 "(''since 0.11'')"
-msgstr ""
+msgstr "レポートの RSS フィードに表示するチケット数を指定します (''0.11 以降'')"
 
 #: trac/ticket/roadmap.py:142
 msgid ""
@@ -743,6 +1144,56 @@ msgid ""
 "\n"
 "(''since 0.11'')"
 msgstr ""
+"チケットのワークフローは現在設定できるようになっているため、たくさんのチケットステータスを用意できますが、単純にクローズしているチケットとそれ以外のチケットで表示することは大抵の場合で適切ではありません。このセクションでは、マイルストーンのプログレスバーで個々の配色で表示されるようにステータスの''グループ''を作成することができます
 。"
+"\n"
+"\n"
+"チケットの//ステータス//でのみグループ化し、それ以外ではグループ化できないことに注意してください。特に、クローズしているチケットを//解決方法//で分類することはできません。"
+"\n"
+"\n"
+"3つのグループ //closed//、//new//、//active// の設定例 (デフォルトでは closed と active のみです)"
+"\n"
+"{{{\n"
+"# 'closed' グループは 'closed' チケットに対応\n"
+"closed = closed\n"
+"\n"
+"# .order: プログレスバーでの順序\n"
+"closed.order = 0\n"
+"\n"
+"# .query_args: 対応するクエリの任意のパラメータです。\n"
+"#              この例では2つの列 ('作成' と '変更') を追加し\n"
+"#              '作成' でソートするようにデフォルトを変更しています。\n"
+"closed.query_args = "
+"group=resolution,order=time,col=id,col=summary,col=owner,col=type,col=priority,col=component,col=severity,col=time,col=changetime"
+"\n"
+"\n"
+"# .overall_completion: 完了として割合を計算するグループを示します\n"
+"closed.overall_completion = true\n"
+"\n"
+"new = new\n"
+"new.order = 1\n"
+"new.css_class = new\n"
+"new.label = 新規\n"
+"\n"
+"# ※ このグループは他のステータスをひとまとめにする\n"
+"active = *\n"
+"active.order = 2\n"
+"\n"
+"# .css_class: この区間に対する CSS クラス\n"
+"active.css_class = open\n"
+"\n"
+"# .label: このグループに表示するラベル\n"
+"active.label = in progress\n"
+"}}}\n"
+"\n"
+"この定義に含めるステータスをカンマ区切りで指定します。また、'*' "
+"は任意のステータスを意味し、残りのすべてのステータスを1つのグループに関連付けるのに使用することができます。\n"
+"\n"
+"CSS クラスは new (黄色)、open (無色)、closed (緑色) のいずれかにできます。それ以外のスタイルはカスタム CSS "
+"ルールを使って簡単に追加できます。例えば `table.progress td.<class> { background: <color> }` "
+"を [TracInterfaceCustomization#SiteAppearance site/style.css] ファイルに追加します。"
+"\n"
+"\n"
+"(''0.11 以降'')"
 
 #: trac/ticket/roadmap.py:386
 msgid ""
@@ -750,6 +1201,8 @@ msgid ""
 "which is used to collect statistics on groups of tickets for display\n"
 "in the roadmap views."
 msgstr ""
+"`ITicketGroupStatsProvider` を実装しているコンポーネントの名前を指定します。\n"
+"これはロードマップの表示でチケットのグループごとに集計を行うのに使います。"
 
 #: trac/ticket/roadmap.py:588
 msgid ""
@@ -757,34 +1210,39 @@ msgid ""
 "which is used to collect statistics on groups of tickets for display\n"
 "in the milestone views."
 msgstr ""
+"`ITicketGroupStatsProvider` を実装しているコンポーネントの名前を指定します。\n"
+"これはマイルストーンの表示でチケットのグループごとに集計を行うのに使います。"
 
-#: trac/ticket/web_ui.py:67
+#: trac/ticket/web_ui.py:75
 msgid ""
 "Enable the display of all ticket changes in the timeline, not only\n"
 "open / close operations (''since 0.9'')."
-msgstr ""
+msgstr "タイムラインにチケットの登録と解決だけでなくすべてのチケットの変更を表示するかどうかを指定します。(''0.9 以降'')"
 
-#: trac/ticket/web_ui.py:71
+#: trac/ticket/web_ui.py:79
 msgid ""
 "Don't accept tickets with a too big description.\n"
 "(''since 0.11'')."
-msgstr ""
+msgstr "チケットの詳細が大き過ぎる場合、チケットを受け付けないようにします。(''0.11 以降'')"
 
-#: trac/ticket/web_ui.py:75
+#: trac/ticket/web_ui.py:83
 msgid ""
 "Don't accept tickets with a too big comment.\n"
 "(''since 0.11.2'')"
-msgstr ""
+msgstr "チケットのコメントが大き過ぎる場合、チケットを受け付けないようにします。(''0.11.2 以降'')"
 
-#: trac/ticket/web_ui.py:79
+#: trac/ticket/web_ui.py:87
 msgid ""
 "Which formatter flavor (e.g. 'html' or 'oneliner') should be\n"
 "used when presenting the description for new tickets.\n"
 "If 'oneliner', the [timeline] abbreviated_messages option applies.\n"
 "(''since 0.11'')."
 msgstr ""
+"新規登録チケットの詳細を表示する際にどのフォーマッタを使用するかを指定します (例えば 'html' や 'oneliner')。\n"
+"'oneliner' の場合は、[timeline] abbreviated_messages の設定内容を適用します。\n"
+"(''0.11 以降'')"
 
-#: trac/ticket/web_ui.py:86
+#: trac/ticket/web_ui.py:94
 msgid ""
 "Whether Wiki formatter should respect the new lines present\n"
 "in the Wiki text.\n"
@@ -792,8 +1250,12 @@ msgid ""
 "but keeps the old behavior for upgraded environments (i.e. 'no').\n"
 "(''since 0.11'')."
 msgstr ""
+"Wiki フォーマッタが Wiki テキスト中の改行を考慮するかどうかを指定します。\n"
+"'default' を設定した場合、新規作成した環境下では 'yes' となりますが、アップグレードしてきた環境では以前の挙動のまま (つまり "
+"'no') となります。\n"
+"(''0.11 以降'')"
 
-#: trac/ticket/web_ui.py:93
+#: trac/ticket/web_ui.py:101
 msgid ""
 "The base query to be used when linkifying values of ticket\n"
 "fields. The query is a URL query\n"
@@ -801,18 +1263,23 @@ msgid ""
 "[TracQuery#UsingTracLinks Trac links].\n"
 "(''since 0.12'')"
 msgstr ""
+"チケットの値にリンクを作成するときに使用するベースのクエリを指定します。これは `query:` "
+"[TracQuery#UsingTracLinks Trac リンク] で使う `?` で始まる URL クエリ文字列です。\n"
+"(''0.12 以降'')"
 
 #: trac/timeline/web_ui.py:52
 msgid ""
 "Default number of days displayed in the Timeline, in days.\n"
 "(''since 0.9.'')"
 msgstr ""
+"タイムラインに表示する日数のデフォルトを指定します。\n"
+"(''0.9 以降'')"
 
 #: trac/timeline/web_ui.py:56
 msgid ""
 "Maximum number of days (-1 for unlimited) displayable in the \n"
 "Timeline. (''since 0.11'')"
-msgstr ""
+msgstr "タイムラインに表示できる最大日数 (-1 は無制限) を指定します。(''0.11 以降'')"
 
 #: trac/timeline/web_ui.py:60
 msgid ""
@@ -822,6 +1289,10 @@ msgid ""
 "specific event providers, see their own documentation.\n"
 "(''Since 0.11'')"
 msgstr ""
+"Wiki フォーマットしたイベントメッセージを切り詰めるかどうかを指定します。\n"
+"\n"
+"これは描画のみに有効でイベントプロバイダは無視することができます。詳細は個々のドキュメントを参照してください。\n"
+"(''0.11 以降'')"
 
 #: trac/versioncontrol/admin.py:169
 msgid ""
@@ -830,6 +1301,9 @@ msgid ""
 "admin panel. If the list is empty, all repository directories are\n"
 "allowed. (''since 0.12.1'')"
 msgstr ""
+"リポジトリ管理パネルで追加や変更の際に、リポジトリのディレクトリとして許可するプレフィックスをカンマ区切りで指定します。このリストが空の場合は、すべてのディレクトリを許可します。"
+"\n"
+"(''0.12.1 以降'')"
 
 #: trac/versioncontrol/api.py:284
 msgid ""
@@ -846,6 +1320,13 @@ msgid ""
 "\n"
 "(''since 0.12'')"
 msgstr ""
+"リポジトリを新規登録するやり方の1つは、`trac.ini` の `[repositories]` セクションに追加することです。\n"
+"これは便利なエイリアスや一時的なリポジトリの設定、インストール時の初期段階中に特に適しています。\n"
+"\n"
+"このセクションで使用する書式の詳細については [TracRepositoryAdmin#Intrac.ini "
+"TracRepositoryAdmin] を、他の方法についてはこのページの続きを参照してください。\n"
+"\n"
+"(''0.12 以降'')"
 
 #: trac/versioncontrol/api.py:298
 msgid ""
@@ -855,6 +1336,10 @@ msgid ""
 "defined in [[TracIni#repositories-section repositories]] or using the\n"
 "\"Repositories\" admin panel. (''since 0.12'')"
 msgstr ""
+"デフォルトになるリポジトリの接続方法を指定します。(''0.10 以降'')\n"
+"\n"
+"[[TracIni#repositories-section repositories]] "
+"セクションで定義するリポジトリや「リポジトリ」管理パネルなどでも使用します。(''0.12 以降'')"
 
 #: trac/versioncontrol/api.py:306
 msgid ""
@@ -865,6 +1350,10 @@ msgid ""
 "[TracIni#repositories-section repositories] section, or using the\n"
 "\"Repositories\" admin panel. (''since 0.12'')"
 msgstr ""
+"デフォルトのリポジトリへのパスを指定します。これは相対パスにすることもできます。(''0.11 以降'')\n"
+"\n"
+"このオプションは非推奨で、リポジトリは [TracIni#repositories-section repositories] "
+"セクションで定義、もしくは「リポジトリ」管理パネルを使うようにしてください。(''0.12 以降'')"
 
 #: trac/versioncontrol/api.py:314
 msgid ""
@@ -879,6 +1368,12 @@ msgid ""
 "repositories specified here. The default is to synchronize the default\n"
 "repository, for backward compatibility. (''since 0.12'')"
 msgstr ""
+"ページのリクエストのたびに同期を行うリポジトリのリストを指定します。\n"
+"\n"
+"post-commit フックから `trac-admin $ENV changeset added` "
+"を実行するようにすべてのリポジトリで設定しているなら、このオプションを空にしてください "
+"(推奨)。そうでないのであれば、リポジトリの名前をカンマ区切りで指定します。注意事項として、これはパフォーマンスに悪影響があり、チェンジセット・リスナーが指定したリポジトリからのイベント取得を妨げることになります。デフォルトは、下位互換のためデフォルトのリポジトリと同期を行います。(''0.12"
+" 以降'')"
 
 #: trac/versioncontrol/svn_authz.py:124
 msgid ""
@@ -888,74 +1383,17 @@ msgid ""
 "To enable authz permission checking, the `AuthzSourcePolicy` permission\n"
 "policy must be added to `[trac] permission_policies`."
 msgstr ""
+"Subversion [http://svnbook.red-"
+"bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html authz ファイル] "
+"のパスを指定します。\n"
+"authz 権限チェックを有効にするには、`AuthzSourcePolicy` 権限ポリシーを `[trac] "
+"permission_policies` に追加してください。"
 
 #: trac/versioncontrol/svn_authz.py:131
 msgid ""
 "The module prefix used in the `authz_file` for the default\n"
 "repository. If left empty, the global section is used."
-msgstr ""
-
-#: trac/versioncontrol/svn_fs.py:253
-msgid ""
-"Comma separated list of paths categorized as branches.\n"
-"If a path ends with '*', then all the directory entries found below \n"
-"that path will be included. \n"
-"Example: `/trunk, /branches/*, /projectAlpha/trunk, /sandbox/*`"
-msgstr ""
-
-#: trac/versioncontrol/svn_fs.py:260
-msgid ""
-"Comma separated list of paths categorized as tags.\n"
-"\n"
-"If a path ends with '*', then all the directory entries found below\n"
-"that path will be included.\n"
-"Example: `/tags/*, /projectAlpha/tags/A-1.0, /projectAlpha/tags/A-v1.1`"
-msgstr ""
-
-#: trac/versioncontrol/svn_prop.py:37
-msgid ""
-"The TracBrowser for Subversion can interpret the `svn:externals`\n"
-"property of folders. By default, it only turns the URLs into links as\n"
-"Trac can't browse remote repositories.\n"
-"\n"
-"However, if you have another Trac instance (or an other repository\n"
-"browser like [http://www.viewvc.org/ ViewVC]) configured to browse the\n"
-"target repository, then you can instruct Trac which other repository\n"
-"browser to use for which external URL. This mapping is done in the\n"
-"`[svn:externals]` section of the TracIni.\n"
-"\n"
-"Example:\n"
-"{{{\n"
-"[svn:externals]\n"
-"1 = svn://server/repos1                       "
-"http://trac/proj1/browser/$path?rev=$rev\n"
-"2 = svn://server/repos2                       "
-"http://trac/proj2/browser/$path?rev=$rev\n"
-"3 = http://theirserver.org/svn/eng-soft       "
-"http://ourserver/viewvc/svn/$path/?pathrev=25914\n"
-"4 = svn://anotherserver.com/tools_repository  "
-"http://ourserver/tracs/tools/browser/$path?rev=$rev\n"
-"}}}\n"
-"With the above, the\n"
-"`svn://anotherserver.com/tools_repository/tags/1.1/tools` external will\n"
-"be mapped to `http://ourserver/tracs/tools/browser/tags/1.1/tools?rev=`\n"
-"(and `rev` will be set to the appropriate revision number if the\n"
-"external additionally specifies a revision, see the\n"
-"[http://svnbook.red-bean.com/en/1.4/svn.advanced.externals.html SVN Book "
-"on externals]\n"
-"for more details).\n"
-"\n"
-"Note that the number used as a key in the above section is purely used\n"
-"as a place holder, as the URLs themselves can't be used as a key due to\n"
-"various limitations in the configuration file parser.\n"
-"\n"
-"Finally, the relative URLs introduced in\n"
-"[http://subversion.apache.org/docs/release-notes/1.5.html#externals "
-"Subversion 1.5]\n"
-"are not yet supported.\n"
-"\n"
-"(''since 0.11'')"
-msgstr ""
+msgstr "`authz_file` に対するデフォルトのリポジトリのモジュール名を指定します。空の場合はグローバルセクションを使用します。"
 
 #: trac/versioncontrol/web_ui/browser.py:118
 msgid ""
@@ -964,6 +1402,9 @@ msgid ""
 "\n"
 "(''since 0.11'')"
 msgstr ""
+"リポジトリブラウザで Wiki として描画するバージョン管理のプロパティをカンマ区切りで指定します。\n"
+"\n"
+"(''0.11 以降'')"
 
 #: trac/versioncontrol/web_ui/browser.py:125
 msgid ""
@@ -972,6 +1413,9 @@ msgid ""
 "\n"
 "(''since 0.11'')"
 msgstr ""
+"リポジトリブラウザで1行スタイルの Wiki として描画するバージョン管理のプロパティをカンマ区切りで指定します。\n"
+"\n"
+"(''0.11 以降'')"
 
 #: trac/versioncontrol/web_ui/browser.py:184
 msgid ""
@@ -982,6 +1426,11 @@ msgid ""
 "glob patterns, i.e. \"*\" can be used as a wild card)\n"
 "(''since 0.10'')"
 msgstr ""
+"ダウンロードできるようにするリポジトリのパスをリストで指定します。\n"
+"\n"
+"ダウンロードを無効にしたい場合は空にします。そうでない場合は、許可するパスをカンマ区切りで指定します (ワイルドカードとして \"*\" "
+"が使えます)。\n"
+"(''0.10 以降'')"
 
 #: trac/versioncontrol/web_ui/browser.py:193
 msgid ""
@@ -991,6 +1440,10 @@ msgid ""
 "blue is older, red is newer.\n"
 "(''since 0.11'')"
 msgstr ""
+"''時期''列の色付けを行うかどうかを指定します。\n"
+"\n"
+"これにはソースコードの注釈と同じカラースケールを使います。青が古く、赤が新しいものとなります。\n"

[... 590 lines stripped ...]