Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'integration/master' of github.com:zanata/zanata into in…
Browse files Browse the repository at this point in the history
…tegration/master
  • Loading branch information
Carlos Munoz committed Jul 20, 2012
2 parents 4f328db + a7ad310 commit 372e599
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Expand Up @@ -566,6 +566,11 @@ public List<TranslationResult> revertTranslations(LocaleId localeId, List<TransU
HLocale hLocale = validateLocale(localeId, sampleHTextFlow);
for (TransUnitUpdateInfo info : translationsToRevert)
{
if (!info.isSuccess() || !info.isTargetChanged())
{
continue;
}

TransUnitId tuId = info.getTransUnit().getId();
HTextFlow hTextFlow = entityManager.find(HTextFlow.class, tuId.getValue());
HTextFlowTarget hTextFlowTarget = getOrCreateTarget(hTextFlow, hLocale);
Expand Down
Expand Up @@ -450,7 +450,7 @@ tr.ApprovedStateDecoration td.TableEditorCell-Target .TableEditorContent-Edit

.projectWideSearchPanel
{
color: #999999;
color: #555555;
background-color: #f3f2f2;
border-bottom: 1px solid lightgrey;
padding: 0px 20px;
Expand Down

0 comments on commit 372e599

Please sign in to comment.