Display "Patch Set" instead of "PS" in revisions popup

"Patch Set" consumes more space but some users get confused about what
"PS" means.

Change-Id: I47618cd740d264df5deb8d7af83b6bb57b2ce9be
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-11-25 13:22:06 +01:00
parent b376b5bfc8
commit cb2892064b
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ interface Constants extends com.google.gwt.i18n.client.Constants {
String openChange();
String reviewedFileTitle();
String ps();
String patchSet();
String commit();
String date();
String author();

View File

@@ -3,7 +3,7 @@ nextChange = Next related change
openChange = Open related change
reviewedFileTitle = Mark file as reviewed (Shortcut: r)
ps = PS
patchSet = Patch Set
commit = Commit
date = Date
author = Author / Committer

View File

@@ -160,7 +160,7 @@ class RevisionsBox extends Composite {
sb.openTr()
.openTh()
.setStyleName(style.legacy_id())
.append(Resources.C.ps())
.append(Resources.C.patchSet())
.closeTh()
.openTh().append(Resources.C.commit()).closeTh()
.openTh().append(Resources.C.date()).closeTh()