* misc
This commit is contained in:
parent
0b4730f070
commit
91e6fbc5a1
|
@ -43,7 +43,7 @@ public enum SubtitleNaming {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "By Video/Language";
|
||||
return "Match Video and Language";
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -238,7 +238,7 @@ public class FormatDialog extends JDialog {
|
|||
|
||||
if (locked) {
|
||||
this.setTitle(String.format("%s Format", mode));
|
||||
title.setText(String.format("%s Format - %s ⇔ %s", mode, bindings.getInfoObject(), bindings.getMediaFile() == null ? null : bindings.getMediaFile().getName()));
|
||||
title.setText(String.format("%s ⇔ %s", mode, bindings.getInfoObject(), bindings.getMediaFile() == null ? null : bindings.getMediaFile().getName()));
|
||||
} else {
|
||||
this.setTitle(String.format("%s Format", mode));
|
||||
title.setText(String.format("%s Format", mode));
|
||||
|
|
|
@ -93,7 +93,7 @@ class SubtitleAutoMatchDialog extends JDialog {
|
|||
|
||||
public SubtitleAutoMatchDialog(Window owner) {
|
||||
super(owner, "Download Subtitles", ModalityType.DOCUMENT_MODAL);
|
||||
preferredSubtitleNaming.setSelectedItem(SubtitleNaming.MATCH_VIDEO);
|
||||
preferredSubtitleNaming.setSelectedItem(SubtitleNaming.MATCH_VIDEO_ADD_LANGUAGE_TAG);
|
||||
|
||||
JComponent content = (JComponent) getContentPane();
|
||||
content.setLayout(new MigLayout("fill, insets dialog, nogrid", "", "[fill][pref!]"));
|
||||
|
|
Loading…
Reference in New Issue