浏览代码

Merge pull request #992 from DSin52/patch-1

Minor change in language
文翼 10 年之前
父节点
当前提交
219085e5db
共有 1 个文件被更改,包括 12 次插入12 次删除
  1. 12 12
      docs/_i18n/en/documentation/events.md

+ 12 - 12
docs/_i18n/en/documentation/events.md

@@ -22,7 +22,7 @@
         <td>all.bs.table</td>
         <td>name, args</td>
         <td>
-        Fires when all events trigger, the parameters contains: <br>
+        Fires when all events trigger, the parameters contain: <br>
         name: the event name, <br>
         args: the event data.
         </td>
@@ -32,7 +32,7 @@
         <td>click-row.bs.table</td>
         <td>row, $element</td>
         <td>
-        Fires when user click a row, the parameters contains: <br>
+        Fires when user click a row, the parameters contain: <br>
         row: the record corresponding to the clicked row, <br>
         $element: the tr element.
         </td>
@@ -42,7 +42,7 @@
         <td>dbl-click-row.bs.table</td>
         <td>row, $element</td>
         <td>
-        Fires when user double click a row, the parameters contains: <br>
+        Fires when user double click a row, the parameters contain: <br>
         row: the record corresponding to the clicked row, <br>
         $element: the tr element.
         </td>
@@ -52,7 +52,7 @@
         <td>click-cell.bs.table</td>
         <td>field, value, row, $element</td>
         <td>
-        Fires when user click a cell, the parameters contains: <br>
+        Fires when user click a cell, the parameters contain: <br>
         field: the field name corresponding to the clicked cell, <br>
         value: the data value corresponding to the clicked cell, <br>
         row: the record corresponding to the clicked row, <br>
@@ -64,7 +64,7 @@
         <td>dbl-click-cell.bs.table</td>
         <td>field, value, row, $element</td>
         <td>
-        Fires when user double click a cell, the parameters contains: <br>
+        Fires when user double click a cell, the parameters contain: <br>
         field: the field name corresponding to the clicked cell, <br>
         value: the data value corresponding to the clicked cell, <br>
         row: the record corresponding to the clicked row, <br>
@@ -76,7 +76,7 @@
         <td>sort.bs.table</td>
         <td>name, order</td>
         <td>
-        Fires when user sort a column, the parameters contains: <br>
+        Fires when user sort a column, the parameters contain: <br>
         name: the sort column field name<br>
         order: the sort column order.
         </td>
@@ -86,7 +86,7 @@
         <td>check.bs.table</td>
         <td>row</td>
         <td>
-        Fires when user check a row, the parameters contains: <br>
+        Fires when user check a row, the parameters contain: <br>
         row: the record corresponding to the clicked row.
         </td>
     </tr>
@@ -95,7 +95,7 @@
         <td>uncheck.bs.table</td>
         <td>row</td>
         <td>
-        Fires when user uncheck a row, the parameters contains: <br>
+        Fires when user uncheck a row, the parameters contain: <br>
         row: the record corresponding to the clicked row.
         </td>
     </tr>
@@ -104,7 +104,7 @@
         <td>check-all.bs.table</td>
         <td>rows</td>
         <td>
-        Fires when user check all rows, the parameters contains: <br>
+        Fires when user check all rows, the parameters contain: <br>
         rows: array of records corresponding to newly checked rows.
         </td>
     </tr>
@@ -113,7 +113,7 @@
         <td>uncheck-all.bs.table</td>
         <td>rows</td>
         <td>
-        Fires when user uncheck all rows, the parameters contains: <br>
+        Fires when user uncheck all rows, the parameters contain: <br>
         rows: array of records corresponding to previously checked rows.
         </td>
     </tr>
@@ -122,7 +122,7 @@
         <td>check-some.bs.table</td>
         <td>rows</td>
         <td>
-        Fires when user check some rows, the parameters contains: <br>
+        Fires when user check some rows, the parameters contain: <br>
         rows: array of records corresponding to previously checked rows.
         </td>
     </tr>
@@ -131,7 +131,7 @@
         <td>uncheck-some.bs.table</td>
         <td>rows</td>
         <td>
-        Fires when user uncheck some rows, the parameters contains: <br>
+        Fires when user uncheck some rows, the parameters contain: <br>
         rows: array of records corresponding to previously checked rows.
         </td>
     </tr>