From: Toshi MARUYAMA Date: Thu, 8 Sep 2016 14:41:49 +0000 (+0000) Subject: Traditional Chinese textile and markdown detailed help translation for 3.1-stable... X-Git-Tag: 3.4.0~695 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6b6a73e176d678d8c2cf2dac7cb11545a0afdb2c;p=redmine.git Traditional Chinese textile and markdown detailed help translation for 3.1-stable by ChunChang Lo (#23387) git-svn-id: http://svn.redmine.org/redmine/trunk@15825 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/help/zh-tw/wiki_syntax_detailed_markdown.html b/public/help/zh-tw/wiki_syntax_detailed_markdown.html index b42394882..9a8127c39 100644 --- a/public/help/zh-tw/wiki_syntax_detailed_markdown.html +++ b/public/help/zh-tw/wiki_syntax_detailed_markdown.html @@ -33,205 +33,205 @@ -

Wiki formatting (Markdown)

+

Wiki 格式設定 (Markdown)

-

Links

+

連結

-

Redmine links

+

Redmine 連結

-

Redmine allows hyperlinking between resources (issues, changesets, wiki pages...) from anywhere wiki formatting is used.

+

在任何可以使用 Wiki 格式設定的地方, Redmine 都允許在資源 (問題、變更集、 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:

+

逸出字元:

-

External links

+

外部連結

-

HTTP URLs and email addresses are automatically turned into clickable links:

+

HTTP URLs 與電子郵件地址會自動被轉換成可被點擊的連結:

 http://www.redmine.org, someone@foo.bar
 
-

displays: http://www.redmine.org,

+

會顯示成: http://www.redmine.org,

-

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

-

Text formatting

+

文字格式設定

-

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 語法。 可參考 http://daringfireball.net/projects/markdown/syntax 中關於使用這些格式化功能的說明資訊。 下面包含了一些使用範例,但格式化引擎的處理能力遠多於這些簡單的使用範例。

-

Font style

+

字型樣式

-* **bold**
-* *Italic*
-* ***bold italic***
-* ~~strike-through~~
+* **粗體**
+* *斜體*
+* ***粗斜體***
+* ~~刪除線~~
 
-

Display:

+

會顯示成:

-

Inline images

+

內嵌圖像

-

Headings

+

標題

-# Heading
-## Subheading
-### Subsubheading
+# 標題
+## 次標題
+### 次次標題
 
-

Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.

+

Redmine 為每一種標題指定一個 HTML 錨定 (anchor) ,因此您可使用 "#標題" 、 "#次標題" 等方式連結至這些標題。

-

Blockquotes

+

區塊引述

-

Start the paragraph with >

+

使用 > 啟動一個區塊引述的段落。

 > Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
@@ -245,57 +245,57 @@ To go live, all you need to add is a database and a web server.
         
 
 
-        

Table of content

+

目錄

-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
+{{toc}} => 靠左對齊目錄
+{{>toc}} => 靠右對齊目錄
 
-

Horizontal Rule

+

水平線

 ---
 
-

Macros

+

巨集

-

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)}} -- 僅顯示兩層巢狀層次
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.
 }}
thumbnail
-

Displays a clickable thumbnail of an attached image. Examples:

+

顯示可被點擊的附加圖像之縮圖。範例:

{{thumbnail(image.png)}}
 {{thumbnail(image.png, size=300, title=Thumbnail)}}

-

Code highlighting

+

程式碼醒目提示

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.

@@ -303,11 +303,11 @@ It can be expanded by clicking a link.
 ~~~ ruby
-  Place your code here.
+  將程式碼放在這裡。
 ~~~
 
-

Example:

+

範例:

# The Greeter class
 class Greeter
diff --git a/public/help/zh-tw/wiki_syntax_detailed_textile.html b/public/help/zh-tw/wiki_syntax_detailed_textile.html
index 60ad3b1b7..0d4e45bfc 100644
--- a/public/help/zh-tw/wiki_syntax_detailed_textile.html
+++ b/public/help/zh-tw/wiki_syntax_detailed_textile.html
@@ -39,17 +39,17 @@
 
         

Redmine 連結

-

在任何可以使用 Wiki 格式設定的地方, Redmine 都允許在資源(問題、變更集、 Wiki 頁面...)間建立超連結。

+

在任何可以使用 Wiki 格式設定的地方, Redmine 都允許在資源 (問題、變更集、 Wiki 頁面...) 間建立超連結。

  • 連結至一個問題: #124 (若該問題已經結束,則使用刪除線顯示連結: #124)
  • -
  • 連結至一個問題的筆記: #124-6, or #124#note-6
  • +
  • 連結至一個問題的筆記: #124-6, 或 #124#note-6

Wiki 連結:

  • [[Guide]] 顯示一個頁面名稱為 'Guide' 的連結: Guide
  • -
  • [[Guide#further-reading]] 會連結至一個 "further-reading" 的 HTML 錨定 (anchor) 。每個標題文字都會被自動指定一個 HTML 錨定,以便您可以用來連結它們: Guide
  • +
  • [[Guide#further-reading]] 會顯示連結至一個 "further-reading" 的 HTML 錨定 (anchor) 。每個標題文字都會被自動指定一個 HTML 錨定,以便您可以用來連結它們: Guide
  • [[Guide|User manual]] 使用不同的文字來顯示一個頁面名稱為 'Guide' 的連結: User manual
@@ -96,11 +96,11 @@
  • 變更集:
    • r758 (連結至一個變更集)
    • -
    • commit:c6f4d0fd (連結至一個使用非數字雜湊的變更集)
    • +
    • commit:c6f4d0fd (使用雜湊碼連結至一個變更集)
    • svn1|r758 (連結至指定儲存機制中之變更集,用於專案使用多個儲存機制時之情況)
    • -
    • commit:hg|c6f4d0fd (連結至指定儲存機制中,使用非數字雜湊的變更集)
    • +
    • commit:hg|c6f4d0fd (使用某特定儲存機制中的雜湊碼連結至一個變更集)
    • sandbox:r758 (連結至其他專案的變更集)
    • -
    • sandbox:commit:c6f4d0fd (連結至其他專案中,使用非數字雜湊的變更集)
    • +
    • sandbox:commit:c6f4d0fd (使用其他專案的雜湊碼連結至一個變更集)
  • @@ -108,30 +108,30 @@
  • 儲存機制中之檔案:
    • source:some/file (連結至專案儲存機制中,位於 /some/file 的檔案)
    • -
    • source:some/file@52 (連結至此檔案的 52 版次)
    • -
    • source:some/file#L120 (連結至此檔案的第 120 行)
    • -
    • source:some/file@52#L120 (連結至此檔案的 52 版刺中之第 120 行)
    • +
    • source:some/file@52 (連結至該檔案的 52 版次)
    • +
    • source:some/file#L120 (連結至該檔案的第 120 行)
    • +
    • source:some/file@52#L120 (連結至該檔案的 52 版次中之第 120 行)
    • source:"some file@52#L120" (當 URL 中包含空白字元時,使用雙引號來標示)
    • -
    • export:some/file (強制下載此檔案)
    • -
    • source:svn1|some/file (連結至指定儲存機制中的此檔案,用於專案使用多個儲存機制時之情況)
    • +
    • export:some/file (強制下載該檔案)
    • +
    • source:svn1|some/file (連結至指定儲存機制中的該檔案,用於專案使用多個儲存機制時之情況)
    • sandbox:source:some/file (連結至 "sandbox" 專案的儲存機制中,位於 /some/file 的檔案)
    • sandbox:export:some/file (強迫下載該檔案)
    • -
    • Forums: +
    • 論壇:
        -
      • forum#1 (link to forum with id 1
      • -
      • forum:Support (link to forum named Support)
      • -
      • forum:"Technical Support" (use double quotes if forum name contains spaces)
      • +
      • forum#1 (連結至編號為 1 的論壇)
      • +
      • forum:Support (連結至名稱為 Support 的論壇)
      • +
      • forum:"Technical Support" (當論壇名稱中包含空白字元時,使用雙引號來標示)
    • 論壇訊息:
        -
      • message#1218 (連結至編號 1218 的訊息)
      • +
      • message#1218 (連結至編號為 1218 的訊息)
    @@ -140,16 +140,16 @@
    • project#3 (連結至編號為 3 的專案)
    • project:someproject (連結至名稱為 "someproject" 的專案)
    • -
    • project:"some project" (use double quotes if project name contains spaces)
    • +
    • project:"some project" (當專案名稱中包含空白字元時,使用雙引號來標示)
      -
    • News: +
    • 新聞:
        -
      • news#2 (link to news item with id 2)
      • -
      • news:Greetings (link to news item named "Greetings")
      • -
      • news:"First Release" (use double quotes if news item name contains spaces)
      • +
      • news#2 (連結至編號為 2 的新聞項目)
      • +
      • news:Greetings (連結至名稱為 "Greetings" 的新聞項目)
      • +
      • news:"First Release" (當新聞項目名稱中包含空白字元時,使用雙引號來標示)
    @@ -168,7 +168,7 @@ http://www.redmine.org, someone@foo.bar
    -

    顯示為: http://www.redmine.org,

    +

    會顯示成: http://www.redmine.org,

    若您想要顯示指定的文字而非該 URL ,您可以使用下列標準的 textile 語法:

    @@ -176,7 +176,7 @@ http://www.redmine.org, someone@foo.bar "Redmine web site":http://www.redmine.org
    -

    顯示為: Redmine web site

    +

    會顯示成: Redmine web site

    文字格式設定

    @@ -194,7 +194,7 @@ http://www.redmine.org, someone@foo.bar * -刪除線- -

    顯示為:

    +

    會顯示成:

    -

    內置圖像

    +

    內嵌圖像

    標題

    @@ -220,7 +220,7 @@ h2. 次標題 h3. 次次標題 -

    Redmine 為每一種標題指定一個 HTML 錨定 (anchor) ,因此您可使用 "#Heading" 、 "#Subheading" 等方式連結至這些標題。

    +

    Redmine 為每一種標題指定一個 HTML 錨定 (anchor) ,因此您可使用 "#標題" 、 "#次標題" 等方式連結至這些標題。

    段落

    @@ -233,9 +233,9 @@ p=. 置中對齊

    這是一個置中對齊的段落。

    -

    引用文字

    +

    區塊引述

    -

    使用 bq. 開始一個引文的段落

    +

    使用 bq. 啟動一個區塊引述的段落。

     bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
    @@ -275,25 +275,25 @@ To go live, all you need to add is a database and a web server.
           

    顯示所有可用巨集的清單,若巨集有提供說明也會一併顯示。

    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)}} -- 僅顯示兩層巢狀層次
    include
    -

    引入一個 wiki 頁面。例子:

    +

    引入一個 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.
     }}
    thumbnail
    -

    Displays a clickable thumbnail of an attached image. Examples:

    +

    顯示可被點擊的附加圖像之縮圖。範例:

    {{thumbnail(image.png)}}
     {{thumbnail(image.png, size=300, title=Thumbnail)}}
    @@ -311,7 +311,7 @@ It can be expanded by clicking a link. </code></pre>
    -

    例子:

    +

    範例:

    # The Greeter class
     class Greeter