• R/O
  • HTTP
  • SSH
  • HTTPS

handbrake-jp: Commit

handbrake-jp project\'s main repository.


Commit MetaInfo

Revisión4d0682a5169effd35e352411170cb937ca1c35cf (tree)
Tiempo2009-12-28 18:22:36
Autorunknown <hirom@.(no...>
Commiterunknown

Log Message

fix: cannot preview with QT

Cambiar Resumen

Diferencia incremental

--- a/win/C#/Properties/Settings.Designer.cs
+++ b/win/C#/Properties/Settings.Designer.cs
@@ -157,7 +157,7 @@ namespace Handbrake.Properties {
157157
158158 [global::System.Configuration.UserScopedSettingAttribute()]
159159 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
160- [global::System.Configuration.DefaultSettingValueAttribute("http://sourceforge.jp/projects/handbrake-jp/docs/appcast.xml")]
160+ [global::System.Configuration.DefaultSettingValueAttribute("http://sourceforge.jp/projects/handbrake-jp/docs/appcast094.xml")]
161161 public string appcast {
162162 get {
163163 return ((string)(this["appcast"]));
--- a/win/C#/Properties/Settings.settings
+++ b/win/C#/Properties/Settings.settings
@@ -36,7 +36,7 @@
3636 <Value Profile="(Default)" />
3737 </Setting>
3838 <Setting Name="appcast" Type="System.String" Scope="User">
39- <Value Profile="(Default)">http://sourceforge.jp/projects/handbrake-jp/docs/appcast.xml</Value>
39+ <Value Profile="(Default)">http://sourceforge.jp/projects/handbrake-jp/docs/appcast094.xml</Value>
4040 </Setting>
4141 <Setting Name="appcast_unstable" Type="System.String" Scope="User">
4242 <Value Profile="(Default)">http://sourceforge.jp/projects/handbrake-jp/docs/appcast_unstable.xml</Value>
--- a/win/C#/app.config
+++ b/win/C#/app.config
@@ -41,7 +41,7 @@
4141 <value />
4242 </setting>
4343 <setting name="appcast" serializeAs="String">
44- <value>http://sourceforge.jp/projects/handbrake-jp/docs/appcast.xml</value>
44+ <value>http://sourceforge.jp/projects/handbrake-jp/docs/appcast094.xml</value>
4545 </setting>
4646 <setting name="appcast_unstable" serializeAs="String">
4747 <value>http://sourceforge.jp/projects/handbrake-jp/docs/appcast_unstable.xml</value>
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -459,7 +459,7 @@ namespace Handbrake
459459 updateWindow.ShowDialog();
460460 }
461461 else
462- MessageBox.Show("現在利用可能なアップデートはありません", "Update Check", MessageBoxButtons.OK, MessageBoxIcon.Information);
462+ MessageBox.Show("現在利用可能なアップデートはありません。", "Update Check", MessageBoxButtons.OK, MessageBoxIcon.Information);
463463 lbl_updateCheck.Visible = false;
464464 return;
465465 }
@@ -582,11 +582,11 @@ namespace Handbrake
582582 {
583583 Properties.Settings.Default.defaultPreset = treeView_presets.SelectedNode.Text;
584584 Properties.Settings.Default.Save();
585- MessageBox.Show("デフォルトプリセットを変更しました", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Information);
585+ MessageBox.Show("デフォルトプリセットを変更しました。", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Information);
586586 }
587587 }
588588 else
589- MessageBox.Show("プリセットを選択してください", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
589+ MessageBox.Show("プリセットを選択してください。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
590590 }
591591 private void treeview_presets_mouseUp(object sender, MouseEventArgs e)
592592 {
@@ -834,13 +834,13 @@ namespace Handbrake
834834 this.Focus();
835835 }
836836 else if (string.IsNullOrEmpty(sourcePath) || string.IsNullOrEmpty(text_destination.Text))
837- MessageBox.Show("選択された変換元/保存先は存在しません", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
837+ MessageBox.Show("選択された変換元/保存先は存在しません。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
838838 }
839839 }
840840 private void btn_add2Queue_Click(object sender, EventArgs e)
841841 {
842842 if (string.IsNullOrEmpty(sourcePath) || string.IsNullOrEmpty(text_destination.Text))
843- MessageBox.Show("変換元/保存先が選択されていません", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
843+ MessageBox.Show("変換元/保存先が選択されていません。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
844844 else
845845 {
846846 String query = queryGen.GenerateCLIQuery(this, 0, null);
@@ -871,7 +871,7 @@ namespace Handbrake
871871 private void tb_preview_Click(object sender, EventArgs e)
872872 {
873873 if (string.IsNullOrEmpty(sourcePath) || string.IsNullOrEmpty(text_destination.Text))
874- MessageBox.Show("変換元/保存先が選択されていません", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
874+ MessageBox.Show("変換元/保存先が選択されていません。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
875875 else
876876 {
877877 if (qtpreview == null)
@@ -885,7 +885,7 @@ namespace Handbrake
885885 qtpreview.Show();
886886 }
887887 else
888- MessageBox.Show(qtpreview, "プレビューウィンドウをすでに開いています", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
888+ MessageBox.Show(qtpreview, "プレビューウィンドウをすでに開いています。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
889889 }
890890 }
891891 private void btn_ActivityWindow_Click(object sender, EventArgs e)
@@ -996,13 +996,13 @@ namespace Handbrake
996996 private void drp_dvdtitle_Click(object sender, EventArgs e)
997997 {
998998 if ((drp_dvdtitle.Items.Count == 1) && (drp_dvdtitle.Items[0].ToString() == "自動"))
999- MessageBox.Show("タイトルが選択されていません。「変換元」をクリックして変換元を選択してください", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
999+ MessageBox.Show("タイトルが選択されていません。「変換元」をクリックして変換元を選択してください。", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
10001000 }
10011001 private void drp_dvdtitle_SelectedIndexChanged(object sender, EventArgs e)
10021002 {
10031003 UnRegisterPresetEventHandler();
10041004
1005- PictureSettings.lbl_Aspect.Text = "タイトルを選択してください"; // Reset some values on the form
1005+ PictureSettings.lbl_Aspect.Text = "タイトルを選択してください。"; // Reset some values on the form
10061006 drop_chapterStart.Items.Clear();
10071007 drop_chapterFinish.Items.Clear();
10081008
@@ -1061,7 +1061,7 @@ namespace Handbrake
10611061 if (autoPath != null)
10621062 text_destination.Text = autoPath;
10631063 else
1064- MessageBox.Show("設定で「出力ファイル名を自動的に設定する」が有効になっていますが、保存先フォルダが指定されていません。「ツール」メニューの「オプション設定」で設定してください", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
1064+ MessageBox.Show("設定で「出力ファイル名を自動的に設定する」が有効になっていますが、保存先フォルダが指定されていません。「ツール」メニューの「オプション設定」で設定してください。", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
10651065 }
10661066
10671067 data_chpt.Rows.Clear();
@@ -1171,7 +1171,7 @@ namespace Handbrake
11711171 if (DVD_Save.ShowDialog() == DialogResult.OK)
11721172 {
11731173 if (DVD_Save.FileName.StartsWith("\\"))
1174- MessageBox.Show("HandBrakeはUNCパスに対応していません。\n共有フォルダをマウントして選択してください","Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
1174+ MessageBox.Show("HandBrakeはUNCパスに対応していません。\n共有フォルダをマウントして選択してください。","Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
11751175 else
11761176 {
11771177 // Add a file extension manually, as FileDialog.AddExtension has issues with dots in filenames
@@ -1747,7 +1747,7 @@ namespace Handbrake
17471747 }
17481748 private void UpdateSourceLabel()
17491749 {
1750- labelSource.Text = string.IsNullOrEmpty(sourcePath) ? "「変換元」をクリックしてください" : this.SourceName;
1750+ labelSource.Text = string.IsNullOrEmpty(sourcePath) ? "「変換元」をクリックしてください。" : this.SourceName;
17511751 }
17521752 #endregion
17531753
@@ -1771,7 +1771,7 @@ namespace Handbrake
17711771
17721772 lbl_encode.Text = "変換完了";
17731773 btn_start.Text = "変換開始";
1774- btn_start.ToolTipText = "変換作業を開始します";
1774+ btn_start.ToolTipText = "変換作業を開始します。";
17751775 btn_start.Image = Properties.Resources.Play;
17761776
17771777 // If the window is minimized, display the notification in a popup.
@@ -1804,7 +1804,7 @@ namespace Handbrake
18041804 lbl_encode.Visible = true;
18051805 lbl_encode.Text = "変換中(" + encodeQueue.Count + "個のアイテムが待機中)";
18061806 btn_start.Text = "中止";
1807- btn_start.ToolTipText = "変換作業を中止します";
1807+ btn_start.ToolTipText = "変換作業を中止します。";
18081808 btn_start.Image = Properties.Resources.stop;
18091809 }
18101810 catch (Exception exc)
@@ -2171,7 +2171,7 @@ namespace Handbrake
21712171 if (presetHandler.CheckIfPresetsAreOutOfDate())
21722172 if (!Properties.Settings.Default.presetNotification)
21732173 MessageBox.Show(splash,
2174- "新しい標準プリセットが利用できます",
2174+ "新しい標準プリセットをロードします。",
21752175 "Preset Update", MessageBoxButtons.OK, MessageBoxIcon.Information);
21762176
21772177 presetHandler.GetPresetPanel(ref treeView_presets);
@@ -2189,7 +2189,7 @@ namespace Handbrake
21892189 // If currently encoding, the queue isn't paused, and there are queue items to process, prompt to confirm close.
21902190 if ((encodeQueue.isEncoding) && (!encodeQueue.PauseRequested) && (encodeQueue.Count > 0))
21912191 {
2192- DialogResult result = MessageBox.Show("現在変換作業を実行中です。HandBrakeを終了しても、実行中の作業は中止されません。ただし、キューにあるアイテムについては変換作業が中止されます。\n\nHandBrakeを終了しますか?",
2192+ DialogResult result = MessageBox.Show("現在変換作業を実行中です。HandBrakeを終了しても、実行中の変換処理は中止されません。ただし、キューにあるアイテムについては変換処理が中止されます。\n\nHandBrakeを終了しますか?",
21932193 "Close HandBrake?", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
21942194 if (result == DialogResult.No)
21952195 e.Cancel = true;
--- a/win/C#/frmPreview.cs
+++ b/win/C#/frmPreview.cs
@@ -124,7 +124,7 @@ namespace Handbrake
124124 btn_playVLC.Enabled = true;
125125
126126 // Decide which player to use.
127- String playerSelection = lbl_status.Text.Contains("QT") ? "QT" : "VLC";
127+ String playerSelection = lbl_status.Text.Contains("QuickTime") ? "QT" : "VLC";
128128
129129 lbl_status.Text = "ロード中...";
130130
Show on old repository browser