//------------------------------------------------------------------------------\r
// <auto-generated>\r
// This code was generated by a tool.\r
-// Runtime Version:4.0.30319.18052\r
+// Runtime Version:4.0.30319.18408\r
//\r
// Changes to this file may cause incorrect behavior and will be lost if\r
// the code is regenerated.\r
///Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern.\r
///\r
///Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion.\r
- ///\r
- /// [rest of string was truncated]";.\r
+ ///\r /// [rest of string was truncated]";.\r
/// </summary>\r
public static string Advanced_MotionEstimationMethodToolTip {\r
get {\r
}\r
}\r
\r
+ /// <summary>\r
+ /// Looks up a localized string similar to Error.\r
+ /// </summary>\r
+ public static string Error {\r
+ get {\r
+ return ResourceManager.GetString("Error", resourceCulture);\r
+ }\r
+ }\r
+ \r
+ /// <summary>\r
+ /// Looks up a localized string similar to Warning: It is not currently possible to use this feature if you require specific subtitle or audio tracks that the automatic selection feature (see options) doesn't support! Tracks are reset with every new source / title selected..\r
+ /// </summary>\r
+ public static string Main_AutoAdd_AudioAndSubWarning {\r
+ get {\r
+ return ResourceManager.GetString("Main_AutoAdd_AudioAndSubWarning", resourceCulture);\r
+ }\r
+ }\r
+ \r
+ /// <summary>\r
+ /// Looks up a localized string similar to You must first scan a source and setup your job before adding to the queue..\r
+ /// </summary>\r
+ public static string Main_ScanSourceFirst {\r
+ get {\r
+ return ResourceManager.GetString("Main_ScanSourceFirst", resourceCulture);\r
+ }\r
+ }\r
+ \r
+ /// <summary>\r
+ /// Looks up a localized string similar to You must turn on automatic file naming AND set a default path in preferences before you can add to the queue..\r
+ /// </summary>\r
+ public static string Main_TurnOnAutoFileNaming {\r
+ get {\r
+ return ResourceManager.GetString("Main_TurnOnAutoFileNaming", resourceCulture);\r
+ }\r
+ }\r
+ \r
/// <summary>\r
/// Looks up a localized string similar to The Built-in presets have been reset..\r
/// </summary>\r
return ResourceManager.GetString("Video_x264Tune", resourceCulture);\r
}\r
}\r
+ \r
+ /// <summary>\r
+ /// Looks up a localized string similar to Warning.\r
+ /// </summary>\r
+ public static string Warning {\r
+ get {\r
+ return ResourceManager.GetString("Warning", resourceCulture);\r
+ }\r
+ }\r
}\r
}\r
<data name="Video_ScalingModes" xml:space="preserve">\r
<value>OpenCL Scaling is only available for modern graphics cards that support OpenCL 1.1 or later. It will fallback to Lanczos software scaling when it is not available for use. Performance gain up to 5%. Minor decrease in quality in some cases.</value>\r
</data>\r
+ <data name="Error" xml:space="preserve">\r
+ <value>Error</value>\r
+ </data>\r
+ <data name="Main_AutoAdd_AudioAndSubWarning" xml:space="preserve">\r
+ <value>Warning: It is not currently possible to use this feature if you require specific subtitle or audio tracks that the automatic selection feature (see options) doesn't support! Tracks are reset with every new source / title selected.</value>\r
+ </data>\r
+ <data name="Main_ScanSourceFirst" xml:space="preserve">\r
+ <value>You must first scan a source and setup your job before adding to the queue.</value>\r
+ </data>\r
+ <data name="Main_TurnOnAutoFileNaming" xml:space="preserve">\r
+ <value>You must turn on automatic file naming AND set a default path in preferences before you can add to the queue.</value>\r
+ </data>\r
+ <data name="Warning" xml:space="preserve">\r
+ <value>Warning</value>\r
+ </data>\r
</root>
\ No newline at end of file
{\r
if (this.ScannedSource == null || this.ScannedSource.Titles == null || this.ScannedSource.Titles.Count == 0)\r
{\r
- this.errorService.ShowMessageBox("You must first scan a source and setup your job before adding to the queue.", "Error", MessageBoxButton.OK, MessageBoxImage.Error);\r
+ this.errorService.ShowMessageBox(Resources.Main_ScanSourceFirst, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);\r
return;\r
}\r
\r
if (!AutoNameHelper.IsAutonamingEnabled())\r
{\r
- this.errorService.ShowMessageBox("You must turn on automatic file naming in preferences before you can add to the queue.", "Error", MessageBoxButton.OK, MessageBoxImage.Error);\r
+ this.errorService.ShowMessageBox(Resources.Main_TurnOnAutoFileNaming, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);\r
return;\r
}\r
\r
if (this.CurrentTask != null && this.CurrentTask.SubtitleTracks != null && this.CurrentTask.SubtitleTracks.Count > 0)\r
{\r
- this.errorService.ShowMessageBox("Warning: It is not currently possible to use this feature if you require specific subtitle or audio tracks that the automatic selection feature (see options) doesn't support! Tracks are reset with every new source / title selected.", "Warning", MessageBoxButton.OK, MessageBoxImage.Error);\r
+ this.errorService.ShowMessageBox(Resources.Main_AutoAdd_AudioAndSubWarning, Resources.Warning, MessageBoxButton.OK, MessageBoxImage.Error);\r
}\r
\r
foreach (Title title in this.ScannedSource.Titles)\r