add doc translation for power-monitor.md
authorJohn-Lin <linton.tw@gmail.com>
Mon, 7 Sep 2015 09:36:14 +0000 (17:36 +0800)
committerJohn-Lin <linton.tw@gmail.com>
Mon, 7 Sep 2015 09:36:14 +0000 (17:36 +0800)
docs-translations/zh-TW/api/power-monitor.md [new file with mode: 0644]

diff --git a/docs-translations/zh-TW/api/power-monitor.md b/docs-translations/zh-TW/api/power-monitor.md
new file mode 100644 (file)
index 0000000..e38dee3
--- /dev/null
@@ -0,0 +1,36 @@
+# power-monitor
+
+`power-monitor` 模組用來監看電源狀態的改變。你只能在主行程 (main process) 裡面使用。
+你應該要等到 `ready` 在 `app` 模組裡的事件被觸發 (emit),再使用這個模組。
+
+舉例來說:
+
+```javascript
+var app = require('app');
+
+app.on('ready', function() {
+  require('power-monitor').on('suspend', function() {
+    console.log('The system is going to sleep');
+  });
+});
+```
+
+## 事件 (Events)
+
+`power-monitor` 模組會觸發 (emits) 以下幾個事件:
+
+### 事件: 'suspend'
+
+當系統進入 睡眠 (suspend) 時觸發。
+
+### 事件: 'resume'
+
+當系統 resume  時觸發。
+
+### 事件: 'on-ac'
+
+當系統改變使用交流電源 (AC) 時觸發。
+
+### 事件: 'on-battery'
+
+當系統改變使用電池店員時觸發。