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

Commit

Permalink
remove trans unit id from translation unit details panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Huang committed Nov 5, 2012
1 parent e2564d1 commit 0ae9f5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -83,8 +83,8 @@ public interface TableEditorMessages extends Messages
@DefaultMessage("History")
String history();

@DefaultMessage("Translation Unit Details: Row {0}; Id {1}; {2}")
String transUnitDetailsHeadingWithInfo(int rowIndex, String transUnitId, String info);
@DefaultMessage("Translation Unit Details: Row {0}; {1}")
String transUnitDetailsHeadingWithInfo(int rowIndex, String info);

@DefaultMessage("Copy message from source language (Alt+G)")
String copyFromSource();
Expand Down
Expand Up @@ -73,7 +73,7 @@ public void setDetails(TransUnit transUnit)
{
headerSummary.append(" Comment: ").append(comment);
}
headerLabel.setText(messages.transUnitDetailsHeadingWithInfo(transUnit.getRowIndex(), transUnit.getId().toString(), headerSummary.toString()));
headerLabel.setText(messages.transUnitDetailsHeadingWithInfo(transUnit.getRowIndex(), headerSummary.toString()));
}

interface TransUnitDetailsPanelUiBinder extends UiBinder<DisclosurePanel, TransUnitDetailsPanel>
Expand Down

0 comments on commit 0ae9f5f

Please sign in to comment.