Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] #11

Closed
wants to merge 18 commits into from
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c27a531
[FEATURE] Add tags for each language label
kamilmaliszewski Jan 31, 2020
f88ba77
[FEATURE] Implementation of tags and imports from .yaml files
kamilmaliszewski Jan 31, 2020
0cf6254
[FEATURE] Implementation of read & import configuration from YAML fil…
kamilmaliszewski Jan 31, 2020
7481904
[FEATURE] Clean-up the code
kamilmaliszewski Jan 31, 2020
8aa67cb
Merge remote-tracking branch 'upstream/master'
kamilmaliszewski Feb 5, 2020
62deb4f
[FEATURE] Implement import translations in all languages used in YAML…
kamilmaliszewski Feb 5, 2020
5eb4e1d
[FIX] Fix problem with missing tags after create new translation from BE
kamilmaliszewski Feb 5, 2020
efe691e
[FEATURE] Implement flag to determine if record was edited from BE
kamilmaliszewski Feb 5, 2020
4e82044
[FEATURE] Implement common cache cleaner service for whole ext
kamilmaliszewski Feb 5, 2020
9d3f144
[FIX] Fix not working button to remove from list in TYPO3 9.x
kamilmaliszewski Feb 5, 2020
50599cd
Merge remote-tracking branch 'upstream/master'
kamilmaliszewski Feb 5, 2020
95c6cd6
[FIX] Fix problem with rendering BE list when no language is selected
kamilmaliszewski Feb 5, 2020
fdb8e2c
[FEATURE] Create missing default labels from extension before each ta…
kamilmaliszewski Feb 5, 2020
e24e8ad
Merge remote-tracking branch 'upstream/master'
kamilmaliszewski Feb 10, 2020
3be555d
[FIX] Solve problem with rendering BE module when languages are selected
kamilmaliszewski Feb 10, 2020
b2a96a7
Merge remote-tracking branch 'upstream/master'
kamilmaliszewski Feb 21, 2020
a58204e
Merge remote-tracking branch 'upstream/master'
kamilmaliszewski Sep 16, 2020
e8c16cd
[FIX] Solve problem with cli task to create new records
kamilmaliszewski Sep 16, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Classes/Domain/Repository/LabelRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public function indexExtensionLabels($extKey)
$obj->setLlFile(FileUtility::getRelativePathFromAbsolute($llFile));
$obj->setLlFileIndex(strrev(FileUtility::getRelativePathFromAbsolute($llFile)));
$obj->setLanguage('default');
$obj->setModify(0);
/** @var Label $indexedLabel */
$indexedLabel = $this->getIndexedLabel($obj);
try {
Expand Down Expand Up @@ -231,6 +232,7 @@ public function createLanguageChildFromDefault(array $defaultLabel, string $tran
$label->setLlFileIndex(strrev($defaultLabel['ll_file']));
$label->setLanguage($language);
$label->setTags($defaultLabel['tags']);
$label->setModify(0);
try {
$this->add($label);
} catch (IllegalObjectTypeException $e) {
Expand Down