Help: Clarified attribute modifiers in help

This commit is contained in:
Paul Beckingham
2015-08-17 08:55:23 -04:00
parent 358e0cc62d
commit 1ec650edd2
9 changed files with 162 additions and 108 deletions

View File

@@ -934,21 +934,27 @@
" end: Data ukończenia/usunięcia zadania\n" \
" start: Data wystartowania zadania\n" \
" scheduled: Data zaplanowanego startu zadania\n" \
" modified: Date task was last modified\n" \
" depends: Inne zadania od których zależy dane zadanie\n" \
"\n" \
"Modyfikatory atrybutów zwiększają precyzję filtrów. Dostępne modyfikatory:\n" \
" before (synonimy pod, poniżej)\n" \
" after (synonimy nad, powyżej)\n" \
" none\n" \
" any\n" \
" is (synonim równe)\n" \
" isnt (synonim nierówne)\n" \
" has (synonim zawiera)\n" \
" hasnt\n" \
" startswith (synonim od lewej)\n" \
" endswith (synonim od prawej)\n" \
" word\n" \
" noword\n" \
"\n" \
" Modifiers Example Equivalent Meaning\n" \
" ---------------- ----------------- ------------------- -------------------------\n" \
" due:today due = today Fuzzy match\n" \
" not due.not:today due != today Fuzzy non-match\n" \
" before, below due.before:today due < tomorrow Exact date comparison\n" \
" after, above due.after:today due > tomorrow Exact date comparison\n" \
" none project.none: project == '' Empty\n" \
" any project.any: project !== '' Not empty\n" \
" is, equals project.is:x project == x Exact match\n" \
" isnt project.isnt:x project !== x Exact non-match\n" \
" has, contains desc.has:Hello desc ~ Hello Pattern match\n" \
" hasnt, desc.hasnt:Hello desc !~ Hello Pattern non-match\n" \
" startswith, left desc.left:Hel desc ~ '^Hel' Beginning match\n" \
" endswith, right desc.right:llo desc ~ 'llo$' End match\n" \
" word desc.word:Hello desc ~ '\\bHello\\b' Boundaried word match\n" \
" noword desc.noword:Hello desc !~ '\\bHello\\b' Boundaried word non-match\n" \
"\n" \
"Dostępne wyrażenia algebraiczne:\n" \
" and or xor Operatory logiczne\n" \