1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
This commit is contained in:
Reinhard Pointner 2014-01-11 08:47:37 +00:00
parent 0b4730f070
commit 91e6fbc5a1
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public enum SubtitleNaming {
@Override
public String toString() {
return "By Video/Language";
return "Match Video and Language";
}
};

View File

@ -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));

View File

@ -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!]"));