# HG changeset patch # User Toshi MARUYAMA # Date 1457011279 -32400 # 木 3月 03 22:21:19 2016 +0900 # Node ID 7c7011d033cf0879c8771bdfea9510944d0e6673 # Parent 29f8684cc4dcfb70e5a39117b9595a1c661a1fcf Japanese wiki syntax (Markdown) translation for 3.1-stable updated by Go MAEDA (#22009, ) diff --git a/public/help/ja/wiki_syntax_detailed_markdown.html b/public/help/ja/wiki_syntax_detailed_markdown.html --- a/public/help/ja/wiki_syntax_detailed_markdown.html +++ b/public/help/ja/wiki_syntax_detailed_markdown.html @@ -33,192 +33,192 @@
-Redmine allows hyperlinking between resources (issues, changesets, wiki pages...) from anywhere wiki formatting is used.
+RedmineはWiki記法が使える箇所のどこからでも、チケット・チェンジセット・Wikiページなどのリソースへのリンクができます。
Wiki links:
+Wikiへのリンク:
You can also link to pages of an other project wiki:
+別のプロジェクトのwikiへのリンクも可能です:
Wiki links are displayed in red if the page doesn't exist yet, eg: Nonexistent page.
+存在しないwikiページへのリンクは赤で表示されます。 例: Nonexistent page.
-Links to other resources:
+そのほかのリソースへのリンク:
Escaping:
+エスケープ:
HTTP URLs and email addresses are automatically turned into clickable links:
+HTTP URLとメールアドレスは自動的にリンクになります:
http://www.redmine.org, someone@foo.bar-
displays: http://www.redmine.org, someone@foo.bar
+上記記述の表示例です: http://www.redmine.org, someone@foo.bar
-If you want to display a specific text instead of the URL, you can use the standard markdown syntax:
+URLのかわりに別のテキストを表示させたい場合は、通常のMarkdown記法が利用できます:
[Redmine web site](http://www.redmine.org)-
displays: Redmine web site
+上記記述の表示例です: Redmine web site
-For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
+見出し、太字、テーブル、リスト等は、RedmineはMarkdownでの記述に対応しています。Markdownの詳細は http://daringfireball.net/projects/markdown/syntax を参照してください。Markdownの一例を以下に示しますが、実際にはここで取り上げた以外の記法にも対応しています。
--* **bold** -* *Italic* -* ***bold italic*** -* ~~strike-through~~ +* **太字** +* *斜体* +* ***太字で斜体*** +* ~~取り消し線~~-
Display:
+表示例:
# Heading @@ -226,76 +226,76 @@ http://www.redmine.org, someone@foo.bar ### Subsubheading-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
+Redmineは見出しにアンカーを設定するので、"#Heading", "#Subheading"のように記述して見出しへのリンクが行えます。
-Start the paragraph with >
+段落を > で開始してください。
> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.-
Display:
+表示例:
-Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
To go live, all you need to add is a database and a web server.
-{{toc}} => left aligned toc -{{>toc}} => right aligned toc +{{toc}} => 目次(左寄せ) +{{>toc}} => 目次(右寄せ)-
----
Redmine has the following builtin macros:
+Redmineには以下の組み込みマクロが用意されています:
hello_world
Sample macro.
サンプルのマクロです。
macro_list
Displays a list of all available macros, including description if available.
利用可能なマクロの一覧を表示します。マクロの説明があればそれも表示します。
child_pages
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
子ページの一覧を表示します。引数の指定が無ければ現在のwikiページの子ページを表示します。以下は使用例です:
+{{child_pages}} -- wikiページでのみ使用可能です
+{{child_pages(depth=2)}} -- 2階層分のみ表示します
include
Include a wiki page. Example:
+別のWikiページの内容を挿入します。 以下は使用例です:
{{include(Foo)}}
- or to include a page of a specific project wiki:
+別プロジェクトのWikiページを挿入することもできます:
{{include(projectname:Foo)}}
collapse
Inserts of collapsed block of text. Example:
-{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
+ 折り畳まれた状態のテキストを挿入します。以下は使用例です:
+ {{collapse(詳細を表示...)
+この部分はデフォルトでは折り畳まれた状態で表示されます。
+リンクをクリックすると展開されます。
}}
thumbnail
- Displays a clickable thumbnail of an attached image. Examples:
+ 添付ファイルのクリック可能なサムネイル画像を表示します。以下は使用例です:
{{thumbnail(image.png)}}
{{thumbnail(image.png, size=300, title=Thumbnail)}}
Default code highlightment relies on CodeRay, a fast syntax highlighting library written completely in Ruby. It currently supports c, clojure, cpp (c++, cplusplus), css, delphi (pascal), diff (patch), erb (eruby, rhtml), go, groovy, haml, html (xhtml), java, javascript (ecmascript, ecma_script, java_script, js), json, lua, php, python, ruby (irb), sass, sql, taskpaper, text (plain, plaintext), xml and yaml (yml) languages, where the names inside parentheses are aliases.
@@ -307,7 +307,7 @@ It can be expanded by clicking a link. ~~~ -Example:
+表示例:
# The Greeter class
class Greeter
diff --git a/public/help/ja/wiki_syntax_markdown.html b/public/help/ja/wiki_syntax_markdown.html
--- a/public/help/ja/wiki_syntax_markdown.html
+++ b/public/help/ja/wiki_syntax_markdown.html
@@ -20,44 +20,44 @@ table.sample th, table.sample td { borde
-Wiki Syntax Quick Reference (Markdown)
+Wiki記法 クイックリファレンス (Markdown)
Font Styles
-
**Strong** Strong
-
*Italic* Italic
-
~~Deleted~~ Deleted
-
`Inline Code` Inline Code
-
~~~
lines
of code
~~~
+ 
**太字** 太字
+
*斜体* 斜体
+
~~取り消し線~~ 取り消し線
+
`コード` コード
+
~~~
複数行の
コード
~~~
- lines
- of code
+ 複数行の
+ コード
-Lists
-
* Item 1
* Sub
* Item 2 - Item 1
- Sub
- Item 2
-
1. Item 1
1. Sub
2. Item 2 - Item 1
- Sub
- Item 2
+リスト
+
* 項目1
* 下位階層の項目
* 項目2 - 項目1
- 下位階層の項目
- 項目2
+
1. 項目1
1. 下位階層の項目
2. 項目2 - 項目1
- 下位階層の項目
- 項目2
-Headings
-
# Title 1 Title 1
-
## Title 2 Title 2
-
### Title 3 Title 3
+見出し
+
# タイトル1 タイトル1
+
## タイトル2 タイトル2
+
### タイトル3 タイトル3
-Links
+リンク
http://foo.bar http://foo.bar
[Foo](http://foo.bar) Foo
-Redmine links
-
[[Wiki page]] Wiki page
-Issue #12 Issue #12
-Revision r43 Revision r43
+Redmine内のリンク
+
[[Wiki page]] Wiki page
+チケット #12 チケット #12
+リビジョン r43 リビジョン r43
commit:f30e13e43 f30e13e4
source:some/file source:some/file
-Inline images
-

-
+画像
+

+
Tables
@@ -76,7 +76,7 @@ table.sample th, table.sample td { borde
-
+