diff --git a/docs-translations/zh-TW/api/structures/cookie.md b/docs-translations/zh-TW/api/structures/cookie.md new file mode 100644 index 000000000000..0358cf1642f6 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/cookie.md @@ -0,0 +1,11 @@ +# Cookie 物件 + +* `name` 字串 - cookie 的名字。 +* `value` 字串 - cookie 的值。 +* `domain` 字串 - cookie 的域名。 +* `hostOnly` 字串 - cookie 是否為 Host-Only.。 +* `path` 字串 - cookie 的路徑。 +* `secure` 布林 - cookie 的網域是否安全 (https)。 +* `httpOnly` 布林 - cookie 是否只能運行在 HTTP。 +* `session` 布林 - cookie 為 短期 session 或者 長期 cookie,若是長期 cookie 得包含一個截止日期。 +* `expirationDate` 雙精度浮點數 (可選) - cookie 的截止日期,當 `session` 設定為 時可用,值為 UNIX時間。 diff --git a/docs-translations/zh-TW/api/structures/task.md b/docs-translations/zh-TW/api/structures/task.md new file mode 100644 index 000000000000..e9d58e3cf132 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/task.md @@ -0,0 +1,8 @@ +# Task 物件 + +* `program` 字串 - 程式執行的路徑,通常你應該指定 `process.execPath`,此值為當前程式執行的路徑。 +* `arguments` 字串 - `program` 在命令列下執行的附加參數。 +* `title` 字串 - JumpList 內顯示的標題。 +* `description` 字串 - 關於此物件的描述。 +* `iconPath` 字串 - 此物件的 icon 路徑,被顯示在 JumpList 中,通常你可以指定 `process.execPath`去顯示當前物件的 icon 。 +* `iconIndex` 數字 - icon 的索引,如果一個檔案包由兩個或以上的的 icon, 設定此值去指定 icon, 如果檔案內只有一個 icon, 此值為 0 。