Merge pull request #2094 from OpenRefine/thadguidry-patch-Help
[DRAFT] Add recon and record to Help tab
This commit is contained in:
commit
45e100a00c
@ -217,6 +217,7 @@
|
||||
"core-dialogs/row-fields": "The current row. It has 5 fields: 'flagged', 'starred', 'index', 'cells', and 'record'.",
|
||||
"core-dialogs/cells-of-row": "The cells of the current row. This is a shortcut for 'row.cells'. A particular cell can be retrieved with 'cells.<column name>' if the <column name> is a single word, or with 'cells[\"<column name>\"] otherwise.",
|
||||
"core-dialogs/row-index": "The current row's index. This is a shortcut for 'row.index'.",
|
||||
"core-dialogs/record-fields": "one or more rows grouped together to form a record; object has more fields, details at https://github.com/OpenRefine/OpenRefine/wiki/Variables#record",
|
||||
"core-dialogs/returns": "returns",
|
||||
"core-dialogs/from": "From",
|
||||
"core-dialogs/expression": "Expression",
|
||||
|
@ -205,6 +205,9 @@ ExpressionPreviewDialog.Widget.prototype._renderHelp = function(data) {
|
||||
},
|
||||
{ name: "rowIndex",
|
||||
description: $.i18n('core-dialogs/row-index')
|
||||
},
|
||||
{ name: "record",
|
||||
description: $.i18n('core-dialogs/record-fields')
|
||||
}
|
||||
];
|
||||
for (var i = 0; i < vars.length; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user