mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
* Disable rendering of tag based on register * Improvements to disable tag * Resolve disbale tag tests * Test disable_tags register * disabled_tags is now always avaiable * Allow multiple tags to be disabled at once * Move disabled check to block_body * Code improvements * Remove redundant nil check * Improve disabled tag error output * Improve disable tag API * Code improvements * Switch disabled? to not mutate output * Fix array handling shortcut in disable_tags
30 lines
2.0 KiB
YAML
30 lines
2.0 KiB
YAML
---
|
|
errors:
|
|
syntax:
|
|
tag_unexpected_args: "Syntax Error in '%{tag}' - Valid syntax: %{tag}"
|
|
assign: "Syntax Error in 'assign' - Valid syntax: assign [var] = [source]"
|
|
capture: "Syntax Error in 'capture' - Valid syntax: capture [var]"
|
|
case: "Syntax Error in 'case' - Valid syntax: case [condition]"
|
|
case_invalid_when: "Syntax Error in tag 'case' - Valid when condition: {% when [condition] [or condition2...] %}"
|
|
case_invalid_else: "Syntax Error in tag 'case' - Valid else condition: {% else %} (no parameters) "
|
|
cycle: "Syntax Error in 'cycle' - Valid syntax: cycle [name :] var [, var2, var3 ...]"
|
|
for: "Syntax Error in 'for loop' - Valid syntax: for [item] in [collection]"
|
|
for_invalid_in: "For loops require an 'in' clause"
|
|
for_invalid_attribute: "Invalid attribute in for loop. Valid attributes are limit and offset"
|
|
if: "Syntax Error in tag 'if' - Valid syntax: if [expression]"
|
|
include: "Error in tag 'include' - Valid syntax: include '[template]' (with|for) [object|collection]"
|
|
unknown_tag: "Unknown tag '%{tag}'"
|
|
invalid_delimiter: "'%{tag}' is not a valid delimiter for %{block_name} tags. use %{block_delimiter}"
|
|
unexpected_else: "%{block_name} tag does not expect 'else' tag"
|
|
unexpected_outer_tag: "Unexpected outer '%{tag}' tag"
|
|
tag_termination: "Tag '%{token}' was not properly terminated with regexp: %{tag_end}"
|
|
variable_termination: "Variable '%{token}' was not properly terminated with regexp: %{tag_end}"
|
|
tag_never_closed: "'%{block_name}' tag was never closed"
|
|
meta_syntax_error: "Liquid syntax error: #{e.message}"
|
|
table_row: "Syntax Error in 'table_row loop' - Valid syntax: table_row [item] in [collection] cols=3"
|
|
render: "Syntax error in tag 'render' - Template name must be a quoted string"
|
|
argument:
|
|
include: "Argument error in tag 'include' - Illegal template name"
|
|
disabled:
|
|
tag: "usage is not allowed in this context"
|