Skip to content

Commit

Permalink
improve show og data
Browse files Browse the repository at this point in the history
  • Loading branch information
bolsinga committed Sep 8, 2023
1 parent 4de5b78 commit f2ac11c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/bolsinga/music/ShowRecordDocumentCreator.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public String getFilePath() {
return fLinks.getIdentifierPath(show);
}
public String getTitle() {
return Util.toString(show.getDate()) + " @ " + show.getVenue().getName();
Object[] args = { show.getArtists().get(0).getName(), show.getVenue().getName() };
return MessageFormat.format(Util.getResourceString("showdetail"), args);
}
});
}
Expand Down
1 change: 1 addition & 0 deletions src/properties/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ sets=Sets
showsby=Shows by {0}
showsummary=More...
showsummarytitle=Show Review
showdetail={0} @ {1}
sitepagetitle={1} - {0}
states=States
statistics={0} Statistics
Expand Down

0 comments on commit f2ac11c

Please sign in to comment.