Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
motla committed Jan 3, 2023
1 parent e729e0a commit 414785c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.2
- Minor text label change for dates in query: "After (included)" and "Before (non included)"

## v2.0.1
- Bugfix when exporting data with no space
- Avoid using executeOne as it can trigger exceptions in edge cases: head(execute()) with null check is preferable
Expand Down
4 changes: 2 additions & 2 deletions query/PhixatorWorkLogSearchEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ protected function buildCustomSearchFields() {
(new PhabricatorProjectSearchField())->setLabel(pht('Projects'))->setKey('projectPHIDs')->setAliases(['project', 'projects']),
(new PhabricatorSpacesSearchField())->setLabel(pht('Spaces'))->setKey('spacePHIDs')->setAliases(['space', 'spaces']),
(new PhabricatorSearchTextField())->setLabel(pht('Tasks'))->setKey('taskIDs')->setAliases(['task', 'tasks']),
(new PhabricatorSearchDateField())->setLabel(pht('After'))->setKey('dateStart')->setAliases(['after']),
(new PhabricatorSearchDateField())->setLabel(pht('Before'))->setKey('dateEnd')->setAliases(['before']),
(new PhabricatorSearchDateField())->setLabel(pht('After (included)'))->setKey('dateStart')->setAliases(['after']),
(new PhabricatorSearchDateField())->setLabel(pht('Before (non included)'))->setKey('dateEnd')->setAliases(['before']),
(new PhabricatorSearchCheckboxesField())->setLabel(pht('Display'))->setKey('hide')->setOptions(array(
'space' => pht('Hide Space'),
'monogram' => pht('Hide Task Monogram'),
Expand Down
4 changes: 2 additions & 2 deletions translation/PhixatorTranslationFrFR.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ protected function getTranslations() {
'Projects' => 'Projets',
'Spaces' => 'Espaces',
'Tasks' => 'Tâches',
'After' => 'Après',
'Before' => 'Avant',
'After (included)' => 'Après (inclus)',
'Before (non included)' => 'Avant (non inclus)',
'Display' => 'Affichage',
'Hide Space' => 'Masquer l\'espace',
'Hide Task Monogram' => 'Masquer le monogramme de la tâche',
Expand Down

0 comments on commit 414785c

Please sign in to comment.