summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-11-11 22:18:44 +0000
committersr55 <[email protected]>2018-11-11 22:18:44 +0000
commitc8d733b64bb71cfc4c763256ca9ee06efa62ad6b (patch)
treea157b89fbb58d2ccbd101d8a95e8e40b2629d5df
parentefcf50c4a0ff04091de5acf01e3502038b7bfe0e (diff)
WinGui: Adding Language support to the UI. Adding Partial Translation for German Language (Work in progress) #1597
Also fix Main_SelectPreset error. #1669
-rw-r--r--win/CS/HandBrakeWPF/App.xaml.cs18
-rw-r--r--win/CS/HandBrakeWPF/HandBrakeWPF.csproj5
-rw-r--r--win/CS/HandBrakeWPF/Model/InterfaceLanguage.cs45
-rw-r--r--win/CS/HandBrakeWPF/Properties/Resources.Designer.cs10197
-rw-r--r--win/CS/HandBrakeWPF/Properties/Resources.de.resx1900
-rw-r--r--win/CS/HandBrakeWPF/Properties/Resources.resx8
-rw-r--r--win/CS/HandBrakeWPF/Services/UserSettingService.cs2
-rw-r--r--win/CS/HandBrakeWPF/UserSettingConstants.cs2
-rw-r--r--win/CS/HandBrakeWPF/Utilities/InterfaceLanguageUtilities.cs35
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs24
-rw-r--r--win/CS/HandBrakeWPF/Views/OptionsView.xaml48
11 files changed, 7170 insertions, 5114 deletions
diff --git a/win/CS/HandBrakeWPF/App.xaml.cs b/win/CS/HandBrakeWPF/App.xaml.cs
index 60b1bf10e..1731dd551 100644
--- a/win/CS/HandBrakeWPF/App.xaml.cs
+++ b/win/CS/HandBrakeWPF/App.xaml.cs
@@ -11,14 +11,17 @@ namespace HandBrakeWPF
{
using System;
using System.Collections.Generic;
+ using System.Globalization;
using System.IO;
using System.Linq;
+ using System.Threading;
using System.Windows;
using System.Windows.Controls;
using Caliburn.Micro;
using HandBrakeWPF.Helpers;
+ using HandBrakeWPF.Model;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.Startup;
using HandBrakeWPF.Utilities;
@@ -97,6 +100,21 @@ namespace HandBrakeWPF
Portable.Initialise();
}
+ // Setup the UI Language
+
+ IUserSettingService userSettingService = IoC.Get<IUserSettingService>();
+ string culture = userSettingService.GetUserSetting<string>(UserSettingConstants.UiLanguage);
+ if (!string.IsNullOrEmpty(culture) && !"en".Equals(culture))
+ {
+ InterfaceLanguage language = InterfaceLanguageUtilities.FindInterfaceLanguage(culture);
+ if (language != null)
+ {
+ CultureInfo ci = new CultureInfo(language.Culture);
+ Thread.CurrentThread.CurrentCulture = ci;
+ Thread.CurrentThread.CurrentUICulture = ci;
+ }
+ }
+
base.OnStartup(e);
// If we have a file dropped on the icon, try scanning it.
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
index 99ae7df34..a8120971d 100644
--- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
+++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
@@ -165,6 +165,7 @@
<Compile Include="Model\DriveInformation.cs" />
<Compile Include="Model\Filters\FilterTune.cs" />
<Compile Include="Model\Filters\FilterPreset.cs" />
+ <Compile Include="Model\InterfaceLanguage.cs" />
<Compile Include="Model\Picture\PresetPictureSettingsMode.cs" />
<Compile Include="Model\Subtitles\SubtitleBurnInBehaviourModes.cs" />
<Compile Include="Model\Subtitles\SubtitleBehaviourModes.cs" />
@@ -258,6 +259,7 @@
<Compile Include="Utilities\Input\ChapterImporterCsv.cs" />
<Compile Include="Utilities\Input\ChapterImporterTxt.cs" />
<Compile Include="Utilities\Input\ChapterImporterXml.cs" />
+ <Compile Include="Utilities\InterfaceLanguageUtilities.cs" />
<Compile Include="Utilities\Interfaces\INotifyPropertyChangedEx.cs" />
<Compile Include="Utilities\Output\CsvHelper.cs" />
<Compile Include="Utilities\Portable.cs" />
@@ -467,6 +469,9 @@
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
+ <EmbeddedResource Include="Properties\Resources.de.resx">
+ <SubType>Designer</SubType>
+ </EmbeddedResource>
<EmbeddedResource Include="Properties\ResourcesTooltips.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>ResourcesTooltips.Designer.cs</LastGenOutput>
diff --git a/win/CS/HandBrakeWPF/Model/InterfaceLanguage.cs b/win/CS/HandBrakeWPF/Model/InterfaceLanguage.cs
new file mode 100644
index 000000000..e010e86bf
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Model/InterfaceLanguage.cs
@@ -0,0 +1,45 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="OptionsTab.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// A enum representing each tab on the options screen.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model
+{
+ public class InterfaceLanguage
+ {
+ public InterfaceLanguage()
+ {
+ }
+
+ public InterfaceLanguage(string culture, string name)
+ {
+ this.Culture = culture;
+ this.Name = name;
+ }
+
+ public string Culture { get; set; }
+ public string Name { get; set; }
+
+ protected bool Equals(InterfaceLanguage other)
+ {
+ return string.Equals(this.Culture, other.Culture);
+ }
+
+ public override bool Equals(object obj)
+ {
+ if (ReferenceEquals(null, obj)) return false;
+ if (ReferenceEquals(this, obj)) return true;
+ if (obj.GetType() != this.GetType()) return false;
+ return Equals((InterfaceLanguage)obj);
+ }
+
+ public override int GetHashCode()
+ {
+ return (this.Culture != null ? this.Culture.GetHashCode() : 0);
+ }
+ }
+}
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
index aa1cc7b44..f8bee9d35 100644
--- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
+++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs
@@ -1,5089 +1,5108 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace HandBrakeWPF.Properties {
- using System;
-
-
- /// <summary>
- /// A strongly-typed resource class, for looking up localized strings, etc.
- /// </summary>
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public class Resources {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources() {
- }
-
- /// <summary>
- /// Returns the cached ResourceManager instance used by this class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Resources.ResourceManager ResourceManager {
- get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HandBrakeWPF.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- /// <summary>
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Copyright (C) 2003-2018 The HandBrake Team
- ///
- ///This program is free software; you can redistribute it and/or
- ///modify it under the terms of the GNU General Public License
- ///as published by the Free Software Foundation; either version 2
- ///of the License, or (at your option) any later version.
- ///
- ///This program is distributed in the hope that it will be useful,
- ///but WITHOUT ANY WARRANTY; without even the implied warranty of
- ///MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ///GNU General Public License f [rest of string was truncated]&quot;;.
- /// </summary>
- public static string About_GPL {
- get {
- return ResourceManager.GetString("About_GPL", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to License: .
- /// </summary>
- public static string AboutView_License {
- get {
- return ResourceManager.GetString("AboutView_License", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Version: .
- /// </summary>
- public static string AboutView_Version {
- get {
- return ResourceManager.GetString("AboutView_Version", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You can optionally store a picture settings with this preset. There are 3 modes:
- ///
- ///None: Picture settings are not stored in the preset. When loading a source, they will remain as-is within the bounds of the source resolution. This also affects Anamorphic, modulus, cropping etc.
- ///
- ///Custom: You can optionally set a Maximum width and Height. When doing this an encode will be less than or equal to these values. Keep Aspect Ratio will be automatically turned on.
- ///
- ///Source Maximum: Always encode at the sources [rest of string was truncated]&quot;;.
- /// </summary>
- public static string AddPreset_PictureSizeMode {
- get {
- return ResourceManager.GetString("AddPreset_PictureSizeMode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to -- Add New Category --.
- /// </summary>
- public static string AddPresetView_AddNewCategory {
- get {
- return ResourceManager.GetString("AddPresetView_AddNewCategory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add Preset.
- /// </summary>
- public static string AddPresetView_AddPreset {
- get {
- return ResourceManager.GetString("AddPresetView_AddPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Category:.
- /// </summary>
- public static string AddPresetView_Category {
- get {
- return ResourceManager.GetString("AddPresetView_Category", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Description:.
- /// </summary>
- public static string AddPresetView_Description {
- get {
- return ResourceManager.GetString("AddPresetView_Description", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Name:.
- /// </summary>
- public static string AddPresetView_Name {
- get {
- return ResourceManager.GetString("AddPresetView_Name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dimensions:.
- /// </summary>
- public static string AddPresetView_SavePictureSize {
- get {
- return ResourceManager.GetString("AddPresetView_SavePictureSize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The Custom Width or Height fields must be filled in for the &apos;Custom&apos; option..
- /// </summary>
- public static string AddPresetViewModel_CustomWidthHeightFieldsRequired {
- get {
- return ResourceManager.GetString("AddPresetViewModel_CustomWidthHeightFieldsRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A Preset must have a Name. Please fill out the Preset Name field..
- /// </summary>
- public static string AddPresetViewModel_PresetMustProvideName {
- get {
- return ResourceManager.GetString("AddPresetViewModel_PresetMustProvideName", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A Preset with this name already exists. Would you like to overwrite it?.
- /// </summary>
- public static string AddPresetViewModel_PresetWithSameNameOverwriteWarning {
- get {
- return ResourceManager.GetString("AddPresetViewModel_PresetWithSameNameOverwriteWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to add preset.
- /// </summary>
- public static string AddPresetViewModel_UnableToAddPreset {
- get {
- return ResourceManager.GetString("AddPresetViewModel_UnableToAddPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You must first scan a source to use the &apos;Source Maximum&apos; Option..
- /// </summary>
- public static string AddPresetViewModel_YouMustFirstScanSource {
- get {
- return ResourceManager.GetString("AddPresetViewModel_YouMustFirstScanSource", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to x264 has a variety of algorithms to decide when to use B-frames and how many to use.
- ///
- ///Fast mode takes roughly the same amount of time no matter how many B-frames you specify. However, while fast, its decisions are often suboptimal.
- ///
- ///Optimal mode gets slower as the maximum number of B-Frames increases, but makes much more accurate decisions, especially when used with B-pyramid..
- /// </summary>
- public static string Advanced_AdaptiveBFramesToolTip {
- get {
- return ResourceManager.GetString("Advanced_AdaptiveBFramesToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to H.264 allows for two different prediction modes, spatial and temporal, in B-frames.
- ///
- ///Spatial, the default, is almost always better, but temporal is sometimes useful too.
- ///
- ///x264 can, at the cost of a small amount of speed (and accordingly for a small compression gain), adaptively select which is better for each particular frame..
- /// </summary>
- public static string Advanced_AdaptiveDirectModeToolTip {
- get {
- return ResourceManager.GetString("Advanced_AdaptiveDirectModeToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Adaptive quantization controls how the encoder distributes bits across the frame.
- ///Higher values take more bits away from edges and complex areas to improve areas with finer detail..
- /// </summary>
- public static string Advanced_AdaptiveQuantizationStrengthToolTip {
- get {
- return ResourceManager.GetString("Advanced_AdaptiveQuantizationStrengthToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mode decision picks from a variety of options to make its decision: this option chooses what options those are.
- ///Fewer partitions to check means faster encoding, at the cost of worse decisions, since the best option might have been one that was turned off..
- /// </summary>
- public static string Advanced_AnalysisToolTip {
- get {
- return ResourceManager.GetString("Advanced_AnalysisToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sane values are ~2-5.
- ///This specifies the maximum number of sequential B-frames that the encoder can use.
- /// Large numbers generally won&apos;t help significantly unless Adaptive B-frames is set to Optimal.
- ///Cel-animated source material and B-pyramid also significantly increase the usefulness of larger values.
- ///Baseline profile, as required for iPods and similar devices, requires B-frames to be set to 0 (off)..
- /// </summary>
- public static string Advanced_BFramesToolTip {
- get {
- return ResourceManager.GetString("Advanced_BFramesToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to After the encoder has done its work, it has a bunch of data that needs to be compressed losslessly, similar to ZIP or RAR. H.264 provides two options for this: CAVLC and CABAC. CABAC decodes a lot slower but compresses significantly better (10-30%), especially at lower bitrates. If you&apos;re looking to minimize CPU requirements for video playback, disable this option. Baseline profile, as required for iPods and similar devices, requires CABAC to be disabled..
- /// </summary>
- public static string Advanced_CabacToolTip {
- get {
- return ResourceManager.GetString("Advanced_CabacToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly.
- ///The deblocking filter takes a lot of CPU power, so if you&apos;re looking to minimize CPU requirements for video playback, disable it.
- ///
- ///The deblocking filter has two adjustable parameters, &quot;strength&quot; and &quot;threshold&quot;.
- ///The former controls how strong (or weak) the deblocker is, while the latter controls how many (or few) edges [rest of string was truncated]&quot;;.
- /// </summary>
- public static string Advanced_DeblockingToolTip {
- get {
- return ResourceManager.GetString("Advanced_DeblockingToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The 8x8 transform is the single most useful feature of x264 in terms of compression-per-speed.
- ///It improves compression by at least 5% at a very small speed cost and may provide an unusually high visual quality benefit compared to its compression gain.
- ///However, it requires High Profile, which many devices may not support..
- /// </summary>
- public static string Advanced_EightByEightDctToolTip {
- get {
- return ResourceManager.GetString("Advanced_EightByEightDctToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The options passed to the x264 encoder.
- ///The above controls are only a subset of useful x264 parameters.
- ///This box allows you to add or modify additional or current parameters as desired. .
- /// </summary>
- public static string Advanced_EncoderOptions {
- get {
- return ResourceManager.GetString("Advanced_EncoderOptions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Controls the motion estimation method. Motion estimation is how the encoder estimates how each block of pixels in a frame has moved.
- ///A better motion search method improves compression at the cost of speed.
- ///
- ///Diamond: performs an extremely fast and simple search using a diamond pattern.
- ///
- ///Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern.
- ///
- ///Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion.
- /// /// [rest of string was truncated]&quot;;.
- /// </summary>
- public static string Advanced_MotionEstimationMethodToolTip {
- get {
- return ResourceManager.GetString("Advanced_MotionEstimationMethodToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to This is the distance x264 searches from its best guess at the motion of a block in order to try to find its actual motion.
- ///
- ///The default is fine for most content, but extremely high motion video, especially at HD resolutions, may benefit from higher ranges, albeit at a high speed cost..
- /// </summary>
- public static string Advanced_MotionEstimationRangeToolTip {
- get {
- return ResourceManager.GetString("Advanced_MotionEstimationRangeToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to x264 normally zeroes out nearly-empty data blocks to save bits to be better used for some other purpose in the video.
- ///However, this can sometimes have slight negative effects on retention of subtle grain and dither.
- ///Don&apos;t touch this unless you&apos;re having banding issues or other such cases where you are having trouble keeping fine noise..
- /// </summary>
- public static string Advanced_NoDctDecimateToolTip {
- get {
- return ResourceManager.GetString("Advanced_NoDctDecimateToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There is no options pane available for this encoder.
- ///
- ///Please use the &apos;Extra Options&apos; box on the &apos;Video&apos; tab to input any additional encoder parameters you may need..
- /// </summary>
- public static string Advanced_NoOptionsPaneAvailable {
- get {
- return ResourceManager.GetString("Advanced_NoOptionsPaneAvailable", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Psychovisual Rate Distortion means x264 tries to retain detail, for better quality to the human eye,
- ///as opposed to trying to maximize quality the way a computer understands it, through signal-to-noise ratios that have trouble telling apart fine detail and noise..
- /// </summary>
- public static string Advanced_PsychovisualRateDistortionToolTip {
- get {
- return ResourceManager.GetString("Advanced_PsychovisualRateDistortionToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Psychovisual Trellis tries to retain more sharpness and detail, but can cause artifacting.
- ///It is considered experimental, which is why it&apos;s off by default. Good values are 0.1 to 0.2..
- /// </summary>
- public static string Advanced_PsychovisualTrellisToolTip {
- get {
- return ResourceManager.GetString("Advanced_PsychovisualTrellisToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to B-pyramid improves compression by creating a pyramidal structure (hence the name) of B-frames, allowing B-frames to
- ///reference each other to improve compression.
- ///
- ///Requires Max B-frames greater than 1; optimal adaptive B-frames is strongly recommended for full compression benefit..
- /// </summary>
- public static string Advanced_PyramidalBFramesToolTip {
- get {
- return ResourceManager.GetString("Advanced_PyramidalBFramesToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sane values are ~1-6.
- ///
- ///The more you add, the better the compression, but the slower the encode.
- ///
- ///Cel animation tends to benefit from more reference frames a lot more than film content.
- ///
- ///Note that many hardware devices have limitations on the number of supported reference frames, so if you&apos;re encoding for a handheld or standalone player, don&apos;t touch this unless you&apos;re absolutely sure you know what you&apos;re doing!.
- /// </summary>
- public static string Advanced_ReferenceFramesToolTip {
- get {
- return ResourceManager.GetString("Advanced_ReferenceFramesToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to This setting controls both subpixel-precision motion estimation and mode decision methods.
- ///
- ///Subpixel motion estimation is used for refining motion estimates beyond mere pixel accuracy, improving compression.
- ///
- ///Mode decision is the method used to choose how to encode each block of the frame: a very important decision.
- ///
- ///SAD is the fastest method, followed by SATD, RD, RD refinement, and the slowest, QPRD.
- ///6 or higher is strongly recommended: Psy-RD, a very powerful psy optimization that helps retain det [rest of string was truncated]&quot;;.
- /// </summary>
- public static string Advanced_SubpixelMotionEstimationToolTip {
- get {
- return ResourceManager.GetString("Advanced_SubpixelMotionEstimationToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Trellis fine-tunes the rounding of transform coefficients to squeeze out 3-5% more compression at the cost of some speed.
- ///&quot;Always&quot; uses trellis not only during the main encoding process, but also during analysis, which improves compression even more, albeit at great speed cost.
- ///
- ///Trellis costs more speed at higher bitrates..
- /// </summary>
- public static string Advanced_TrellisToolTip {
- get {
- return ResourceManager.GetString("Advanced_TrellisToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Performs extra analysis to decide upon weighting parameters for each frame.
- ///This improves overall compression slightly and improves the quality of fades greatly.
- ///Baseline profile, as required for iPods and similar devices, requires weighted P-frame prediction to be disabled.
- ///Note that some devices and players, even those that support Main Profile,
- ///may have problems with Weighted P-frame prediction: the Apple TV is completely incompatible with it, for example..
- /// </summary>
- public static string Advanced_WeightPToolTip {
- get {
- return ResourceManager.GetString("Advanced_WeightPToolTip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure?.
- /// </summary>
- public static string AreYouSure {
- get {
- return ResourceManager.GetString("AreYouSure", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose Behaviors:.
- /// </summary>
- public static string AudioDefaultView_Behaviours {
- get {
- return ResourceManager.GetString("AudioDefaultView_Behaviours", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Allow passthru of:.
- /// </summary>
- public static string AudioView_AllowPassThruOf {
- get {
- return ResourceManager.GetString("AudioView_AllowPassThruOf", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video..
- /// </summary>
- public static string AudioView_AudioDefaultsDescription {
- get {
- return ResourceManager.GetString("AudioView_AudioDefaultsDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to &apos;Auto Passthru&apos; Behaviour:.
- /// </summary>
- public static string AudioView_AutoPassthruBehaviour {
- get {
- return ResourceManager.GetString("AudioView_AutoPassthruBehaviour", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bitrate.
- /// </summary>
- public static string AudioView_Bitrate {
- get {
- return ResourceManager.GetString("AudioView_Bitrate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Codec.
- /// </summary>
- public static string AudioView_Codec {
- get {
- return ResourceManager.GetString("AudioView_Codec", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to DRC.
- /// </summary>
- public static string AudioView_DRC {
- get {
- return ResourceManager.GetString("AudioView_DRC", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gain.
- /// </summary>
- public static string AudioView_Gain {
- get {
- return ResourceManager.GetString("AudioView_Gain", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hide.
- /// </summary>
- public static string AudioView_Hide {
- get {
- return ResourceManager.GetString("AudioView_Hide", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mixdown.
- /// </summary>
- public static string AudioView_Mixdown {
- get {
- return ResourceManager.GetString("AudioView_Mixdown", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fallback encoder:.
- /// </summary>
- public static string AudioView_OtherwiseFallbackEncoder {
- get {
- return ResourceManager.GetString("AudioView_OtherwiseFallbackEncoder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reload Defaults.
- /// </summary>
- public static string AudioView_ReloadDefaults {
- get {
- return ResourceManager.GetString("AudioView_ReloadDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Samplerate.
- /// </summary>
- public static string AudioView_Samplerate {
- get {
- return ResourceManager.GetString("AudioView_Samplerate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show.
- /// </summary>
- public static string AudioView_Show {
- get {
- return ResourceManager.GetString("AudioView_Show", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Track Name.
- /// </summary>
- public static string AudioView_TrackName {
- get {
- return ResourceManager.GetString("AudioView_TrackName", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Track Selection Behaviour:.
- /// </summary>
- public static string AudioView_TrackSelectionBehaviour {
- get {
- return ResourceManager.GetString("AudioView_TrackSelectionBehaviour", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to For Additional Tracks:.
- /// </summary>
- public static string AudioView_TrackSettingDefaultBehaviour {
- get {
- return ResourceManager.GetString("AudioView_TrackSettingDefaultBehaviour", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to When &apos;Auto Passthru&apos; is selected as the audio codec..
- /// </summary>
- public static string AudioView_WhenAutoPassthru {
- get {
- return ResourceManager.GetString("AudioView_WhenAutoPassthru", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio Defaults.
- /// </summary>
- public static string AudioViewModel_AudioDefaults {
- get {
- return ResourceManager.GetString("AudioViewModel_AudioDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio Tracks.
- /// </summary>
- public static string AudioViewModel_AudioTracks {
- get {
- return ResourceManager.GetString("AudioViewModel_AudioTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Selection Behavior.
- /// </summary>
- public static string AudioViewModel_ConfigureDefaults {
- get {
- return ResourceManager.GetString("AudioViewModel_ConfigureDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Switch Back To Tracks.
- /// </summary>
- public static string AudioViewModel_SwitchBackToTracks {
- get {
- return ResourceManager.GetString("AudioViewModel_SwitchBackToTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter Markers.
- /// </summary>
- public static string ChaptersView_ChapterMarkers {
- get {
- return ResourceManager.GetString("ChaptersView_ChapterMarkers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter Name.
- /// </summary>
- public static string ChaptersView_ChapterName {
- get {
- return ResourceManager.GetString("ChaptersView_ChapterName", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter Number.
- /// </summary>
- public static string ChaptersView_ChapterNumber {
- get {
- return ResourceManager.GetString("ChaptersView_ChapterNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Create chapter markers.
- /// </summary>
- public static string ChaptersView_CreateChapterMarkers {
- get {
- return ResourceManager.GetString("ChaptersView_CreateChapterMarkers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Duration.
- /// </summary>
- public static string ChaptersView_Duration {
- get {
- return ResourceManager.GetString("ChaptersView_Duration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Export.
- /// </summary>
- public static string ChaptersView_Export {
- get {
- return ResourceManager.GetString("ChaptersView_Export", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Import.
- /// </summary>
- public static string ChaptersView_Import {
- get {
- return ResourceManager.GetString("ChaptersView_Import", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter marker names will NOT be saved in your encode..
- /// </summary>
- public static string ChaptersViewModel_UnableToExportChaptersMsg {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to save Chapter Markers file! .
- /// </summary>
- public static string ChaptersViewModel_UnableToExportChaptersWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to First column in chapters file must only contain a integer number value higher than zero (0).
- /// </summary>
- public static string ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to All lines in chapters file must have at least 2 columns of data.
- /// </summary>
- public static string ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Line {0} is invalid. Nothing will be imported..
- /// </summary>
- public static string ChaptersViewModel_UnableToImportChaptersMalformedLineMsg {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersMalformedLineMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to import chapter file.
- /// </summary>
- public static string ChaptersViewModel_UnableToImportChaptersWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter files of type &apos;{0}&apos; are not currently supported..
- /// </summary>
- public static string ChaptersViewModel_UnsupportedFileFormatMsg {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unsupported chapter file type.
- /// </summary>
- public static string ChaptersViewModel_UnsupportedFileFormatWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The number of chapters on the source media
- ///and the number of chapters in the input file do not match ({0} vs {1}).
- ///
- ///Do you still want to import the chapter names?.
- /// </summary>
- public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The number of chapters on the source media
- ///and the number of chapters in the input file do not match ({0} vs {1}).
- ///
- ///Do you still want to import the chapter names?.
- /// </summary>
- public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter count doesn&apos;t match between source and input file.
- /// </summary>
- public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The reported duration of the chapters on the source media
- ///and the duration of chapters in the input file differ greatly.
- ///
- ///It is very likely that this chapter file was produced from a different source media.
- ///
- ///Are you sure you want to import the chapter names?.
- /// </summary>
- public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter duration doesn&apos;t match between source and input file.
- /// </summary>
- public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Invalid chapter information for source media.
- /// </summary>
- public static string ChaptersViewModel_ValidationFailedWarning {
- get {
- return ResourceManager.GetString("ChaptersViewModel_ValidationFailedWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Export Names.
- /// </summary>
- public static string ChapterView_ExportNames {
- get {
- return ResourceManager.GetString("ChapterView_ExportNames", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Import Names.
- /// </summary>
- public static string ChapterView_ImportNames {
- get {
- return ResourceManager.GetString("ChapterView_ImportNames", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reset Chapter Names.
- /// </summary>
- public static string ChapterView_ResetChapterNames {
- get {
- return ResourceManager.GetString("ChapterView_ResetChapterNames", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The system clipboard is currently unavailable..
- /// </summary>
- public static string Clipboard_Unavailable {
- get {
- return ResourceManager.GetString("Clipboard_Unavailable", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to This may be due to another application monitoring or locking the clipboard for its own use. You will not be able to use the clipboard until it is unlocked..
- /// </summary>
- public static string Clipboard_Unavailable_Solution {
- get {
- return ResourceManager.GetString("Clipboard_Unavailable_Solution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm.
- /// </summary>
- public static string Confirm {
- get {
- return ResourceManager.GetString("Confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The following action &apos;{0}&apos; will occur in {1} seconds..
- /// </summary>
- public static string CountdownAlertViewModel_NoticeMessage {
- get {
- return ResourceManager.GetString("CountdownAlertViewModel_NoticeMessage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Cancel Action.
- /// </summary>
- public static string CountdownAlterView_CancelAction {
- get {
- return ResourceManager.GetString("CountdownAlterView_CancelAction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Proceed.
- /// </summary>
- public static string CountdownAlterView_Proceed {
- get {
- return ResourceManager.GetString("CountdownAlterView_Proceed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to When Done Action.
- /// </summary>
- public static string CountdownAlterView_WhenDoneAction {
- get {
- return ResourceManager.GetString("CountdownAlterView_WhenDoneAction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Create Folder?.
- /// </summary>
- public static string DirectoryUtils_CreateFolder {
- get {
- return ResourceManager.GetString("DirectoryUtils_CreateFolder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The folder you are trying to write to does not exist. Would you like HandBrake to create the following folder?
- ///{0}.
- /// </summary>
- public static string DirectoryUtils_CreateFolderMsg {
- get {
- return ResourceManager.GetString("DirectoryUtils_CreateFolderMsg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Error.
- /// </summary>
- public static string Error {
- get {
- return ResourceManager.GetString("Error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Error Details:.
- /// </summary>
- public static string ErrorView_ErrorDetails {
- get {
- return ResourceManager.GetString("ErrorView_ErrorDetails", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to If the problem presists, please try restarting HandBrake..
- /// </summary>
- public static string ErrorViewModel_IfTheProblemPersists {
- get {
- return ResourceManager.GetString("ErrorViewModel_IfTheProblemPersists", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There is no further information available about this error..
- /// </summary>
- public static string ErrorViewModel_NoFurtherInformation {
- get {
- return ResourceManager.GetString("ErrorViewModel_NoFurtherInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to An Unknown Error has occurred..
- /// </summary>
- public static string ErrorViewModel_UnknownError {
- get {
- return ResourceManager.GetString("ErrorViewModel_UnknownError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Custom:.
- /// </summary>
- public static string FiltersView_Custom {
- get {
- return ResourceManager.GetString("FiltersView_Custom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Deblock.
- /// </summary>
- public static string FiltersView_Deblock {
- get {
- return ResourceManager.GetString("FiltersView_Deblock", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Decomb.
- /// </summary>
- public static string FiltersView_Decomb {
- get {
- return ResourceManager.GetString("FiltersView_Decomb", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Deinterlace:.
- /// </summary>
- public static string FiltersView_Deinterlace {
- get {
- return ResourceManager.GetString("FiltersView_Deinterlace", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preset:.
- /// </summary>
- public static string FiltersView_DeinterlacePreset {
- get {
- return ResourceManager.GetString("FiltersView_DeinterlacePreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Deinterlace Preset.
- /// </summary>
- public static string FiltersView_DeinterlacePresetAuto {
- get {
- return ResourceManager.GetString("FiltersView_DeinterlacePresetAuto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Denoise:.
- /// </summary>
- public static string FiltersView_Denoise {
- get {
- return ResourceManager.GetString("FiltersView_Denoise", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Denoise Preset.
- /// </summary>
- public static string FiltersView_DenoisePresetAuto {
- get {
- return ResourceManager.GetString("FiltersView_DenoisePresetAuto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Denoise Tune.
- /// </summary>
- public static string FiltersView_DenoiseTuneAuto {
- get {
- return ResourceManager.GetString("FiltersView_DenoiseTuneAuto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detelecine:.
- /// </summary>
- public static string FiltersView_Detelecine {
- get {
- return ResourceManager.GetString("FiltersView_Detelecine", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Filters.
- /// </summary>
- public static string FiltersView_Filters {
- get {
- return ResourceManager.GetString("FiltersView_Filters", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Flip.
- /// </summary>
- public static string FiltersView_FlipVideo {
- get {
- return ResourceManager.GetString("FiltersView_FlipVideo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Grayscale.
- /// </summary>
- public static string FiltersView_Grayscale {
- get {
- return ResourceManager.GetString("FiltersView_Grayscale", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Interlace Detection:.
- /// </summary>
- public static string FiltersView_InterlaceDetection {
- get {
- return ResourceManager.GetString("FiltersView_InterlaceDetection", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preset:.
- /// </summary>
- public static string FiltersView_Preset {
- get {
- return ResourceManager.GetString("FiltersView_Preset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rotate:.
- /// </summary>
- public static string FiltersView_Rotate {
- get {
- return ResourceManager.GetString("FiltersView_Rotate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sharpen.
- /// </summary>
- public static string FiltersView_Sharpen {
- get {
- return ResourceManager.GetString("FiltersView_Sharpen", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sharpen Preset.
- /// </summary>
- public static string FiltersView_SharpenPresetAuto {
- get {
- return ResourceManager.GetString("FiltersView_SharpenPresetAuto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sharpen Tune.
- /// </summary>
- public static string FiltersView_SharpenTuneAuto {
- get {
- return ResourceManager.GetString("FiltersView_SharpenTuneAuto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tune:.
- /// </summary>
- public static string FiltersView_Tune {
- get {
- return ResourceManager.GetString("FiltersView_Tune", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add.
- /// </summary>
- public static string Generic_Add {
- get {
- return ResourceManager.GetString("Generic_Add", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Cancel.
- /// </summary>
- public static string Generic_Cancel {
- get {
- return ResourceManager.GetString("Generic_Cancel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear.
- /// </summary>
- public static string Generic_Clear {
- get {
- return ResourceManager.GetString("Generic_Clear", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Close.
- /// </summary>
- public static string Generic_Close {
- get {
- return ResourceManager.GetString("Generic_Close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Copy to Clipboard.
- /// </summary>
- public static string Generic_CopyToClipboard {
- get {
- return ResourceManager.GetString("Generic_CopyToClipboard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Move Left.
- /// </summary>
- public static string Generic_MoveLeft {
- get {
- return ResourceManager.GetString("Generic_MoveLeft", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Move Right.
- /// </summary>
- public static string Generic_MoveRight {
- get {
- return ResourceManager.GetString("Generic_MoveRight", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Save.
- /// </summary>
- public static string Generic_Save {
- get {
- return ResourceManager.GetString("Generic_Save", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake.
- /// </summary>
- public static string HandBrake_Title {
- get {
- return ResourceManager.GetString("HandBrake_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Copy to clipboard.
- /// </summary>
- public static string LogView_CopyClipboard {
- get {
- return ResourceManager.GetString("LogView_CopyClipboard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encode Log.
- /// </summary>
- public static string LogView_EncodeLog {
- get {
- return ResourceManager.GetString("LogView_EncodeLog", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open Log Directory.
- /// </summary>
- public static string LogView_OpenLogDir {
- get {
- return ResourceManager.GetString("LogView_OpenLogDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ScanLog.
- /// </summary>
- public static string LogView_ScanLog {
- get {
- return ResourceManager.GetString("LogView_ScanLog", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake is already encoding..
- /// </summary>
- public static string Main_AlreadyEncoding {
- get {
- return ResourceManager.GetString("Main_AlreadyEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warning: If you wish to have subtitles added to each item you are about to queue, please verify that you have the subtitle defaults setup correctly on the subtitles tab.
- ///
- ///Do you wish to continue?.
- /// </summary>
- public static string Main_AutoAdd_AudioAndSubWarning {
- get {
- return ResourceManager.GetString("Main_AutoAdd_AudioAndSubWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please choose a destination for where you would like the encoded file to be saved..
- /// </summary>
- public static string Main_ChooseDestination {
- get {
- return ResourceManager.GetString("Main_ChooseDestination", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to add the last job to the queue. Do you wish to proceed trying to add the rest?.
- /// </summary>
- public static string Main_ContinueAddingToQueue {
- get {
- return ResourceManager.GetString("Main_ContinueAddingToQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The current file already exists, do you wish to overwrite it?.
- /// </summary>
- public static string Main_DestinationOverwrite {
- get {
- return ResourceManager.GetString("Main_DestinationOverwrite", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There are jobs on the queue with the same destination path. Please choose a different path for this job..
- /// </summary>
- public static string Main_DuplicateDestinationOnQueue {
- get {
- return ResourceManager.GetString("Main_DuplicateDestinationOnQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The entered destination path contained illegal characters and will not be updated..
- /// </summary>
- public static string Main_InvalidDestination {
- get {
- return ResourceManager.GetString("Main_InvalidDestination", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pending Jobs {0}.
- /// </summary>
- public static string Main_JobsPending_addon {
- get {
- return ResourceManager.GetString("Main_JobsPending_addon", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your destination directory is low on diskspace. Please free up some disk space on your destination drive. Alternatively you can change the level at which this alert triggers in Options. .
- /// </summary>
- public static string Main_LowDiskspace {
- get {
- return ResourceManager.GetString("Main_LowDiskspace", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You cannot encode to a file with the same path and filename as the source file. Please update the destination filename so that it does not match the source file..
- /// </summary>
- public static string Main_MatchingFileOverwriteWarning {
- get {
- return ResourceManager.GetString("Main_MatchingFileOverwriteWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to New Default Preset Set: {0}.
- /// </summary>
- public static string Main_NewDefaultPreset {
- get {
- return ResourceManager.GetString("Main_NewDefaultPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A New Update is Available. Goto Tools Menu &gt; Options to Install.
- /// </summary>
- public static string Main_NewUpdate {
- get {
- return ResourceManager.GetString("Main_NewUpdate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The output directory you have chosen either does not exist, or you do not have permissions to write files to it..
- /// </summary>
- public static string Main_NoPermissionsOrMissingDirectory {
- get {
- return ResourceManager.GetString("Main_NoPermissionsOrMissingDirectory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Preset selected..
- /// </summary>
- public static string Main_NoPresetSelected {
- get {
- return ResourceManager.GetString("Main_NoPresetSelected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You can not modify built in presets. Please select one of your own presets..
- /// </summary>
- public static string Main_NoUpdateOfBuiltInPresets {
- get {
- return ResourceManager.GetString("Main_NoUpdateOfBuiltInPresets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please select a folder..
- /// </summary>
- public static string Main_PleaseSelectFolder {
- get {
- return ResourceManager.GetString("Main_PleaseSelectFolder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preparing to encode ....
- /// </summary>
- public static string Main_PreparingToEncode {
- get {
- return ResourceManager.GetString("Main_PreparingToEncode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You can not import a preset with the same name as a built-in preset..
- /// </summary>
- public static string Main_PresetErrorBuiltInName {
- get {
- return ResourceManager.GetString("Main_PresetErrorBuiltInName", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to import the selected preset..
- /// </summary>
- public static string Main_PresetImportFailed {
- get {
- return ResourceManager.GetString("Main_PresetImportFailed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The preset may be corrupted or from an older version of HandBrake which is not supported.
- ///Presets from older versions must be re-created in the current version..
- /// </summary>
- public static string Main_PresetImportFailedSolution {
- get {
- return ResourceManager.GetString("Main_PresetImportFailedSolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The preset &quot;{0}&quot; already exists. Would you like to overwrite it?.
- /// </summary>
- public static string Main_PresetOverwriteWarning {
- get {
- return ResourceManager.GetString("Main_PresetOverwriteWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Presets.
- /// </summary>
- public static string Main_Presets {
- get {
- return ResourceManager.GetString("Main_Presets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you wish to update the selected preset?.
- /// </summary>
- public static string Main_PresetUpdateConfrimation {
- get {
- return ResourceManager.GetString("Main_PresetUpdateConfrimation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The Preset has now been updated with your current settings..
- /// </summary>
- public static string Main_PresetUpdated {
- get {
- return ResourceManager.GetString("Main_PresetUpdated", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake has determined your built-in presets are out of date... These presets will now be updated.
- ///Your custom presets have not been updated so you may have to re-create these by deleting and re-adding them.
- ///The previous user_presets.xml file was backed up..
- /// </summary>
- public static string Main_PresetUpdateNotification {
- get {
- return ResourceManager.GetString("Main_PresetUpdateNotification", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Finished.
- /// </summary>
- public static string Main_QueueFinished {
- get {
- return ResourceManager.GetString("Main_QueueFinished", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to with {0} errors or cancellations detected..
- /// </summary>
- public static string Main_QueueFinishedErrors {
- get {
- return ResourceManager.GetString("Main_QueueFinishedErrors", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue{0}.
- /// </summary>
- public static string Main_QueueLabel {
- get {
- return ResourceManager.GetString("Main_QueueLabel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The file &apos;{0}&apos; already exists!
- ///Would you like to overwrite it?.
- /// </summary>
- public static string Main_QueueOverwritePrompt {
- get {
- return ResourceManager.GetString("Main_QueueOverwritePrompt", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Paused.
- /// </summary>
- public static string Main_QueuePaused {
- get {
- return ResourceManager.GetString("Main_QueuePaused", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scan Cancelled..
- /// </summary>
- public static string Main_ScanCancelled {
- get {
- return ResourceManager.GetString("Main_ScanCancelled", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scan Completed.
- /// </summary>
- public static string Main_ScanCompleted {
- get {
- return ResourceManager.GetString("Main_ScanCompleted", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scan failed: .
- /// </summary>
- public static string Main_ScanFailed_NoReason {
- get {
- return ResourceManager.GetString("Main_ScanFailed_NoReason", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scan Failed... Please See Activity Log for details..
- /// </summary>
- public static string Main_ScanFailled_CheckLog {
- get {
- return ResourceManager.GetString("Main_ScanFailled_CheckLog", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scanning source, please wait....
- /// </summary>
- public static string Main_ScanningPleaseWait {
- get {
- return ResourceManager.GetString("Main_ScanningPleaseWait", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scanning Title {0} of {1} ({2}%).
- /// </summary>
- public static string Main_ScanningTitleXOfY {
- get {
- return ResourceManager.GetString("Main_ScanningTitleXOfY", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No valid source or titles found..
- /// </summary>
- public static string Main_ScanNoTitlesFound {
- get {
- return ResourceManager.GetString("Main_ScanNoTitlesFound", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake will not be able to encode the selected source as it did not find a valid source with titles to encode.
- ///This could be due to one of the following reasons:
- ///- The source file is not a valid video file or is in a format that HandBrake does not support.
- ///- The source may be copy protected or include DRM. Please note that HandBrake does not support the removal of copy protections.
- ///
- ///The Activity log may have further information..
- /// </summary>
- public static string Main_ScanNoTitlesFoundMessage {
- get {
- return ResourceManager.GetString("Main_ScanNoTitlesFoundMessage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You must first scan a source and setup your job before starting an encode. Click the &apos;Source&apos; button on the toolbar to continue..
- /// </summary>
- public static string Main_ScanSource {
- get {
- return ResourceManager.GetString("Main_ScanSource", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please select make sure you have selected one of your own presets. Please note that you cannot export built-in presets..
- /// </summary>
- public static string Main_SelectPreset {
- get {
- return ResourceManager.GetString("Main_SelectPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please select a preset to update..
- /// </summary>
- public static string Main_SelectPresetForUpdate {
- get {
- return ResourceManager.GetString("Main_SelectPresetForUpdate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Select &apos;Source&apos; to continue.
- /// </summary>
- public static string Main_SelectSource {
- get {
- return ResourceManager.GetString("Main_SelectSource", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You must first set the destination path for the output file before adding to the queue..
- /// </summary>
- public static string Main_SetDestination {
- get {
- return ResourceManager.GetString("Main_SetDestination", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You cannot overwrite the source file you want to convert.
- ///Please choose a different filename..
- /// </summary>
- public static string Main_SourceDestinationMatchError {
- get {
- return ResourceManager.GetString("Main_SourceDestinationMatchError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Encode.
- /// </summary>
- public static string Main_Start {
- get {
- return ResourceManager.GetString("Main_Start", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Queue.
- /// </summary>
- public static string Main_StartQueue {
- get {
- return ResourceManager.GetString("Main_StartQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// 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..
- /// </summary>
- public static string Main_TurnOnAutoFileNaming {
- get {
- return ResourceManager.GetString("Main_TurnOnAutoFileNaming", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your system prevented HandBrake from launching a web browser..
- /// </summary>
- public static string Main_UnableToLoadHelpMessage {
- get {
- return ResourceManager.GetString("Main_UnableToLoadHelpMessage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You can still access the help pages by visiting the website directly at: https://handbrake.fr.
- /// </summary>
- public static string Main_UnableToLoadHelpSolution {
- get {
- return ResourceManager.GetString("Main_UnableToLoadHelpSolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to {0} Encodes Pending.
- /// </summary>
- public static string Main_XEncodesPending {
- get {
- return ResourceManager.GetString("Main_XEncodesPending", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Activity Log.
- /// </summary>
- public static string MainView_ActivityLog {
- get {
- return ResourceManager.GetString("MainView_ActivityLog", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add All.
- /// </summary>
- public static string MainView_AddAll {
- get {
- return ResourceManager.GetString("MainView_AddAll", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add Current.
- /// </summary>
- public static string MainView_AddCurrent {
- get {
- return ResourceManager.GetString("MainView_AddCurrent", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add Selection.
- /// </summary>
- public static string MainView_AddSelection {
- get {
- return ResourceManager.GetString("MainView_AddSelection", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add to Queue.
- /// </summary>
- public static string MainView_AddToQueue {
- get {
- return ResourceManager.GetString("MainView_AddToQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Advanced.
- /// </summary>
- public static string MainView_AdvancedTab {
- get {
- return ResourceManager.GetString("MainView_AdvancedTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Align A/V Start.
- /// </summary>
- public static string MainView_AlignAVStart {
- get {
- return ResourceManager.GetString("MainView_AlignAVStart", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Angle: .
- /// </summary>
- public static string MainView_Angle {
- get {
- return ResourceManager.GetString("MainView_Angle", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio.
- /// </summary>
- public static string MainView_AudioTab {
- get {
- return ResourceManager.GetString("MainView_AudioTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio Tracks.
- /// </summary>
- public static string MainView_AudioTrackCount {
- get {
- return ResourceManager.GetString("MainView_AudioTrackCount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Browse.
- /// </summary>
- public static string MainView_Browser {
- get {
- return ResourceManager.GetString("MainView_Browser", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapters.
- /// </summary>
- public static string MainView_ChaptersTab {
- get {
- return ResourceManager.GetString("MainView_ChaptersTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Container.
- /// </summary>
- public static string MainView_Container {
- get {
- return ResourceManager.GetString("MainView_Container", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Destination.
- /// </summary>
- public static string MainView_Destination {
- get {
- return ResourceManager.GetString("MainView_Destination", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Duration: .
- /// </summary>
- public static string MainView_Duration {
- get {
- return ResourceManager.GetString("MainView_Duration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Save As:.
- /// </summary>
- public static string MainView_File {
- get {
- return ResourceManager.GetString("MainView_File", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Filters.
- /// </summary>
- public static string MainView_FiltersTab {
- get {
- return ResourceManager.GetString("MainView_FiltersTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Format:.
- /// </summary>
- public static string MainView_Format {
- get {
- return ResourceManager.GetString("MainView_Format", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Help.
- /// </summary>
- public static string MainView_Help {
- get {
- return ResourceManager.GetString("MainView_Help", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to iPod 5G Support.
- /// </summary>
- public static string MainView_iPod5G {
- get {
- return ResourceManager.GetString("MainView_iPod5G", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Meta Data.
- /// </summary>
- public static string MainView_MetaDataTab {
- get {
- return ResourceManager.GetString("MainView_MetaDataTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to (Modified).
- /// </summary>
- public static string MainView_ModifiedPreset {
- get {
- return ResourceManager.GetString("MainView_ModifiedPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Muxing: This may take a while....
- /// </summary>
- public static string MainView_Muxing {
- get {
- return ResourceManager.GetString("MainView_Muxing", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Options.
- /// </summary>
- public static string MainView_Options {
- get {
- return ResourceManager.GetString("MainView_Options", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Output Settings.
- /// </summary>
- public static string MainView_OutputSettings {
- get {
- return ResourceManager.GetString("MainView_OutputSettings", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pause.
- /// </summary>
- public static string MainView_Pause {
- get {
- return ResourceManager.GetString("MainView_Pause", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dimensions.
- /// </summary>
- public static string MainView_PictureTab {
- get {
- return ResourceManager.GetString("MainView_PictureTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rename Preset.
- /// </summary>
- public static string MainView_PresetManage {
- get {
- return ResourceManager.GetString("MainView_PresetManage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preset Options Context Menu.
- /// </summary>
- public static string MainView_PresetOptionsContextMenu {
- get {
- return ResourceManager.GetString("MainView_PresetOptionsContextMenu", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Delete Preset.
- /// </summary>
- public static string MainView_PresetRemove {
- get {
- return ResourceManager.GetString("MainView_PresetRemove", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Presets.
- /// </summary>
- public static string MainView_Presets {
- get {
- return ResourceManager.GetString("MainView_Presets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview.
- /// </summary>
- public static string MainView_Preview {
- get {
- return ResourceManager.GetString("MainView_Preview", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoding: {0}, {1:00.00}%, Time Remaining: {2}, {3}.
- /// </summary>
- public static string MainView_ProgressStatusWithTask {
- get {
- return ResourceManager.GetString("MainView_ProgressStatusWithTask", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Range:.
- /// </summary>
- public static string MainView_Range {
- get {
- return ResourceManager.GetString("MainView_Range", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reload.
- /// </summary>
- public static string MainView_Reload {
- get {
- return ResourceManager.GetString("MainView_Reload", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Remove.
- /// </summary>
- public static string MainView_Remove {
- get {
- return ResourceManager.GetString("MainView_Remove", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reset Built-in Presets.
- /// </summary>
- public static string MainView_ResetBuiltInPresets {
- get {
- return ResourceManager.GetString("MainView_ResetBuiltInPresets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Save New Preset.
- /// </summary>
- public static string MainView_SaveNewPreset {
- get {
- return ResourceManager.GetString("MainView_SaveNewPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Searching for start time.
- /// </summary>
- public static string MainView_Searching {
- get {
- return ResourceManager.GetString("MainView_Searching", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Selected Preset:.
- /// </summary>
- public static string MainView_SelectedPreset {
- get {
- return ResourceManager.GetString("MainView_SelectedPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Set Default.
- /// </summary>
- public static string MainView_SetDefault {
- get {
- return ResourceManager.GetString("MainView_SetDefault", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview.
- /// </summary>
- public static string MainView_ShowPreview {
- get {
- return ResourceManager.GetString("MainView_ShowPreview", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue.
- /// </summary>
- public static string MainView_ShowQueue {
- get {
- return ResourceManager.GetString("MainView_ShowQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Source:.
- /// </summary>
- public static string MainView_Source {
- get {
- return ResourceManager.GetString("MainView_Source", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open Source.
- /// </summary>
- public static string MainView_SourceOpen {
- get {
- return ResourceManager.GetString("MainView_SourceOpen", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Encode.
- /// </summary>
- public static string MainView_StartEncode {
- get {
- return ResourceManager.GetString("MainView_StartEncode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Queue.
- /// </summary>
- public static string MainView_StartQueue {
- get {
- return ResourceManager.GetString("MainView_StartQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Stop.
- /// </summary>
- public static string MainView_Stop {
- get {
- return ResourceManager.GetString("MainView_Stop", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Stop Encode.
- /// </summary>
- public static string MainView_StopEncode {
- get {
- return ResourceManager.GetString("MainView_StopEncode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you wish to stop this encode?.
- /// </summary>
- public static string MainView_StopEncodeConfirm {
- get {
- return ResourceManager.GetString("MainView_StopEncodeConfirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please choose a source to encode before trying to import a subtitle file..
- /// </summary>
- public static string MainView_SubtitleBeforeScanError {
- get {
- return ResourceManager.GetString("MainView_SubtitleBeforeScanError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitles.
- /// </summary>
- public static string MainView_SubtitlesTab {
- get {
- return ResourceManager.GetString("MainView_SubtitlesTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitle Tracks.
- /// </summary>
- public static string MainView_SubtitleTracksCount {
- get {
- return ResourceManager.GetString("MainView_SubtitleTracksCount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Summary.
- /// </summary>
- public static string MainView_SummaryTab {
- get {
- return ResourceManager.GetString("MainView_SummaryTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to - .
- /// </summary>
- public static string MainView_through {
- get {
- return ResourceManager.GetString("MainView_through", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Title: .
- /// </summary>
- public static string MainView_Title {
- get {
- return ResourceManager.GetString("MainView_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tools.
- /// </summary>
- public static string MainView_Tools {
- get {
- return ResourceManager.GetString("MainView_Tools", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update Selected Preset.
- /// </summary>
- public static string MainView_UpdateSelectedPreset {
- get {
- return ResourceManager.GetString("MainView_UpdateSelectedPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Video.
- /// </summary>
- public static string MainView_VideoTab {
- get {
- return ResourceManager.GetString("MainView_VideoTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Web Optimized.
- /// </summary>
- public static string MainView_WebOptimized {
- get {
- return ResourceManager.GetString("MainView_WebOptimized", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You can not delete the default preset. Please set another preset as default first..
- /// </summary>
- public static string MainViewModel_CanNotDeleteDefaultPreset {
- get {
- return ResourceManager.GetString("MainViewModel_CanNotDeleteDefaultPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss} {7}.
- /// </summary>
- public static string MainViewModel_EncodeStatusChanged_StatusLabel {
- get {
- return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Processing Pass {0} of {1}, (Subtitle Scan) {2:00.00}%, Scan Time Remaining: {3}, Elapsed: {4:d\:hh\:mm\:ss}.
- /// </summary>
- public static string MainViewModel_EncodeStatusChanged_SubScan_StatusLabel {
- get {
- return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_SubScan_StatusLabel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Low Disk Space.
- /// </summary>
- public static string MainViewModel_LowDiskSpace {
- get {
- return ResourceManager.GetString("MainViewModel_LowDiskSpace", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warning, you are running low on disk space. HandBrake will not be able to complete this encode if you run out of space. .
- /// </summary>
- public static string MainViewModel_LowDiskSpaceWarning {
- get {
- return ResourceManager.GetString("MainViewModel_LowDiskSpaceWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you want to delete the preset: .
- /// </summary>
- public static string MainViewModel_PresetRemove_AreYouSure {
- get {
- return ResourceManager.GetString("MainViewModel_PresetRemove_AreYouSure", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to launch destination directory..
- /// </summary>
- public static string MainViewModel_UnableToLaunchDestDir {
- get {
- return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please check that you have a valid destination directory..
- /// </summary>
- public static string MainViewModel_UnableToLaunchDestDirSolution {
- get {
- return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDirSolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Manage Preset.
- /// </summary>
- public static string ManagePresetView_ManagePreset {
- get {
- return ResourceManager.GetString("ManagePresetView_ManagePreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Meta Data.
- /// </summary>
- public static string MetaDataView_Title {
- get {
- return ResourceManager.GetString("MetaDataView_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%
- ///FPS: {3:000.0}, Avg FPS: {4:000.0}
- ///Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss}.
- /// </summary>
- public static string MiniViewModel_EncodeStatusChanged_StatusLabel {
- get {
- return ResourceManager.GetString("MiniViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Additional Information.
- /// </summary>
- public static string NoAdditionalInformation {
- get {
- return ResourceManager.GetString("NoAdditionalInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Notice.
- /// </summary>
- public static string Notice {
- get {
- return ResourceManager.GetString("Notice", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear Log files older than 30 days.
- /// </summary>
- public static string Options_30DayLogClear {
- get {
- return ResourceManager.GetString("Options_30DayLogClear", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to About HandBrake.
- /// </summary>
- public static string Options_About {
- get {
- return ResourceManager.GetString("Options_About", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The format of the output file. In addition to any supported file system character, you can use the following placeholders that will be replaced when you change title or scan a source.
- ///
- ///Live Update Options: {source} {title} {chapters}
- ///Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitrate} (These only change if you scan a new source, change title or chapters).
- /// </summary>
- public static string Options_AdditionalFormatOptions {
- get {
- return ResourceManager.GetString("Options_AdditionalFormatOptions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Advanced.
- /// </summary>
- public static string Options_Advanced {
- get {
- return ResourceManager.GetString("Options_Advanced", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Advanced Options.
- /// </summary>
- public static string Options_AdvancedOptions {
- get {
- return ResourceManager.GetString("Options_AdvancedOptions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Arguments:.
- /// </summary>
- public static string Options_Arguments {
- get {
- return ResourceManager.GetString("Options_Arguments", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Automatic File Naming.
- /// </summary>
- public static string Options_AutomaticFileNaming {
- get {
- return ResourceManager.GetString("Options_AutomaticFileNaming", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Automatically name output files.
- /// </summary>
- public static string Options_AutoNameOutput {
- get {
- return ResourceManager.GetString("Options_AutoNameOutput", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Check for Updates.
- /// </summary>
- public static string Options_CheckForUpdates {
- get {
- return ResourceManager.GetString("Options_CheckForUpdates", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Always clear completed queue items after an encode completes.
- /// </summary>
- public static string Options_ClearCompleted {
- get {
- return ResourceManager.GetString("Options_ClearCompleted", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear Log History.
- /// </summary>
- public static string Options_ClearLogs {
- get {
- return ResourceManager.GetString("Options_ClearLogs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Put a copy of individual encode logs in a specified location:.
- /// </summary>
- public static string Options_CopyLogToDir {
- get {
- return ResourceManager.GetString("Options_CopyLogToDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Put a copy of individual encode logs in the same location as the encoded video.
- /// </summary>
- public static string Options_CopyLogToEncDir {
- get {
- return ResourceManager.GetString("Options_CopyLogToEncDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Current Version.
- /// </summary>
- public static string Options_CurVersion {
- get {
- return ResourceManager.GetString("Options_CurVersion", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Decoding.
- /// </summary>
- public static string Options_Decoding {
- get {
- return ResourceManager.GetString("Options_Decoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Default Path:.
- /// </summary>
- public static string Options_DefaultPath {
- get {
- return ResourceManager.GetString("Options_DefaultPath", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Available additional Options: {source_path} or {source_folder_name}
- ///
- ///Not both at the same time!.
- /// </summary>
- public static string Options_DefaultPathAdditionalParams {
- get {
- return ResourceManager.GetString("Options_DefaultPathAdditionalParams", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Download Update.
- /// </summary>
- public static string Options_DownloadUpdates {
- get {
- return ResourceManager.GetString("Options_DownloadUpdates", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to DVD Reading.
- /// </summary>
- public static string Options_DVD {
- get {
- return ResourceManager.GetString("Options_DVD", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Disable LibDVDNav. (libdvdread will be used instead).
- /// </summary>
- public static string Options_DvdRead {
- get {
- return ResourceManager.GetString("Options_DvdRead", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoding.
- /// </summary>
- public static string Options_Encoding {
- get {
- return ResourceManager.GetString("Options_Encoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Experimental Features.
- /// </summary>
- public static string Options_Experimental {
- get {
- return ResourceManager.GetString("Options_Experimental", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Experimental features are ideas we are working on. These may or may not make it into a final release and may not work!.
- /// </summary>
- public static string Options_ExperimentalFeatures {
- get {
- return ResourceManager.GetString("Options_ExperimentalFeatures", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to File Format:.
- /// </summary>
- public static string Options_Format {
- get {
- return ResourceManager.GetString("Options_Format", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to General.
- /// </summary>
- public static string Options_General {
- get {
- return ResourceManager.GetString("Options_General", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Logging.
- /// </summary>
- public static string Options_Logging {
- get {
- return ResourceManager.GetString("Options_Logging", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Log Verbosity Level:.
- /// </summary>
- public static string Options_LogLevel {
- get {
- return ResourceManager.GetString("Options_LogLevel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Log Path:.
- /// </summary>
- public static string Options_LogPath {
- get {
- return ResourceManager.GetString("Options_LogPath", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Low diskspace warning level (GB):.
- /// </summary>
- public static string Options_LowDiskspaceSize {
- get {
- return ResourceManager.GetString("Options_LowDiskspaceSize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Minimize to system tray (Requires Restart).
- /// </summary>
- public static string Options_MinimiseTray {
- get {
- return ResourceManager.GetString("Options_MinimiseTray", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Minimum length of title to scan (seconds):.
- /// </summary>
- public static string Options_MinTitleScanLength {
- get {
- return ResourceManager.GetString("Options_MinTitleScanLength", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to MP4 File Extension:.
- /// </summary>
- public static string Options_MP4FileExtension {
- get {
- return ResourceManager.GetString("Options_MP4FileExtension", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to On Startup.
- /// </summary>
- public static string Options_OnStartup {
- get {
- return ResourceManager.GetString("Options_OnStartup", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Output Files.
- /// </summary>
- public static string Options_Output {
- get {
- return ResourceManager.GetString("Options_Output", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Path: .
- /// </summary>
- public static string Options_Path {
- get {
- return ResourceManager.GetString("Options_Path", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Path to VLC Player.
- /// </summary>
- public static string Options_PathToVLC {
- get {
- return ResourceManager.GetString("Options_PathToVLC", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pause queue if disk space is low before starting a job..
- /// </summary>
- public static string Options_PauseQueueOnLowDiskSpace {
- get {
- return ResourceManager.GetString("Options_PauseQueueOnLowDiskSpace", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prevent the system from sleeping while encoding.
- /// </summary>
- public static string Options_PreventSleep {
- get {
- return ResourceManager.GetString("Options_PreventSleep", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Number of picture previews to scan:.
- /// </summary>
- public static string Options_PreviewScanCount {
- get {
- return ResourceManager.GetString("Options_PreviewScanCount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Priority Level:.
- /// </summary>
- public static string Options_PriorityLevel {
- get {
- return ResourceManager.GetString("Options_PriorityLevel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enable QuickSync Decoding.
- /// </summary>
- public static string Options_QsvDecode {
- get {
- return ResourceManager.GetString("Options_QsvDecode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Also Use QSV Decoding when not using a QuickSync encoder. (i.e. x265) .
- /// </summary>
- public static string Options_QsvDecodeForNonFullPath {
- get {
- return ResourceManager.GetString("Options_QsvDecodeForNonFullPath", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Remove common punctuation.
- /// </summary>
- public static string Options_RemovePunctuation {
- get {
- return ResourceManager.GetString("Options_RemovePunctuation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Replace underscores with a space.
- /// </summary>
- public static string Options_ReplaceUnderscores {
- get {
- return ResourceManager.GetString("Options_ReplaceUnderscores", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reset to &apos;Do nothing&apos; when the app is re-launched..
- /// </summary>
- public static string Options_ResetDoNothing {
- get {
- return ResourceManager.GetString("Options_ResetDoNothing", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose Scaler:.
- /// </summary>
- public static string Options_Scaler {
- get {
- return ResourceManager.GetString("Options_Scaler", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scaling.
- /// </summary>
- public static string Options_Scaling {
- get {
- return ResourceManager.GetString("Options_Scaling", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Send file to:.
- /// </summary>
- public static string Options_SendFileTo {
- get {
- return ResourceManager.GetString("Options_SendFileTo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show the new experimental queue design..
- /// </summary>
- public static string Options_ShowExperimentalQueueDesign {
- get {
- return ResourceManager.GetString("Options_ShowExperimentalQueueDesign", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show Queue in line with the main UI..
- /// </summary>
- public static string Options_ShowQueueInline {
- get {
- return ResourceManager.GetString("Options_ShowQueueInline", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Change case to Title Case.
- /// </summary>
- public static string Options_TitleCase {
- get {
- return ResourceManager.GetString("Options_TitleCase", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Updates.
- /// </summary>
- public static string Options_Updates {
- get {
- return ResourceManager.GetString("Options_Updates", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to User Interface.
- /// </summary>
- public static string Options_UserInterface {
- get {
- return ResourceManager.GetString("Options_UserInterface", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Version:.
- /// </summary>
- public static string Options_Version {
- get {
- return ResourceManager.GetString("Options_Version", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Video.
- /// </summary>
- public static string Options_Video {
- get {
- return ResourceManager.GetString("Options_Video", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to This path is used for the video preview feature only..
- /// </summary>
- public static string Options_VideoPreviewPath {
- get {
- return ResourceManager.GetString("Options_VideoPreviewPath", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to View Log Directory.
- /// </summary>
- public static string Options_ViewLogDirectory {
- get {
- return ResourceManager.GetString("Options_ViewLogDirectory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to When Done.
- /// </summary>
- public static string Options_WhenDone {
- get {
- return ResourceManager.GetString("Options_WhenDone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to x264/5 Settings.
- /// </summary>
- public static string Options_x264 {
- get {
- return ResourceManager.GetString("Options_x264", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Constant quality fractional granularity:.
- /// </summary>
- public static string Options_x264Granularity {
- get {
- return ResourceManager.GetString("Options_x264Granularity", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enable Nvidia NVENC Encoder.
- /// </summary>
- public static string OptionsView_EnableNvencEncoding {
- get {
- return ResourceManager.GetString("OptionsView_EnableNvencEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enable Intel QuickSync Encoder.
- /// </summary>
- public static string OptionsView_EnableQuicksyncEncoding {
- get {
- return ResourceManager.GetString("OptionsView_EnableQuicksyncEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enable AMD VCE Encoder.
- /// </summary>
- public static string OptionsView_EnableVceEncoding {
- get {
- return ResourceManager.GetString("OptionsView_EnableVceEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The file format entered contained invalid characters. These have been removed. .
- /// </summary>
- public static string OptionsView_InvalidFileFormatChars {
- get {
- return ResourceManager.GetString("OptionsView_InvalidFileFormatChars", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Play a sound when each encode completes.
- /// </summary>
- public static string OptionsView_PlaySoundWhenDone {
- get {
- return ResourceManager.GetString("OptionsView_PlaySoundWhenDone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Play a sound when the queue completes.
- /// </summary>
- public static string OptionsView_PlaySoundWhenQueueDone {
- get {
- return ResourceManager.GetString("OptionsView_PlaySoundWhenQueueDone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show previews on summary tab..
- /// </summary>
- public static string OptionsView_ShowPreviewOnSummaryTab {
- get {
- return ResourceManager.GetString("OptionsView_ShowPreviewOnSummaryTab", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show the encode status in the application title bar..
- /// </summary>
- public static string OptionsView_ShowStatusInTitleBar {
- get {
- return ResourceManager.GetString("OptionsView_ShowStatusInTitleBar", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your system supports the 64bit version of HandBrake! This offers performance and stability improvements over this 32bit version.
- /// Please check the website for release notes..
- /// </summary>
- public static string OptionsViewModel_64bitAvailable {
- get {
- return ResourceManager.GetString("OptionsViewModel_64bitAvailable", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A New Update is Available! Please check the website for release notes..
- /// </summary>
- public static string OptionsViewModel_NewUpdate {
- get {
- return ResourceManager.GetString("OptionsViewModel_NewUpdate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There are no new updates at this time..
- /// </summary>
- public static string OptionsViewModel_NoNewUpdates {
- get {
- return ResourceManager.GetString("OptionsViewModel_NoNewUpdates", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update Downloaded.
- /// </summary>
- public static string OptionsViewModel_UpdateDownloaded {
- get {
- return ResourceManager.GetString("OptionsViewModel_UpdateDownloaded", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update Failed. You can try downloading the update from https://handbrake.fr.
- /// </summary>
- public static string OptionsViewModel_UpdateFailed {
- get {
- return ResourceManager.GetString("OptionsViewModel_UpdateFailed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update Service Unavailable. You can try downloading the update from https://handbrake.fr.
- /// </summary>
- public static string OptionsViewModel_UpdateServiceUnavailable {
- get {
- return ResourceManager.GetString("OptionsViewModel_UpdateServiceUnavailable", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake requires a 64bit version of Windows 7 or later to run..
- /// </summary>
- public static string OsBitnessWarning {
- get {
- return ResourceManager.GetString("OsBitnessWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake requires Windows 7 or later to run. Version 0.9.9 (XP) and 0.10.5 (Vista) was the last version to support these versions..
- /// </summary>
- public static string OsVersionWarning {
- get {
- return ResourceManager.GetString("OsVersionWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Overwrite?.
- /// </summary>
- public static string Overwrite {
- get {
- return ResourceManager.GetString("Overwrite", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Paused. Warning, the drive you are encoding to is low on disk space. Please free up some space and press start to continue. You can also adjust the minimum space level in preferences..
- /// </summary>
- public static string PauseOnLowDiskspace {
- get {
- return ResourceManager.GetString("PauseOnLowDiskspace", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Output: {0}.
- /// </summary>
- public static string PictureSettings_OutputResolution {
- get {
- return ResourceManager.GetString("PictureSettings_OutputResolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anamorphic:.
- /// </summary>
- public static string PictureSettingsView_Anamorphic {
- get {
- return ResourceManager.GetString("PictureSettingsView_Anamorphic", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Automatic.
- /// </summary>
- public static string PictureSettingsView_Automatic {
- get {
- return ResourceManager.GetString("PictureSettingsView_Automatic", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bottom.
- /// </summary>
- public static string PictureSettingsView_Bottom {
- get {
- return ResourceManager.GetString("PictureSettingsView_Bottom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Cropping.
- /// </summary>
- public static string PictureSettingsView_Cropping {
- get {
- return ResourceManager.GetString("PictureSettingsView_Cropping", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Custom.
- /// </summary>
- public static string PictureSettingsView_Custom {
- get {
- return ResourceManager.GetString("PictureSettingsView_Custom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Display Width:.
- /// </summary>
- public static string PictureSettingsView_DisplayWitdh {
- get {
- return ResourceManager.GetString("PictureSettingsView_DisplayWitdh", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Height:.
- /// </summary>
- public static string PictureSettingsView_Height {
- get {
- return ResourceManager.GetString("PictureSettingsView_Height", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Keep Aspect Ratio.
- /// </summary>
- public static string PictureSettingsView_KeepAR {
- get {
- return ResourceManager.GetString("PictureSettingsView_KeepAR", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Left.
- /// </summary>
- public static string PictureSettingsView_Left {
- get {
- return ResourceManager.GetString("PictureSettingsView_Left", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modulus:.
- /// </summary>
- public static string PictureSettingsView_Modulus {
- get {
- return ResourceManager.GetString("PictureSettingsView_Modulus", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Output.
- /// </summary>
- public static string PictureSettingsView_Output {
- get {
- return ResourceManager.GetString("PictureSettingsView_Output", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to PAR:.
- /// </summary>
- public static string PictureSettingsView_PAR {
- get {
- return ResourceManager.GetString("PictureSettingsView_PAR", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Right.
- /// </summary>
- public static string PictureSettingsView_Right {
- get {
- return ResourceManager.GetString("PictureSettingsView_Right", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Size.
- /// </summary>
- public static string PictureSettingsView_Size {
- get {
- return ResourceManager.GetString("PictureSettingsView_Size", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Source:.
- /// </summary>
- public static string PictureSettingsView_Source {
- get {
- return ResourceManager.GetString("PictureSettingsView_Source", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Top.
- /// </summary>
- public static string PictureSettingsView_Top {
- get {
- return ResourceManager.GetString("PictureSettingsView_Top", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Width:.
- /// </summary>
- public static string PictureSettingsView_Width {
- get {
- return ResourceManager.GetString("PictureSettingsView_Width", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Display Size: {0}x{1}, PAR {2}x{3}.
- /// </summary>
- public static string PictureSettingsViewModel_StorageDisplayLabel {
- get {
- return ResourceManager.GetString("PictureSettingsViewModel_StorageDisplayLabel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Change the behaviour of the audio track selection for this preset.
- ///This will not affect your current settings in the Audio tab..
- /// </summary>
- public static string Preset_AudioDefaults_SubText {
- get {
- return ResourceManager.GetString("Preset_AudioDefaults_SubText", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio Defaults.
- /// </summary>
- public static string Preset_AudioDefaults_Title {
- get {
- return ResourceManager.GetString("Preset_AudioDefaults_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Custom.
- /// </summary>
- public static string Preset_Custom {
- get {
- return ResourceManager.GetString("Preset_Custom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Export to file.
- /// </summary>
- public static string Preset_Export {
- get {
- return ResourceManager.GetString("Preset_Export", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Import from file.
- /// </summary>
- public static string Preset_Import {
- get {
- return ResourceManager.GetString("Preset_Import", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Official.
- /// </summary>
- public static string Preset_Official {
- get {
- return ResourceManager.GetString("Preset_Official", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preset Version.
- /// </summary>
- public static string Preset_OldVersion_Header {
- get {
- return ResourceManager.GetString("Preset_OldVersion_Header", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The preset you are trying to import is from a different version of HandBrake.
- /// It may not be possible to import all the values from this preset.
- ///
- ///Do you wish to proceed?.
- /// </summary>
- public static string Preset_OldVersion_Message {
- get {
- return ResourceManager.GetString("Preset_OldVersion_Message", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Change the behaviour of the subtitle track selection for this preset.
- ///This will not affect your current settings in the Subtitle tab..
- /// </summary>
- public static string Preset_SubtitleDefaults_SubText {
- get {
- return ResourceManager.GetString("Preset_SubtitleDefaults_SubText", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitle Defaults.
- /// </summary>
- public static string Preset_SubtitleDefaults_Title {
- get {
- return ResourceManager.GetString("Preset_SubtitleDefaults_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to import preset!.
- /// </summary>
- public static string Preset_UnableToImport_Header {
- get {
- return ResourceManager.GetString("Preset_UnableToImport_Header", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to import the preset as it appears to be corrupted or from an older version of HandBrake..
- /// </summary>
- public static string Preset_UnableToImport_Message {
- get {
- return ResourceManager.GetString("Preset_UnableToImport_Message", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake is unable to upgrade your presets file to a new version format.
- ///Your preset file will be archived and new one created. You will need to re-create your own presets..
- /// </summary>
- public static string Presets_PresetForceReset {
- get {
- return ResourceManager.GetString("Presets_PresetForceReset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The Built-in presets have been reset..
- /// </summary>
- public static string Presets_ResetComplete {
- get {
- return ResourceManager.GetString("Presets_ResetComplete", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reset Complete.
- /// </summary>
- public static string Presets_ResetHeader {
- get {
- return ResourceManager.GetString("Presets_ResetHeader", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Archived File:.
- /// </summary>
- public static string PresetService_ArchiveFile {
- get {
- return ResourceManager.GetString("PresetService_ArchiveFile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake has detected your presets file is from an older version.
- ///It will try and load the file anyway.
- ///If it fails, it will archive off the old file and create a new one..
- /// </summary>
- public static string PresetService_PresetsOutOfDate {
- get {
- return ResourceManager.GetString("PresetService_PresetsOutOfDate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to load presets..
- /// </summary>
- public static string PresetService_UnableToLoad {
- get {
- return ResourceManager.GetString("PresetService_UnableToLoad", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake was unable to load your presets file. It may have been from an older unsupported version of HandBrake or corrupted.
- ///
- ///Your old presets file was archived to:.
- /// </summary>
- public static string PresetService_UnableToLoadPresets {
- get {
- return ResourceManager.GetString("PresetService_UnableToLoadPresets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview {0}.
- /// </summary>
- public static string Preview {
- get {
- return ResourceManager.GetString("Preview", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview (Scaled).
- /// </summary>
- public static string Preview_Scaled {
- get {
- return ResourceManager.GetString("Preview_Scaled", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Question.
- /// </summary>
- public static string Question {
- get {
- return ResourceManager.GetString("Question", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HandBrake is already encoding a file..
- /// </summary>
- public static string Queue_AlreadyEncoding {
- get {
- return ResourceManager.GetString("Queue_AlreadyEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Please stop the current encode. If the problem persists, please restart HandBrake..
- /// </summary>
- public static string Queue_AlreadyEncodingSolution {
- get {
- return ResourceManager.GetString("Queue_AlreadyEncodingSolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to reset job status as it is not in an Error or Completed state.
- /// </summary>
- public static string Queue_UnableToResetJob {
- get {
- return ResourceManager.GetString("Queue_UnableToResetJob", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to restore queue file..
- /// </summary>
- public static string Queue_UnableToRestoreFile {
- get {
- return ResourceManager.GetString("Queue_UnableToRestoreFile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The file may be corrupted or from an older incompatible version of HandBrake.
- /// </summary>
- public static string Queue_UnableToRestoreFileExtended {
- get {
- return ResourceManager.GetString("Queue_UnableToRestoreFileExtended", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to WARNING: You do not have automatic file naming turned on. Please enable this in options..
- /// </summary>
- public static string QueueSelection_AutoNameWarning {
- get {
- return ResourceManager.GetString("QueueSelection_AutoNameWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to WARNING: You do not currently have automatic audio and subtitle track selection setup. You can setup the default track selection behaviour in options..
- /// </summary>
- public static string QueueSelection_AutoTrackSelectionWarning {
- get {
- return ResourceManager.GetString("QueueSelection_AutoTrackSelectionWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The selected titles will be added using the &quot;{0}&quot; preset..
- /// </summary>
- public static string QueueSelection_UsingPreset {
- get {
- return ResourceManager.GetString("QueueSelection_UsingPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose titles:.
- /// </summary>
- public static string QueueSelectionView_ChooseTitles {
- get {
- return ResourceManager.GetString("QueueSelectionView_ChooseTitles", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add to Queue.
- /// </summary>
- public static string QueueSelectionView_Title {
- get {
- return ResourceManager.GetString("QueueSelectionView_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add to Queue.
- /// </summary>
- public static string QueueSelectionViewModel_AddToQueue {
- get {
- return ResourceManager.GetString("QueueSelectionViewModel_AddToQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Advanced:.
- /// </summary>
- public static string QueueView_Advanced {
- get {
- return ResourceManager.GetString("QueueView_Advanced", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Audio:.
- /// </summary>
- public static string QueueView_Audio {
- get {
- return ResourceManager.GetString("QueueView_Audio", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear All.
- /// </summary>
- public static string QueueView_ClearAll {
- get {
- return ResourceManager.GetString("QueueView_ClearAll", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear Completed.
- /// </summary>
- public static string QueueView_ClearCompleted {
- get {
- return ResourceManager.GetString("QueueView_ClearCompleted", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear Queue.
- /// </summary>
- public static string QueueView_ClearQueue {
- get {
- return ResourceManager.GetString("QueueView_ClearQueue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Clear Selected.
- /// </summary>
- public static string QueueView_ClearSelected {
- get {
- return ResourceManager.GetString("QueueView_ClearSelected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Delete.
- /// </summary>
- public static string QueueView_Delete {
- get {
- return ResourceManager.GetString("QueueView_Delete", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Destination: .
- /// </summary>
- public static string QueueView_Destination {
- get {
- return ResourceManager.GetString("QueueView_Destination", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Do nothing.
- /// </summary>
- public static string QueueView_DoNothing {
- get {
- return ResourceManager.GetString("QueueView_DoNothing", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encode Time:.
- /// </summary>
- public static string QueueView_Duration {
- get {
- return ResourceManager.GetString("QueueView_Duration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Edit.
- /// </summary>
- public static string QueueView_Edit {
- get {
- return ResourceManager.GetString("QueueView_Edit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to End Time:.
- /// </summary>
- public static string QueueView_EndTime {
- get {
- return ResourceManager.GetString("QueueView_EndTime", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Export Queue for CLI.
- /// </summary>
- public static string QueueView_Export {
- get {
- return ResourceManager.GetString("QueueView_Export", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Filesize: .
- /// </summary>
- public static string QueueView_FileSize {
- get {
- return ResourceManager.GetString("QueueView_FileSize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hibernate.
- /// </summary>
- public static string QueueView_Hibernate {
- get {
- return ResourceManager.GetString("QueueView_Hibernate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lock System.
- /// </summary>
- public static string QueueView_LockSystem {
- get {
- return ResourceManager.GetString("QueueView_LockSystem", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The log will be available after the encode completes..
- /// </summary>
- public static string QueueView_LogNotAvailableYet {
- get {
- return ResourceManager.GetString("QueueView_LogNotAvailableYet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Log off.
- /// </summary>
- public static string QueueView_Logoff {
- get {
- return ResourceManager.GetString("QueueView_Logoff", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open Destination Directory.
- /// </summary>
- public static string QueueView_OpenDestDir {
- get {
- return ResourceManager.GetString("QueueView_OpenDestDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open Source Directory.
- /// </summary>
- public static string QueueView_OpenSourceDir {
- get {
- return ResourceManager.GetString("QueueView_OpenSourceDir", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Options.
- /// </summary>
- public static string QueueView_Options {
- get {
- return ResourceManager.GetString("QueueView_Options", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pause Queue.
- /// </summary>
- public static string QueueView_Pause {
- get {
- return ResourceManager.GetString("QueueView_Pause", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Paused Duration:.
- /// </summary>
- public static string QueueView_PausedDuration {
- get {
- return ResourceManager.GetString("QueueView_PausedDuration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Picture Settings:.
- /// </summary>
- public static string QueueView_PictureSettings {
- get {
- return ResourceManager.GetString("QueueView_PictureSettings", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Quit HandBrake.
- /// </summary>
- public static string QueueView_QuitHandBrake {
- get {
- return ResourceManager.GetString("QueueView_QuitHandBrake", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Retry All Jobs.
- /// </summary>
- public static string QueueView_ResetAllJobs {
- get {
- return ResourceManager.GetString("QueueView_ResetAllJobs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Retry Failed.
- /// </summary>
- public static string QueueView_ResetFailed {
- get {
- return ResourceManager.GetString("QueueView_ResetFailed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Retry Selected Jobs.
- /// </summary>
- public static string QueueView_ResetSelectedJobs {
- get {
- return ResourceManager.GetString("QueueView_ResetSelectedJobs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Retry.
- /// </summary>
- public static string QueueView_Retry {
- get {
- return ResourceManager.GetString("QueueView_Retry", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Shutdown.
- /// </summary>
- public static string QueueView_Shutdown {
- get {
- return ResourceManager.GetString("QueueView_Shutdown", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Source: .
- /// </summary>
- public static string QueueView_Source {
- get {
- return ResourceManager.GetString("QueueView_Source", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Queue.
- /// </summary>
- public static string QueueView_Start {
- get {
- return ResourceManager.GetString("QueueView_Start", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start Time:.
- /// </summary>
- public static string QueueView_StartTime {
- get {
- return ResourceManager.GetString("QueueView_StartTime", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Statistics.
- /// </summary>
- public static string QueueView_Statistics {
- get {
- return ResourceManager.GetString("QueueView_Statistics", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Statistics will be available after an encode completes..
- /// </summary>
- public static string QueueView_StatsNotAvailableYet {
- get {
- return ResourceManager.GetString("QueueView_StatsNotAvailableYet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitles:.
- /// </summary>
- public static string QueueView_Subtitles {
- get {
- return ResourceManager.GetString("QueueView_Subtitles", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Summary.
- /// </summary>
- public static string QueueView_Summary {
- get {
- return ResourceManager.GetString("QueueView_Summary", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Suspend.
- /// </summary>
- public static string QueueView_Suspend {
- get {
- return ResourceManager.GetString("QueueView_Suspend", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Video:.
- /// </summary>
- public static string QueueView_Video {
- get {
- return ResourceManager.GetString("QueueView_Video", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to When Done:.
- /// </summary>
- public static string QueueView_WhenDone {
- get {
- return ResourceManager.GetString("QueueView_WhenDone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you wish to clear the queue?.
- /// </summary>
- public static string QueueViewModel_ClearQueueConfrimation {
- get {
- return ResourceManager.GetString("QueueViewModel_ClearQueueConfrimation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you want to delete the selected jobs?.
- /// </summary>
- public static string QueueViewModel_DelSelectedJobConfirmation {
- get {
- return ResourceManager.GetString("QueueViewModel_DelSelectedJobConfirmation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure you wish to edit this job? It will be removed from the queue and sent to the main window..
- /// </summary>
- public static string QueueViewModel_EditConfrimation {
- get {
- return ResourceManager.GetString("QueueViewModel_EditConfrimation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to This encode is currently in progress. If you delete it, the encode will be stopped. Are you sure you wish to proceed?.
- /// </summary>
- public static string QueueViewModel_JobCurrentlyRunningWarning {
- get {
- return ResourceManager.GetString("QueueViewModel_JobCurrentlyRunningWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to {0} jobs pending.
- /// </summary>
- public static string QueueViewModel_JobsPending {
- get {
- return ResourceManager.GetString("QueueViewModel_JobsPending", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Last Queued Job Finished.
- /// </summary>
- public static string QueueViewModel_LastJobFinished {
- get {
- return ResourceManager.GetString("QueueViewModel_LastJobFinished", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No encodes pending.
- /// </summary>
- public static string QueueViewModel_NoEncodesPending {
- get {
- return ResourceManager.GetString("QueueViewModel_NoEncodesPending", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There are no jobs currently encoding.
- /// </summary>
- public static string QueueViewModel_NoJobsPending {
- get {
- return ResourceManager.GetString("QueueViewModel_NoJobsPending", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There are no pending jobs..
- /// </summary>
- public static string QueueViewModel_NoPendingJobs {
- get {
- return ResourceManager.GetString("QueueViewModel_NoPendingJobs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue.
- /// </summary>
- public static string QueueViewModel_Queue {
- get {
- return ResourceManager.GetString("QueueViewModel_Queue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Completed.
- /// </summary>
- public static string QueueViewModel_QueueCompleted {
- get {
- return ResourceManager.GetString("QueueViewModel_QueueCompleted", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Not Running.
- /// </summary>
- public static string QueueViewModel_QueueNotRunning {
- get {
- return ResourceManager.GetString("QueueViewModel_QueueNotRunning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Paused.
- /// </summary>
- public static string QueueViewModel_QueuePaused {
- get {
- return ResourceManager.GetString("QueueViewModel_QueuePaused", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The Queue has been paused. The currently running job will run to completion and no further jobs will start..
- /// </summary>
- public static string QueueViewModel_QueuePauseNotice {
- get {
- return ResourceManager.GetString("QueueViewModel_QueuePauseNotice", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Paused.
- /// </summary>
- public static string QueueViewModel_QueuePending {
- get {
- return ResourceManager.GetString("QueueViewModel_QueuePending", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Ready.
- /// </summary>
- public static string QueueViewModel_QueueReady {
- get {
- return ResourceManager.GetString("QueueViewModel_QueueReady", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Started.
- /// </summary>
- public static string QueueViewModel_QueueStarted {
- get {
- return ResourceManager.GetString("QueueViewModel_QueueStarted", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss}.
- /// </summary>
- public static string QueueViewModel_QueueStatusDisplay {
- get {
- return ResourceManager.GetString("QueueViewModel_QueueStatusDisplay", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to An error occurred when trying to stop the scan. Please restart HandBrake..
- /// </summary>
- public static string ScanService_ScanStopFailed {
- get {
- return ResourceManager.GetString("ScanService_ScanStopFailed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Any settings you changed may need to be reset the next time HandBrake launches..
- /// </summary>
- public static string SettingService_SaveErrorReset {
- get {
- return ResourceManager.GetString("SettingService_SaveErrorReset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add All Remaining Selected Languages.
- /// </summary>
- public static string Shared_AddAllForSelected {
- get {
- return ResourceManager.GetString("Shared_AddAllForSelected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add All Remaining Tracks.
- /// </summary>
- public static string Shared_AddAllRemaining {
- get {
- return ResourceManager.GetString("Shared_AddAllRemaining", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add New Track.
- /// </summary>
- public static string Shared_AddNewTrack {
- get {
- return ResourceManager.GetString("Shared_AddNewTrack", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add Track.
- /// </summary>
- public static string Shared_AddTrack {
- get {
- return ResourceManager.GetString("Shared_AddTrack", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Available Languages:.
- /// </summary>
- public static string Shared_AvailableLanguages {
- get {
- return ResourceManager.GetString("Shared_AvailableLanguages", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose Languages:.
- /// </summary>
- public static string Shared_ChooseLanguages {
- get {
- return ResourceManager.GetString("Shared_ChooseLanguages", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chosen Languages:.
- /// </summary>
- public static string Shared_ChosenLangages {
- get {
- return ResourceManager.GetString("Shared_ChosenLangages", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Configure Default Behaviours.
- /// </summary>
- public static string Shared_ConfigureDefaultBehaviours {
- get {
- return ResourceManager.GetString("Shared_ConfigureDefaultBehaviours", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reload Defaults.
- /// </summary>
- public static string Shared_ReloadDefaults {
- get {
- return ResourceManager.GetString("Shared_ReloadDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to An Encode is currently running. Exiting HandBrake will stop this encode.
- ///Are you sure you wish to exit HandBrake?.
- /// </summary>
- public static string ShellViewModel_CanClose {
- get {
- return ResourceManager.GetString("ShellViewModel_CanClose", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose Disc to Scan.
- /// </summary>
- public static string SourceSelection_ChooseDisc {
- get {
- return ResourceManager.GetString("SourceSelection_ChooseDisc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose File to Scan.
- /// </summary>
- public static string SourceSelection_ChooseFile {
- get {
- return ResourceManager.GetString("SourceSelection_ChooseFile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose Folder to Scan.
- /// </summary>
- public static string SourceSelection_ChooseFolder {
- get {
- return ResourceManager.GetString("SourceSelection_ChooseFolder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Optionally choose a specific title: .
- /// </summary>
- public static string SourceSelection_ChooseSpecificTitle {
- get {
- return ResourceManager.GetString("SourceSelection_ChooseSpecificTitle", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Then choose the video(s) you&apos;d like to encode: .
- /// </summary>
- public static string SourceSelection_ChooseVideo {
- get {
- return ResourceManager.GetString("SourceSelection_ChooseVideo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to File.
- /// </summary>
- public static string SourceSelection_File {
- get {
- return ResourceManager.GetString("SourceSelection_File", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Folder (Batch Scan).
- /// </summary>
- public static string SourceSelection_FolderBatchScan {
- get {
- return ResourceManager.GetString("SourceSelection_FolderBatchScan", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open this DVD or Bluray Drive.
- /// </summary>
- public static string SourceSelection_OpenDVDBluray {
- get {
- return ResourceManager.GetString("SourceSelection_OpenDVDBluray", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open a folder with one or more files..
- /// </summary>
- public static string SourceSelection_OpenFolderWIth {
- get {
- return ResourceManager.GetString("SourceSelection_OpenFolderWIth", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Queue Recovery.
- /// </summary>
- public static string SourceSelection_QueueArchiveRecovery {
- get {
- return ResourceManager.GetString("SourceSelection_QueueArchiveRecovery", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A previous queue archive is available. .
- /// </summary>
- public static string SourceSelection_QueueArchiveRecoveryDesc {
- get {
- return ResourceManager.GetString("SourceSelection_QueueArchiveRecoveryDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Open a single video file..
- /// </summary>
- public static string SourceSelection_SingleVideoFile {
- get {
- return ResourceManager.GetString("SourceSelection_SingleVideoFile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Source Selection.
- /// </summary>
- public static string SourceSelection_SourceSelection {
- get {
- return ResourceManager.GetString("SourceSelection_SourceSelection", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ready.
- /// </summary>
- public static string State_Ready {
- get {
- return ResourceManager.GetString("State_Ready", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to delete previous preview file. You may need to restart the application..
- /// </summary>
- public static string StaticPreview_UnableToDeletePreview {
- get {
- return ResourceManager.GetString("StaticPreview_UnableToDeletePreview", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Duration:.
- /// </summary>
- public static string StaticPreviewView_Duration {
- get {
- return ResourceManager.GetString("StaticPreviewView_Duration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Live Preview.
- /// </summary>
- public static string StaticPreviewView_LivePreview {
- get {
- return ResourceManager.GetString("StaticPreviewView_LivePreview", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Select a preview image.
- /// </summary>
- public static string StaticPreviewView_SelectPreviewImage {
- get {
- return ResourceManager.GetString("StaticPreviewView_SelectPreviewImage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview ({0}% actual size).
- /// </summary>
- public static string StaticPreviewView_Title {
- get {
- return ResourceManager.GetString("StaticPreviewView_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Use system default video player.
- /// </summary>
- public static string StaticPreviewView_UseSystemDefault {
- get {
- return ResourceManager.GetString("StaticPreviewView_UseSystemDefault", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Handbrake is already encoding a video! Only one file can be encoded at any one time..
- /// </summary>
- public static string StaticPreviewViewModel_AlreadyEncoding {
- get {
- return ResourceManager.GetString("StaticPreviewViewModel_AlreadyEncoding", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You must first scan a source and setup your encode before creating a preview..
- /// </summary>
- public static string StaticPreviewViewModel_ScanFirst {
- get {
- return ResourceManager.GetString("StaticPreviewViewModel_ScanFirst", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Picture Preview.
- /// </summary>
- public static string StaticPreviewViewModel_Title {
- get {
- return ResourceManager.GetString("StaticPreviewViewModel_Title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to detect VLC Player.
- ///Please make sure VLC is installed and the directory specified in HandBrake&apos;s options is correct. (See: &quot;Tools Menu &gt; Preferences &gt; General&quot;).
- /// </summary>
- public static string StaticPreviewViewModel_UnableToFindVLC {
- get {
- return ResourceManager.GetString("StaticPreviewViewModel_UnableToFindVLC", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details..
- /// </summary>
- public static string StaticPreviewViewModel_UnableToPlayFile {
- get {
- return ResourceManager.GetString("StaticPreviewViewModel_UnableToPlayFile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to None - Only tracks where the container does not support the format will be burned in.
- ///Foreign Audio Track - The Foreign Audio track will be burned in if available.
- ///First Track - The first track will be burned in.
- ///Foreign Audio Preferred, else First - If the foreign audio track exists, it will be burned in, otherwise the first track will be chosen..
- /// </summary>
- public static string Subtitles_BurnInBehaviourModes {
- get {
- return ResourceManager.GetString("Subtitles_BurnInBehaviourModes", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add Closed Captions when available.
- /// </summary>
- public static string SubtitlesView_AddCC {
- get {
- return ResourceManager.GetString("SubtitlesView_AddCC", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add &apos;Foreign Audio Scan&apos;.
- /// </summary>
- public static string SubtitlesView_AddForeignAudioSearch {
- get {
- return ResourceManager.GetString("SubtitlesView_AddForeignAudioSearch", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Burn-In Behaviour:.
- /// </summary>
- public static string SubtitlesView_BurnInBehaviour {
- get {
- return ResourceManager.GetString("SubtitlesView_BurnInBehaviour", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Import SRT.
- /// </summary>
- public static string SubtitlesView_ImportSRT {
- get {
- return ResourceManager.GetString("SubtitlesView_ImportSRT", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Track Selection Behaviour:.
- /// </summary>
- public static string SubtitlesView_TrackSelectionBehaviour {
- get {
- return ResourceManager.GetString("SubtitlesView_TrackSelectionBehaviour", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Selection Behavior.
- /// </summary>
- public static string SubtitlesViewModel_ConfigureDefaults {
- get {
- return ResourceManager.GetString("SubtitlesViewModel_ConfigureDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitle Defaults.
- /// </summary>
- public static string SubtitlesViewModel_SubDefaults {
- get {
- return ResourceManager.GetString("SubtitlesViewModel_SubDefaults", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Subtitle Tracks.
- /// </summary>
- public static string SubtitlesViewModel_SubTracks {
- get {
- return ResourceManager.GetString("SubtitlesViewModel_SubTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Switch Back To Tracks.
- /// </summary>
- public static string SubtitlesViewModel_SwitchToTracks {
- get {
- return ResourceManager.GetString("SubtitlesViewModel_SwitchToTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Add All Remaining Closed Captions.
- /// </summary>
- public static string SubtitleView_AddAllCC {
- get {
- return ResourceManager.GetString("SubtitleView_AddAllCC", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video..
- /// </summary>
- public static string SubtitleView_SubtitleDefaultsDescription {
- get {
- return ResourceManager.GetString("SubtitleView_SubtitleDefaultsDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Additional Audio Tracks.
- /// </summary>
- public static string SummaryView_AdditionalAudioTracks {
- get {
- return ResourceManager.GetString("SummaryView_AdditionalAudioTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Additional Subtitle Tracks.
- /// </summary>
- public static string SummaryView_AdditionalSubtitleTracks {
- get {
- return ResourceManager.GetString("SummaryView_AdditionalSubtitleTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Burned.
- /// </summary>
- public static string SummaryView_Burned {
- get {
- return ResourceManager.GetString("SummaryView_Burned", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chapter Markers.
- /// </summary>
- public static string SummaryView_Chapters {
- get {
- return ResourceManager.GetString("SummaryView_Chapters", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Deblock.
- /// </summary>
- public static string SummaryView_Deblock {
- get {
- return ResourceManager.GetString("SummaryView_Deblock", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detelecine.
- /// </summary>
- public static string SummaryView_Detelecine {
- get {
- return ResourceManager.GetString("SummaryView_Detelecine", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to display.
- /// </summary>
- public static string SummaryView_display {
- get {
- return ResourceManager.GetString("SummaryView_display", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Grayscale.
- /// </summary>
- public static string SummaryView_Grayscale {
- get {
- return ResourceManager.GetString("SummaryView_Grayscale", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Audio Tracks.
- /// </summary>
- public static string SummaryView_NoAudioTracks {
- get {
- return ResourceManager.GetString("SummaryView_NoAudioTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Chapter Markers.
- /// </summary>
- public static string SummaryView_NoChapters {
- get {
- return ResourceManager.GetString("SummaryView_NoChapters", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Filters.
- /// </summary>
- public static string SummaryView_NoFilters {
- get {
- return ResourceManager.GetString("SummaryView_NoFilters", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Source.
- /// </summary>
- public static string SummaryView_NoSource {
- get {
- return ResourceManager.GetString("SummaryView_NoSource", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Subtitle Tracks.
- /// </summary>
- public static string SummaryView_NoSubtitleTracks {
- get {
- return ResourceManager.GetString("SummaryView_NoSubtitleTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No Tracks.
- /// </summary>
- public static string SummaryView_NoTracks {
- get {
- return ResourceManager.GetString("SummaryView_NoTracks", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Preview {0} of {1}.
- /// </summary>
- public static string SummaryView_PreviewInfo {
- get {
- return ResourceManager.GetString("SummaryView_PreviewInfo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rotation.
- /// </summary>
- public static string SummaryView_Rotation {
- get {
- return ResourceManager.GetString("SummaryView_Rotation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to storage.
- /// </summary>
- public static string SummaryView_storage {
- get {
- return ResourceManager.GetString("SummaryView_storage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to {1}%, Pass {2} of {3}
- ///Remaining Time: {4}.
- /// </summary>
- public static string TaskTrayStatusTitle {
- get {
- return ResourceManager.GetString("TaskTrayStatusTitle", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unknown Error.
- /// </summary>
- public static string UnknownError {
- get {
- return ResourceManager.GetString("UnknownError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Updated.
- /// </summary>
- public static string Updated {
- get {
- return ResourceManager.GetString("Updated", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A problem occurred when trying to save your preferences..
- /// </summary>
- public static string UserSettings_AnErrorOccured {
- get {
- return ResourceManager.GetString("UserSettings_AnErrorOccured", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Unable to load user settings file: {0}.
- /// </summary>
- public static string UserSettings_UnableToLoad {
- get {
- return ResourceManager.GetString("UserSettings_UnableToLoad", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one..
- /// </summary>
- public static string UserSettings_UnableToLoadSolution {
- get {
- return ResourceManager.GetString("UserSettings_UnableToLoadSolution", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your user settings file was corrupted or inaccessible. Settings have been reset to defaults..
- /// </summary>
- public static string UserSettings_YourSettingsAreCorrupt {
- get {
- return ResourceManager.GetString("UserSettings_YourSettingsAreCorrupt", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warning, your settings have been reset!.
- /// </summary>
- public static string UserSettings_YourSettingsHaveBeenReset {
- get {
- return ResourceManager.GetString("UserSettings_YourSettingsHaveBeenReset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The full list of encoder parameters:
- ///{0}.
- /// </summary>
- public static string Video_EncoderExtraArgs {
- get {
- return ResourceManager.GetString("Video_EncoderExtraArgs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Additional advanced arguments that can be passed to the video encoder..
- /// </summary>
- public static string Video_EncoderExtraArgsTooltip {
- get {
- return ResourceManager.GetString("Video_EncoderExtraArgsTooltip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Higher Quality |.
- /// </summary>
- public static string Video_HigherQuality {
- get {
- return ResourceManager.GetString("Video_HigherQuality", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warning: RF 0 is Lossless!.
- /// </summary>
- public static string Video_LosslessWarning {
- get {
- return ResourceManager.GetString("Video_LosslessWarning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to A value of 0 means lossless and will result in a file size that is larger than the original source,
- ///unless the source was also lossless.
- ///
- ///x264 and x265&apos;s scale is logarithmic and lower values correspond to higher quality.
- ///
- ///So small increases in value will result in progressively larger increases in the resulting file size..
- /// </summary>
- public static string Video_LosslessWarningTooltip {
- get {
- return ResourceManager.GetString("Video_LosslessWarningTooltip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to | Lower Quality.
- /// </summary>
- public static string Video_LowQuality {
- get {
- return ResourceManager.GetString("Video_LowQuality", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Placebo Quality |.
- /// </summary>
- public static string Video_PlaceboQuality {
- get {
- return ResourceManager.GetString("Video_PlaceboQuality", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to QuickSync hardware not detected or enabled!
- ///
- ///In order to use the QuickSync encoder, you must:
- ///
- ///- Have a Intel CPU with HD Graphics and QuickSync support. 4th Generation Haswell or newer parts are recommended for best quality.
- ///- Have the HD Graphics enabled.
- ///- On older versions of windows before 8, a monitor connected to the HD Graphics or GPU Virtualisation software installed is also required..
- /// </summary>
- public static string Video_QuickSyncNotAvailable {
- get {
- return ResourceManager.GetString("Video_QuickSyncNotAvailable", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reduce decoder CPU usage.
- ///
- ///Set this if your device is struggling to play the output. (i.e. dropped frames).
- /// </summary>
- public static string Video_x264FastDecode {
- get {
- return ResourceManager.GetString("Video_x264FastDecode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 2-Pass Encoding.
- /// </summary>
- public static string VideoView_2Pass {
- get {
- return ResourceManager.GetString("VideoView_2Pass", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Avg Bitrate (kbps):.
- /// </summary>
- public static string VideoView_AverageBitrate {
- get {
- return ResourceManager.GetString("VideoView_AverageBitrate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Video Codec:.
- /// </summary>
- public static string VideoView_Codec {
- get {
- return ResourceManager.GetString("VideoView_Codec", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Constant Framerate.
- /// </summary>
- public static string VideoView_ConstantFramerate {
- get {
- return ResourceManager.GetString("VideoView_ConstantFramerate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Constant Quality:.
- /// </summary>
- public static string VideoView_ConstantQuality {
- get {
- return ResourceManager.GetString("VideoView_ConstantQuality", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoder Level:.
- /// </summary>
- public static string VideoView_EncoderLevel {
- get {
- return ResourceManager.GetString("VideoView_EncoderLevel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoder Preset:.
- /// </summary>
- public static string VideoView_EncoderPreset {
- get {
- return ResourceManager.GetString("VideoView_EncoderPreset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoder Profile:.
- /// </summary>
- public static string VideoView_EncoderProfile {
- get {
- return ResourceManager.GetString("VideoView_EncoderProfile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Encoder Tune:.
- /// </summary>
- public static string VideoView_EncodeTune {
- get {
- return ResourceManager.GetString("VideoView_EncodeTune", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Extra Options:.
- /// </summary>
- public static string VideoView_ExtraOptions {
- get {
- return ResourceManager.GetString("VideoView_ExtraOptions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fast Decode.
- /// </summary>
- public static string VideoView_FastDecode {
- get {
- return ResourceManager.GetString("VideoView_FastDecode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Framerate (FPS):.
- /// </summary>
- public static string VideoView_Framerate {
- get {
- return ResourceManager.GetString("VideoView_Framerate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Optimise Video:.
- /// </summary>
- public static string VideoView_OptimiseVideo {
- get {
- return ResourceManager.GetString("VideoView_OptimiseVideo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peak Framerate.
- /// </summary>
- public static string VideoView_PeakFramerate {
- get {
- return ResourceManager.GetString("VideoView_PeakFramerate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Quality.
- /// </summary>
- public static string VideoView_Quality {
- get {
- return ResourceManager.GetString("VideoView_Quality", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Turbo first pass.
- /// </summary>
- public static string VideoView_TurboFirstPass {
- get {
- return ResourceManager.GetString("VideoView_TurboFirstPass", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Variable Framerate.
- /// </summary>
- public static string VideoView_VariableFramerate {
- get {
- return ResourceManager.GetString("VideoView_VariableFramerate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Video.
- /// </summary>
- public static string VideoView_Video {
- get {
- return ResourceManager.GetString("VideoView_Video", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warning.
- /// </summary>
- public static string Warning {
- get {
- return ResourceManager.GetString("Warning", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to {0} - ({1}%, Pass {2} of {3}).
- /// </summary>
- public static string WindowTitleStatus {
- get {
- return ResourceManager.GetString("WindowTitleStatus", resourceCulture);
- }
- }
- }
-}
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Properties {
+ using System;
+
+
+ /// <summary>
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// </summary>
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ public class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ /// <summary>
+ /// Returns the cached ResourceManager instance used by this class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HandBrakeWPF.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ /// <summary>
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Copyright (C) 2003-2018 The HandBrake Team
+ ///
+ ///This program is free software; you can redistribute it and/or
+ ///modify it under the terms of the GNU General Public License
+ ///as published by the Free Software Foundation; either version 2
+ ///of the License, or (at your option) any later version.
+ ///
+ ///This program is distributed in the hope that it will be useful,
+ ///but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ///MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ///GNU General Public License f [rest of string was truncated]&quot;;.
+ /// </summary>
+ public static string About_GPL {
+ get {
+ return ResourceManager.GetString("About_GPL", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to License: .
+ /// </summary>
+ public static string AboutView_License {
+ get {
+ return ResourceManager.GetString("AboutView_License", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Version: .
+ /// </summary>
+ public static string AboutView_Version {
+ get {
+ return ResourceManager.GetString("AboutView_Version", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You can optionally store a picture settings with this preset. There are 3 modes:
+ ///
+ ///None: Picture settings are not stored in the preset. When loading a source, they will remain as-is within the bounds of the source resolution. This also affects Anamorphic, modulus, cropping etc.
+ ///
+ ///Custom: You can optionally set a Maximum width and Height. When doing this an encode will be less than or equal to these values. Keep Aspect Ratio will be automatically turned on.
+ ///
+ ///Source Maximum: Always encode at the sources [rest of string was truncated]&quot;;.
+ /// </summary>
+ public static string AddPreset_PictureSizeMode {
+ get {
+ return ResourceManager.GetString("AddPreset_PictureSizeMode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to -- Add New Category --.
+ /// </summary>
+ public static string AddPresetView_AddNewCategory {
+ get {
+ return ResourceManager.GetString("AddPresetView_AddNewCategory", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add Preset.
+ /// </summary>
+ public static string AddPresetView_AddPreset {
+ get {
+ return ResourceManager.GetString("AddPresetView_AddPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Category:.
+ /// </summary>
+ public static string AddPresetView_Category {
+ get {
+ return ResourceManager.GetString("AddPresetView_Category", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Description:.
+ /// </summary>
+ public static string AddPresetView_Description {
+ get {
+ return ResourceManager.GetString("AddPresetView_Description", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Name:.
+ /// </summary>
+ public static string AddPresetView_Name {
+ get {
+ return ResourceManager.GetString("AddPresetView_Name", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Dimensions:.
+ /// </summary>
+ public static string AddPresetView_SavePictureSize {
+ get {
+ return ResourceManager.GetString("AddPresetView_SavePictureSize", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The Custom Width or Height fields must be filled in for the &apos;Custom&apos; option..
+ /// </summary>
+ public static string AddPresetViewModel_CustomWidthHeightFieldsRequired {
+ get {
+ return ResourceManager.GetString("AddPresetViewModel_CustomWidthHeightFieldsRequired", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A Preset must have a Name. Please fill out the Preset Name field..
+ /// </summary>
+ public static string AddPresetViewModel_PresetMustProvideName {
+ get {
+ return ResourceManager.GetString("AddPresetViewModel_PresetMustProvideName", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A Preset with this name already exists. Would you like to overwrite it?.
+ /// </summary>
+ public static string AddPresetViewModel_PresetWithSameNameOverwriteWarning {
+ get {
+ return ResourceManager.GetString("AddPresetViewModel_PresetWithSameNameOverwriteWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to add preset.
+ /// </summary>
+ public static string AddPresetViewModel_UnableToAddPreset {
+ get {
+ return ResourceManager.GetString("AddPresetViewModel_UnableToAddPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You must first scan a source to use the &apos;Source Maximum&apos; Option..
+ /// </summary>
+ public static string AddPresetViewModel_YouMustFirstScanSource {
+ get {
+ return ResourceManager.GetString("AddPresetViewModel_YouMustFirstScanSource", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to x264 has a variety of algorithms to decide when to use B-frames and how many to use.
+ ///
+ ///Fast mode takes roughly the same amount of time no matter how many B-frames you specify. However, while fast, its decisions are often suboptimal.
+ ///
+ ///Optimal mode gets slower as the maximum number of B-Frames increases, but makes much more accurate decisions, especially when used with B-pyramid..
+ /// </summary>
+ public static string Advanced_AdaptiveBFramesToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_AdaptiveBFramesToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to H.264 allows for two different prediction modes, spatial and temporal, in B-frames.
+ ///
+ ///Spatial, the default, is almost always better, but temporal is sometimes useful too.
+ ///
+ ///x264 can, at the cost of a small amount of speed (and accordingly for a small compression gain), adaptively select which is better for each particular frame..
+ /// </summary>
+ public static string Advanced_AdaptiveDirectModeToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_AdaptiveDirectModeToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Adaptive quantization controls how the encoder distributes bits across the frame.
+ ///Higher values take more bits away from edges and complex areas to improve areas with finer detail..
+ /// </summary>
+ public static string Advanced_AdaptiveQuantizationStrengthToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_AdaptiveQuantizationStrengthToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Mode decision picks from a variety of options to make its decision: this option chooses what options those are.
+ ///Fewer partitions to check means faster encoding, at the cost of worse decisions, since the best option might have been one that was turned off..
+ /// </summary>
+ public static string Advanced_AnalysisToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_AnalysisToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Sane values are ~2-5.
+ ///This specifies the maximum number of sequential B-frames that the encoder can use.
+ /// Large numbers generally won&apos;t help significantly unless Adaptive B-frames is set to Optimal.
+ ///Cel-animated source material and B-pyramid also significantly increase the usefulness of larger values.
+ ///Baseline profile, as required for iPods and similar devices, requires B-frames to be set to 0 (off)..
+ /// </summary>
+ public static string Advanced_BFramesToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_BFramesToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to After the encoder has done its work, it has a bunch of data that needs to be compressed losslessly, similar to ZIP or RAR. H.264 provides two options for this: CAVLC and CABAC. CABAC decodes a lot slower but compresses significantly better (10-30%), especially at lower bitrates. If you&apos;re looking to minimize CPU requirements for video playback, disable this option. Baseline profile, as required for iPods and similar devices, requires CABAC to be disabled..
+ /// </summary>
+ public static string Advanced_CabacToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_CabacToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly.
+ ///The deblocking filter takes a lot of CPU power, so if you&apos;re looking to minimize CPU requirements for video playback, disable it.
+ ///
+ ///The deblocking filter has two adjustable parameters, &quot;strength&quot; and &quot;threshold&quot;.
+ ///The former controls how strong (or weak) the deblocker is, while the latter controls how many (or few) edges [rest of string was truncated]&quot;;.
+ /// </summary>
+ public static string Advanced_DeblockingToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_DeblockingToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The 8x8 transform is the single most useful feature of x264 in terms of compression-per-speed.
+ ///It improves compression by at least 5% at a very small speed cost and may provide an unusually high visual quality benefit compared to its compression gain.
+ ///However, it requires High Profile, which many devices may not support..
+ /// </summary>
+ public static string Advanced_EightByEightDctToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_EightByEightDctToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The options passed to the x264 encoder.
+ ///The above controls are only a subset of useful x264 parameters.
+ ///This box allows you to add or modify additional or current parameters as desired. .
+ /// </summary>
+ public static string Advanced_EncoderOptions {
+ get {
+ return ResourceManager.GetString("Advanced_EncoderOptions", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Controls the motion estimation method. Motion estimation is how the encoder estimates how each block of pixels in a frame has moved.
+ ///A better motion search method improves compression at the cost of speed.
+ ///
+ ///Diamond: performs an extremely fast and simple search using a diamond pattern.
+ ///
+ ///Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern.
+ ///
+ ///Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion.
+ ///
+ /// [rest of string was truncated]&quot;;.
+ /// </summary>
+ public static string Advanced_MotionEstimationMethodToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_MotionEstimationMethodToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This is the distance x264 searches from its best guess at the motion of a block in order to try to find its actual motion.
+ ///
+ ///The default is fine for most content, but extremely high motion video, especially at HD resolutions, may benefit from higher ranges, albeit at a high speed cost..
+ /// </summary>
+ public static string Advanced_MotionEstimationRangeToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_MotionEstimationRangeToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to x264 normally zeroes out nearly-empty data blocks to save bits to be better used for some other purpose in the video.
+ ///However, this can sometimes have slight negative effects on retention of subtle grain and dither.
+ ///Don&apos;t touch this unless you&apos;re having banding issues or other such cases where you are having trouble keeping fine noise..
+ /// </summary>
+ public static string Advanced_NoDctDecimateToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_NoDctDecimateToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There is no options pane available for this encoder.
+ ///
+ ///Please use the &apos;Extra Options&apos; box on the &apos;Video&apos; tab to input any additional encoder parameters you may need..
+ /// </summary>
+ public static string Advanced_NoOptionsPaneAvailable {
+ get {
+ return ResourceManager.GetString("Advanced_NoOptionsPaneAvailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Psychovisual Rate Distortion means x264 tries to retain detail, for better quality to the human eye,
+ ///as opposed to trying to maximize quality the way a computer understands it, through signal-to-noise ratios that have trouble telling apart fine detail and noise..
+ /// </summary>
+ public static string Advanced_PsychovisualRateDistortionToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_PsychovisualRateDistortionToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Psychovisual Trellis tries to retain more sharpness and detail, but can cause artifacting.
+ ///It is considered experimental, which is why it&apos;s off by default. Good values are 0.1 to 0.2..
+ /// </summary>
+ public static string Advanced_PsychovisualTrellisToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_PsychovisualTrellisToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to B-pyramid improves compression by creating a pyramidal structure (hence the name) of B-frames, allowing B-frames to
+ ///reference each other to improve compression.
+ ///
+ ///Requires Max B-frames greater than 1; optimal adaptive B-frames is strongly recommended for full compression benefit..
+ /// </summary>
+ public static string Advanced_PyramidalBFramesToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_PyramidalBFramesToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Sane values are ~1-6.
+ ///
+ ///The more you add, the better the compression, but the slower the encode.
+ ///
+ ///Cel animation tends to benefit from more reference frames a lot more than film content.
+ ///
+ ///Note that many hardware devices have limitations on the number of supported reference frames, so if you&apos;re encoding for a handheld or standalone player, don&apos;t touch this unless you&apos;re absolutely sure you know what you&apos;re doing!.
+ /// </summary>
+ public static string Advanced_ReferenceFramesToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_ReferenceFramesToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This setting controls both subpixel-precision motion estimation and mode decision methods.
+ ///
+ ///Subpixel motion estimation is used for refining motion estimates beyond mere pixel accuracy, improving compression.
+ ///
+ ///Mode decision is the method used to choose how to encode each block of the frame: a very important decision.
+ ///
+ ///SAD is the fastest method, followed by SATD, RD, RD refinement, and the slowest, QPRD.
+ ///6 or higher is strongly recommended: Psy-RD, a very powerful psy optimization that helps retain det [rest of string was truncated]&quot;;.
+ /// </summary>
+ public static string Advanced_SubpixelMotionEstimationToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_SubpixelMotionEstimationToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Trellis fine-tunes the rounding of transform coefficients to squeeze out 3-5% more compression at the cost of some speed.
+ ///&quot;Always&quot; uses trellis not only during the main encoding process, but also during analysis, which improves compression even more, albeit at great speed cost.
+ ///
+ ///Trellis costs more speed at higher bitrates..
+ /// </summary>
+ public static string Advanced_TrellisToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_TrellisToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Performs extra analysis to decide upon weighting parameters for each frame.
+ ///This improves overall compression slightly and improves the quality of fades greatly.
+ ///Baseline profile, as required for iPods and similar devices, requires weighted P-frame prediction to be disabled.
+ ///Note that some devices and players, even those that support Main Profile,
+ ///may have problems with Weighted P-frame prediction: the Apple TV is completely incompatible with it, for example..
+ /// </summary>
+ public static string Advanced_WeightPToolTip {
+ get {
+ return ResourceManager.GetString("Advanced_WeightPToolTip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure?.
+ /// </summary>
+ public static string AreYouSure {
+ get {
+ return ResourceManager.GetString("AreYouSure", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose Behaviors:.
+ /// </summary>
+ public static string AudioDefaultView_Behaviours {
+ get {
+ return ResourceManager.GetString("AudioDefaultView_Behaviours", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Allow passthru of:.
+ /// </summary>
+ public static string AudioView_AllowPassThruOf {
+ get {
+ return ResourceManager.GetString("AudioView_AllowPassThruOf", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video..
+ /// </summary>
+ public static string AudioView_AudioDefaultsDescription {
+ get {
+ return ResourceManager.GetString("AudioView_AudioDefaultsDescription", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to &apos;Auto Passthru&apos; Behaviour:.
+ /// </summary>
+ public static string AudioView_AutoPassthruBehaviour {
+ get {
+ return ResourceManager.GetString("AudioView_AutoPassthruBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Bitrate.
+ /// </summary>
+ public static string AudioView_Bitrate {
+ get {
+ return ResourceManager.GetString("AudioView_Bitrate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Codec.
+ /// </summary>
+ public static string AudioView_Codec {
+ get {
+ return ResourceManager.GetString("AudioView_Codec", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to DRC.
+ /// </summary>
+ public static string AudioView_DRC {
+ get {
+ return ResourceManager.GetString("AudioView_DRC", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Gain.
+ /// </summary>
+ public static string AudioView_Gain {
+ get {
+ return ResourceManager.GetString("AudioView_Gain", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Hide.
+ /// </summary>
+ public static string AudioView_Hide {
+ get {
+ return ResourceManager.GetString("AudioView_Hide", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Mixdown.
+ /// </summary>
+ public static string AudioView_Mixdown {
+ get {
+ return ResourceManager.GetString("AudioView_Mixdown", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Fallback encoder:.
+ /// </summary>
+ public static string AudioView_OtherwiseFallbackEncoder {
+ get {
+ return ResourceManager.GetString("AudioView_OtherwiseFallbackEncoder", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reload Defaults.
+ /// </summary>
+ public static string AudioView_ReloadDefaults {
+ get {
+ return ResourceManager.GetString("AudioView_ReloadDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Samplerate.
+ /// </summary>
+ public static string AudioView_Samplerate {
+ get {
+ return ResourceManager.GetString("AudioView_Samplerate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Show.
+ /// </summary>
+ public static string AudioView_Show {
+ get {
+ return ResourceManager.GetString("AudioView_Show", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Track Name.
+ /// </summary>
+ public static string AudioView_TrackName {
+ get {
+ return ResourceManager.GetString("AudioView_TrackName", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Track Selection Behaviour:.
+ /// </summary>
+ public static string AudioView_TrackSelectionBehaviour {
+ get {
+ return ResourceManager.GetString("AudioView_TrackSelectionBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to For Additional Tracks:.
+ /// </summary>
+ public static string AudioView_TrackSettingDefaultBehaviour {
+ get {
+ return ResourceManager.GetString("AudioView_TrackSettingDefaultBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to When &apos;Auto Passthru&apos; is selected as the audio codec..
+ /// </summary>
+ public static string AudioView_WhenAutoPassthru {
+ get {
+ return ResourceManager.GetString("AudioView_WhenAutoPassthru", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio Defaults.
+ /// </summary>
+ public static string AudioViewModel_AudioDefaults {
+ get {
+ return ResourceManager.GetString("AudioViewModel_AudioDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio Tracks.
+ /// </summary>
+ public static string AudioViewModel_AudioTracks {
+ get {
+ return ResourceManager.GetString("AudioViewModel_AudioTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Selection Behavior.
+ /// </summary>
+ public static string AudioViewModel_ConfigureDefaults {
+ get {
+ return ResourceManager.GetString("AudioViewModel_ConfigureDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Switch Back To Tracks.
+ /// </summary>
+ public static string AudioViewModel_SwitchBackToTracks {
+ get {
+ return ResourceManager.GetString("AudioViewModel_SwitchBackToTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter Markers.
+ /// </summary>
+ public static string ChaptersView_ChapterMarkers {
+ get {
+ return ResourceManager.GetString("ChaptersView_ChapterMarkers", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter Name.
+ /// </summary>
+ public static string ChaptersView_ChapterName {
+ get {
+ return ResourceManager.GetString("ChaptersView_ChapterName", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter Number.
+ /// </summary>
+ public static string ChaptersView_ChapterNumber {
+ get {
+ return ResourceManager.GetString("ChaptersView_ChapterNumber", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Create chapter markers.
+ /// </summary>
+ public static string ChaptersView_CreateChapterMarkers {
+ get {
+ return ResourceManager.GetString("ChaptersView_CreateChapterMarkers", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Duration.
+ /// </summary>
+ public static string ChaptersView_Duration {
+ get {
+ return ResourceManager.GetString("ChaptersView_Duration", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Export.
+ /// </summary>
+ public static string ChaptersView_Export {
+ get {
+ return ResourceManager.GetString("ChaptersView_Export", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Import.
+ /// </summary>
+ public static string ChaptersView_Import {
+ get {
+ return ResourceManager.GetString("ChaptersView_Import", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter marker names will NOT be saved in your encode..
+ /// </summary>
+ public static string ChaptersViewModel_UnableToExportChaptersMsg {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to save Chapter Markers file! .
+ /// </summary>
+ public static string ChaptersViewModel_UnableToExportChaptersWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to First column in chapters file must only contain a integer number value higher than zero (0).
+ /// </summary>
+ public static string ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to All lines in chapters file must have at least 2 columns of data.
+ /// </summary>
+ public static string ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Line {0} is invalid. Nothing will be imported..
+ /// </summary>
+ public static string ChaptersViewModel_UnableToImportChaptersMalformedLineMsg {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersMalformedLineMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to import chapter file.
+ /// </summary>
+ public static string ChaptersViewModel_UnableToImportChaptersWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter files of type &apos;{0}&apos; are not currently supported..
+ /// </summary>
+ public static string ChaptersViewModel_UnsupportedFileFormatMsg {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unsupported chapter file type.
+ /// </summary>
+ public static string ChaptersViewModel_UnsupportedFileFormatWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The number of chapters on the source media
+ ///and the number of chapters in the input file do not match ({0} vs {1}).
+ ///
+ ///Do you still want to import the chapter names?.
+ /// </summary>
+ public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The number of chapters on the source media
+ ///and the number of chapters in the input file do not match ({0} vs {1}).
+ ///
+ ///Do you still want to import the chapter names?.
+ /// </summary>
+ public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter count doesn&apos;t match between source and input file.
+ /// </summary>
+ public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The reported duration of the chapters on the source media
+ ///and the duration of chapters in the input file differ greatly.
+ ///
+ ///It is very likely that this chapter file was produced from a different source media.
+ ///
+ ///Are you sure you want to import the chapter names?.
+ /// </summary>
+ public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter duration doesn&apos;t match between source and input file.
+ /// </summary>
+ public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Invalid chapter information for source media.
+ /// </summary>
+ public static string ChaptersViewModel_ValidationFailedWarning {
+ get {
+ return ResourceManager.GetString("ChaptersViewModel_ValidationFailedWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Export Names.
+ /// </summary>
+ public static string ChapterView_ExportNames {
+ get {
+ return ResourceManager.GetString("ChapterView_ExportNames", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Import Names.
+ /// </summary>
+ public static string ChapterView_ImportNames {
+ get {
+ return ResourceManager.GetString("ChapterView_ImportNames", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reset Chapter Names.
+ /// </summary>
+ public static string ChapterView_ResetChapterNames {
+ get {
+ return ResourceManager.GetString("ChapterView_ResetChapterNames", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The system clipboard is currently unavailable..
+ /// </summary>
+ public static string Clipboard_Unavailable {
+ get {
+ return ResourceManager.GetString("Clipboard_Unavailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This may be due to another application monitoring or locking the clipboard for its own use. You will not be able to use the clipboard until it is unlocked..
+ /// </summary>
+ public static string Clipboard_Unavailable_Solution {
+ get {
+ return ResourceManager.GetString("Clipboard_Unavailable_Solution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Confirm.
+ /// </summary>
+ public static string Confirm {
+ get {
+ return ResourceManager.GetString("Confirm", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The following action &apos;{0}&apos; will occur in {1} seconds..
+ /// </summary>
+ public static string CountdownAlertViewModel_NoticeMessage {
+ get {
+ return ResourceManager.GetString("CountdownAlertViewModel_NoticeMessage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Cancel Action.
+ /// </summary>
+ public static string CountdownAlterView_CancelAction {
+ get {
+ return ResourceManager.GetString("CountdownAlterView_CancelAction", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Proceed.
+ /// </summary>
+ public static string CountdownAlterView_Proceed {
+ get {
+ return ResourceManager.GetString("CountdownAlterView_Proceed", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to When Done Action.
+ /// </summary>
+ public static string CountdownAlterView_WhenDoneAction {
+ get {
+ return ResourceManager.GetString("CountdownAlterView_WhenDoneAction", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Create Folder?.
+ /// </summary>
+ public static string DirectoryUtils_CreateFolder {
+ get {
+ return ResourceManager.GetString("DirectoryUtils_CreateFolder", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The folder you are trying to write to does not exist. Would you like HandBrake to create the following folder?
+ ///{0}.
+ /// </summary>
+ public static string DirectoryUtils_CreateFolderMsg {
+ get {
+ return ResourceManager.GetString("DirectoryUtils_CreateFolderMsg", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Error.
+ /// </summary>
+ public static string Error {
+ get {
+ return ResourceManager.GetString("Error", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Error Details:.
+ /// </summary>
+ public static string ErrorView_ErrorDetails {
+ get {
+ return ResourceManager.GetString("ErrorView_ErrorDetails", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to If the problem presists, please try restarting HandBrake..
+ /// </summary>
+ public static string ErrorViewModel_IfTheProblemPersists {
+ get {
+ return ResourceManager.GetString("ErrorViewModel_IfTheProblemPersists", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There is no further information available about this error..
+ /// </summary>
+ public static string ErrorViewModel_NoFurtherInformation {
+ get {
+ return ResourceManager.GetString("ErrorViewModel_NoFurtherInformation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to An Unknown Error has occurred..
+ /// </summary>
+ public static string ErrorViewModel_UnknownError {
+ get {
+ return ResourceManager.GetString("ErrorViewModel_UnknownError", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Custom:.
+ /// </summary>
+ public static string FiltersView_Custom {
+ get {
+ return ResourceManager.GetString("FiltersView_Custom", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Deblock.
+ /// </summary>
+ public static string FiltersView_Deblock {
+ get {
+ return ResourceManager.GetString("FiltersView_Deblock", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Decomb.
+ /// </summary>
+ public static string FiltersView_Decomb {
+ get {
+ return ResourceManager.GetString("FiltersView_Decomb", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Deinterlace:.
+ /// </summary>
+ public static string FiltersView_Deinterlace {
+ get {
+ return ResourceManager.GetString("FiltersView_Deinterlace", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preset:.
+ /// </summary>
+ public static string FiltersView_DeinterlacePreset {
+ get {
+ return ResourceManager.GetString("FiltersView_DeinterlacePreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Deinterlace Preset.
+ /// </summary>
+ public static string FiltersView_DeinterlacePresetAuto {
+ get {
+ return ResourceManager.GetString("FiltersView_DeinterlacePresetAuto", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Denoise:.
+ /// </summary>
+ public static string FiltersView_Denoise {
+ get {
+ return ResourceManager.GetString("FiltersView_Denoise", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Denoise Preset.
+ /// </summary>
+ public static string FiltersView_DenoisePresetAuto {
+ get {
+ return ResourceManager.GetString("FiltersView_DenoisePresetAuto", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Denoise Tune.
+ /// </summary>
+ public static string FiltersView_DenoiseTuneAuto {
+ get {
+ return ResourceManager.GetString("FiltersView_DenoiseTuneAuto", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Detelecine:.
+ /// </summary>
+ public static string FiltersView_Detelecine {
+ get {
+ return ResourceManager.GetString("FiltersView_Detelecine", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Filters.
+ /// </summary>
+ public static string FiltersView_Filters {
+ get {
+ return ResourceManager.GetString("FiltersView_Filters", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Flip.
+ /// </summary>
+ public static string FiltersView_FlipVideo {
+ get {
+ return ResourceManager.GetString("FiltersView_FlipVideo", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Grayscale.
+ /// </summary>
+ public static string FiltersView_Grayscale {
+ get {
+ return ResourceManager.GetString("FiltersView_Grayscale", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Interlace Detection:.
+ /// </summary>
+ public static string FiltersView_InterlaceDetection {
+ get {
+ return ResourceManager.GetString("FiltersView_InterlaceDetection", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preset:.
+ /// </summary>
+ public static string FiltersView_Preset {
+ get {
+ return ResourceManager.GetString("FiltersView_Preset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Rotate:.
+ /// </summary>
+ public static string FiltersView_Rotate {
+ get {
+ return ResourceManager.GetString("FiltersView_Rotate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Sharpen.
+ /// </summary>
+ public static string FiltersView_Sharpen {
+ get {
+ return ResourceManager.GetString("FiltersView_Sharpen", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Sharpen Preset.
+ /// </summary>
+ public static string FiltersView_SharpenPresetAuto {
+ get {
+ return ResourceManager.GetString("FiltersView_SharpenPresetAuto", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Sharpen Tune.
+ /// </summary>
+ public static string FiltersView_SharpenTuneAuto {
+ get {
+ return ResourceManager.GetString("FiltersView_SharpenTuneAuto", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Tune:.
+ /// </summary>
+ public static string FiltersView_Tune {
+ get {
+ return ResourceManager.GetString("FiltersView_Tune", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add.
+ /// </summary>
+ public static string Generic_Add {
+ get {
+ return ResourceManager.GetString("Generic_Add", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Cancel.
+ /// </summary>
+ public static string Generic_Cancel {
+ get {
+ return ResourceManager.GetString("Generic_Cancel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear.
+ /// </summary>
+ public static string Generic_Clear {
+ get {
+ return ResourceManager.GetString("Generic_Clear", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Close.
+ /// </summary>
+ public static string Generic_Close {
+ get {
+ return ResourceManager.GetString("Generic_Close", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Copy to Clipboard.
+ /// </summary>
+ public static string Generic_CopyToClipboard {
+ get {
+ return ResourceManager.GetString("Generic_CopyToClipboard", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Move Left.
+ /// </summary>
+ public static string Generic_MoveLeft {
+ get {
+ return ResourceManager.GetString("Generic_MoveLeft", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Move Right.
+ /// </summary>
+ public static string Generic_MoveRight {
+ get {
+ return ResourceManager.GetString("Generic_MoveRight", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Save.
+ /// </summary>
+ public static string Generic_Save {
+ get {
+ return ResourceManager.GetString("Generic_Save", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake.
+ /// </summary>
+ public static string HandBrake_Title {
+ get {
+ return ResourceManager.GetString("HandBrake_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Use System Language.
+ /// </summary>
+ public static string Language_UseSystem {
+ get {
+ return ResourceManager.GetString("Language_UseSystem", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Copy to clipboard.
+ /// </summary>
+ public static string LogView_CopyClipboard {
+ get {
+ return ResourceManager.GetString("LogView_CopyClipboard", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encode Log.
+ /// </summary>
+ public static string LogView_EncodeLog {
+ get {
+ return ResourceManager.GetString("LogView_EncodeLog", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open Log Directory.
+ /// </summary>
+ public static string LogView_OpenLogDir {
+ get {
+ return ResourceManager.GetString("LogView_OpenLogDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to ScanLog.
+ /// </summary>
+ public static string LogView_ScanLog {
+ get {
+ return ResourceManager.GetString("LogView_ScanLog", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake is already encoding..
+ /// </summary>
+ public static string Main_AlreadyEncoding {
+ get {
+ return ResourceManager.GetString("Main_AlreadyEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Warning: If you wish to have subtitles added to each item you are about to queue, please verify that you have the subtitle defaults setup correctly on the subtitles tab.
+ ///
+ ///Do you wish to continue?.
+ /// </summary>
+ public static string Main_AutoAdd_AudioAndSubWarning {
+ get {
+ return ResourceManager.GetString("Main_AutoAdd_AudioAndSubWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please choose a destination for where you would like the encoded file to be saved..
+ /// </summary>
+ public static string Main_ChooseDestination {
+ get {
+ return ResourceManager.GetString("Main_ChooseDestination", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to add the last job to the queue. Do you wish to proceed trying to add the rest?.
+ /// </summary>
+ public static string Main_ContinueAddingToQueue {
+ get {
+ return ResourceManager.GetString("Main_ContinueAddingToQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The current file already exists, do you wish to overwrite it?.
+ /// </summary>
+ public static string Main_DestinationOverwrite {
+ get {
+ return ResourceManager.GetString("Main_DestinationOverwrite", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There are jobs on the queue with the same destination path. Please choose a different path for this job..
+ /// </summary>
+ public static string Main_DuplicateDestinationOnQueue {
+ get {
+ return ResourceManager.GetString("Main_DuplicateDestinationOnQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The entered destination path contained illegal characters and will not be updated..
+ /// </summary>
+ public static string Main_InvalidDestination {
+ get {
+ return ResourceManager.GetString("Main_InvalidDestination", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Pending Jobs {0}.
+ /// </summary>
+ public static string Main_JobsPending_addon {
+ get {
+ return ResourceManager.GetString("Main_JobsPending_addon", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your destination directory is low on diskspace. Please free up some disk space on your destination drive. Alternatively you can change the level at which this alert triggers in Options. .
+ /// </summary>
+ public static string Main_LowDiskspace {
+ get {
+ return ResourceManager.GetString("Main_LowDiskspace", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You cannot encode to a file with the same path and filename as the source file. Please update the destination filename so that it does not match the source file..
+ /// </summary>
+ public static string Main_MatchingFileOverwriteWarning {
+ get {
+ return ResourceManager.GetString("Main_MatchingFileOverwriteWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to New Default Preset Set: {0}.
+ /// </summary>
+ public static string Main_NewDefaultPreset {
+ get {
+ return ResourceManager.GetString("Main_NewDefaultPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A New Update is Available. Goto Tools Menu &gt; Options to Install.
+ /// </summary>
+ public static string Main_NewUpdate {
+ get {
+ return ResourceManager.GetString("Main_NewUpdate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The output directory you have chosen either does not exist, or you do not have permissions to write files to it..
+ /// </summary>
+ public static string Main_NoPermissionsOrMissingDirectory {
+ get {
+ return ResourceManager.GetString("Main_NoPermissionsOrMissingDirectory", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Preset selected..
+ /// </summary>
+ public static string Main_NoPresetSelected {
+ get {
+ return ResourceManager.GetString("Main_NoPresetSelected", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You can not modify built in presets. Please select one of your own presets..
+ /// </summary>
+ public static string Main_NoUpdateOfBuiltInPresets {
+ get {
+ return ResourceManager.GetString("Main_NoUpdateOfBuiltInPresets", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please select a folder..
+ /// </summary>
+ public static string Main_PleaseSelectFolder {
+ get {
+ return ResourceManager.GetString("Main_PleaseSelectFolder", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preparing to encode ....
+ /// </summary>
+ public static string Main_PreparingToEncode {
+ get {
+ return ResourceManager.GetString("Main_PreparingToEncode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You can not import a preset with the same name as a built-in preset..
+ /// </summary>
+ public static string Main_PresetErrorBuiltInName {
+ get {
+ return ResourceManager.GetString("Main_PresetErrorBuiltInName", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to import the selected preset..
+ /// </summary>
+ public static string Main_PresetImportFailed {
+ get {
+ return ResourceManager.GetString("Main_PresetImportFailed", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The preset may be corrupted or from an older version of HandBrake which is not supported.
+ ///Presets from older versions must be re-created in the current version..
+ /// </summary>
+ public static string Main_PresetImportFailedSolution {
+ get {
+ return ResourceManager.GetString("Main_PresetImportFailedSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The preset &quot;{0}&quot; already exists. Would you like to overwrite it?.
+ /// </summary>
+ public static string Main_PresetOverwriteWarning {
+ get {
+ return ResourceManager.GetString("Main_PresetOverwriteWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Presets.
+ /// </summary>
+ public static string Main_Presets {
+ get {
+ return ResourceManager.GetString("Main_Presets", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you wish to update the selected preset?.
+ /// </summary>
+ public static string Main_PresetUpdateConfrimation {
+ get {
+ return ResourceManager.GetString("Main_PresetUpdateConfrimation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The Preset has now been updated with your current settings..
+ /// </summary>
+ public static string Main_PresetUpdated {
+ get {
+ return ResourceManager.GetString("Main_PresetUpdated", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake has determined your built-in presets are out of date... These presets will now be updated.
+ ///Your custom presets have not been updated so you may have to re-create these by deleting and re-adding them.
+ ///The previous user_presets.xml file was backed up..
+ /// </summary>
+ public static string Main_PresetUpdateNotification {
+ get {
+ return ResourceManager.GetString("Main_PresetUpdateNotification", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Finished.
+ /// </summary>
+ public static string Main_QueueFinished {
+ get {
+ return ResourceManager.GetString("Main_QueueFinished", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to with {0} errors or cancellations detected..
+ /// </summary>
+ public static string Main_QueueFinishedErrors {
+ get {
+ return ResourceManager.GetString("Main_QueueFinishedErrors", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue{0}.
+ /// </summary>
+ public static string Main_QueueLabel {
+ get {
+ return ResourceManager.GetString("Main_QueueLabel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The file &apos;{0}&apos; already exists!
+ ///Would you like to overwrite it?.
+ /// </summary>
+ public static string Main_QueueOverwritePrompt {
+ get {
+ return ResourceManager.GetString("Main_QueueOverwritePrompt", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Paused.
+ /// </summary>
+ public static string Main_QueuePaused {
+ get {
+ return ResourceManager.GetString("Main_QueuePaused", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scan Cancelled..
+ /// </summary>
+ public static string Main_ScanCancelled {
+ get {
+ return ResourceManager.GetString("Main_ScanCancelled", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scan Completed.
+ /// </summary>
+ public static string Main_ScanCompleted {
+ get {
+ return ResourceManager.GetString("Main_ScanCompleted", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scan failed: .
+ /// </summary>
+ public static string Main_ScanFailed_NoReason {
+ get {
+ return ResourceManager.GetString("Main_ScanFailed_NoReason", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scan Failed... Please See Activity Log for details..
+ /// </summary>
+ public static string Main_ScanFailled_CheckLog {
+ get {
+ return ResourceManager.GetString("Main_ScanFailled_CheckLog", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scanning source, please wait....
+ /// </summary>
+ public static string Main_ScanningPleaseWait {
+ get {
+ return ResourceManager.GetString("Main_ScanningPleaseWait", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scanning Title {0} of {1} ({2}%).
+ /// </summary>
+ public static string Main_ScanningTitleXOfY {
+ get {
+ return ResourceManager.GetString("Main_ScanningTitleXOfY", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No valid source or titles found..
+ /// </summary>
+ public static string Main_ScanNoTitlesFound {
+ get {
+ return ResourceManager.GetString("Main_ScanNoTitlesFound", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake will not be able to encode the selected source as it did not find a valid source with titles to encode.
+ ///This could be due to one of the following reasons:
+ ///- The source file is not a valid video file or is in a format that HandBrake does not support.
+ ///- The source may be copy protected or include DRM. Please note that HandBrake does not support the removal of copy protections.
+ ///
+ ///The Activity log may have further information..
+ /// </summary>
+ public static string Main_ScanNoTitlesFoundMessage {
+ get {
+ return ResourceManager.GetString("Main_ScanNoTitlesFoundMessage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You must first scan a source and setup your job before starting an encode. Click the &apos;Source&apos; button on the toolbar to continue..
+ /// </summary>
+ public static string Main_ScanSource {
+ get {
+ return ResourceManager.GetString("Main_ScanSource", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please make sure you have selected one of your own presets. Please note that you cannot export built-in presets..
+ /// </summary>
+ public static string Main_SelectPreset {
+ get {
+ return ResourceManager.GetString("Main_SelectPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please select a preset to update..
+ /// </summary>
+ public static string Main_SelectPresetForUpdate {
+ get {
+ return ResourceManager.GetString("Main_SelectPresetForUpdate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Select &apos;Source&apos; to continue.
+ /// </summary>
+ public static string Main_SelectSource {
+ get {
+ return ResourceManager.GetString("Main_SelectSource", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You must first set the destination path for the output file before adding to the queue..
+ /// </summary>
+ public static string Main_SetDestination {
+ get {
+ return ResourceManager.GetString("Main_SetDestination", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You cannot overwrite the source file you want to convert.
+ ///Please choose a different filename..
+ /// </summary>
+ public static string Main_SourceDestinationMatchError {
+ get {
+ return ResourceManager.GetString("Main_SourceDestinationMatchError", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Encode.
+ /// </summary>
+ public static string Main_Start {
+ get {
+ return ResourceManager.GetString("Main_Start", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Queue.
+ /// </summary>
+ public static string Main_StartQueue {
+ get {
+ return ResourceManager.GetString("Main_StartQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// 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..
+ /// </summary>
+ public static string Main_TurnOnAutoFileNaming {
+ get {
+ return ResourceManager.GetString("Main_TurnOnAutoFileNaming", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your system prevented HandBrake from launching a web browser..
+ /// </summary>
+ public static string Main_UnableToLoadHelpMessage {
+ get {
+ return ResourceManager.GetString("Main_UnableToLoadHelpMessage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You can still access the help pages by visiting the website directly at: https://handbrake.fr.
+ /// </summary>
+ public static string Main_UnableToLoadHelpSolution {
+ get {
+ return ResourceManager.GetString("Main_UnableToLoadHelpSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to {0} Encodes Pending.
+ /// </summary>
+ public static string Main_XEncodesPending {
+ get {
+ return ResourceManager.GetString("Main_XEncodesPending", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Activity Log.
+ /// </summary>
+ public static string MainView_ActivityLog {
+ get {
+ return ResourceManager.GetString("MainView_ActivityLog", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add All.
+ /// </summary>
+ public static string MainView_AddAll {
+ get {
+ return ResourceManager.GetString("MainView_AddAll", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add Current.
+ /// </summary>
+ public static string MainView_AddCurrent {
+ get {
+ return ResourceManager.GetString("MainView_AddCurrent", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add Selection.
+ /// </summary>
+ public static string MainView_AddSelection {
+ get {
+ return ResourceManager.GetString("MainView_AddSelection", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add to Queue.
+ /// </summary>
+ public static string MainView_AddToQueue {
+ get {
+ return ResourceManager.GetString("MainView_AddToQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Advanced.
+ /// </summary>
+ public static string MainView_AdvancedTab {
+ get {
+ return ResourceManager.GetString("MainView_AdvancedTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Align A/V Start.
+ /// </summary>
+ public static string MainView_AlignAVStart {
+ get {
+ return ResourceManager.GetString("MainView_AlignAVStart", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Angle: .
+ /// </summary>
+ public static string MainView_Angle {
+ get {
+ return ResourceManager.GetString("MainView_Angle", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio.
+ /// </summary>
+ public static string MainView_AudioTab {
+ get {
+ return ResourceManager.GetString("MainView_AudioTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio Tracks.
+ /// </summary>
+ public static string MainView_AudioTrackCount {
+ get {
+ return ResourceManager.GetString("MainView_AudioTrackCount", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Browse.
+ /// </summary>
+ public static string MainView_Browser {
+ get {
+ return ResourceManager.GetString("MainView_Browser", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapters.
+ /// </summary>
+ public static string MainView_ChaptersTab {
+ get {
+ return ResourceManager.GetString("MainView_ChaptersTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Container.
+ /// </summary>
+ public static string MainView_Container {
+ get {
+ return ResourceManager.GetString("MainView_Container", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Destination.
+ /// </summary>
+ public static string MainView_Destination {
+ get {
+ return ResourceManager.GetString("MainView_Destination", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Duration: .
+ /// </summary>
+ public static string MainView_Duration {
+ get {
+ return ResourceManager.GetString("MainView_Duration", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Save As:.
+ /// </summary>
+ public static string MainView_File {
+ get {
+ return ResourceManager.GetString("MainView_File", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Filters.
+ /// </summary>
+ public static string MainView_FiltersTab {
+ get {
+ return ResourceManager.GetString("MainView_FiltersTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Format:.
+ /// </summary>
+ public static string MainView_Format {
+ get {
+ return ResourceManager.GetString("MainView_Format", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Help.
+ /// </summary>
+ public static string MainView_Help {
+ get {
+ return ResourceManager.GetString("MainView_Help", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to iPod 5G Support.
+ /// </summary>
+ public static string MainView_iPod5G {
+ get {
+ return ResourceManager.GetString("MainView_iPod5G", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Meta Data.
+ /// </summary>
+ public static string MainView_MetaDataTab {
+ get {
+ return ResourceManager.GetString("MainView_MetaDataTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to (Modified).
+ /// </summary>
+ public static string MainView_ModifiedPreset {
+ get {
+ return ResourceManager.GetString("MainView_ModifiedPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Muxing: This may take a while....
+ /// </summary>
+ public static string MainView_Muxing {
+ get {
+ return ResourceManager.GetString("MainView_Muxing", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Options.
+ /// </summary>
+ public static string MainView_Options {
+ get {
+ return ResourceManager.GetString("MainView_Options", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Output Settings.
+ /// </summary>
+ public static string MainView_OutputSettings {
+ get {
+ return ResourceManager.GetString("MainView_OutputSettings", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Pause.
+ /// </summary>
+ public static string MainView_Pause {
+ get {
+ return ResourceManager.GetString("MainView_Pause", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Dimensions.
+ /// </summary>
+ public static string MainView_PictureTab {
+ get {
+ return ResourceManager.GetString("MainView_PictureTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Rename Preset.
+ /// </summary>
+ public static string MainView_PresetManage {
+ get {
+ return ResourceManager.GetString("MainView_PresetManage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preset Options Context Menu.
+ /// </summary>
+ public static string MainView_PresetOptionsContextMenu {
+ get {
+ return ResourceManager.GetString("MainView_PresetOptionsContextMenu", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Delete Preset.
+ /// </summary>
+ public static string MainView_PresetRemove {
+ get {
+ return ResourceManager.GetString("MainView_PresetRemove", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Presets.
+ /// </summary>
+ public static string MainView_Presets {
+ get {
+ return ResourceManager.GetString("MainView_Presets", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview.
+ /// </summary>
+ public static string MainView_Preview {
+ get {
+ return ResourceManager.GetString("MainView_Preview", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoding: {0}, {1:00.00}%, Time Remaining: {2}, {3}.
+ /// </summary>
+ public static string MainView_ProgressStatusWithTask {
+ get {
+ return ResourceManager.GetString("MainView_ProgressStatusWithTask", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Range:.
+ /// </summary>
+ public static string MainView_Range {
+ get {
+ return ResourceManager.GetString("MainView_Range", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reload.
+ /// </summary>
+ public static string MainView_Reload {
+ get {
+ return ResourceManager.GetString("MainView_Reload", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Remove.
+ /// </summary>
+ public static string MainView_Remove {
+ get {
+ return ResourceManager.GetString("MainView_Remove", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reset Built-in Presets.
+ /// </summary>
+ public static string MainView_ResetBuiltInPresets {
+ get {
+ return ResourceManager.GetString("MainView_ResetBuiltInPresets", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Save New Preset.
+ /// </summary>
+ public static string MainView_SaveNewPreset {
+ get {
+ return ResourceManager.GetString("MainView_SaveNewPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Searching for start time.
+ /// </summary>
+ public static string MainView_Searching {
+ get {
+ return ResourceManager.GetString("MainView_Searching", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Selected Preset:.
+ /// </summary>
+ public static string MainView_SelectedPreset {
+ get {
+ return ResourceManager.GetString("MainView_SelectedPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Set Default.
+ /// </summary>
+ public static string MainView_SetDefault {
+ get {
+ return ResourceManager.GetString("MainView_SetDefault", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview.
+ /// </summary>
+ public static string MainView_ShowPreview {
+ get {
+ return ResourceManager.GetString("MainView_ShowPreview", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue.
+ /// </summary>
+ public static string MainView_ShowQueue {
+ get {
+ return ResourceManager.GetString("MainView_ShowQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Source:.
+ /// </summary>
+ public static string MainView_Source {
+ get {
+ return ResourceManager.GetString("MainView_Source", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open Source.
+ /// </summary>
+ public static string MainView_SourceOpen {
+ get {
+ return ResourceManager.GetString("MainView_SourceOpen", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Encode.
+ /// </summary>
+ public static string MainView_StartEncode {
+ get {
+ return ResourceManager.GetString("MainView_StartEncode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Queue.
+ /// </summary>
+ public static string MainView_StartQueue {
+ get {
+ return ResourceManager.GetString("MainView_StartQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Stop.
+ /// </summary>
+ public static string MainView_Stop {
+ get {
+ return ResourceManager.GetString("MainView_Stop", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Stop Encode.
+ /// </summary>
+ public static string MainView_StopEncode {
+ get {
+ return ResourceManager.GetString("MainView_StopEncode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you wish to stop this encode?.
+ /// </summary>
+ public static string MainView_StopEncodeConfirm {
+ get {
+ return ResourceManager.GetString("MainView_StopEncodeConfirm", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please choose a source to encode before trying to import a subtitle file..
+ /// </summary>
+ public static string MainView_SubtitleBeforeScanError {
+ get {
+ return ResourceManager.GetString("MainView_SubtitleBeforeScanError", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitles.
+ /// </summary>
+ public static string MainView_SubtitlesTab {
+ get {
+ return ResourceManager.GetString("MainView_SubtitlesTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitle Tracks.
+ /// </summary>
+ public static string MainView_SubtitleTracksCount {
+ get {
+ return ResourceManager.GetString("MainView_SubtitleTracksCount", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Summary.
+ /// </summary>
+ public static string MainView_SummaryTab {
+ get {
+ return ResourceManager.GetString("MainView_SummaryTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to - .
+ /// </summary>
+ public static string MainView_through {
+ get {
+ return ResourceManager.GetString("MainView_through", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Title: .
+ /// </summary>
+ public static string MainView_Title {
+ get {
+ return ResourceManager.GetString("MainView_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Tools.
+ /// </summary>
+ public static string MainView_Tools {
+ get {
+ return ResourceManager.GetString("MainView_Tools", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Update Selected Preset.
+ /// </summary>
+ public static string MainView_UpdateSelectedPreset {
+ get {
+ return ResourceManager.GetString("MainView_UpdateSelectedPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Video.
+ /// </summary>
+ public static string MainView_VideoTab {
+ get {
+ return ResourceManager.GetString("MainView_VideoTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Web Optimized.
+ /// </summary>
+ public static string MainView_WebOptimized {
+ get {
+ return ResourceManager.GetString("MainView_WebOptimized", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You can not delete the default preset. Please set another preset as default first..
+ /// </summary>
+ public static string MainViewModel_CanNotDeleteDefaultPreset {
+ get {
+ return ResourceManager.GetString("MainViewModel_CanNotDeleteDefaultPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss} {7}.
+ /// </summary>
+ public static string MainViewModel_EncodeStatusChanged_StatusLabel {
+ get {
+ return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Processing Pass {0} of {1}, (Subtitle Scan) {2:00.00}%, Scan Time Remaining: {3}, Elapsed: {4:d\:hh\:mm\:ss}.
+ /// </summary>
+ public static string MainViewModel_EncodeStatusChanged_SubScan_StatusLabel {
+ get {
+ return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_SubScan_StatusLabel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Low Disk Space.
+ /// </summary>
+ public static string MainViewModel_LowDiskSpace {
+ get {
+ return ResourceManager.GetString("MainViewModel_LowDiskSpace", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Warning, you are running low on disk space. HandBrake will not be able to complete this encode if you run out of space. .
+ /// </summary>
+ public static string MainViewModel_LowDiskSpaceWarning {
+ get {
+ return ResourceManager.GetString("MainViewModel_LowDiskSpaceWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you want to delete the preset: .
+ /// </summary>
+ public static string MainViewModel_PresetRemove_AreYouSure {
+ get {
+ return ResourceManager.GetString("MainViewModel_PresetRemove_AreYouSure", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to launch destination directory..
+ /// </summary>
+ public static string MainViewModel_UnableToLaunchDestDir {
+ get {
+ return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please check that you have a valid destination directory..
+ /// </summary>
+ public static string MainViewModel_UnableToLaunchDestDirSolution {
+ get {
+ return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDirSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Manage Preset.
+ /// </summary>
+ public static string ManagePresetView_ManagePreset {
+ get {
+ return ResourceManager.GetString("ManagePresetView_ManagePreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Meta Data.
+ /// </summary>
+ public static string MetaDataView_Title {
+ get {
+ return ResourceManager.GetString("MetaDataView_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%
+ ///FPS: {3:000.0}, Avg FPS: {4:000.0}
+ ///Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss}.
+ /// </summary>
+ public static string MiniViewModel_EncodeStatusChanged_StatusLabel {
+ get {
+ return ResourceManager.GetString("MiniViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Additional Information.
+ /// </summary>
+ public static string NoAdditionalInformation {
+ get {
+ return ResourceManager.GetString("NoAdditionalInformation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Notice.
+ /// </summary>
+ public static string Notice {
+ get {
+ return ResourceManager.GetString("Notice", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear Log files older than 30 days.
+ /// </summary>
+ public static string Options_30DayLogClear {
+ get {
+ return ResourceManager.GetString("Options_30DayLogClear", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to About HandBrake.
+ /// </summary>
+ public static string Options_About {
+ get {
+ return ResourceManager.GetString("Options_About", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The format of the output file. In addition to any supported file system character, you can use the following placeholders that will be replaced when you change title or scan a source.
+ ///
+ ///Live Update Options: {source} {title} {chapters}
+ ///Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitrate} (These only change if you scan a new source, change title or chapters).
+ /// </summary>
+ public static string Options_AdditionalFormatOptions {
+ get {
+ return ResourceManager.GetString("Options_AdditionalFormatOptions", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Advanced.
+ /// </summary>
+ public static string Options_Advanced {
+ get {
+ return ResourceManager.GetString("Options_Advanced", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Advanced Options.
+ /// </summary>
+ public static string Options_AdvancedOptions {
+ get {
+ return ResourceManager.GetString("Options_AdvancedOptions", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Arguments:.
+ /// </summary>
+ public static string Options_Arguments {
+ get {
+ return ResourceManager.GetString("Options_Arguments", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Automatic File Naming.
+ /// </summary>
+ public static string Options_AutomaticFileNaming {
+ get {
+ return ResourceManager.GetString("Options_AutomaticFileNaming", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Automatically name output files.
+ /// </summary>
+ public static string Options_AutoNameOutput {
+ get {
+ return ResourceManager.GetString("Options_AutoNameOutput", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Check for Updates.
+ /// </summary>
+ public static string Options_CheckForUpdates {
+ get {
+ return ResourceManager.GetString("Options_CheckForUpdates", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Always clear completed queue items after an encode completes.
+ /// </summary>
+ public static string Options_ClearCompleted {
+ get {
+ return ResourceManager.GetString("Options_ClearCompleted", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear Log History.
+ /// </summary>
+ public static string Options_ClearLogs {
+ get {
+ return ResourceManager.GetString("Options_ClearLogs", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Put a copy of individual encode logs in a specified location:.
+ /// </summary>
+ public static string Options_CopyLogToDir {
+ get {
+ return ResourceManager.GetString("Options_CopyLogToDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Put a copy of individual encode logs in the same location as the encoded video.
+ /// </summary>
+ public static string Options_CopyLogToEncDir {
+ get {
+ return ResourceManager.GetString("Options_CopyLogToEncDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Current Version.
+ /// </summary>
+ public static string Options_CurVersion {
+ get {
+ return ResourceManager.GetString("Options_CurVersion", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Decoding.
+ /// </summary>
+ public static string Options_Decoding {
+ get {
+ return ResourceManager.GetString("Options_Decoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Default Path:.
+ /// </summary>
+ public static string Options_DefaultPath {
+ get {
+ return ResourceManager.GetString("Options_DefaultPath", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Available additional Options: {source_path} or {source_folder_name}
+ ///
+ ///Not both at the same time!.
+ /// </summary>
+ public static string Options_DefaultPathAdditionalParams {
+ get {
+ return ResourceManager.GetString("Options_DefaultPathAdditionalParams", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Download Update.
+ /// </summary>
+ public static string Options_DownloadUpdates {
+ get {
+ return ResourceManager.GetString("Options_DownloadUpdates", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to DVD Reading.
+ /// </summary>
+ public static string Options_DVD {
+ get {
+ return ResourceManager.GetString("Options_DVD", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Disable LibDVDNav. (libdvdread will be used instead).
+ /// </summary>
+ public static string Options_DvdRead {
+ get {
+ return ResourceManager.GetString("Options_DvdRead", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoding.
+ /// </summary>
+ public static string Options_Encoding {
+ get {
+ return ResourceManager.GetString("Options_Encoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Experimental Features.
+ /// </summary>
+ public static string Options_Experimental {
+ get {
+ return ResourceManager.GetString("Options_Experimental", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Experimental features are ideas we are working on. These may or may not make it into a final release and may not work!.
+ /// </summary>
+ public static string Options_ExperimentalFeatures {
+ get {
+ return ResourceManager.GetString("Options_ExperimentalFeatures", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to File Format:.
+ /// </summary>
+ public static string Options_Format {
+ get {
+ return ResourceManager.GetString("Options_Format", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to General.
+ /// </summary>
+ public static string Options_General {
+ get {
+ return ResourceManager.GetString("Options_General", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Logging.
+ /// </summary>
+ public static string Options_Logging {
+ get {
+ return ResourceManager.GetString("Options_Logging", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Log Verbosity Level:.
+ /// </summary>
+ public static string Options_LogLevel {
+ get {
+ return ResourceManager.GetString("Options_LogLevel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Log Path:.
+ /// </summary>
+ public static string Options_LogPath {
+ get {
+ return ResourceManager.GetString("Options_LogPath", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Low diskspace warning level (GB):.
+ /// </summary>
+ public static string Options_LowDiskspaceSize {
+ get {
+ return ResourceManager.GetString("Options_LowDiskspaceSize", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Minimize to system tray (Requires Restart).
+ /// </summary>
+ public static string Options_MinimiseTray {
+ get {
+ return ResourceManager.GetString("Options_MinimiseTray", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Minimum length of title to scan (seconds):.
+ /// </summary>
+ public static string Options_MinTitleScanLength {
+ get {
+ return ResourceManager.GetString("Options_MinTitleScanLength", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to MP4 File Extension:.
+ /// </summary>
+ public static string Options_MP4FileExtension {
+ get {
+ return ResourceManager.GetString("Options_MP4FileExtension", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to On Startup.
+ /// </summary>
+ public static string Options_OnStartup {
+ get {
+ return ResourceManager.GetString("Options_OnStartup", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Output Files.
+ /// </summary>
+ public static string Options_Output {
+ get {
+ return ResourceManager.GetString("Options_Output", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Path: .
+ /// </summary>
+ public static string Options_Path {
+ get {
+ return ResourceManager.GetString("Options_Path", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Path to VLC Player.
+ /// </summary>
+ public static string Options_PathToVLC {
+ get {
+ return ResourceManager.GetString("Options_PathToVLC", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Pause queue if disk space is low before starting a job..
+ /// </summary>
+ public static string Options_PauseQueueOnLowDiskSpace {
+ get {
+ return ResourceManager.GetString("Options_PauseQueueOnLowDiskSpace", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Prevent the system from sleeping while encoding.
+ /// </summary>
+ public static string Options_PreventSleep {
+ get {
+ return ResourceManager.GetString("Options_PreventSleep", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Number of picture previews to scan:.
+ /// </summary>
+ public static string Options_PreviewScanCount {
+ get {
+ return ResourceManager.GetString("Options_PreviewScanCount", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Priority Level:.
+ /// </summary>
+ public static string Options_PriorityLevel {
+ get {
+ return ResourceManager.GetString("Options_PriorityLevel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Enable QuickSync Decoding.
+ /// </summary>
+ public static string Options_QsvDecode {
+ get {
+ return ResourceManager.GetString("Options_QsvDecode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Also Use QSV Decoding when not using a QuickSync encoder. (i.e. x265) .
+ /// </summary>
+ public static string Options_QsvDecodeForNonFullPath {
+ get {
+ return ResourceManager.GetString("Options_QsvDecodeForNonFullPath", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Remove common punctuation.
+ /// </summary>
+ public static string Options_RemovePunctuation {
+ get {
+ return ResourceManager.GetString("Options_RemovePunctuation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Replace underscores with a space.
+ /// </summary>
+ public static string Options_ReplaceUnderscores {
+ get {
+ return ResourceManager.GetString("Options_ReplaceUnderscores", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reset to &apos;Do nothing&apos; when the app is re-launched..
+ /// </summary>
+ public static string Options_ResetDoNothing {
+ get {
+ return ResourceManager.GetString("Options_ResetDoNothing", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose Scaler:.
+ /// </summary>
+ public static string Options_Scaler {
+ get {
+ return ResourceManager.GetString("Options_Scaler", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Scaling.
+ /// </summary>
+ public static string Options_Scaling {
+ get {
+ return ResourceManager.GetString("Options_Scaling", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Send file to:.
+ /// </summary>
+ public static string Options_SendFileTo {
+ get {
+ return ResourceManager.GetString("Options_SendFileTo", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Show the new experimental queue design..
+ /// </summary>
+ public static string Options_ShowExperimentalQueueDesign {
+ get {
+ return ResourceManager.GetString("Options_ShowExperimentalQueueDesign", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Show Queue in line with the main UI..
+ /// </summary>
+ public static string Options_ShowQueueInline {
+ get {
+ return ResourceManager.GetString("Options_ShowQueueInline", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Change case to Title Case.
+ /// </summary>
+ public static string Options_TitleCase {
+ get {
+ return ResourceManager.GetString("Options_TitleCase", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Updates.
+ /// </summary>
+ public static string Options_Updates {
+ get {
+ return ResourceManager.GetString("Options_Updates", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to User Interface.
+ /// </summary>
+ public static string Options_UserInterface {
+ get {
+ return ResourceManager.GetString("Options_UserInterface", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Version:.
+ /// </summary>
+ public static string Options_Version {
+ get {
+ return ResourceManager.GetString("Options_Version", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Video.
+ /// </summary>
+ public static string Options_Video {
+ get {
+ return ResourceManager.GetString("Options_Video", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This path is used for the video preview feature only..
+ /// </summary>
+ public static string Options_VideoPreviewPath {
+ get {
+ return ResourceManager.GetString("Options_VideoPreviewPath", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to View Log Directory.
+ /// </summary>
+ public static string Options_ViewLogDirectory {
+ get {
+ return ResourceManager.GetString("Options_ViewLogDirectory", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to When Done.
+ /// </summary>
+ public static string Options_WhenDone {
+ get {
+ return ResourceManager.GetString("Options_WhenDone", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to x264/5 Settings.
+ /// </summary>
+ public static string Options_x264 {
+ get {
+ return ResourceManager.GetString("Options_x264", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Constant quality fractional granularity:.
+ /// </summary>
+ public static string Options_x264Granularity {
+ get {
+ return ResourceManager.GetString("Options_x264Granularity", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Enable Nvidia NVENC Encoder.
+ /// </summary>
+ public static string OptionsView_EnableNvencEncoding {
+ get {
+ return ResourceManager.GetString("OptionsView_EnableNvencEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Enable Intel QuickSync Encoder.
+ /// </summary>
+ public static string OptionsView_EnableQuicksyncEncoding {
+ get {
+ return ResourceManager.GetString("OptionsView_EnableQuicksyncEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Enable AMD VCE Encoder.
+ /// </summary>
+ public static string OptionsView_EnableVceEncoding {
+ get {
+ return ResourceManager.GetString("OptionsView_EnableVceEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The file format entered contained invalid characters. These have been removed. .
+ /// </summary>
+ public static string OptionsView_InvalidFileFormatChars {
+ get {
+ return ResourceManager.GetString("OptionsView_InvalidFileFormatChars", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Language:.
+ /// </summary>
+ public static string OptionsView_Language {
+ get {
+ return ResourceManager.GetString("OptionsView_Language", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Play a sound when each encode completes.
+ /// </summary>
+ public static string OptionsView_PlaySoundWhenDone {
+ get {
+ return ResourceManager.GetString("OptionsView_PlaySoundWhenDone", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Play a sound when the queue completes.
+ /// </summary>
+ public static string OptionsView_PlaySoundWhenQueueDone {
+ get {
+ return ResourceManager.GetString("OptionsView_PlaySoundWhenQueueDone", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Show previews on summary tab..
+ /// </summary>
+ public static string OptionsView_ShowPreviewOnSummaryTab {
+ get {
+ return ResourceManager.GetString("OptionsView_ShowPreviewOnSummaryTab", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Show the encode status in the application title bar..
+ /// </summary>
+ public static string OptionsView_ShowStatusInTitleBar {
+ get {
+ return ResourceManager.GetString("OptionsView_ShowStatusInTitleBar", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your system supports the 64bit version of HandBrake! This offers performance and stability improvements over this 32bit version.
+ /// Please check the website for release notes..
+ /// </summary>
+ public static string OptionsViewModel_64bitAvailable {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_64bitAvailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A New Update is Available! Please check the website for release notes..
+ /// </summary>
+ public static string OptionsViewModel_NewUpdate {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_NewUpdate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There are no new updates at this time..
+ /// </summary>
+ public static string OptionsViewModel_NoNewUpdates {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_NoNewUpdates", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Update Downloaded.
+ /// </summary>
+ public static string OptionsViewModel_UpdateDownloaded {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_UpdateDownloaded", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Update Failed. You can try downloading the update from https://handbrake.fr.
+ /// </summary>
+ public static string OptionsViewModel_UpdateFailed {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_UpdateFailed", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Update Service Unavailable. You can try downloading the update from https://handbrake.fr.
+ /// </summary>
+ public static string OptionsViewModel_UpdateServiceUnavailable {
+ get {
+ return ResourceManager.GetString("OptionsViewModel_UpdateServiceUnavailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake requires a 64bit version of Windows 7 or later to run..
+ /// </summary>
+ public static string OsBitnessWarning {
+ get {
+ return ResourceManager.GetString("OsBitnessWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake requires Windows 7 or later to run. Version 0.9.9 (XP) and 0.10.5 (Vista) was the last version to support these versions..
+ /// </summary>
+ public static string OsVersionWarning {
+ get {
+ return ResourceManager.GetString("OsVersionWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Overwrite?.
+ /// </summary>
+ public static string Overwrite {
+ get {
+ return ResourceManager.GetString("Overwrite", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Paused. Warning, the drive you are encoding to is low on disk space. Please free up some space and press start to continue. You can also adjust the minimum space level in preferences..
+ /// </summary>
+ public static string PauseOnLowDiskspace {
+ get {
+ return ResourceManager.GetString("PauseOnLowDiskspace", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Output: {0}.
+ /// </summary>
+ public static string PictureSettings_OutputResolution {
+ get {
+ return ResourceManager.GetString("PictureSettings_OutputResolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Anamorphic:.
+ /// </summary>
+ public static string PictureSettingsView_Anamorphic {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Anamorphic", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Automatic.
+ /// </summary>
+ public static string PictureSettingsView_Automatic {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Automatic", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Bottom.
+ /// </summary>
+ public static string PictureSettingsView_Bottom {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Bottom", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Cropping.
+ /// </summary>
+ public static string PictureSettingsView_Cropping {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Cropping", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Custom.
+ /// </summary>
+ public static string PictureSettingsView_Custom {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Custom", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Display Width:.
+ /// </summary>
+ public static string PictureSettingsView_DisplayWitdh {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_DisplayWitdh", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Height:.
+ /// </summary>
+ public static string PictureSettingsView_Height {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Height", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Keep Aspect Ratio.
+ /// </summary>
+ public static string PictureSettingsView_KeepAR {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_KeepAR", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Left.
+ /// </summary>
+ public static string PictureSettingsView_Left {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Left", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Modulus:.
+ /// </summary>
+ public static string PictureSettingsView_Modulus {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Modulus", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Output.
+ /// </summary>
+ public static string PictureSettingsView_Output {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Output", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to PAR:.
+ /// </summary>
+ public static string PictureSettingsView_PAR {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_PAR", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Right.
+ /// </summary>
+ public static string PictureSettingsView_Right {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Right", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Size.
+ /// </summary>
+ public static string PictureSettingsView_Size {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Size", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Source:.
+ /// </summary>
+ public static string PictureSettingsView_Source {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Source", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Top.
+ /// </summary>
+ public static string PictureSettingsView_Top {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Top", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Width:.
+ /// </summary>
+ public static string PictureSettingsView_Width {
+ get {
+ return ResourceManager.GetString("PictureSettingsView_Width", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Display Size: {0}x{1}, PAR {2}x{3}.
+ /// </summary>
+ public static string PictureSettingsViewModel_StorageDisplayLabel {
+ get {
+ return ResourceManager.GetString("PictureSettingsViewModel_StorageDisplayLabel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Change the behaviour of the audio track selection for this preset.
+ ///This will not affect your current settings in the Audio tab..
+ /// </summary>
+ public static string Preset_AudioDefaults_SubText {
+ get {
+ return ResourceManager.GetString("Preset_AudioDefaults_SubText", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio Defaults.
+ /// </summary>
+ public static string Preset_AudioDefaults_Title {
+ get {
+ return ResourceManager.GetString("Preset_AudioDefaults_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Custom.
+ /// </summary>
+ public static string Preset_Custom {
+ get {
+ return ResourceManager.GetString("Preset_Custom", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Export to file.
+ /// </summary>
+ public static string Preset_Export {
+ get {
+ return ResourceManager.GetString("Preset_Export", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Import from file.
+ /// </summary>
+ public static string Preset_Import {
+ get {
+ return ResourceManager.GetString("Preset_Import", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Official.
+ /// </summary>
+ public static string Preset_Official {
+ get {
+ return ResourceManager.GetString("Preset_Official", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preset Version.
+ /// </summary>
+ public static string Preset_OldVersion_Header {
+ get {
+ return ResourceManager.GetString("Preset_OldVersion_Header", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The preset you are trying to import is from a different version of HandBrake.
+ /// It may not be possible to import all the values from this preset.
+ ///
+ ///Do you wish to proceed?.
+ /// </summary>
+ public static string Preset_OldVersion_Message {
+ get {
+ return ResourceManager.GetString("Preset_OldVersion_Message", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Change the behaviour of the subtitle track selection for this preset.
+ ///This will not affect your current settings in the Subtitle tab..
+ /// </summary>
+ public static string Preset_SubtitleDefaults_SubText {
+ get {
+ return ResourceManager.GetString("Preset_SubtitleDefaults_SubText", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitle Defaults.
+ /// </summary>
+ public static string Preset_SubtitleDefaults_Title {
+ get {
+ return ResourceManager.GetString("Preset_SubtitleDefaults_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to import preset!.
+ /// </summary>
+ public static string Preset_UnableToImport_Header {
+ get {
+ return ResourceManager.GetString("Preset_UnableToImport_Header", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to import the preset as it appears to be corrupted or from an older version of HandBrake..
+ /// </summary>
+ public static string Preset_UnableToImport_Message {
+ get {
+ return ResourceManager.GetString("Preset_UnableToImport_Message", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake is unable to upgrade your presets file to a new version format.
+ ///Your preset file will be archived and new one created. You will need to re-create your own presets..
+ /// </summary>
+ public static string Presets_PresetForceReset {
+ get {
+ return ResourceManager.GetString("Presets_PresetForceReset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The Built-in presets have been reset..
+ /// </summary>
+ public static string Presets_ResetComplete {
+ get {
+ return ResourceManager.GetString("Presets_ResetComplete", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reset Complete.
+ /// </summary>
+ public static string Presets_ResetHeader {
+ get {
+ return ResourceManager.GetString("Presets_ResetHeader", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Archived File:.
+ /// </summary>
+ public static string PresetService_ArchiveFile {
+ get {
+ return ResourceManager.GetString("PresetService_ArchiveFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake has detected your presets file is from an older version.
+ ///It will try and load the file anyway.
+ ///If it fails, it will archive off the old file and create a new one..
+ /// </summary>
+ public static string PresetService_PresetsOutOfDate {
+ get {
+ return ResourceManager.GetString("PresetService_PresetsOutOfDate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to load presets..
+ /// </summary>
+ public static string PresetService_UnableToLoad {
+ get {
+ return ResourceManager.GetString("PresetService_UnableToLoad", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake was unable to load your presets file. It may have been from an older unsupported version of HandBrake or corrupted.
+ ///
+ ///Your old presets file was archived to:.
+ /// </summary>
+ public static string PresetService_UnableToLoadPresets {
+ get {
+ return ResourceManager.GetString("PresetService_UnableToLoadPresets", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview {0}.
+ /// </summary>
+ public static string Preview {
+ get {
+ return ResourceManager.GetString("Preview", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview (Scaled).
+ /// </summary>
+ public static string Preview_Scaled {
+ get {
+ return ResourceManager.GetString("Preview_Scaled", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Question.
+ /// </summary>
+ public static string Question {
+ get {
+ return ResourceManager.GetString("Question", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to HandBrake is already encoding a file..
+ /// </summary>
+ public static string Queue_AlreadyEncoding {
+ get {
+ return ResourceManager.GetString("Queue_AlreadyEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please stop the current encode. If the problem persists, please restart HandBrake..
+ /// </summary>
+ public static string Queue_AlreadyEncodingSolution {
+ get {
+ return ResourceManager.GetString("Queue_AlreadyEncodingSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to reset job status as it is not in an Error or Completed state.
+ /// </summary>
+ public static string Queue_UnableToResetJob {
+ get {
+ return ResourceManager.GetString("Queue_UnableToResetJob", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to restore queue file..
+ /// </summary>
+ public static string Queue_UnableToRestoreFile {
+ get {
+ return ResourceManager.GetString("Queue_UnableToRestoreFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The file may be corrupted or from an older incompatible version of HandBrake.
+ /// </summary>
+ public static string Queue_UnableToRestoreFileExtended {
+ get {
+ return ResourceManager.GetString("Queue_UnableToRestoreFileExtended", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to WARNING: You do not have automatic file naming turned on. Please enable this in options..
+ /// </summary>
+ public static string QueueSelection_AutoNameWarning {
+ get {
+ return ResourceManager.GetString("QueueSelection_AutoNameWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to WARNING: You do not currently have automatic audio and subtitle track selection setup. You can setup the default track selection behaviour in options..
+ /// </summary>
+ public static string QueueSelection_AutoTrackSelectionWarning {
+ get {
+ return ResourceManager.GetString("QueueSelection_AutoTrackSelectionWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The selected titles will be added using the &quot;{0}&quot; preset..
+ /// </summary>
+ public static string QueueSelection_UsingPreset {
+ get {
+ return ResourceManager.GetString("QueueSelection_UsingPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose titles:.
+ /// </summary>
+ public static string QueueSelectionView_ChooseTitles {
+ get {
+ return ResourceManager.GetString("QueueSelectionView_ChooseTitles", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add to Queue.
+ /// </summary>
+ public static string QueueSelectionView_Title {
+ get {
+ return ResourceManager.GetString("QueueSelectionView_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add to Queue.
+ /// </summary>
+ public static string QueueSelectionViewModel_AddToQueue {
+ get {
+ return ResourceManager.GetString("QueueSelectionViewModel_AddToQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Advanced:.
+ /// </summary>
+ public static string QueueView_Advanced {
+ get {
+ return ResourceManager.GetString("QueueView_Advanced", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio:.
+ /// </summary>
+ public static string QueueView_Audio {
+ get {
+ return ResourceManager.GetString("QueueView_Audio", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear All.
+ /// </summary>
+ public static string QueueView_ClearAll {
+ get {
+ return ResourceManager.GetString("QueueView_ClearAll", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear Completed.
+ /// </summary>
+ public static string QueueView_ClearCompleted {
+ get {
+ return ResourceManager.GetString("QueueView_ClearCompleted", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear Queue.
+ /// </summary>
+ public static string QueueView_ClearQueue {
+ get {
+ return ResourceManager.GetString("QueueView_ClearQueue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Clear Selected.
+ /// </summary>
+ public static string QueueView_ClearSelected {
+ get {
+ return ResourceManager.GetString("QueueView_ClearSelected", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Delete.
+ /// </summary>
+ public static string QueueView_Delete {
+ get {
+ return ResourceManager.GetString("QueueView_Delete", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Destination: .
+ /// </summary>
+ public static string QueueView_Destination {
+ get {
+ return ResourceManager.GetString("QueueView_Destination", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Do nothing.
+ /// </summary>
+ public static string QueueView_DoNothing {
+ get {
+ return ResourceManager.GetString("QueueView_DoNothing", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encode Time:.
+ /// </summary>
+ public static string QueueView_Duration {
+ get {
+ return ResourceManager.GetString("QueueView_Duration", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Edit.
+ /// </summary>
+ public static string QueueView_Edit {
+ get {
+ return ResourceManager.GetString("QueueView_Edit", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to End Time:.
+ /// </summary>
+ public static string QueueView_EndTime {
+ get {
+ return ResourceManager.GetString("QueueView_EndTime", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Export Queue for CLI.
+ /// </summary>
+ public static string QueueView_Export {
+ get {
+ return ResourceManager.GetString("QueueView_Export", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Filesize: .
+ /// </summary>
+ public static string QueueView_FileSize {
+ get {
+ return ResourceManager.GetString("QueueView_FileSize", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Hibernate.
+ /// </summary>
+ public static string QueueView_Hibernate {
+ get {
+ return ResourceManager.GetString("QueueView_Hibernate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Lock System.
+ /// </summary>
+ public static string QueueView_LockSystem {
+ get {
+ return ResourceManager.GetString("QueueView_LockSystem", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The log will be available after the encode completes..
+ /// </summary>
+ public static string QueueView_LogNotAvailableYet {
+ get {
+ return ResourceManager.GetString("QueueView_LogNotAvailableYet", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Log off.
+ /// </summary>
+ public static string QueueView_Logoff {
+ get {
+ return ResourceManager.GetString("QueueView_Logoff", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open Destination Directory.
+ /// </summary>
+ public static string QueueView_OpenDestDir {
+ get {
+ return ResourceManager.GetString("QueueView_OpenDestDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open Source Directory.
+ /// </summary>
+ public static string QueueView_OpenSourceDir {
+ get {
+ return ResourceManager.GetString("QueueView_OpenSourceDir", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Options.
+ /// </summary>
+ public static string QueueView_Options {
+ get {
+ return ResourceManager.GetString("QueueView_Options", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Pause Queue.
+ /// </summary>
+ public static string QueueView_Pause {
+ get {
+ return ResourceManager.GetString("QueueView_Pause", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Paused Duration:.
+ /// </summary>
+ public static string QueueView_PausedDuration {
+ get {
+ return ResourceManager.GetString("QueueView_PausedDuration", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Picture Settings:.
+ /// </summary>
+ public static string QueueView_PictureSettings {
+ get {
+ return ResourceManager.GetString("QueueView_PictureSettings", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Quit HandBrake.
+ /// </summary>
+ public static string QueueView_QuitHandBrake {
+ get {
+ return ResourceManager.GetString("QueueView_QuitHandBrake", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Retry All Jobs.
+ /// </summary>
+ public static string QueueView_ResetAllJobs {
+ get {
+ return ResourceManager.GetString("QueueView_ResetAllJobs", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Retry Failed.
+ /// </summary>
+ public static string QueueView_ResetFailed {
+ get {
+ return ResourceManager.GetString("QueueView_ResetFailed", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Retry Selected Jobs.
+ /// </summary>
+ public static string QueueView_ResetSelectedJobs {
+ get {
+ return ResourceManager.GetString("QueueView_ResetSelectedJobs", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Retry.
+ /// </summary>
+ public static string QueueView_Retry {
+ get {
+ return ResourceManager.GetString("QueueView_Retry", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Shutdown.
+ /// </summary>
+ public static string QueueView_Shutdown {
+ get {
+ return ResourceManager.GetString("QueueView_Shutdown", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Source: .
+ /// </summary>
+ public static string QueueView_Source {
+ get {
+ return ResourceManager.GetString("QueueView_Source", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Queue.
+ /// </summary>
+ public static string QueueView_Start {
+ get {
+ return ResourceManager.GetString("QueueView_Start", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Start Time:.
+ /// </summary>
+ public static string QueueView_StartTime {
+ get {
+ return ResourceManager.GetString("QueueView_StartTime", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Statistics.
+ /// </summary>
+ public static string QueueView_Statistics {
+ get {
+ return ResourceManager.GetString("QueueView_Statistics", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Statistics will be available after an encode completes..
+ /// </summary>
+ public static string QueueView_StatsNotAvailableYet {
+ get {
+ return ResourceManager.GetString("QueueView_StatsNotAvailableYet", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitles:.
+ /// </summary>
+ public static string QueueView_Subtitles {
+ get {
+ return ResourceManager.GetString("QueueView_Subtitles", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Summary.
+ /// </summary>
+ public static string QueueView_Summary {
+ get {
+ return ResourceManager.GetString("QueueView_Summary", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Suspend.
+ /// </summary>
+ public static string QueueView_Suspend {
+ get {
+ return ResourceManager.GetString("QueueView_Suspend", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Video:.
+ /// </summary>
+ public static string QueueView_Video {
+ get {
+ return ResourceManager.GetString("QueueView_Video", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to When Done:.
+ /// </summary>
+ public static string QueueView_WhenDone {
+ get {
+ return ResourceManager.GetString("QueueView_WhenDone", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you wish to clear the queue?.
+ /// </summary>
+ public static string QueueViewModel_ClearQueueConfrimation {
+ get {
+ return ResourceManager.GetString("QueueViewModel_ClearQueueConfrimation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you want to delete the selected jobs?.
+ /// </summary>
+ public static string QueueViewModel_DelSelectedJobConfirmation {
+ get {
+ return ResourceManager.GetString("QueueViewModel_DelSelectedJobConfirmation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Are you sure you wish to edit this job? It will be removed from the queue and sent to the main window..
+ /// </summary>
+ public static string QueueViewModel_EditConfrimation {
+ get {
+ return ResourceManager.GetString("QueueViewModel_EditConfrimation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This encode is currently in progress. If you delete it, the encode will be stopped. Are you sure you wish to proceed?.
+ /// </summary>
+ public static string QueueViewModel_JobCurrentlyRunningWarning {
+ get {
+ return ResourceManager.GetString("QueueViewModel_JobCurrentlyRunningWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to {0} jobs pending.
+ /// </summary>
+ public static string QueueViewModel_JobsPending {
+ get {
+ return ResourceManager.GetString("QueueViewModel_JobsPending", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Last Queued Job Finished.
+ /// </summary>
+ public static string QueueViewModel_LastJobFinished {
+ get {
+ return ResourceManager.GetString("QueueViewModel_LastJobFinished", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No encodes pending.
+ /// </summary>
+ public static string QueueViewModel_NoEncodesPending {
+ get {
+ return ResourceManager.GetString("QueueViewModel_NoEncodesPending", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There are no jobs currently encoding.
+ /// </summary>
+ public static string QueueViewModel_NoJobsPending {
+ get {
+ return ResourceManager.GetString("QueueViewModel_NoJobsPending", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to There are no pending jobs..
+ /// </summary>
+ public static string QueueViewModel_NoPendingJobs {
+ get {
+ return ResourceManager.GetString("QueueViewModel_NoPendingJobs", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue.
+ /// </summary>
+ public static string QueueViewModel_Queue {
+ get {
+ return ResourceManager.GetString("QueueViewModel_Queue", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Completed.
+ /// </summary>
+ public static string QueueViewModel_QueueCompleted {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueueCompleted", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Not Running.
+ /// </summary>
+ public static string QueueViewModel_QueueNotRunning {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueueNotRunning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Paused.
+ /// </summary>
+ public static string QueueViewModel_QueuePaused {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueuePaused", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The Queue has been paused. The currently running job will run to completion and no further jobs will start..
+ /// </summary>
+ public static string QueueViewModel_QueuePauseNotice {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueuePauseNotice", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Paused.
+ /// </summary>
+ public static string QueueViewModel_QueuePending {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueuePending", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Ready.
+ /// </summary>
+ public static string QueueViewModel_QueueReady {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueueReady", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Started.
+ /// </summary>
+ public static string QueueViewModel_QueueStarted {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueueStarted", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss}.
+ /// </summary>
+ public static string QueueViewModel_QueueStatusDisplay {
+ get {
+ return ResourceManager.GetString("QueueViewModel_QueueStatusDisplay", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to An error occurred when trying to stop the scan. Please restart HandBrake..
+ /// </summary>
+ public static string ScanService_ScanStopFailed {
+ get {
+ return ResourceManager.GetString("ScanService_ScanStopFailed", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Any settings you changed may need to be reset the next time HandBrake launches..
+ /// </summary>
+ public static string SettingService_SaveErrorReset {
+ get {
+ return ResourceManager.GetString("SettingService_SaveErrorReset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add All Remaining Selected Languages.
+ /// </summary>
+ public static string Shared_AddAllForSelected {
+ get {
+ return ResourceManager.GetString("Shared_AddAllForSelected", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add All Remaining Tracks.
+ /// </summary>
+ public static string Shared_AddAllRemaining {
+ get {
+ return ResourceManager.GetString("Shared_AddAllRemaining", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add New Track.
+ /// </summary>
+ public static string Shared_AddNewTrack {
+ get {
+ return ResourceManager.GetString("Shared_AddNewTrack", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add Track.
+ /// </summary>
+ public static string Shared_AddTrack {
+ get {
+ return ResourceManager.GetString("Shared_AddTrack", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Available Languages:.
+ /// </summary>
+ public static string Shared_AvailableLanguages {
+ get {
+ return ResourceManager.GetString("Shared_AvailableLanguages", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose Languages:.
+ /// </summary>
+ public static string Shared_ChooseLanguages {
+ get {
+ return ResourceManager.GetString("Shared_ChooseLanguages", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chosen Languages:.
+ /// </summary>
+ public static string Shared_ChosenLangages {
+ get {
+ return ResourceManager.GetString("Shared_ChosenLangages", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Configure Default Behaviours.
+ /// </summary>
+ public static string Shared_ConfigureDefaultBehaviours {
+ get {
+ return ResourceManager.GetString("Shared_ConfigureDefaultBehaviours", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reload Defaults.
+ /// </summary>
+ public static string Shared_ReloadDefaults {
+ get {
+ return ResourceManager.GetString("Shared_ReloadDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to An Encode is currently running. Exiting HandBrake will stop this encode.
+ ///Are you sure you wish to exit HandBrake?.
+ /// </summary>
+ public static string ShellViewModel_CanClose {
+ get {
+ return ResourceManager.GetString("ShellViewModel_CanClose", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose Disc to Scan.
+ /// </summary>
+ public static string SourceSelection_ChooseDisc {
+ get {
+ return ResourceManager.GetString("SourceSelection_ChooseDisc", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose File to Scan.
+ /// </summary>
+ public static string SourceSelection_ChooseFile {
+ get {
+ return ResourceManager.GetString("SourceSelection_ChooseFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Choose Folder to Scan.
+ /// </summary>
+ public static string SourceSelection_ChooseFolder {
+ get {
+ return ResourceManager.GetString("SourceSelection_ChooseFolder", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Optionally choose a specific title: .
+ /// </summary>
+ public static string SourceSelection_ChooseSpecificTitle {
+ get {
+ return ResourceManager.GetString("SourceSelection_ChooseSpecificTitle", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Then choose the video(s) you&apos;d like to encode: .
+ /// </summary>
+ public static string SourceSelection_ChooseVideo {
+ get {
+ return ResourceManager.GetString("SourceSelection_ChooseVideo", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to File.
+ /// </summary>
+ public static string SourceSelection_File {
+ get {
+ return ResourceManager.GetString("SourceSelection_File", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Folder (Batch Scan).
+ /// </summary>
+ public static string SourceSelection_FolderBatchScan {
+ get {
+ return ResourceManager.GetString("SourceSelection_FolderBatchScan", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open this DVD or Bluray Drive.
+ /// </summary>
+ public static string SourceSelection_OpenDVDBluray {
+ get {
+ return ResourceManager.GetString("SourceSelection_OpenDVDBluray", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open a folder with one or more files..
+ /// </summary>
+ public static string SourceSelection_OpenFolderWIth {
+ get {
+ return ResourceManager.GetString("SourceSelection_OpenFolderWIth", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Queue Recovery.
+ /// </summary>
+ public static string SourceSelection_QueueArchiveRecovery {
+ get {
+ return ResourceManager.GetString("SourceSelection_QueueArchiveRecovery", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A previous queue archive is available. .
+ /// </summary>
+ public static string SourceSelection_QueueArchiveRecoveryDesc {
+ get {
+ return ResourceManager.GetString("SourceSelection_QueueArchiveRecoveryDesc", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Open a single video file..
+ /// </summary>
+ public static string SourceSelection_SingleVideoFile {
+ get {
+ return ResourceManager.GetString("SourceSelection_SingleVideoFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Source Selection.
+ /// </summary>
+ public static string SourceSelection_SourceSelection {
+ get {
+ return ResourceManager.GetString("SourceSelection_SourceSelection", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Ready.
+ /// </summary>
+ public static string State_Ready {
+ get {
+ return ResourceManager.GetString("State_Ready", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to delete previous preview file. You may need to restart the application..
+ /// </summary>
+ public static string StaticPreview_UnableToDeletePreview {
+ get {
+ return ResourceManager.GetString("StaticPreview_UnableToDeletePreview", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Duration:.
+ /// </summary>
+ public static string StaticPreviewView_Duration {
+ get {
+ return ResourceManager.GetString("StaticPreviewView_Duration", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Live Preview.
+ /// </summary>
+ public static string StaticPreviewView_LivePreview {
+ get {
+ return ResourceManager.GetString("StaticPreviewView_LivePreview", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Select a preview image.
+ /// </summary>
+ public static string StaticPreviewView_SelectPreviewImage {
+ get {
+ return ResourceManager.GetString("StaticPreviewView_SelectPreviewImage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview ({0}% actual size).
+ /// </summary>
+ public static string StaticPreviewView_Title {
+ get {
+ return ResourceManager.GetString("StaticPreviewView_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Use system default video player.
+ /// </summary>
+ public static string StaticPreviewView_UseSystemDefault {
+ get {
+ return ResourceManager.GetString("StaticPreviewView_UseSystemDefault", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Handbrake is already encoding a video! Only one file can be encoded at any one time..
+ /// </summary>
+ public static string StaticPreviewViewModel_AlreadyEncoding {
+ get {
+ return ResourceManager.GetString("StaticPreviewViewModel_AlreadyEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to You must first scan a source and setup your encode before creating a preview..
+ /// </summary>
+ public static string StaticPreviewViewModel_ScanFirst {
+ get {
+ return ResourceManager.GetString("StaticPreviewViewModel_ScanFirst", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Picture Preview.
+ /// </summary>
+ public static string StaticPreviewViewModel_Title {
+ get {
+ return ResourceManager.GetString("StaticPreviewViewModel_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to detect VLC Player.
+ ///Please make sure VLC is installed and the directory specified in HandBrake&apos;s options is correct. (See: &quot;Tools Menu &gt; Preferences &gt; General&quot;).
+ /// </summary>
+ public static string StaticPreviewViewModel_UnableToFindVLC {
+ get {
+ return ResourceManager.GetString("StaticPreviewViewModel_UnableToFindVLC", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details..
+ /// </summary>
+ public static string StaticPreviewViewModel_UnableToPlayFile {
+ get {
+ return ResourceManager.GetString("StaticPreviewViewModel_UnableToPlayFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to None - Only tracks where the container does not support the format will be burned in.
+ ///Foreign Audio Track - The Foreign Audio track will be burned in if available.
+ ///First Track - The first track will be burned in.
+ ///Foreign Audio Preferred, else First - If the foreign audio track exists, it will be burned in, otherwise the first track will be chosen..
+ /// </summary>
+ public static string Subtitles_BurnInBehaviourModes {
+ get {
+ return ResourceManager.GetString("Subtitles_BurnInBehaviourModes", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add Closed Captions when available.
+ /// </summary>
+ public static string SubtitlesView_AddCC {
+ get {
+ return ResourceManager.GetString("SubtitlesView_AddCC", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add &apos;Foreign Audio Scan&apos;.
+ /// </summary>
+ public static string SubtitlesView_AddForeignAudioSearch {
+ get {
+ return ResourceManager.GetString("SubtitlesView_AddForeignAudioSearch", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Burn-In Behaviour:.
+ /// </summary>
+ public static string SubtitlesView_BurnInBehaviour {
+ get {
+ return ResourceManager.GetString("SubtitlesView_BurnInBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Import SRT.
+ /// </summary>
+ public static string SubtitlesView_ImportSRT {
+ get {
+ return ResourceManager.GetString("SubtitlesView_ImportSRT", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Track Selection Behaviour:.
+ /// </summary>
+ public static string SubtitlesView_TrackSelectionBehaviour {
+ get {
+ return ResourceManager.GetString("SubtitlesView_TrackSelectionBehaviour", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Selection Behavior.
+ /// </summary>
+ public static string SubtitlesViewModel_ConfigureDefaults {
+ get {
+ return ResourceManager.GetString("SubtitlesViewModel_ConfigureDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitle Defaults.
+ /// </summary>
+ public static string SubtitlesViewModel_SubDefaults {
+ get {
+ return ResourceManager.GetString("SubtitlesViewModel_SubDefaults", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitle Tracks.
+ /// </summary>
+ public static string SubtitlesViewModel_SubTracks {
+ get {
+ return ResourceManager.GetString("SubtitlesViewModel_SubTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Switch Back To Tracks.
+ /// </summary>
+ public static string SubtitlesViewModel_SwitchToTracks {
+ get {
+ return ResourceManager.GetString("SubtitlesViewModel_SwitchToTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Add All Remaining Closed Captions.
+ /// </summary>
+ public static string SubtitleView_AddAllCC {
+ get {
+ return ResourceManager.GetString("SubtitleView_AddAllCC", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video..
+ /// </summary>
+ public static string SubtitleView_SubtitleDefaultsDescription {
+ get {
+ return ResourceManager.GetString("SubtitleView_SubtitleDefaultsDescription", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Additional Audio Tracks.
+ /// </summary>
+ public static string SummaryView_AdditionalAudioTracks {
+ get {
+ return ResourceManager.GetString("SummaryView_AdditionalAudioTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Additional Subtitle Tracks.
+ /// </summary>
+ public static string SummaryView_AdditionalSubtitleTracks {
+ get {
+ return ResourceManager.GetString("SummaryView_AdditionalSubtitleTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Burned.
+ /// </summary>
+ public static string SummaryView_Burned {
+ get {
+ return ResourceManager.GetString("SummaryView_Burned", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Chapter Markers.
+ /// </summary>
+ public static string SummaryView_Chapters {
+ get {
+ return ResourceManager.GetString("SummaryView_Chapters", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Deblock.
+ /// </summary>
+ public static string SummaryView_Deblock {
+ get {
+ return ResourceManager.GetString("SummaryView_Deblock", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Detelecine.
+ /// </summary>
+ public static string SummaryView_Detelecine {
+ get {
+ return ResourceManager.GetString("SummaryView_Detelecine", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to display.
+ /// </summary>
+ public static string SummaryView_display {
+ get {
+ return ResourceManager.GetString("SummaryView_display", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Grayscale.
+ /// </summary>
+ public static string SummaryView_Grayscale {
+ get {
+ return ResourceManager.GetString("SummaryView_Grayscale", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Audio Tracks.
+ /// </summary>
+ public static string SummaryView_NoAudioTracks {
+ get {
+ return ResourceManager.GetString("SummaryView_NoAudioTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Chapter Markers.
+ /// </summary>
+ public static string SummaryView_NoChapters {
+ get {
+ return ResourceManager.GetString("SummaryView_NoChapters", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Filters.
+ /// </summary>
+ public static string SummaryView_NoFilters {
+ get {
+ return ResourceManager.GetString("SummaryView_NoFilters", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Source.
+ /// </summary>
+ public static string SummaryView_NoSource {
+ get {
+ return ResourceManager.GetString("SummaryView_NoSource", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Subtitle Tracks.
+ /// </summary>
+ public static string SummaryView_NoSubtitleTracks {
+ get {
+ return ResourceManager.GetString("SummaryView_NoSubtitleTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No Tracks.
+ /// </summary>
+ public static string SummaryView_NoTracks {
+ get {
+ return ResourceManager.GetString("SummaryView_NoTracks", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Preview {0} of {1}.
+ /// </summary>
+ public static string SummaryView_PreviewInfo {
+ get {
+ return ResourceManager.GetString("SummaryView_PreviewInfo", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Rotation.
+ /// </summary>
+ public static string SummaryView_Rotation {
+ get {
+ return ResourceManager.GetString("SummaryView_Rotation", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to storage.
+ /// </summary>
+ public static string SummaryView_storage {
+ get {
+ return ResourceManager.GetString("SummaryView_storage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to {1}%, Pass {2} of {3}
+ ///Remaining Time: {4}.
+ /// </summary>
+ public static string TaskTrayStatusTitle {
+ get {
+ return ResourceManager.GetString("TaskTrayStatusTitle", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unknown Error.
+ /// </summary>
+ public static string UnknownError {
+ get {
+ return ResourceManager.GetString("UnknownError", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Updated.
+ /// </summary>
+ public static string Updated {
+ get {
+ return ResourceManager.GetString("Updated", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A problem occurred when trying to save your preferences..
+ /// </summary>
+ public static string UserSettings_AnErrorOccured {
+ get {
+ return ResourceManager.GetString("UserSettings_AnErrorOccured", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to load user settings file: {0}.
+ /// </summary>
+ public static string UserSettings_UnableToLoad {
+ get {
+ return ResourceManager.GetString("UserSettings_UnableToLoad", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one..
+ /// </summary>
+ public static string UserSettings_UnableToLoadSolution {
+ get {
+ return ResourceManager.GetString("UserSettings_UnableToLoadSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your user settings file was corrupted or inaccessible. Settings have been reset to defaults..
+ /// </summary>
+ public static string UserSettings_YourSettingsAreCorrupt {
+ get {
+ return ResourceManager.GetString("UserSettings_YourSettingsAreCorrupt", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Warning, your settings have been reset!.
+ /// </summary>
+ public static string UserSettings_YourSettingsHaveBeenReset {
+ get {
+ return ResourceManager.GetString("UserSettings_YourSettingsHaveBeenReset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The full list of encoder parameters:
+ ///{0}.
+ /// </summary>
+ public static string Video_EncoderExtraArgs {
+ get {
+ return ResourceManager.GetString("Video_EncoderExtraArgs", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Additional advanced arguments that can be passed to the video encoder..
+ /// </summary>
+ public static string Video_EncoderExtraArgsTooltip {
+ get {
+ return ResourceManager.GetString("Video_EncoderExtraArgsTooltip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Higher Quality |.
+ /// </summary>
+ public static string Video_HigherQuality {
+ get {
+ return ResourceManager.GetString("Video_HigherQuality", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Warning: RF 0 is Lossless!.
+ /// </summary>
+ public static string Video_LosslessWarning {
+ get {
+ return ResourceManager.GetString("Video_LosslessWarning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A value of 0 means lossless and will result in a file size that is larger than the original source,
+ ///unless the source was also lossless.
+ ///
+ ///x264 and x265&apos;s scale is logarithmic and lower values correspond to higher quality.
+ ///
+ ///So small increases in value will result in progressively larger increases in the resulting file size..
+ /// </summary>
+ public static string Video_LosslessWarningTooltip {
+ get {
+ return ResourceManager.GetString("Video_LosslessWarningTooltip", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to | Lower Quality.
+ /// </summary>
+ public static string Video_LowQuality {
+ get {
+ return ResourceManager.GetString("Video_LowQuality", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Placebo Quality |.
+ /// </summary>
+ public static string Video_PlaceboQuality {
+ get {
+ return ResourceManager.GetString("Video_PlaceboQuality", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to QuickSync hardware not detected or enabled!
+ ///
+ ///In order to use the QuickSync encoder, you must:
+ ///
+ ///- Have a Intel CPU with HD Graphics and QuickSync support. 4th Generation Haswell or newer parts are recommended for best quality.
+ ///- Have the HD Graphics enabled.
+ ///- On older versions of windows before 8, a monitor connected to the HD Graphics or GPU Virtualisation software installed is also required..
+ /// </summary>
+ public static string Video_QuickSyncNotAvailable {
+ get {
+ return ResourceManager.GetString("Video_QuickSyncNotAvailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Reduce decoder CPU usage.
+ ///
+ ///Set this if your device is struggling to play the output. (i.e. dropped frames).
+ /// </summary>
+ public static string Video_x264FastDecode {
+ get {
+ return ResourceManager.GetString("Video_x264FastDecode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to 2-Pass Encoding.
+ /// </summary>
+ public static string VideoView_2Pass {
+ get {
+ return ResourceManager.GetString("VideoView_2Pass", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Avg Bitrate (kbps):.
+ /// </summary>
+ public static string VideoView_AverageBitrate {
+ get {
+ return ResourceManager.GetString("VideoView_AverageBitrate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Video Codec:.
+ /// </summary>
+ public static string VideoView_Codec {
+ get {
+ return ResourceManager.GetString("VideoView_Codec", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Constant Framerate.
+ /// </summary>
+ public static string VideoView_ConstantFramerate {
+ get {
+ return ResourceManager.GetString("VideoView_ConstantFramerate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Constant Quality:.
+ /// </summary>
+ public static string VideoView_ConstantQuality {
+ get {
+ return ResourceManager.GetString("VideoView_ConstantQuality", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoder Level:.
+ /// </summary>
+ public static string VideoView_EncoderLevel {
+ get {
+ return ResourceManager.GetString("VideoView_EncoderLevel", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoder Preset:.
+ /// </summary>
+ public static string VideoView_EncoderPreset {
+ get {
+ return ResourceManager.GetString("VideoView_EncoderPreset", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoder Profile:.
+ /// </summary>
+ public static string VideoView_EncoderProfile {
+ get {
+ return ResourceManager.GetString("VideoView_EncoderProfile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Encoder Tune:.
+ /// </summary>
+ public static string VideoView_EncodeTune {
+ get {
+ return ResourceManager.GetString("VideoView_EncodeTune", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Extra Options:.
+ /// </summary>
+ public static string VideoView_ExtraOptions {
+ get {
+ return ResourceManager.GetString("VideoView_ExtraOptions", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Fast Decode.
+ /// </summary>
+ public static string VideoView_FastDecode {
+ get {
+ return ResourceManager.GetString("VideoView_FastDecode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Framerate (FPS):.
+ /// </summary>
+ public static string VideoView_Framerate {
+ get {
+ return ResourceManager.GetString("VideoView_Framerate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Optimise Video:.
+ /// </summary>
+ public static string VideoView_OptimiseVideo {
+ get {
+ return ResourceManager.GetString("VideoView_OptimiseVideo", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Peak Framerate.
+ /// </summary>
+ public static string VideoView_PeakFramerate {
+ get {
+ return ResourceManager.GetString("VideoView_PeakFramerate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Quality.
+ /// </summary>
+ public static string VideoView_Quality {
+ get {
+ return ResourceManager.GetString("VideoView_Quality", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Turbo first pass.
+ /// </summary>
+ public static string VideoView_TurboFirstPass {
+ get {
+ return ResourceManager.GetString("VideoView_TurboFirstPass", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Variable Framerate.
+ /// </summary>
+ public static string VideoView_VariableFramerate {
+ get {
+ return ResourceManager.GetString("VideoView_VariableFramerate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Video.
+ /// </summary>
+ public static string VideoView_Video {
+ get {
+ return ResourceManager.GetString("VideoView_Video", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Warning.
+ /// </summary>
+ public static string Warning {
+ get {
+ return ResourceManager.GetString("Warning", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to {0} - ({1}%, Pass {2} of {3}).
+ /// </summary>
+ public static string WindowTitleStatus {
+ get {
+ return ResourceManager.GetString("WindowTitleStatus", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.de.resx b/win/CS/HandBrakeWPF/Properties/Resources.de.resx
new file mode 100644
index 000000000..fcd33ccce
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Properties/Resources.de.resx
@@ -0,0 +1,1900 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <data name="Advanced_AdaptiveBFramesToolTip" xml:space="preserve">
+ <value>x264 has a variety of algorithms to decide when to use B-frames and how many to use.
+
+Fast mode takes roughly the same amount of time no matter how many B-frames you specify. However, while fast, its decisions are often suboptimal.
+
+Optimal mode gets slower as the maximum number of B-Frames increases, but makes much more accurate decisions, especially when used with B-pyramid.</value>
+ </data>
+ <data name="Advanced_AdaptiveDirectModeToolTip" xml:space="preserve">
+ <value>H.264 allows for two different prediction modes, spatial and temporal, in B-frames.
+
+Spatial, the default, is almost always better, but temporal is sometimes useful too.
+
+x264 can, at the cost of a small amount of speed (and accordingly for a small compression gain), adaptively select which is better for each particular frame.</value>
+ </data>
+ <data name="Advanced_AdaptiveQuantizationStrengthToolTip" xml:space="preserve">
+ <value>Adaptive quantization controls how the encoder distributes bits across the frame.
+Higher values take more bits away from edges and complex areas to improve areas with finer detail.</value>
+ </data>
+ <data name="Advanced_AnalysisToolTip" xml:space="preserve">
+ <value>Mode decision picks from a variety of options to make its decision: this option chooses what options those are.
+Fewer partitions to check means faster encoding, at the cost of worse decisions, since the best option might have been one that was turned off.</value>
+ </data>
+ <data name="Advanced_BFramesToolTip" xml:space="preserve">
+ <value>Sane values are ~2-5.
+This specifies the maximum number of sequential B-frames that the encoder can use.
+ Large numbers generally won't help significantly unless Adaptive B-frames is set to Optimal.
+Cel-animated source material and B-pyramid also significantly increase the usefulness of larger values.
+Baseline profile, as required for iPods and similar devices, requires B-frames to be set to 0 (off).</value>
+ </data>
+ <data name="Advanced_CabacToolTip" xml:space="preserve">
+ <value>After the encoder has done its work, it has a bunch of data that needs to be compressed losslessly, similar to ZIP or RAR. H.264 provides two options for this: CAVLC and CABAC. CABAC decodes a lot slower but compresses significantly better (10-30%), especially at lower bitrates. If you're looking to minimize CPU requirements for video playback, disable this option. Baseline profile, as required for iPods and similar devices, requires CABAC to be disabled.</value>
+ </data>
+ <data name="Advanced_DeblockingToolTip" xml:space="preserve">
+ <value>H.264 has a built-in deblocking filter that smooths out blocking artifacts after decoding each frame. This not only improves visual quality, but also helps compression significantly.
+The deblocking filter takes a lot of CPU power, so if you're looking to minimize CPU requirements for video playback, disable it.
+
+The deblocking filter has two adjustable parameters, "strength" and "threshold".
+The former controls how strong (or weak) the deblocker is, while the latter controls how many (or few) edges it applies to.
+Lower values mean less deblocking, higher values mean more deblocking. The default is 0 (normal strength) for both parameters.</value>
+ </data>
+ <data name="Advanced_EightByEightDctToolTip" xml:space="preserve">
+ <value>The 8x8 transform is the single most useful feature of x264 in terms of compression-per-speed.
+It improves compression by at least 5% at a very small speed cost and may provide an unusually high visual quality benefit compared to its compression gain.
+However, it requires High Profile, which many devices may not support.</value>
+ </data>
+ <data name="Advanced_MotionEstimationMethodToolTip" xml:space="preserve">
+ <value>Controls the motion estimation method. Motion estimation is how the encoder estimates how each block of pixels in a frame has moved.
+A better motion search method improves compression at the cost of speed.
+
+Diamond: performs an extremely fast and simple search using a diamond pattern.
+
+Hexagon: performs a somewhat more effective but slightly slower search using a hexagon pattern.
+
+Uneven Multi-Hex: performs a very wide search using a variety of patterns, more accurately capturing complex motion.
+
+Exhaustive: performs a "dumb" search of every pixel in a wide area. Significantly slower for only a small compression gain.
+
+Transformed Exhaustive: Like exhaustive, but makes even more accurate decisions. Accordingly, somewhat slower, also for only a small improvement.</value>
+ </data>
+ <data name="Advanced_MotionEstimationRangeToolTip" xml:space="preserve">
+ <value>This is the distance x264 searches from its best guess at the motion of a block in order to try to find its actual motion.
+
+The default is fine for most content, but extremely high motion video, especially at HD resolutions, may benefit from higher ranges, albeit at a high speed cost.</value>
+ </data>
+ <data name="Advanced_NoDctDecimateToolTip" xml:space="preserve">
+ <value>x264 normally zeroes out nearly-empty data blocks to save bits to be better used for some other purpose in the video.
+However, this can sometimes have slight negative effects on retention of subtle grain and dither.
+Don't touch this unless you're having banding issues or other such cases where you are having trouble keeping fine noise.</value>
+ </data>
+ <data name="Advanced_PsychovisualRateDistortionToolTip" xml:space="preserve">
+ <value>Psychovisual Rate Distortion means x264 tries to retain detail, for better quality to the human eye,
+as opposed to trying to maximize quality the way a computer understands it, through signal-to-noise ratios that have trouble telling apart fine detail and noise.</value>
+ </data>
+ <data name="Advanced_PsychovisualTrellisToolTip" xml:space="preserve">
+ <value>Psychovisual Trellis tries to retain more sharpness and detail, but can cause artifacting.
+It is considered experimental, which is why it's off by default. Good values are 0.1 to 0.2.</value>
+ </data>
+ <data name="Advanced_PyramidalBFramesToolTip" xml:space="preserve">
+ <value>B-pyramid improves compression by creating a pyramidal structure (hence the name) of B-frames, allowing B-frames to
+reference each other to improve compression.
+
+Requires Max B-frames greater than 1; optimal adaptive B-frames is strongly recommended for full compression benefit.</value>
+ </data>
+ <data name="Advanced_ReferenceFramesToolTip" xml:space="preserve">
+ <value>Sane values are ~1-6.
+
+The more you add, the better the compression, but the slower the encode.
+
+Cel animation tends to benefit from more reference frames a lot more than film content.
+
+Note that many hardware devices have limitations on the number of supported reference frames, so if you're encoding for a handheld or standalone player, don't touch this unless you're absolutely sure you know what you're doing!</value>
+ </data>
+ <data name="Advanced_SubpixelMotionEstimationToolTip" xml:space="preserve">
+ <value>This setting controls both subpixel-precision motion estimation and mode decision methods.
+
+Subpixel motion estimation is used for refining motion estimates beyond mere pixel accuracy, improving compression.
+
+Mode decision is the method used to choose how to encode each block of the frame: a very important decision.
+
+SAD is the fastest method, followed by SATD, RD, RD refinement, and the slowest, QPRD.
+6 or higher is strongly recommended: Psy-RD, a very powerful psy optimization that helps retain detail, requires RD.
+10, the most powerful and slowest option, requires trellis=2.</value>
+ </data>
+ <data name="Advanced_TrellisToolTip" xml:space="preserve">
+ <value>Trellis fine-tunes the rounding of transform coefficients to squeeze out 3-5% more compression at the cost of some speed.
+"Always" uses trellis not only during the main encoding process, but also during analysis, which improves compression even more, albeit at great speed cost.
+
+Trellis costs more speed at higher bitrates.</value>
+ </data>
+ <data name="Advanced_WeightPToolTip" xml:space="preserve">
+ <value>Performs extra analysis to decide upon weighting parameters for each frame.
+This improves overall compression slightly and improves the quality of fades greatly.
+Baseline profile, as required for iPods and similar devices, requires weighted P-frame prediction to be disabled.
+Note that some devices and players, even those that support Main Profile,
+may have problems with Weighted P-frame prediction: the Apple TV is completely incompatible with it, for example.</value>
+ </data>
+ <data name="Video_EncoderExtraArgs" xml:space="preserve">
+ <value>Komplette Liste der Enkoderparameter:
+{0}</value>
+ </data>
+ <data name="Video_x264FastDecode" xml:space="preserve">
+ <value>Reduziert die CPU-Auslastung des Dekoders.
+
+Dies auswählen, wenn das Abspielgerät Probleme beim wiedergeben hat (z.B. wenn Bilder ausgelassen werden).</value>
+ </data>
+ <data name="Video_LosslessWarning" xml:space="preserve">
+ <value>Warnung: RF 0 ist verlustfrei!</value>
+ </data>
+ <data name="Video_LosslessWarningTooltip" xml:space="preserve">
+ <value>Ein Wert von 0 bedeutet verlustfrei und ergibt eine Datei die Größer als die Originaldatei ist,
+egal ob die Quelldatei auch schon verlustfrei war.
+
+Bei x264 und x265 ist die Skala logarithmisch und kleinere Werte bedeuten eine höhere Qualität.
+
+Daher ergeben schon kleine Erhöhungen der Werte eine schrittweiße zunehmende Erhöhung der Dateigröße.</value>
+ </data>
+ <data name="AddPreset_PictureSizeMode" xml:space="preserve">
+ <value>You can optionally store a picture settings with this preset. There are 3 modes:
+
+None: Picture settings are not stored in the preset. When loading a source, they will remain as-is within the bounds of the source resolution. This also affects Anamorphic, modulus, cropping etc.
+
+Custom: You can optionally set a Maximum width and Height. When doing this an encode will be less than or equal to these values. Keep Aspect Ratio will be automatically turned on.
+
+Source Maximum: Always encode at the sources resolution where possible.</value>
+ </data>
+ <data name="Advanced_EncoderOptions" xml:space="preserve">
+ <value>The options passed to the x264 encoder.
+The above controls are only a subset of useful x264 parameters.
+This box allows you to add or modify additional or current parameters as desired. </value>
+ </data>
+ <data name="About_GPL" xml:space="preserve">
+ <value>Copyright (C) 2003-2018 The HandBrake Team
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</value>
+ </data>
+ <data name="QueueSelection_AutoNameWarning" xml:space="preserve">
+ <value>WARNUNG: Die automatische Dateibenennung ist nicht aktiviert. Bitte diese Funktion aktivieren.</value>
+ </data>
+ <data name="QueueSelection_AutoTrackSelectionWarning" xml:space="preserve">
+ <value>WARNUNG: Die automatische Auswahl der Tonspur und der Untertitelspur ist nicht eingestellt. Die Standardauswahl der Spuren kann in den Einstellungen eingestellt werden.</value>
+ </data>
+ <data name="Presets_ResetComplete" xml:space="preserve">
+ <value>Die installierten Voreinstellungen wurden zurückgesetzt.</value>
+ </data>
+ <data name="Presets_ResetHeader" xml:space="preserve">
+ <value>Zurücksetzen erfolgreich</value>
+ </data>
+ <data name="Video_HigherQuality" xml:space="preserve">
+ <value>Höhere Qualität |</value>
+ </data>
+ <data name="Video_LowQuality" xml:space="preserve">
+ <value>| Niedrige Qualität</value>
+ </data>
+ <data name="Video_PlaceboQuality" xml:space="preserve">
+ <value>Placebo Qualität |</value>
+ </data>
+ <data name="Video_QuickSyncNotAvailable" xml:space="preserve">
+ <value>QuickSync hardware not detected or enabled!
+
+In order to use the QuickSync encoder, you must:
+
+- Have a Intel CPU with HD Graphics and QuickSync support. 4th Generation Haswell or newer parts are recommended for best quality.
+- Have the HD Graphics enabled.
+- On older versions of windows before 8, a monitor connected to the HD Graphics or GPU Virtualisation software installed is also required.</value>
+ </data>
+ <data name="Error" xml:space="preserve">
+ <value>Fehler</value>
+ </data>
+ <data name="Main_AutoAdd_AudioAndSubWarning" xml:space="preserve">
+ <value>Warnung: Wenn jedem Objekt, das in die Warteschlange aufgenommen werden soll, Untertitel hinzugefügt werden sollen, dann sollte vorher geprüft werden, dass die Standardeinstellungen für Untertitel im Untertitel-Tab richtig eingestellt sind.
+
+Möchten Sie fortfahren?</value>
+ </data>
+ <data name="Main_TurnOnAutoFileNaming" xml:space="preserve">
+ <value>Die automatische Dateibenennung muss aktiviert sein UND es muss ein Standardpfad in den Einstellungen vorgegeben sein, bevor es der Warteschlange hinzugefügt werden kann.</value>
+ </data>
+ <data name="Warning" xml:space="preserve">
+ <value>Warnung</value>
+ </data>
+ <data name="AreYouSure" xml:space="preserve">
+ <value>Sind Sie sicher?</value>
+ </data>
+ <data name="HandBrake_Title" xml:space="preserve">
+ <value>HandBrake</value>
+ </data>
+ <data name="Main_AlreadyEncoding" xml:space="preserve">
+ <value>HandBrake ist schon am enkodieren.</value>
+ </data>
+ <data name="Main_ChooseDestination" xml:space="preserve">
+ <value>Bitte einen Speicherort für die enkodierte Datei auswählen.</value>
+ </data>
+ <data name="Main_DestinationOverwrite" xml:space="preserve">
+ <value>Die Datei existiert bereits, soll sie überschrieben werden?</value>
+ </data>
+ <data name="Main_DuplicateDestinationOnQueue" xml:space="preserve">
+ <value>Es sind Aufgaben mit dem selben Zielpfad in der Warteschlange. Bitte einen anderen Pfad für die Aufgabe wählen.</value>
+ </data>
+ <data name="Main_JobsPending_addon" xml:space="preserve">
+ <value>Anstehende Aufgaben {0}</value>
+ </data>
+ <data name="Main_NewDefaultPreset" xml:space="preserve">
+ <value>Neue Standardvoreinstellungen: {0}</value>
+ </data>
+ <data name="Main_NewUpdate" xml:space="preserve">
+ <value>Ein neues Update ist verfügbar. Bitte zum Extras Menü &gt; Einstellungen gehen um es zu installieren.</value>
+ </data>
+ <data name="Main_NoPresetSelected" xml:space="preserve">
+ <value>Keine Voreinstellung ausgewählt.</value>
+ </data>
+ <data name="Main_NoUpdateOfBuiltInPresets" xml:space="preserve">
+ <value>Installierte Voreinstellungen können nicht verändert werden. Bitte eine eigene Voreinstellung auswählen.</value>
+ </data>
+ <data name="Main_PleaseSelectFolder" xml:space="preserve">
+ <value>Bitte einen Ordner wählen.</value>
+ </data>
+ <data name="Main_PreparingToEncode" xml:space="preserve">
+ <value>Enkodieren vorbereiten ...</value>
+ </data>
+ <data name="Main_PresetErrorBuiltInName" xml:space="preserve">
+ <value>Es kann keine Voreinstellung mit dem selben Namen wie eine installierte Voreinstellung importiert werden.</value>
+ </data>
+ <data name="Main_PresetOverwriteWarning" xml:space="preserve">
+ <value>Die Voreinstellung "{0}" existiert bereits. Soll sie überschrieben werden?</value>
+ </data>
+ <data name="Main_Presets" xml:space="preserve">
+ <value>Voreinstellungen</value>
+ </data>
+ <data name="Main_PresetUpdateConfrimation" xml:space="preserve">
+ <value>Soll die ausgewählte Voreinstellung wirklich aktualisiert werden?</value>
+ </data>
+ <data name="Main_PresetUpdated" xml:space="preserve">
+ <value>Die Voreinstellung wurde nun mit den momentanen Einstellungen aktualisiert.</value>
+ </data>
+ <data name="Main_PresetUpdateNotification" xml:space="preserve">
+ <value>HandBrake hat festgestellt, dass die installierten Voreinstellungen nicht mehr aktuell sind... Diese Voreinstellungen werden nun aktualisiert.
+Die eigenen Voreinstellungen wurden nicht aktualisiert, sie könnten daher neu erstellt werden müssen, indem sie gelöscht und neu hinzugefügt werden.
+Von der vorherigen Datei user_presets.xml wurde ein Backup angelegt.</value>
+ </data>
+ <data name="Main_QueueFinished" xml:space="preserve">
+ <value>Warteschlange beendet</value>
+ </data>
+ <data name="Main_ScanCancelled" xml:space="preserve">
+ <value>Überprüfen abgebrochen.</value>
+ </data>
+ <data name="Main_ScanCompleted" xml:space="preserve">
+ <value>Überprüfen abgeschlossen.</value>
+ </data>
+ <data name="Main_ScanFailed_NoReason" xml:space="preserve">
+ <value>Überprüfen fehlgeschlagen:</value>
+ </data>
+ <data name="Main_ScanFailled_CheckLog" xml:space="preserve">
+ <value>Überprüfen fehlgeschlagen... Details im Aktivitätsprotokoll.</value>
+ </data>
+ <data name="Main_ScanningPleaseWait" xml:space="preserve">
+ <value>Quelle überprüfen, bitte warten...</value>
+ </data>
+ <data name="Main_ScanningTitleXOfY" xml:space="preserve">
+ <value>Titel {0} von {1} überprüfen ({2} %)</value>
+ </data>
+ <data name="Main_ScanSource" xml:space="preserve">
+ <value>Bevor eine Enkodierung gestartet werden kann muss eine Quelle überprüft und eine Aufgabe festgelegt werden. Bitte 'Quelle' in der Symbolleiste auswählen um fortzufahren.</value>
+ </data>
+ <data name="Main_SelectPreset" xml:space="preserve">
+ <value>Bitte sicherstellen, dass eine eigene Voreinstellung ausgewählt ist. Eine installierte Voreinstellung kann nicht exportiert werden.</value>
+ </data>
+ <data name="Main_SelectPresetForUpdate" xml:space="preserve">
+ <value>Bitte eine Voreinstellung zum aktualisieren auswählen.</value>
+ </data>
+ <data name="Main_SelectSource" xml:space="preserve">
+ <value>'Quelle' auswählen um fortzufahren</value>
+ </data>
+ <data name="Main_XEncodesPending" xml:space="preserve">
+ <value>{0} Enkodierungen anstehend</value>
+ </data>
+ <data name="Notice" xml:space="preserve">
+ <value>Hinweis</value>
+ </data>
+ <data name="Overwrite" xml:space="preserve">
+ <value>Überschreiben?</value>
+ </data>
+ <data name="Question" xml:space="preserve">
+ <value>Frage</value>
+ </data>
+ <data name="State_Ready" xml:space="preserve">
+ <value>Fertig</value>
+ </data>
+ <data name="Updated" xml:space="preserve">
+ <value>Aktualisiert</value>
+ </data>
+ <data name="Preset_OldVersion_Header" xml:space="preserve">
+ <value>Version der Voreinstellung</value>
+ </data>
+ <data name="Preset_OldVersion_Message" xml:space="preserve">
+ <value>Die Voreinstellung die importiert werden soll ist von einer anderen HandBrake-Version.
+Es ist möglich, dass nicht alle Werte der Voreinstellung importiert werden können.
+
+Trotzdem fortfahren?</value>
+ </data>
+ <data name="Preset_UnableToImport_Header" xml:space="preserve">
+ <value>Importieren der Voreinstellung nicht möglich!</value>
+ </data>
+ <data name="Preset_UnableToImport_Message" xml:space="preserve">
+ <value>Importieren der Voreinstellung nicht möglich, da sie beschädigt ist oder von einer älteren HandBrake-Version stammt.</value>
+ </data>
+ <data name="Main_SetDestination" xml:space="preserve">
+ <value>Vor dem Hinzufügen zur Warteschlange muss der Zielpfad für die Ausgabedatei angegeben werden.</value>
+ </data>
+ <data name="Main_InvalidDestination" xml:space="preserve">
+ <value>Der eingegebene Zielpfad enthält ungültige Zeichen und wird nicht aktualisiert.</value>
+ </data>
+ <data name="Preview" xml:space="preserve">
+ <value>Vorschau {0}</value>
+ </data>
+ <data name="Preview_Scaled" xml:space="preserve">
+ <value>Vorschau (Skaliert)</value>
+ </data>
+ <data name="PictureSettings_OutputResolution" xml:space="preserve">
+ <value>Ausgabe: {0}</value>
+ </data>
+ <data name="Options_AdditionalFormatOptions" xml:space="preserve">
+ <value>The format of the output file. In addition to any supported file system character, you can use the following placeholders that will be replaced when you change title or scan a source.
+
+Live Update Options: {source} {title} {chapters}
+Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitrate} (These only change if you scan a new source, change title or chapters)</value>
+ </data>
+ <data name="Options_DefaultPathAdditionalParams" xml:space="preserve">
+ <value>Verfügbare zusätzliche Optionen: {source_path} oder {source_folder_name} 
+
+Nicht beide zur selben Zeit!</value>
+ </data>
+ <data name="Main_MatchingFileOverwriteWarning" xml:space="preserve">
+ <value>Es kann nicht in eine Datei mit dem selben Pfad und Dateinamen wie die Quelldatei enkodiert werden. Bitte den Namen der Zieldatei ändern, so dass er nicht der Quelldatei entspricht.</value>
+ </data>
+ <data name="Main_UnableToLoadHelpMessage" xml:space="preserve">
+ <value>Ihr System hat HandBrake daran gehindert einen Webbrowser zu starten.</value>
+ </data>
+ <data name="Main_UnableToLoadHelpSolution" xml:space="preserve">
+ <value>Die Hilfeseite kann auch direkt auf der Webseite unter https://handbrake.fr erreicht werden.</value>
+ </data>
+ <data name="Main_PresetImportFailed" xml:space="preserve">
+ <value>Importieren der ausgewählten Voreinstellung nicht möglich. </value>
+ </data>
+ <data name="Main_PresetImportFailedSolution" xml:space="preserve">
+ <value>Die Voreinstellung könnte beschädigt sein oder von einer älteren Version von HandBrake stammen welche nicht mehr unterstützt wird.
+Voreinstellungen aus älteren Versionen müssen mit einer aktuellen Version neu erstellt werden.</value>
+ </data>
+ <data name="Advanced_NoOptionsPaneAvailable" xml:space="preserve">
+ <value>Für diesen Enkoder ist kein Einstellungsfenster verfügbar.
+
+Bitte das Feld 'Zusätzliche Einstellungen' im Video-Tab verwenden um zusätzliche benötigte Enkoderparameter einzugeben.</value>
+ </data>
+ <data name="Video_EncoderExtraArgsTooltip" xml:space="preserve">
+ <value>Zusätzliche erweiterte Argumente, die vom Videoenkoder angewendet werden.</value>
+ </data>
+ <data name="Main_SourceDestinationMatchError" xml:space="preserve">
+ <value>Die Quelldatei die konvertiert werden soll kann nicht überschrieben werden.
+Bitte einen anderen Dateinamen wählen.</value>
+ </data>
+ <data name="Subtitles_BurnInBehaviourModes" xml:space="preserve">
+ <value>None - Only tracks where the container does not support the format will be burned in.
+Foreign Audio Track - The Foreign Audio track will be burned in if available.
+First Track - The first track will be burned in.
+Foreign Audio Preferred, else First - If the foreign audio track exists, it will be burned in, otherwise the first track will be chosen.</value>
+ </data>
+ <data name="Main_ScanNoTitlesFound" xml:space="preserve">
+ <value>Keine gültige Quelle oder Titel gefunden</value>
+ </data>
+ <data name="Main_ScanNoTitlesFoundMessage" xml:space="preserve">
+ <value>HandBrake will not be able to encode the selected source as it did not find a valid source with titles to encode.
+This could be due to one of the following reasons:
+- The source file is not a valid video file or is in a format that HandBrake does not support.
+- The source may be copy protected or include DRM. Please note that HandBrake does not support the removal of copy protections.
+
+The Activity log may have further information.</value>
+ </data>
+ <data name="Main_QueueLabel" xml:space="preserve">
+ <value>Warteschlange {0}</value>
+ </data>
+ <data name="Main_Start" xml:space="preserve">
+ <value>Enkodierung starten</value>
+ </data>
+ <data name="Main_StartQueue" xml:space="preserve">
+ <value>Warteschlange starten</value>
+ </data>
+ <data name="MainViewModel_CanNotDeleteDefaultPreset" xml:space="preserve">
+ <value>Die Standardvoreinstellung kann nicht gelöscht werden. Bitte zuerst eine andere Voreinstellung als Standard auswählen.</value>
+ </data>
+ <data name="MainViewModel_PresetRemove_AreYouSure" xml:space="preserve">
+ <value>Soll folgende Voreinstellung wirklich gelöscht werden:</value>
+ </data>
+ <data name="MainViewModel_EncodeStatusChanged_StatusLabel" xml:space="preserve">
+ <value>Enkodierung: Durchgang {0} von {1}, {2:00.00}%, BpS: {3:000.0}, Mittlere BpS: {4:000.0}, verbleibende Zeit: {5}, vergangene Zeit {6:d\:hh\:mm\:ss} {7}</value>
+ </data>
+ <data name="AddPresetViewModel_PresetMustProvideName" xml:space="preserve">
+ <value>Eine Voreinstellung muss einen Namen haben. Bitte das Feld für den Namen der Voreinstellung ausfüllen.</value>
+ </data>
+ <data name="AddPresetViewModel_PresetWithSameNameOverwriteWarning" xml:space="preserve">
+ <value>Eine Voreinstellung mit diesem Namen existiert bereits. Soll sie überschrieben werden?</value>
+ </data>
+ <data name="AddPresetViewModel_YouMustFirstScanSource" xml:space="preserve">
+ <value>Eine Quelle muss zuerst überprüft werden, bevor 'Quellenmaximum' ausgewählt werden kann.</value>
+ </data>
+ <data name="AddPresetViewModel_CustomWidthHeightFieldsRequired" xml:space="preserve">
+ <value>Das Feld der benutzerdefinierten Breite und Höhe muss ausgefüllt sein für die Option 'Eigene'.</value>
+ </data>
+ <data name="AddPresetViewModel_UnableToAddPreset" xml:space="preserve">
+ <value>Voreinstellung hinzufügen fehlgeschlagen</value>
+ </data>
+ <data name="UnknownError" xml:space="preserve">
+ <value>Unbekannter Fehler</value>
+ </data>
+ <data name="AudioViewModel_AudioDefaults" xml:space="preserve">
+ <value>Audiostandard</value>
+ </data>
+ <data name="AudioViewModel_AudioTracks" xml:space="preserve">
+ <value>Tonspuren</value>
+ </data>
+ <data name="AudioViewModel_ConfigureDefaults" xml:space="preserve">
+ <value>Auswahlverhalten</value>
+ </data>
+ <data name="AudioViewModel_SwitchBackToTracks" xml:space="preserve">
+ <value>Zu den Spuren zurückkehren</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToExportChaptersWarning" xml:space="preserve">
+ <value>Speichern der Kapitelmarkerdatei fehlgeschlagen!</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToExportChaptersMsg" xml:space="preserve">
+ <value>Namen von Kapitelmarkern werden NICHT im Enkodierten gesichert.</value>
+ </data>
+ <data name="CountdownAlertViewModel_NoticeMessage" xml:space="preserve">
+ <value>Die folgende Aktion '{0}' wird in {1} Sekunden ausgeführt.</value>
+ </data>
+ <data name="ErrorViewModel_IfTheProblemPersists" xml:space="preserve">
+ <value>Bitte Handbrake neu starten wenn das Problem anhält.</value>
+ </data>
+ <data name="ErrorViewModel_NoFurtherInformation" xml:space="preserve">
+ <value>Für diesen Fehler ist keine weitere Information verfügbar.</value>
+ </data>
+ <data name="ErrorViewModel_UnknownError" xml:space="preserve">
+ <value>Ein unbekannter Fehler ist aufgetreten.</value>
+ </data>
+ <data name="OptionsViewModel_NewUpdate" xml:space="preserve">
+ <value>Ein neues Update ist verfügbar! Bitte prüfen sie die Homepage auf Versionshinweise.</value>
+ </data>
+ <data name="OptionsViewModel_64bitAvailable" xml:space="preserve">
+ <value>Ihr System unterstützt die 64bit-Version von HandBrake! Dies bietet Verbesserungen bezüglich Leistung und Stabilität, bezogen auf die 32bit-Version.
+Bitte die Webseite auf Versionshinweise prüfen.</value>
+ </data>
+ <data name="OptionsViewModel_NoNewUpdates" xml:space="preserve">
+ <value>Es sind momentan keine Updates verfügbar.</value>
+ </data>
+ <data name="OptionsViewModel_UpdateDownloaded" xml:space="preserve">
+ <value>Update geladen</value>
+ </data>
+ <data name="OptionsViewModel_UpdateServiceUnavailable" xml:space="preserve">
+ <value>Updateservice nicht verfügbar. Es kann versucht werden das Update von https://handbrake.fr zu laden.</value>
+ </data>
+ <data name="OptionsViewModel_UpdateFailed" xml:space="preserve">
+ <value>Update fehlgeschlagen. Es kann versucht werden das Update von https://handbrake.fr zu laden.</value>
+ </data>
+ <data name="PictureSettingsViewModel_StorageDisplayLabel" xml:space="preserve">
+ <value>Anzeigegröße: {0}x{1}, PAR {2}x{3}</value>
+ </data>
+ <data name="QueueSelectionViewModel_AddToQueue" xml:space="preserve">
+ <value>Zu Warteschlange hinzufügen</value>
+ </data>
+ <data name="QueueViewModel_NoEncodesPending" xml:space="preserve">
+ <value>Keine Enkodierenden anstehend</value>
+ </data>
+ <data name="QueueViewModel_NoJobsPending" xml:space="preserve">
+ <value>Es werden momentan keine Aufgaben enkodiert</value>
+ </data>
+ <data name="QueueViewModel_Queue" xml:space="preserve">
+ <value>Warteschlange</value>
+ </data>
+ <data name="QueueViewModel_ClearQueueConfrimation" xml:space="preserve">
+ <value>Die Warteschlange wirklich löschen?</value>
+ </data>
+ <data name="Confirm" xml:space="preserve">
+ <value>Bestätigen</value>
+ </data>
+ <data name="QueueViewModel_JobsPending" xml:space="preserve">
+ <value>{0} Aufgaben anstehend</value>
+ </data>
+ <data name="QueueViewModel_QueuePending" xml:space="preserve">
+ <value>Warteschlange angehalten</value>
+ </data>
+ <data name="QueueViewModel_QueuePauseNotice" xml:space="preserve">
+ <value>Die Warteschlange wurde angehalten. Die momentane Aufgabe wird noch fertig gestellt und danach keine weitere Aufgabe gestartet.</value>
+ </data>
+ <data name="QueueViewModel_DelSelectedJobConfirmation" xml:space="preserve">
+ <value>Sollen die ausgewählten Aufgaben wirklich gelöscht werden?</value>
+ </data>
+ <data name="QueueViewModel_JobCurrentlyRunningWarning" xml:space="preserve">
+ <value>Diese Enkodierung ist momentan in Arbeit. Wenn sie gelöscht wird, wird die Enkodierung abgebrochen. Soll wirklich fortgefahren werden?</value>
+ </data>
+ <data name="QueueViewModel_NoPendingJobs" xml:space="preserve">
+ <value>Es sind keine Aufgaben anstehend.</value>
+ </data>
+ <data name="QueueViewModel_EditConfrimation" xml:space="preserve">
+ <value>Soll diese Aufgabe wirklich bearbeitet werden? Sie wird aus der Warteschlange entfernt und zum Hauptfenster geleitet.</value>
+ </data>
+ <data name="QueueViewModel_QueueReady" xml:space="preserve">
+ <value>Warteschlange bereit</value>
+ </data>
+ <data name="QueueViewModel_QueueNotRunning" xml:space="preserve">
+ <value>Warteschlange nicht aktiv</value>
+ </data>
+ <data name="QueueViewModel_QueueCompleted" xml:space="preserve">
+ <value>Warteschlange ausgeführt</value>
+ </data>
+ <data name="QueueViewModel_LastJobFinished" xml:space="preserve">
+ <value>Letzte Aufgabe in der Warteschlange ausgeführt</value>
+ </data>
+ <data name="QueueViewModel_QueueStarted" xml:space="preserve">
+ <value>Warteschlange gestartet</value>
+ </data>
+ <data name="QueueViewModel_QueueStatusDisplay" xml:space="preserve">
+ <value>Enkodierung: Durchgang {0} von {1}, {2:00.00}%, BpS: {3:000.0}, Mittlere BpS: {4:000.0}, verbleibende Zeit: {5}, vergangene Zeit: {6:d\:hh\:mm\:ss}</value>
+ </data>
+ <data name="ShellViewModel_CanClose" xml:space="preserve">
+ <value>Eine Enkodierung ist momentan in Arbeit. Das Beenden von HandBrake wird diese Enkodierung abbrechen.
+Soll HandBrake wirklich beendet werden?</value>
+ </data>
+ <data name="StaticPreviewViewModel_Title" xml:space="preserve">
+ <value>Bildvorschau</value>
+ </data>
+ <data name="StaticPreview_UnableToDeletePreview" xml:space="preserve">
+ <value>Das Entfernen früherer Vorschaudateien ist fehlgeschlagen. Das Programm muss möglicherweise neu gestartet werden.</value>
+ </data>
+ <data name="StaticPreviewViewModel_ScanFirst" xml:space="preserve">
+ <value>Bevor eine Vorschau erstellt werden kann muss die Quelle überprüft werden und eine Enkodierung festgelegt sein.</value>
+ </data>
+ <data name="StaticPreviewViewModel_UnableToFindVLC" xml:space="preserve">
+ <value>VLC-Player nicht gefunden.
+bitte sicherstellen, dass VLC installiert und der Pfad in den HandBrake-Einstellungen korrekt ist (siehe "Extras Menü &gt; Einstellungen &gt; Allgemein")</value>
+ </data>
+ <data name="StaticPreviewViewModel_UnableToPlayFile" xml:space="preserve">
+ <value>Finden der Vorschaudatei fehlgeschlagen. Entweder wurde die Datei gelöscht oder die Enkodierung ist fehlgeschlagen. Bitte das Aktivitätsprotokoll für Details prüfen.</value>
+ </data>
+ <data name="StaticPreviewViewModel_AlreadyEncoding" xml:space="preserve">
+ <value>HandBrake enkodiert bereits eine Datei! Es kann nur eine Datei auf einmal enkodiert werden.</value>
+ </data>
+ <data name="SubtitlesViewModel_SubDefaults" xml:space="preserve">
+ <value>Untertitelstandard</value>
+ </data>
+ <data name="SubtitlesViewModel_SubTracks" xml:space="preserve">
+ <value>Untertitelspuren</value>
+ </data>
+ <data name="SubtitlesViewModel_SwitchToTracks" xml:space="preserve">
+ <value>Zu den Spuren zurückkehren</value>
+ </data>
+ <data name="SubtitlesViewModel_ConfigureDefaults" xml:space="preserve">
+ <value>Auswahlverhalten</value>
+ </data>
+ <data name="PresetService_ArchiveFile" xml:space="preserve">
+ <value>Archivierte Datei:</value>
+ </data>
+ <data name="PresetService_PresetsOutOfDate" xml:space="preserve">
+ <value>HandBrake hat hat festgestellt, dass die Voreinstellungsdatei von einer älteren Version stammt.
+Es wird versucht die Datei trotzdem zu laden.
+Schlägt dies fehl, wird die Datei archiviert und eine neue erstellt.</value>
+ </data>
+ <data name="PresetService_UnableToLoad" xml:space="preserve">
+ <value>Laden der Voreinstellung fehlgeschlagen.</value>
+ </data>
+ <data name="PresetService_UnableToLoadPresets" xml:space="preserve">
+ <value>HandBrake konnte die Voreinstellungsdatei nicht laden. Es könnte von einer älteren und nicht mehr unterstützten HandBrake-Version stammen oder beschädigt sein.
+
+Die alten Voreinstellungen wurden archiviert unter:</value>
+ </data>
+ <data name="Main_QueueFinishedErrors" xml:space="preserve">
+ <value>mit {0} Fehlern oder Abbrüchen erkannt.</value>
+ </data>
+ <data name="MainViewModel_LowDiskSpace" xml:space="preserve">
+ <value>Geringer Speicherplatz</value>
+ </data>
+ <data name="MainViewModel_LowDiskSpaceWarning" xml:space="preserve">
+ <value>Warnung, der verfügbare freie Speicherplatz wird knapp. HandBrake wird nicht in der Lage sein das Enkodieren abzuschließen, sollte der freie Speicherplatz nicht ausreichen.</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToImportChaptersMalformedLineMsg" xml:space="preserve">
+ <value>Zeile {0} ist ungültig. Es wird nichts importiert.</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToImportChaptersWarning" xml:space="preserve">
+ <value>Kapiteldatei importieren fehlgeschlagen</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns" xml:space="preserve">
+ <value>Alle Zeilen der Kapiteldatei müssen mindestens 2 Spalten Daten aufweisen</value>
+ </data>
+ <data name="ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber" xml:space="preserve">
+ <value>Die erste Spalte der Kapiteldatei darf nur einen ganzzahligen Zahlenwert größer als Null (0) enthalten.</value>
+ </data>
+ <data name="ChaptersViewModel_UnsupportedFileFormatMsg" xml:space="preserve">
+ <value>Kapiteldateien des Typs '{0}' werden zur Zeit nicht unterstützt.</value>
+ </data>
+ <data name="ChaptersViewModel_UnsupportedFileFormatWarning" xml:space="preserve">
+ <value>Nicht unterstützter Dateityp der Kapiteldatei</value>
+ </data>
+ <data name="ChaptersViewModel_ValidationFailedWarning" xml:space="preserve">
+ <value>Ungültige Kapitelinformation oder Quellmedium</value>
+ </data>
+ <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch" xml:space="preserve">
+ <value>Die Anzahl der Kapitel des Quellmediums
+und die Anzahl der Kapitel der Eingabedatei passen nicht zusammen ({0} vs {1}).
+
+Sollen die Kapitelnamen trotzdem importiert werden?</value>
+ </data>
+ <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg" xml:space="preserve">
+ <value>Die Anzahl der Kapitel des Quellmediums
+und die Anzahl der Kapitel der Eingabedatei passen nicht zusammen ({0} vs {1}).
+
+Sollen die Kapitelnamen trotzdem importiert werden?</value>
+ </data>
+ <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning" xml:space="preserve">
+ <value>Die Anzahl der Kapitel zwischen Quelle und Eingangsdatei stimmen nicht überein.</value>
+ </data>
+ <data name="ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg" xml:space="preserve">
+ <value>Die berichtete Dauer des Kapitels des Quellmediums
+ und die Dauer des Kapitels in der Eingabedatei differieren stark.
+
+Es ist sehr wahrscheinlich, dass diese Kapiteldatei von einem anderen Quellmedium produziert wurde.
+
+Sollen die Kapitelnamen wirklich importiert werden?</value>
+ </data>
+ <data name="ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning" xml:space="preserve">
+ <value>Die Dauer der Kapitel zwischen Quelle und Eingangsdatei stimmen nicht überein.</value>
+ </data>
+ <data name="ScanService_ScanStopFailed" xml:space="preserve">
+ <value>Beim Abbrechen der Überprüfung ist ein Fehler aufgetreten. Bitte HandBrake neu starten.</value>
+ </data>
+ <data name="Presets_PresetForceReset" xml:space="preserve">
+ <value>HandBrake kann die Voreinstellungsdatei nicht auf eine neue Version aktualisieren.
+Die Voreinstellungsdatei wird archiviert und eine neue erstellt. Die eigenen Voreinstellungen müssen dann neu erstellt werden.</value>
+ </data>
+ <data name="SettingService_SaveErrorReset" xml:space="preserve">
+ <value>Alle geänderten Einstellungen müssen möglicherweise beim nächsten Start von HandBrake zurückgesetzt werden.</value>
+ </data>
+ <data name="UserSettings_AnErrorOccured" xml:space="preserve">
+ <value>Beim Speichern der Einstellungen ist ein Fehler aufgetreten.</value>
+ </data>
+ <data name="UserSettings_YourSettingsHaveBeenReset" xml:space="preserve">
+ <value>Warnung, die Einstellungen wurden zurückgesetzt! </value>
+ </data>
+ <data name="UserSettings_YourSettingsAreCorrupt" xml:space="preserve">
+ <value>Die Benutzereinstellungsdatei war entweder beschädigt oder nicht verfügbar. Die Einstellungen wurden auf den Standard zurückgesetzt.</value>
+ </data>
+ <data name="UserSettings_UnableToLoad" xml:space="preserve">
+ <value>Das Laden folgender Benutzereinstellungsdatei ist fehlgeschlagen: {0}</value>
+ </data>
+ <data name="UserSettings_UnableToLoadSolution" xml:space="preserve">
+ <value>Die Benutzereinstellungsdatei war entweder beschädigt oder nicht verfügbar. Möglicherweise muss die Datei gelöscht und von HandBrake neu angelegt werden.</value>
+ </data>
+ <data name="Main_NoPermissionsOrMissingDirectory" xml:space="preserve">
+ <value>Das gewählte Ausgabeverzeichnis existiert entweder nicht oder es fehlen benötigte Schreibrechte.</value>
+ </data>
+ <data name="DirectoryUtils_CreateFolder" xml:space="preserve">
+ <value>Ordner erstellen?</value>
+ </data>
+ <data name="DirectoryUtils_CreateFolderMsg" xml:space="preserve">
+ <value>Der Ordner in den geschrieben werden soll existiert nicht. Soll HandBrake den folgenden Ordner anlegen?
+{0}</value>
+ </data>
+ <data name="MainViewModel_UnableToLaunchDestDir" xml:space="preserve">
+ <value>Öffnen des Zielverzeichnises fehlgeschlagen</value>
+ </data>
+ <data name="MainViewModel_UnableToLaunchDestDirSolution" xml:space="preserve">
+ <value>Bitte überprüfen, dass das Zielverzeichnis gültig ist.</value>
+ </data>
+ <data name="MainViewModel_EncodeStatusChanged_SubScan_StatusLabel" xml:space="preserve">
+ <value>Bearbeite Durchgang {0} von {1}, (Untertitelscan) {2:00.00}%, Verbleibende Zeit Überprüfung: {3}, Vergangen: {4:d\:hh\:mm\:ss}</value>
+ </data>
+ <data name="NoAdditionalInformation" xml:space="preserve">
+ <value>Keine zusätzlichen Informationen</value>
+ </data>
+ <data name="WindowTitleStatus" xml:space="preserve">
+ <value>{0} - ({1} %, Durchgang {2} von {3})</value>
+ </data>
+ <data name="TaskTrayStatusTitle" xml:space="preserve">
+ <value>{1} %, Durchgang {2} von {3}
+Verbleibende Zeit: {4}</value>
+ </data>
+ <data name="PauseOnLowDiskspace" xml:space="preserve">
+ <value>Warteschlange angehalten. Warnung, auf dem Volume auf dem Enkodiert wird ist nicht genügend Speicherplatz vorhanden. Bitte mehr Speicherplatz freigeben und 'Start' auswählen um fortzufahren. Außerdem kann der minimale Speicherplatzwert in den Einstellungen angepasst werden.</value>
+ </data>
+ <data name="Main_QueuePaused" xml:space="preserve">
+ <value>Warteschlange angehalten</value>
+ </data>
+ <data name="QueueViewModel_QueuePaused" xml:space="preserve">
+ <value>Warteschlange angehalten</value>
+ </data>
+ <data name="Main_LowDiskspace" xml:space="preserve">
+ <value>Das Zielverzeichnis hat wenig freien Speicherplatz. Bitte mehr Speicherplatz freigeben. Alternativ kann der Wert angepasst werden bei dem diese Warnmeldung ausgelöst wird.</value>
+ </data>
+ <data name="Queue_UnableToResetJob" xml:space="preserve">
+ <value>Der Status der Aufgabe kann nicht zurückgesetzt werden, da er sich nicht im Fehlerzustand oder im bearbeiteten Zustand befindet.</value>
+ </data>
+ <data name="Queue_UnableToRestoreFile" xml:space="preserve">
+ <value>Wiederherstellen der Datei in der Warteschlange fehlgeschlagen</value>
+ </data>
+ <data name="Queue_UnableToRestoreFileExtended" xml:space="preserve">
+ <value>Die Datei ist möglicherweise beschädigt oder von einer älteren und inkompatiblen Version von HandBrake.</value>
+ </data>
+ <data name="Queue_AlreadyEncoding" xml:space="preserve">
+ <value>HandBrake enkodiert bereits eine Datei.</value>
+ </data>
+ <data name="Queue_AlreadyEncodingSolution" xml:space="preserve">
+ <value>Bitte das momentane Enkodieren abbrechen. Falls das Problem anhält, bitte HandBrake neu starten.</value>
+ </data>
+ <data name="MiniViewModel_EncodeStatusChanged_StatusLabel" xml:space="preserve">
+ <value>Enkodierung: Durchgang {0} von {1}, {2:00.00}%
+BpS: {3:000.0}, Mittlere BpS: {4:000.0}
+Verbleibende Zeit: {5}, Vergangene Zeit: {6:d\:hh\:mm\:ss}</value>
+ </data>
+ <data name="StaticPreviewView_Title" xml:space="preserve">
+ <value>Vorschau ({0}% aktuelle Größe)</value>
+ </data>
+ <data name="OsBitnessWarning" xml:space="preserve">
+ <value>HandBrake benötigt eine 64bit-Version von Windows 7 oder neuer.</value>
+ </data>
+ <data name="OsVersionWarning" xml:space="preserve">
+ <value>HandBrake benötigt Windows 7 oder neuer. Version 0.9.9 (XP) und 0.10.5 (Vista) waren die letzten mit einer Unterstützung für diese Version.</value>
+ </data>
+ <data name="Main_ContinueAddingToQueue" xml:space="preserve">
+ <value>Die letzte Aufgabe konnte nicht zur Zwischenablage hinzugefügt werden. Soll fortgefahren und der Rest hinzugefügt werden?</value>
+ </data>
+ <data name="Main_QueueOverwritePrompt" xml:space="preserve">
+ <value>Die Datei '{0}' existiert bereits!
+Soll sie überschrieben werden?</value>
+ </data>
+ <data name="Clipboard_Unavailable" xml:space="preserve">
+ <value>Die Zwischenablage des Systems ist momentan nicht verfügbar.</value>
+ </data>
+ <data name="Clipboard_Unavailable_Solution" xml:space="preserve">
+ <value>Ein möglicher Grund könnte eine andere Anwendung sein, die die Zwischenablage überwacht oder zwecks eigenem Gebrauch blockiert. Die Zwischenablage ist nicht verfügbar solange sie blockiert ist.</value>
+ </data>
+ <data name="AboutView_License" xml:space="preserve">
+ <value>Lizenz:</value>
+ </data>
+ <data name="AboutView_Version" xml:space="preserve">
+ <value>Version:</value>
+ </data>
+ <data name="AddPresetView_AddNewCategory" xml:space="preserve">
+ <value>-- Neue Kategorie hinzufügen --</value>
+ </data>
+ <data name="AddPresetView_AddPreset" xml:space="preserve">
+ <value>Voreinstellung hinzufügen</value>
+ </data>
+ <data name="AddPresetView_Category" xml:space="preserve">
+ <value>Kategorie:</value>
+ </data>
+ <data name="AddPresetView_Description" xml:space="preserve">
+ <value>Beschreibung:</value>
+ </data>
+ <data name="AddPresetView_Name" xml:space="preserve">
+ <value>Name:</value>
+ </data>
+ <data name="AddPresetView_SavePictureSize" xml:space="preserve">
+ <value>Bildgröße:</value>
+ </data>
+ <data name="AudioDefaultView_Behaviours" xml:space="preserve">
+ <value>Verhalten wählen:</value>
+ </data>
+ <data name="AudioView_AllowPassThruOf" xml:space="preserve">
+ <value>Passthru erlauben von:</value>
+ </data>
+ <data name="AudioView_AudioDefaultsDescription" xml:space="preserve">
+ <value>Konfigurieren, wie die Tonspuren automatisch ausgewählt und konfiguriert werden, wenn ein neuer Titel oder eine Videoquelle ausgewählt wird.</value>
+ </data>
+ <data name="AudioView_AutoPassthruBehaviour" xml:space="preserve">
+ <value>'Auto Passthru'-Verhalten:</value>
+ </data>
+ <data name="AudioView_Bitrate" xml:space="preserve">
+ <value>Bitrate</value>
+ </data>
+ <data name="AudioView_Codec" xml:space="preserve">
+ <value>Codec</value>
+ </data>
+ <data name="AudioView_DRC" xml:space="preserve">
+ <value>DRC</value>
+ </data>
+ <data name="AudioView_Gain" xml:space="preserve">
+ <value>Verstärkung</value>
+ </data>
+ <data name="AudioView_Hide" xml:space="preserve">
+ <value>Ausblenden</value>
+ </data>
+ <data name="AudioView_Mixdown" xml:space="preserve">
+ <value>Abmischung</value>
+ </data>
+ <data name="AudioView_OtherwiseFallbackEncoder" xml:space="preserve">
+ <value>Ausweichenkoder:</value>
+ </data>
+ <data name="AudioView_ReloadDefaults" xml:space="preserve">
+ <value>Standard neu laden</value>
+ </data>
+ <data name="AudioView_Samplerate" xml:space="preserve">
+ <value>Samplerate</value>
+ </data>
+ <data name="AudioView_Show" xml:space="preserve">
+ <value>Zeigen</value>
+ </data>
+ <data name="AudioView_TrackName" xml:space="preserve">
+ <value>Spurenname</value>
+ </data>
+ <data name="AudioView_TrackSelectionBehaviour" xml:space="preserve">
+ <value>Spurauswahlverhalten:</value>
+ </data>
+ <data name="AudioView_TrackSettingDefaultBehaviour" xml:space="preserve">
+ <value>Für zusätzliche Spuren:</value>
+ </data>
+ <data name="AudioView_WhenAutoPassthru" xml:space="preserve">
+ <value>Wenn 'Auto Passthru' als der Audiocodec ausgewählt ist.</value>
+ </data>
+ <data name="ChaptersView_ChapterMarkers" xml:space="preserve">
+ <value>Kapitelmarker</value>
+ </data>
+ <data name="ChaptersView_ChapterName" xml:space="preserve">
+ <value>Kapitelname</value>
+ </data>
+ <data name="ChaptersView_ChapterNumber" xml:space="preserve">
+ <value>Kapitelnummer</value>
+ </data>
+ <data name="ChaptersView_CreateChapterMarkers" xml:space="preserve">
+ <value>Kapitelmarker erstellen</value>
+ </data>
+ <data name="ChaptersView_Duration" xml:space="preserve">
+ <value>Dauer</value>
+ </data>
+ <data name="ChaptersView_Export" xml:space="preserve">
+ <value>Export</value>
+ </data>
+ <data name="ChaptersView_Import" xml:space="preserve">
+ <value>Import</value>
+ </data>
+ <data name="ChapterView_ExportNames" xml:space="preserve">
+ <value>Namen exportieren</value>
+ </data>
+ <data name="ChapterView_ImportNames" xml:space="preserve">
+ <value>Namen importieren</value>
+ </data>
+ <data name="ChapterView_ResetChapterNames" xml:space="preserve">
+ <value>Kapitelnamen zurücksetzen</value>
+ </data>
+ <data name="CountdownAlterView_CancelAction" xml:space="preserve">
+ <value>Aktion abbrechen</value>
+ </data>
+ <data name="CountdownAlterView_Proceed" xml:space="preserve">
+ <value>Fortfahren</value>
+ </data>
+ <data name="CountdownAlterView_WhenDoneAction" xml:space="preserve">
+ <value>Aktion wenn fertig</value>
+ </data>
+ <data name="ErrorView_ErrorDetails" xml:space="preserve">
+ <value>Fehlerdetails:</value>
+ </data>
+ <data name="FiltersView_Custom" xml:space="preserve">
+ <value>Eigene:</value>
+ </data>
+ <data name="FiltersView_Deblock" xml:space="preserve">
+ <value>Deblock</value>
+ </data>
+ <data name="FiltersView_Decomb" xml:space="preserve">
+ <value>Decomb</value>
+ </data>
+ <data name="FiltersView_Deinterlace" xml:space="preserve">
+ <value>Deinterlace:</value>
+ </data>
+ <data name="FiltersView_DeinterlacePreset" xml:space="preserve">
+ <value>Voreinstellung:</value>
+ </data>
+ <data name="FiltersView_DeinterlacePresetAuto" xml:space="preserve">
+ <value>Deinterlace-Voreinstellung</value>
+ </data>
+ <data name="FiltersView_Denoise" xml:space="preserve">
+ <value>Entrauschen:</value>
+ </data>
+ <data name="FiltersView_DenoisePresetAuto" xml:space="preserve">
+ <value>Entrauschvoreinstellung</value>
+ </data>
+ <data name="FiltersView_DenoiseTuneAuto" xml:space="preserve">
+ <value>Entrauschabstimmung</value>
+ </data>
+ <data name="FiltersView_Detelecine" xml:space="preserve">
+ <value>Detelecine:</value>
+ </data>
+ <data name="FiltersView_Filters" xml:space="preserve">
+ <value>Filter</value>
+ </data>
+ <data name="FiltersView_FlipVideo" xml:space="preserve">
+ <value>Spiegeln</value>
+ </data>
+ <data name="FiltersView_Grayscale" xml:space="preserve">
+ <value>Graustufen</value>
+ </data>
+ <data name="FiltersView_InterlaceDetection" xml:space="preserve">
+ <value>Interlace-Erkennung:</value>
+ </data>
+ <data name="FiltersView_Preset" xml:space="preserve">
+ <value>Voreinstellung:</value>
+ </data>
+ <data name="FiltersView_Rotate" xml:space="preserve">
+ <value>Rotieren:</value>
+ </data>
+ <data name="FiltersView_Sharpen" xml:space="preserve">
+ <value>Schärfen</value>
+ </data>
+ <data name="FiltersView_SharpenPresetAuto" xml:space="preserve">
+ <value>Schärfen-Voreinstellung</value>
+ </data>
+ <data name="FiltersView_SharpenTuneAuto" xml:space="preserve">
+ <value>Schärfen-Abstimmung</value>
+ </data>
+ <data name="FiltersView_Tune" xml:space="preserve">
+ <value>Abstimmung:</value>
+ </data>
+ <data name="Generic_Add" xml:space="preserve">
+ <value>Hinzufügen</value>
+ </data>
+ <data name="Generic_Cancel" xml:space="preserve">
+ <value>Abbrechen</value>
+ </data>
+ <data name="Generic_Clear" xml:space="preserve">
+ <value>Löschen</value>
+ </data>
+ <data name="Generic_Close" xml:space="preserve">
+ <value>Schließen</value>
+ </data>
+ <data name="Generic_CopyToClipboard" xml:space="preserve">
+ <value>In die Zwischenablage kopieren</value>
+ </data>
+ <data name="Generic_MoveLeft" xml:space="preserve">
+ <value>Nach links bewegen</value>
+ </data>
+ <data name="Generic_MoveRight" xml:space="preserve">
+ <value>Nach rechts bewegen</value>
+ </data>
+ <data name="Generic_Save" xml:space="preserve">
+ <value>Sichern</value>
+ </data>
+ <data name="LogView_CopyClipboard" xml:space="preserve">
+ <value>In die Zwischenablage kopieren</value>
+ </data>
+ <data name="LogView_EncodeLog" xml:space="preserve">
+ <value>Enkodierungsprotokoll</value>
+ </data>
+ <data name="LogView_OpenLogDir" xml:space="preserve">
+ <value>Verzeichnis des Aktivitätsprotokolls öffnen</value>
+ </data>
+ <data name="LogView_ScanLog" xml:space="preserve">
+ <value>ScanLog</value>
+ </data>
+ <data name="MainView_ActivityLog" xml:space="preserve">
+ <value>Aktivitätsprotokoll</value>
+ </data>
+ <data name="MainView_AddAll" xml:space="preserve">
+ <value>Alles hinzufügen</value>
+ </data>
+ <data name="MainView_AddCurrent" xml:space="preserve">
+ <value>Momentanes hinzufügen</value>
+ </data>
+ <data name="MainView_AddSelection" xml:space="preserve">
+ <value>Auswahl hinzufügen</value>
+ </data>
+ <data name="MainView_AddToQueue" xml:space="preserve">
+ <value>Zu Warteschlange hinzufügen</value>
+ </data>
+ <data name="MainView_AdvancedTab" xml:space="preserve">
+ <value>Erweitert</value>
+ </data>
+ <data name="MainView_AlignAVStart" xml:space="preserve">
+ <value>A/V synchron</value>
+ </data>
+ <data name="MainView_Angle" xml:space="preserve">
+ <value>Winkel:</value>
+ </data>
+ <data name="MainView_AudioTab" xml:space="preserve">
+ <value>Audio</value>
+ </data>
+ <data name="MainView_AudioTrackCount" xml:space="preserve">
+ <value>Tonspuren</value>
+ </data>
+ <data name="MainView_Browser" xml:space="preserve">
+ <value>Wählen</value>
+ </data>
+ <data name="MainView_ChaptersTab" xml:space="preserve">
+ <value>Kapitel</value>
+ </data>
+ <data name="MainView_Container" xml:space="preserve">
+ <value>Container</value>
+ </data>
+ <data name="MainView_Destination" xml:space="preserve">
+ <value>Ziel</value>
+ </data>
+ <data name="MainView_Duration" xml:space="preserve">
+ <value>Dauer:</value>
+ </data>
+ <data name="MainView_File" xml:space="preserve">
+ <value>Speichern unter:</value>
+ </data>
+ <data name="MainView_FiltersTab" xml:space="preserve">
+ <value>Filter</value>
+ </data>
+ <data name="MainView_Format" xml:space="preserve">
+ <value>Format:</value>
+ </data>
+ <data name="MainView_Help" xml:space="preserve">
+ <value>Hilfe</value>
+ </data>
+ <data name="MainView_iPod5G" xml:space="preserve">
+ <value>iPod 5G-Unterstützung</value>
+ </data>
+ <data name="MainView_MetaDataTab" xml:space="preserve">
+ <value>Metadaten</value>
+ </data>
+ <data name="MainView_ModifiedPreset" xml:space="preserve">
+ <value>(Modifiziert)</value>
+ </data>
+ <data name="MainView_Muxing" xml:space="preserve">
+ <value>Multiplexen: Dies kann etwas dauern...</value>
+ </data>
+ <data name="MainView_Options" xml:space="preserve">
+ <value>Einstellungen</value>
+ </data>
+ <data name="MainView_OutputSettings" xml:space="preserve">
+ <value>Ausgabeeinstellungen</value>
+ </data>
+ <data name="MainView_Pause" xml:space="preserve">
+ <value>Pause</value>
+ </data>
+ <data name="MainView_PictureTab" xml:space="preserve">
+ <value>Bildgröße</value>
+ </data>
+ <data name="MainView_PresetManage" xml:space="preserve">
+ <value>Voreinstellung umbenennen</value>
+ </data>
+ <data name="MainView_PresetOptionsContextMenu" xml:space="preserve">
+ <value>Voreinstellung-Kontextmenü</value>
+ </data>
+ <data name="MainView_PresetRemove" xml:space="preserve">
+ <value>Voreinstellung löschen</value>
+ </data>
+ <data name="MainView_Presets" xml:space="preserve">
+ <value>Voreinstellungen</value>
+ </data>
+ <data name="MainView_Preview" xml:space="preserve">
+ <value>Vorschau</value>
+ </data>
+ <data name="MainView_ProgressStatusWithTask" xml:space="preserve">
+ <value>Enkodierung: {0}, {1:00.00}%, verbleibende Zeit: {2}, {3}</value>
+ </data>
+ <data name="MainView_Range" xml:space="preserve">
+ <value>Bereich:</value>
+ </data>
+ <data name="MainView_Reload" xml:space="preserve">
+ <value>Neu laden</value>
+ </data>
+ <data name="MainView_Remove" xml:space="preserve">
+ <value>Entfernen</value>
+ </data>
+ <data name="MainView_ResetBuiltInPresets" xml:space="preserve">
+ <value>Installierte Voreinstellungen zurücksetzen</value>
+ </data>
+ <data name="MainView_SaveNewPreset" xml:space="preserve">
+ <value>Neue Voreinstellung speichern</value>
+ </data>
+ <data name="MainView_Searching" xml:space="preserve">
+ <value>Nach der Startzeit suchen</value>
+ </data>
+ <data name="MainView_SelectedPreset" xml:space="preserve">
+ <value>Ausgewählte Voreinstellung:</value>
+ </data>
+ <data name="MainView_SetDefault" xml:space="preserve">
+ <value>Standard definieren</value>
+ </data>
+ <data name="MainView_ShowPreview" xml:space="preserve">
+ <value>Vorschau</value>
+ </data>
+ <data name="MainView_ShowQueue" xml:space="preserve">
+ <value>Warteschlange</value>
+ </data>
+ <data name="MainView_Source" xml:space="preserve">
+ <value>Quelle:</value>
+ </data>
+ <data name="MainView_SourceOpen" xml:space="preserve">
+ <value>Quelle öffnen</value>
+ </data>
+ <data name="MainView_StartEncode" xml:space="preserve">
+ <value>Enkodierung starten</value>
+ </data>
+ <data name="MainView_StartQueue" xml:space="preserve">
+ <value>Warteschlange starten</value>
+ </data>
+ <data name="MainView_Stop" xml:space="preserve">
+ <value>Stop</value>
+ </data>
+ <data name="MainView_StopEncode" xml:space="preserve">
+ <value>Enkodierung anhalten</value>
+ </data>
+ <data name="MainView_StopEncodeConfirm" xml:space="preserve">
+ <value>Soll das Enkodieren wirklich abgebrochen werden?</value>
+ </data>
+ <data name="MainView_SubtitleBeforeScanError" xml:space="preserve">
+ <value>Bitte vor dem Import einer Untertiteldatei zuerst eine Quelle zum enkodieren wählen.</value>
+ </data>
+ <data name="MainView_SubtitlesTab" xml:space="preserve">
+ <value>Untertitel</value>
+ </data>
+ <data name="MainView_SubtitleTracksCount" xml:space="preserve">
+ <value>Untertitelspuren</value>
+ </data>
+ <data name="MainView_SummaryTab" xml:space="preserve">
+ <value>Zusammenfassung</value>
+ </data>
+ <data name="MainView_through" xml:space="preserve">
+ <value>-</value>
+ </data>
+ <data name="MainView_Title" xml:space="preserve">
+ <value>Titel:</value>
+ </data>
+ <data name="MainView_Tools" xml:space="preserve">
+ <value>Extras</value>
+ </data>
+ <data name="MainView_UpdateSelectedPreset" xml:space="preserve">
+ <value>Ausgewählte Voreinstellung aktualisieren</value>
+ </data>
+ <data name="MainView_VideoTab" xml:space="preserve">
+ <value>Video</value>
+ </data>
+ <data name="MainView_WebOptimized" xml:space="preserve">
+ <value>Web-optimiert</value>
+ </data>
+ <data name="ManagePresetView_ManagePreset" xml:space="preserve">
+ <value>Voreinstellungen verwalten</value>
+ </data>
+ <data name="MetaDataView_Title" xml:space="preserve">
+ <value>Metadaten</value>
+ </data>
+ <data name="OptionsView_EnableNvencEncoding" xml:space="preserve">
+ <value>Nvidia NVENC-Enkoder aktivieren</value>
+ </data>
+ <data name="OptionsView_EnableQuicksyncEncoding" xml:space="preserve">
+ <value>Intel QuickSync-Enkoder aktivieren</value>
+ </data>
+ <data name="OptionsView_EnableVceEncoding" xml:space="preserve">
+ <value>AMD VCE-Enkoder aktivieren</value>
+ </data>
+ <data name="OptionsView_InvalidFileFormatChars" xml:space="preserve">
+ <value>Das eingegebene Dateiformat enthielt ungültige Zeichen. Diese wurden entfernt.</value>
+ </data>
+ <data name="OptionsView_PlaySoundWhenDone" xml:space="preserve">
+ <value>Einen Ton abspielen wenn alle Enkodierungen abgeschlossen sind</value>
+ </data>
+ <data name="OptionsView_PlaySoundWhenQueueDone" xml:space="preserve">
+ <value>Einen Ton abspielen wenn die Warteschlange abgeschlossen ist</value>
+ </data>
+ <data name="OptionsView_ShowPreviewOnSummaryTab" xml:space="preserve">
+ <value>Vorschau im Zusammenfassung-Tab anzeigen</value>
+ </data>
+ <data name="OptionsView_ShowStatusInTitleBar" xml:space="preserve">
+ <value>Den Enkodierungsstatus in der Titelleiste des Programms anzeigen</value>
+ </data>
+ <data name="Options_30DayLogClear" xml:space="preserve">
+ <value>Aktivitätsprotokolle älter als 30 Tage löschen</value>
+ </data>
+ <data name="Options_About" xml:space="preserve">
+ <value>Über HandBrake</value>
+ </data>
+ <data name="Options_Advanced" xml:space="preserve">
+ <value>Erweitert</value>
+ </data>
+ <data name="Options_AdvancedOptions" xml:space="preserve">
+ <value>Erweiterte Einstellungen</value>
+ </data>
+ <data name="Options_Arguments" xml:space="preserve">
+ <value>Argumente:</value>
+ </data>
+ <data name="Options_AutomaticFileNaming" xml:space="preserve">
+ <value>Automatische Dateibenennung</value>
+ </data>
+ <data name="Options_AutoNameOutput" xml:space="preserve">
+ <value>Ausgabedateien automatisch benennen</value>
+ </data>
+ <data name="Options_CheckForUpdates" xml:space="preserve">
+ <value>Auf Updates prüfen</value>
+ </data>
+ <data name="Options_ClearCompleted" xml:space="preserve">
+ <value>Nach einer erfolgreichen Enkodierung immer alle erledigten Aufgaben aus der Warteschlange löschen</value>
+ </data>
+ <data name="Options_ClearLogs" xml:space="preserve">
+ <value>Verlauf der Aktivitätsprotokolle löschen</value>
+ </data>
+ <data name="Options_CopyLogToDir" xml:space="preserve">
+ <value>Eine Kopie des Enkodierungsprotokolls an einen anderen Speicherort ablegen:</value>
+ </data>
+ <data name="Options_CopyLogToEncDir" xml:space="preserve">
+ <value>Eine Kopie des Enkodierungsprotokolls am selben Speicherort wie das enkodierte Video ablegen</value>
+ </data>
+ <data name="Options_CurVersion" xml:space="preserve">
+ <value>Momentane Version</value>
+ </data>
+ <data name="Options_Decoding" xml:space="preserve">
+ <value>Dekodieren</value>
+ </data>
+ <data name="Options_DefaultPath" xml:space="preserve">
+ <value>Standardpfad:</value>
+ </data>
+ <data name="Options_DownloadUpdates" xml:space="preserve">
+ <value>Update laden</value>
+ </data>
+ <data name="Options_DVD" xml:space="preserve">
+ <value>DVD-Lesen</value>
+ </data>
+ <data name="Options_DvdRead" xml:space="preserve">
+ <value>LibDVDNav deaktivieren (und statt dessen libdvdread verwenden).</value>
+ </data>
+ <data name="Options_Encoding" xml:space="preserve">
+ <value>Enkodieren</value>
+ </data>
+ <data name="Options_Experimental" xml:space="preserve">
+ <value>Experimentelle Funktionen</value>
+ </data>
+ <data name="Options_ExperimentalFeatures" xml:space="preserve">
+ <value>Experimentelle Funktionen sind Ideen an denen wir zur Zeit arbeiten. Dies kann es in eine finale Version schaffen, muss es aber nicht und es kann sein, dass es nicht korrekt funktioniert!</value>
+ </data>
+ <data name="Options_Format" xml:space="preserve">
+ <value>Dateiformat:</value>
+ </data>
+ <data name="Options_General" xml:space="preserve">
+ <value>Allgemein</value>
+ </data>
+ <data name="Options_Logging" xml:space="preserve">
+ <value>Protokollieren</value>
+ </data>
+ <data name="Options_LogLevel" xml:space="preserve">
+ <value>Ausführlichkeitsniveau des Aktivitätsprotokolls:</value>
+ </data>
+ <data name="Options_LogPath" xml:space="preserve">
+ <value>Aktivitätsprotokollpfad:</value>
+ </data>
+ <data name="Options_LowDiskspaceSize" xml:space="preserve">
+ <value>Warnwert für niedrigen Speicherplatz (GB):</value>
+ </data>
+ <data name="Options_MinimiseTray" xml:space="preserve">
+ <value>Den Infobereich (System Tray) minimieren (erfordert einen Neustart)</value>
+ </data>
+ <data name="Options_MinTitleScanLength" xml:space="preserve">
+ <value>Minimale Länge der Titel zum überprüfen (Sekunden):</value>
+ </data>
+ <data name="Options_MP4FileExtension" xml:space="preserve">
+ <value>MP4-Dateiendung:</value>
+ </data>
+ <data name="Options_OnStartup" xml:space="preserve">
+ <value>Beim Starten</value>
+ </data>
+ <data name="Options_Output" xml:space="preserve">
+ <value>Ausgabedateien</value>
+ </data>
+ <data name="Options_Path" xml:space="preserve">
+ <value>Pfad:</value>
+ </data>
+ <data name="Options_PathToVLC" xml:space="preserve">
+ <value>Pfad zum VLC-Player</value>
+ </data>
+ <data name="Options_PauseQueueOnLowDiskSpace" xml:space="preserve">
+ <value>Die Warteschlange anhalten, wenn vor dem Start einer Aufgabe der Speicherplatz knapp ist.</value>
+ </data>
+ <data name="Options_PreventSleep" xml:space="preserve">
+ <value>Das System daran hindern während der Enkodierung in den Ruhezustand zu fahren</value>
+ </data>
+ <data name="Options_PreviewScanCount" xml:space="preserve">
+ <value>Anzahl an Vorschaubildern für den Scan:</value>
+ </data>
+ <data name="Options_PriorityLevel" xml:space="preserve">
+ <value>Prioritätslevel:</value>
+ </data>
+ <data name="Options_QsvDecode" xml:space="preserve">
+ <value>QuickSync-Dekodierung aktivieren</value>
+ </data>
+ <data name="Options_QsvDecodeForNonFullPath" xml:space="preserve">
+ <value>QSV-Dekodierung auch verwenden, wenn kein QuickSync-Enkoder verwendet wird (z.B. x265)</value>
+ </data>
+ <data name="Options_RemovePunctuation" xml:space="preserve">
+ <value>Punktationen entfernen</value>
+ </data>
+ <data name="Options_ReplaceUnderscores" xml:space="preserve">
+ <value>Unterstriche durch Leerzeichen ersetzen</value>
+ </data>
+ <data name="Options_ResetDoNothing" xml:space="preserve">
+ <value>'Nichts tun', wenn das Programm startet, zurücksetzen.</value>
+ </data>
+ <data name="Options_Scaler" xml:space="preserve">
+ <value>Skalierer wählen:</value>
+ </data>
+ <data name="Options_Scaling" xml:space="preserve">
+ <value>Skalierung</value>
+ </data>
+ <data name="Options_SendFileTo" xml:space="preserve">
+ <value>Datei senden an:</value>
+ </data>
+ <data name="Options_ShowExperimentalQueueDesign" xml:space="preserve">
+ <value>Die neue experimentelle Darstellung der Warteschlange verwenden.</value>
+ </data>
+ <data name="Options_ShowQueueInline" xml:space="preserve">
+ <value>Warteschlange wie die Haupt-UI anzeigen.</value>
+ </data>
+ <data name="Options_TitleCase" xml:space="preserve">
+ <value>Großbuchstaben korrigieren</value>
+ </data>
+ <data name="Options_Updates" xml:space="preserve">
+ <value>Updates</value>
+ </data>
+ <data name="Options_UserInterface" xml:space="preserve">
+ <value>Benutzeroberfläche</value>
+ </data>
+ <data name="Options_Version" xml:space="preserve">
+ <value>Version:</value>
+ </data>
+ <data name="Options_Video" xml:space="preserve">
+ <value>Video</value>
+ </data>
+ <data name="Options_VideoPreviewPath" xml:space="preserve">
+ <value>Dieser Pfad wird nur für die Videovorschaufunktion verwendet.</value>
+ </data>
+ <data name="Options_ViewLogDirectory" xml:space="preserve">
+ <value>Verzeichnis des Aktivitätsprotokolls zeigen</value>
+ </data>
+ <data name="Options_WhenDone" xml:space="preserve">
+ <value>Wenn fertig</value>
+ </data>
+ <data name="Options_x264" xml:space="preserve">
+ <value>x264/5-Einstellungen</value>
+ </data>
+ <data name="Options_x264Granularity" xml:space="preserve">
+ <value>Granularitätsaufteilung bei konstanter Qualität:</value>
+ </data>
+ <data name="PictureSettingsView_Anamorphic" xml:space="preserve">
+ <value>Anamorphisch:</value>
+ </data>
+ <data name="PictureSettingsView_Automatic" xml:space="preserve">
+ <value>Automatisch</value>
+ </data>
+ <data name="PictureSettingsView_Bottom" xml:space="preserve">
+ <value>Unten</value>
+ </data>
+ <data name="PictureSettingsView_Cropping" xml:space="preserve">
+ <value>Beschneiden</value>
+ </data>
+ <data name="PictureSettingsView_Custom" xml:space="preserve">
+ <value>Eigene</value>
+ </data>
+ <data name="PictureSettingsView_DisplayWitdh" xml:space="preserve">
+ <value>Anzeigebreite</value>
+ </data>
+ <data name="PictureSettingsView_Height" xml:space="preserve">
+ <value>Höhe:</value>
+ </data>
+ <data name="PictureSettingsView_KeepAR" xml:space="preserve">
+ <value>Seitenverhältnis beibehalten</value>
+ </data>
+ <data name="PictureSettingsView_Left" xml:space="preserve">
+ <value>Links</value>
+ </data>
+ <data name="PictureSettingsView_Modulus" xml:space="preserve">
+ <value>Modulus:</value>
+ </data>
+ <data name="PictureSettingsView_Output" xml:space="preserve">
+ <value>Ausgabe</value>
+ </data>
+ <data name="PictureSettingsView_PAR" xml:space="preserve">
+ <value>PAR:</value>
+ </data>
+ <data name="PictureSettingsView_Right" xml:space="preserve">
+ <value>Rechts</value>
+ </data>
+ <data name="PictureSettingsView_Size" xml:space="preserve">
+ <value>Größe</value>
+ </data>
+ <data name="PictureSettingsView_Source" xml:space="preserve">
+ <value>Quelle:</value>
+ </data>
+ <data name="PictureSettingsView_Top" xml:space="preserve">
+ <value>Oben</value>
+ </data>
+ <data name="PictureSettingsView_Width" xml:space="preserve">
+ <value>Breite:</value>
+ </data>
+ <data name="Preset_AudioDefaults_SubText" xml:space="preserve">
+ <value>Das Auswahlverhalten der Tonspur für diese Voreinstellung ändern.
+Dies beeinflusst nicht die momentanen Einstellungen im Ton-Tab. </value>
+ </data>
+ <data name="Preset_AudioDefaults_Title" xml:space="preserve">
+ <value>Audiostandard</value>
+ </data>
+ <data name="Preset_Custom" xml:space="preserve">
+ <value>Eigene</value>
+ </data>
+ <data name="Preset_Export" xml:space="preserve">
+ <value>In Datei exportieren</value>
+ </data>
+ <data name="Preset_Import" xml:space="preserve">
+ <value>Aus Datei importieren</value>
+ </data>
+ <data name="Preset_Official" xml:space="preserve">
+ <value>Offiziell</value>
+ </data>
+ <data name="Preset_SubtitleDefaults_SubText" xml:space="preserve">
+ <value>Das Auswahlverhalten der Untertitelspur für diese Voreinstellung ändern.
+Dies beeinflusst nicht die momentanen Einstellungen im Untertitel-Tab. </value>
+ </data>
+ <data name="Preset_SubtitleDefaults_Title" xml:space="preserve">
+ <value>Untertitelstandard</value>
+ </data>
+ <data name="QueueSelectionView_ChooseTitles" xml:space="preserve">
+ <value>Titel wählen:</value>
+ </data>
+ <data name="QueueSelectionView_Title" xml:space="preserve">
+ <value>Zu Warteschlange hinzufügen</value>
+ </data>
+ <data name="QueueSelection_UsingPreset" xml:space="preserve">
+ <value>Die ausgewählten Titel werden mit der Voreinstellung "{0}" hinzugefügt.</value>
+ </data>
+ <data name="QueueView_Advanced" xml:space="preserve">
+ <value>Erweitert:</value>
+ </data>
+ <data name="QueueView_Audio" xml:space="preserve">
+ <value>Audio:</value>
+ </data>
+ <data name="QueueView_ClearAll" xml:space="preserve">
+ <value>Alles löschen</value>
+ </data>
+ <data name="QueueView_ClearCompleted" xml:space="preserve">
+ <value>Löschen abgeschlossen</value>
+ </data>
+ <data name="QueueView_ClearQueue" xml:space="preserve">
+ <value>Warteschlange löschen</value>
+ </data>
+ <data name="QueueView_ClearSelected" xml:space="preserve">
+ <value>Ausgewähltes löschen</value>
+ </data>
+ <data name="QueueView_Delete" xml:space="preserve">
+ <value>Löschen</value>
+ </data>
+ <data name="QueueView_Destination" xml:space="preserve">
+ <value>Ziel:</value>
+ </data>
+ <data name="QueueView_DoNothing" xml:space="preserve">
+ <value>Nichts tun</value>
+ </data>
+ <data name="QueueView_Duration" xml:space="preserve">
+ <value>Enkodierungszeit:</value>
+ </data>
+ <data name="QueueView_Edit" xml:space="preserve">
+ <value>Bearbeiten</value>
+ </data>
+ <data name="QueueView_EndTime" xml:space="preserve">
+ <value>Endzeit:</value>
+ </data>
+ <data name="QueueView_Export" xml:space="preserve">
+ <value>Warteschlange für das CLI exportieren</value>
+ </data>
+ <data name="QueueView_FileSize" xml:space="preserve">
+ <value>Dateigröße:</value>
+ </data>
+ <data name="QueueView_Hibernate" xml:space="preserve">
+ <value>Ruhezustand</value>
+ </data>
+ <data name="QueueView_LockSystem" xml:space="preserve">
+ <value>System sperren</value>
+ </data>
+ <data name="QueueView_LogNotAvailableYet" xml:space="preserve">
+ <value>Das Aktivitätsprotokoll wird verfügbar sein, sobald das Enkodieren abgeschlossen ist.</value>
+ </data>
+ <data name="QueueView_Logoff" xml:space="preserve">
+ <value>Ausloggen</value>
+ </data>
+ <data name="QueueView_OpenDestDir" xml:space="preserve">
+ <value>Zielpfad öffnen</value>
+ </data>
+ <data name="QueueView_OpenSourceDir" xml:space="preserve">
+ <value>Pfad der Quelle öffnen</value>
+ </data>
+ <data name="QueueView_Options" xml:space="preserve">
+ <value>Einstellungen</value>
+ </data>
+ <data name="QueueView_Pause" xml:space="preserve">
+ <value>Warteschlange anhalten</value>
+ </data>
+ <data name="QueueView_PausedDuration" xml:space="preserve">
+ <value>Pausendauer:</value>
+ </data>
+ <data name="QueueView_PictureSettings" xml:space="preserve">
+ <value>Bildeinstellungen:</value>
+ </data>
+ <data name="QueueView_QuitHandBrake" xml:space="preserve">
+ <value>HandBrake beenden</value>
+ </data>
+ <data name="QueueView_ResetAllJobs" xml:space="preserve">
+ <value>Alle Aufgaben wiederholen</value>
+ </data>
+ <data name="QueueView_ResetFailed" xml:space="preserve">
+ <value>Wiederholen fehlgeschlagen</value>
+ </data>
+ <data name="QueueView_ResetSelectedJobs" xml:space="preserve">
+ <value>Ausgewählte Aufgaben wiederholen</value>
+ </data>
+ <data name="QueueView_Retry" xml:space="preserve">
+ <value>Wiederholen</value>
+ </data>
+ <data name="QueueView_Shutdown" xml:space="preserve">
+ <value>Herunterfahren</value>
+ </data>
+ <data name="QueueView_Source" xml:space="preserve">
+ <value>Quelle:</value>
+ </data>
+ <data name="QueueView_Start" xml:space="preserve">
+ <value>Warteschlange starten</value>
+ </data>
+ <data name="QueueView_StartTime" xml:space="preserve">
+ <value>Startzeit:</value>
+ </data>
+ <data name="QueueView_Statistics" xml:space="preserve">
+ <value>Statistik</value>
+ </data>
+ <data name="QueueView_StatsNotAvailableYet" xml:space="preserve">
+ <value>Die Statistik ist verfügbar, sobald das Enkodieren abgeschlossen ist.</value>
+ </data>
+ <data name="QueueView_Subtitles" xml:space="preserve">
+ <value>Untertitel:</value>
+ </data>
+ <data name="QueueView_Summary" xml:space="preserve">
+ <value>Zusammenfassung</value>
+ </data>
+ <data name="QueueView_Suspend" xml:space="preserve">
+ <value>Aussetzen</value>
+ </data>
+ <data name="QueueView_Video" xml:space="preserve">
+ <value>Video:</value>
+ </data>
+ <data name="QueueView_WhenDone" xml:space="preserve">
+ <value>Wenn fertig:</value>
+ </data>
+ <data name="Shared_AddAllForSelected" xml:space="preserve">
+ <value>Alle zusätzlichen ausgewählten Sprachen hinzufügen</value>
+ </data>
+ <data name="Shared_AddAllRemaining" xml:space="preserve">
+ <value>Alle zusätzlichen Spuren hinzufügen</value>
+ </data>
+ <data name="Shared_AddNewTrack" xml:space="preserve">
+ <value>Neue Spur hinzufügen</value>
+ </data>
+ <data name="Shared_AddTrack" xml:space="preserve">
+ <value>Spur hinzufügen</value>
+ </data>
+ <data name="Shared_AvailableLanguages" xml:space="preserve">
+ <value>Verfügbare Sprachen:</value>
+ </data>
+ <data name="Shared_ChooseLanguages" xml:space="preserve">
+ <value>Sprachen auswählen:</value>
+ </data>
+ <data name="Shared_ChosenLangages" xml:space="preserve">
+ <value>Ausgewählte Sprache:</value>
+ </data>
+ <data name="Shared_ConfigureDefaultBehaviours" xml:space="preserve">
+ <value>Standardverhalten konfigurieren</value>
+ </data>
+ <data name="Shared_ReloadDefaults" xml:space="preserve">
+ <value>Standard neu laden</value>
+ </data>
+ <data name="SourceSelection_ChooseDisc" xml:space="preserve">
+ <value>Disk zum überprüfen wählen</value>
+ </data>
+ <data name="SourceSelection_ChooseFile" xml:space="preserve">
+ <value>Datei zum überprüfen wählen</value>
+ </data>
+ <data name="SourceSelection_ChooseFolder" xml:space="preserve">
+ <value>Ordner zum überprüfen wählen</value>
+ </data>
+ <data name="SourceSelection_ChooseSpecificTitle" xml:space="preserve">
+ <value>Optional einen spezifischen Titel wählen:</value>
+ </data>
+ <data name="SourceSelection_ChooseVideo" xml:space="preserve">
+ <value>Dann das Video / die Videos zum enkodieren auswählen:</value>
+ </data>
+ <data name="SourceSelection_File" xml:space="preserve">
+ <value>Datei</value>
+ </data>
+ <data name="SourceSelection_FolderBatchScan" xml:space="preserve">
+ <value>Ordner (Stapelverarbeitung) </value>
+ </data>
+ <data name="SourceSelection_OpenDVDBluray" xml:space="preserve">
+ <value>Dieses DVD- oder Bluray-Laufwerk öffnen</value>
+ </data>
+ <data name="SourceSelection_OpenFolderWIth" xml:space="preserve">
+ <value>Einen Ordner mit einer oder mehreren Dateien öffnen.</value>
+ </data>
+ <data name="SourceSelection_QueueArchiveRecovery" xml:space="preserve">
+ <value>Wiederherstellung der Warteschlange</value>
+ </data>
+ <data name="SourceSelection_QueueArchiveRecoveryDesc" xml:space="preserve">
+ <value>Eine frühere archivierte Warteschlange ist verfügbar.</value>
+ </data>
+ <data name="SourceSelection_SingleVideoFile" xml:space="preserve">
+ <value>Eine einzelne Videodatei öffnen</value>
+ </data>
+ <data name="SourceSelection_SourceSelection" xml:space="preserve">
+ <value>Quellenauswahl</value>
+ </data>
+ <data name="StaticPreviewView_Duration" xml:space="preserve">
+ <value>Dauer:</value>
+ </data>
+ <data name="StaticPreviewView_LivePreview" xml:space="preserve">
+ <value>Livevorschau</value>
+ </data>
+ <data name="StaticPreviewView_SelectPreviewImage" xml:space="preserve">
+ <value>Ein Vorschaubild wählen</value>
+ </data>
+ <data name="StaticPreviewView_UseSystemDefault" xml:space="preserve">
+ <value>Videoabspieler des Systems verwenden</value>
+ </data>
+ <data name="SubtitlesView_AddCC" xml:space="preserve">
+ <value>Wenn verfügbar CC-Untertitel hinzufügen</value>
+ </data>
+ <data name="SubtitlesView_AddForeignAudioSearch" xml:space="preserve">
+ <value>Fremdsprachenton-Scan hinzufügen</value>
+ </data>
+ <data name="SubtitlesView_BurnInBehaviour" xml:space="preserve">
+ <value>Einbrennverhalten:</value>
+ </data>
+ <data name="SubtitlesView_ImportSRT" xml:space="preserve">
+ <value>SRT importieren</value>
+ </data>
+ <data name="SubtitlesView_TrackSelectionBehaviour" xml:space="preserve">
+ <value>Spurauswahlverhalten:</value>
+ </data>
+ <data name="SubtitleView_AddAllCC" xml:space="preserve">
+ <value>Alle restlichen CC-Untertitel hinzufügen</value>
+ </data>
+ <data name="SubtitleView_SubtitleDefaultsDescription" xml:space="preserve">
+ <value>Konfigurieren, wie die Untertitelspuren automatisch ausgewählt und konfiguriert werden, wenn ein neuer Titel oder eine Videoquelle ausgewählt wird.</value>
+ </data>
+ <data name="SummaryView_AdditionalAudioTracks" xml:space="preserve">
+ <value>Zusätzliche Tonspuren</value>
+ </data>
+ <data name="SummaryView_AdditionalSubtitleTracks" xml:space="preserve">
+ <value>Zusätzliche Untertitelspuren</value>
+ </data>
+ <data name="SummaryView_Burned" xml:space="preserve">
+ <value>Eingebrannt</value>
+ </data>
+ <data name="SummaryView_Chapters" xml:space="preserve">
+ <value>Kapitelmarker</value>
+ </data>
+ <data name="SummaryView_Deblock" xml:space="preserve">
+ <value>Deblock</value>
+ </data>
+ <data name="SummaryView_Detelecine" xml:space="preserve">
+ <value>Detelecine</value>
+ </data>
+ <data name="SummaryView_display" xml:space="preserve">
+ <value>Anzeige</value>
+ </data>
+ <data name="SummaryView_Grayscale" xml:space="preserve">
+ <value>Graustufen</value>
+ </data>
+ <data name="SummaryView_NoAudioTracks" xml:space="preserve">
+ <value>Keine Tonspuren</value>
+ </data>
+ <data name="SummaryView_NoChapters" xml:space="preserve">
+ <value>Keine Kapitelmarker</value>
+ </data>
+ <data name="SummaryView_NoFilters" xml:space="preserve">
+ <value>Keine Filter</value>
+ </data>
+ <data name="SummaryView_NoSource" xml:space="preserve">
+ <value>Keine Quelle</value>
+ </data>
+ <data name="SummaryView_NoSubtitleTracks" xml:space="preserve">
+ <value>Keine Untertitelspuren</value>
+ </data>
+ <data name="SummaryView_NoTracks" xml:space="preserve">
+ <value>Keine Spuren</value>
+ </data>
+ <data name="SummaryView_PreviewInfo" xml:space="preserve">
+ <value>Vorschau {0} von {1}</value>
+ </data>
+ <data name="SummaryView_Rotation" xml:space="preserve">
+ <value>Drehung</value>
+ </data>
+ <data name="SummaryView_storage" xml:space="preserve">
+ <value>Original</value>
+ </data>
+ <data name="VideoView_2Pass" xml:space="preserve">
+ <value>Enkodieren in 2 Durchgängen</value>
+ </data>
+ <data name="VideoView_AverageBitrate" xml:space="preserve">
+ <value>Mittlere Bitrate (kbps):</value>
+ </data>
+ <data name="VideoView_Codec" xml:space="preserve">
+ <value>Videocodec:</value>
+ </data>
+ <data name="VideoView_ConstantFramerate" xml:space="preserve">
+ <value>Konstante Bildfrequenz</value>
+ </data>
+ <data name="VideoView_ConstantQuality" xml:space="preserve">
+ <value>Konstante Qualität:</value>
+ </data>
+ <data name="VideoView_EncoderLevel" xml:space="preserve">
+ <value>Enkoder-Level:</value>
+ </data>
+ <data name="VideoView_EncoderPreset" xml:space="preserve">
+ <value>Enkodervoreinstellung:</value>
+ </data>
+ <data name="VideoView_EncoderProfile" xml:space="preserve">
+ <value>Enkoderprofil:</value>
+ </data>
+ <data name="VideoView_EncodeTune" xml:space="preserve">
+ <value>Enkoderabstimmung:</value>
+ </data>
+ <data name="VideoView_ExtraOptions" xml:space="preserve">
+ <value>Zusätzliche Einstellungen:</value>
+ </data>
+ <data name="VideoView_FastDecode" xml:space="preserve">
+ <value>Schnelle Dekodierung</value>
+ </data>
+ <data name="VideoView_Framerate" xml:space="preserve">
+ <value>Bildfrequenz (BpS):</value>
+ </data>
+ <data name="VideoView_OptimiseVideo" xml:space="preserve">
+ <value>Optimiertes Video:</value>
+ </data>
+ <data name="VideoView_PeakFramerate" xml:space="preserve">
+ <value>Maximale Bildfrequenz</value>
+ </data>
+ <data name="VideoView_Quality" xml:space="preserve">
+ <value>Qualität</value>
+ </data>
+ <data name="VideoView_TurboFirstPass" xml:space="preserve">
+ <value>Ersten Durchgang beschleunigen</value>
+ </data>
+ <data name="VideoView_VariableFramerate" xml:space="preserve">
+ <value>Variable Bildfrequenz</value>
+ </data>
+ <data name="VideoView_Video" xml:space="preserve">
+ <value>Video</value>
+ </data>
+ <data name="Language_UseSystem" xml:space="preserve">
+ <value>Use System Language</value>
+ </data>
+</root> \ No newline at end of file
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx
index 86f76fdb5..e7519cff9 100644
--- a/win/CS/HandBrakeWPF/Properties/Resources.resx
+++ b/win/CS/HandBrakeWPF/Properties/Resources.resx
@@ -412,7 +412,7 @@ The previous user_presets.xml file was backed up.</value>
<value>You must first scan a source and setup your job before starting an encode. Click the 'Source' button on the toolbar to continue.</value>
</data>
<data name="Main_SelectPreset" xml:space="preserve">
- <value>Please select make sure you have selected one of your own presets. Please note that you cannot export built-in presets.</value>
+ <value>Please make sure you have selected one of your own presets. Please note that you cannot export built-in presets.</value>
</data>
<data name="Main_SelectPresetForUpdate" xml:space="preserve">
<value>Please select a preset to update.</value>
@@ -1894,4 +1894,10 @@ This will not affect your current settings in the Subtitle tab.</value>
<data name="VideoView_Video" xml:space="preserve">
<value>Video</value>
</data>
+ <data name="OptionsView_Language" xml:space="preserve">
+ <value>Language:</value>
+ </data>
+ <data name="Language_UseSystem" xml:space="preserve">
+ <value>Use System Language</value>
+ </data>
</root> \ No newline at end of file
diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs
index bcadcadb4..e4ac3c7d6 100644
--- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs
+++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs
@@ -101,7 +101,7 @@ namespace HandBrakeWPF.Services
// Treat String Arrays as StringCollections. TODO refactor upstream code to more traditional string arrays.
object settingValue = this.userSettings[name];
- if (settingValue.GetType() == typeof(JArray))
+ if (settingValue != null && settingValue.GetType() == typeof(JArray))
{
string[] stringArr = ((JArray)settingValue).ToObject<string[]>();
StringCollection stringCollection = new StringCollection();
diff --git a/win/CS/HandBrakeWPF/UserSettingConstants.cs b/win/CS/HandBrakeWPF/UserSettingConstants.cs
index c81f315a5..90ba6fd84 100644
--- a/win/CS/HandBrakeWPF/UserSettingConstants.cs
+++ b/win/CS/HandBrakeWPF/UserSettingConstants.cs
@@ -69,8 +69,8 @@ namespace HandBrakeWPF
public const string EnableVceEncoder = "EnableVceEncoder";
public const string EnableNvencEncoder = "EnableNvencEncoder";
public const string ShowExperimentalQueue = "ShowExperimentalQueue";
+ public const string UiLanguage = "UiLanguage";
#endregion
-
}
} \ No newline at end of file
diff --git a/win/CS/HandBrakeWPF/Utilities/InterfaceLanguageUtilities.cs b/win/CS/HandBrakeWPF/Utilities/InterfaceLanguageUtilities.cs
new file mode 100644
index 000000000..7be15a7a2
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Utilities/InterfaceLanguageUtilities.cs
@@ -0,0 +1,35 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="InterfaceLanguageUtilities.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Helper methods for UI Language Support.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Utilities
+{
+ using System.Collections.Generic;
+ using System.Linq;
+
+ using HandBrakeWPF.Model;
+ using HandBrakeWPF.Properties;
+
+ public class InterfaceLanguageUtilities
+ {
+ public static List<InterfaceLanguage> GetUserInterfaceLangauges()
+ {
+ return new List<InterfaceLanguage>
+ {
+ new InterfaceLanguage(null, Resources.Language_UseSystem),
+ new InterfaceLanguage("en", "English"),
+ new InterfaceLanguage("de", "German"),
+ };
+ }
+
+ public static InterfaceLanguage FindInterfaceLanguage(string culture)
+ {
+ return GetUserInterfaceLangauges().FirstOrDefault(f => f.Culture == culture);
+ }
+ }
+}
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index f5685d311..57afb818e 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -102,6 +102,8 @@ namespace HandBrakeWPF.ViewModels
private bool enableNvencEncoder;
private bool showExperimentalQueue;
+ private InterfaceLanguage selectedLanguage;
+
#endregion
#region Constructors and Destructors
@@ -182,6 +184,25 @@ namespace HandBrakeWPF.ViewModels
#region General
+ public BindingList<InterfaceLanguage> InterfaceLanguages
+ {
+ get
+ {
+ return new BindingList<InterfaceLanguage>(InterfaceLanguageUtilities.GetUserInterfaceLangauges());
+ }
+ }
+
+ public InterfaceLanguage SelectedLanguage
+ {
+ get => this.selectedLanguage;
+ set
+ {
+ if (Equals(value, this.selectedLanguage)) return;
+ this.selectedLanguage = value;
+ this.NotifyOfPropertyChange(() => this.SelectedLanguage);
+ }
+ }
+
/// <summary>
/// Gets or sets a value indicating whether CheckForUpdates.
/// </summary>
@@ -1314,6 +1335,8 @@ namespace HandBrakeWPF.ViewModels
// #############################
// General
// #############################
+ string culture = this.userSettingService.GetUserSetting<string>(UserSettingConstants.UiLanguage);
+ this.SelectedLanguage = InterfaceLanguageUtilities.FindInterfaceLanguage(culture);
this.CheckForUpdates = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.UpdateStatus);
@@ -1521,6 +1544,7 @@ namespace HandBrakeWPF.ViewModels
this.userSettingService.SetUserSetting(UserSettingConstants.PlaySoundWhenDone, this.PlaySoundWhenDone);
this.userSettingService.SetUserSetting(UserSettingConstants.PlaySoundWhenQueueDone, this.PlaySoundWhenQueueDone);
this.userSettingService.SetUserSetting(UserSettingConstants.WhenDoneAudioFile, this.WhenDoneAudioFileFullPath);
+ this.userSettingService.SetUserSetting(UserSettingConstants.UiLanguage, this.SelectedLanguage?.Culture);
/* Experiments */
this.userSettingService.SetUserSetting(UserSettingConstants.ShowQueueInline, this.ShowQueueInline);
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml
index e32227c20..2c7f195fa 100644
--- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml
+++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml
@@ -93,7 +93,7 @@
<TextBlock Text="{x:Static Properties:Resources.Options_General}" FontSize="20" FontFamily="Segoe UI Light" />
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_OnStartup}" FontSize="14" Margin="0,0,0,10"/>
@@ -103,7 +103,24 @@
</StackPanel>
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,0,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,0,0,10">
+
+ <TextBlock Text="{x:Static Properties:Resources.Options_UserInterface}" FontSize="14" Margin="0,0,0,10"/>
+
+ <StackPanel Orientation="Horizontal" Margin="20,0,0,5">
+ <TextBlock Text="{x:Static Properties:Resources.OptionsView_Language}" Margin="0,0,0,0" VerticalAlignment="Center"/>
+ <ComboBox DisplayMemberPath="Name" ItemsSource="{Binding InterfaceLanguages}" SelectedItem="{Binding SelectedLanguage}" Margin="5,0,0,0" HorizontalAlignment="Left" Width="150" />
+ </StackPanel>
+
+ <StackPanel Orientation="Vertical" Margin="20,0,0,0">
+ <CheckBox Content="{x:Static Properties:Resources.Options_MinimiseTray}" IsChecked="{Binding MinimiseToTray}" />
+ <CheckBox Content="{x:Static Properties:Resources.Options_ClearCompleted}" IsChecked="{Binding ClearQueueOnEncodeCompleted}" />
+ <CheckBox Content="{x:Static Properties:Resources.OptionsView_ShowStatusInTitleBar}" IsChecked="{Binding ShowStatusInTitleBar}" />
+ <CheckBox Content="{x:Static Properties:Resources.OptionsView_ShowPreviewOnSummaryTab}" IsChecked="{Binding ShowPreviewOnSummaryTab}" />
+ </StackPanel>
+ </StackPanel>
+
+ <StackPanel Orientation="Vertical" Margin="0,0,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_WhenDone}" FontSize="14" Margin="0,0,0,10" />
<StackPanel Orientation="Vertical" Margin="20,0,0,0">
@@ -148,7 +165,7 @@
</StackPanel>
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,0,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,0,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_PathToVLC}" FontSize="14" Margin="0,0,0,10"/>
@@ -164,20 +181,7 @@
</StackPanel>
</StackPanel>
-
- <StackPanel Orientation="Vertical" Margin="0,0,0,20">
-
- <TextBlock Text="{x:Static Properties:Resources.Options_UserInterface}" FontSize="14" Margin="0,0,0,10"/>
-
- <StackPanel Orientation="Vertical" Margin="20,0,0,0">
- <CheckBox Content="{x:Static Properties:Resources.Options_MinimiseTray}" IsChecked="{Binding MinimiseToTray}" />
- <CheckBox Content="{x:Static Properties:Resources.Options_ClearCompleted}" IsChecked="{Binding ClearQueueOnEncodeCompleted}" />
- <CheckBox Content="{x:Static Properties:Resources.OptionsView_ShowStatusInTitleBar}" IsChecked="{Binding ShowStatusInTitleBar}" />
- <CheckBox Content="{x:Static Properties:Resources.OptionsView_ShowPreviewOnSummaryTab}" IsChecked="{Binding ShowPreviewOnSummaryTab}" />
- </StackPanel>
- </StackPanel>
-
- <StackPanel Orientation="Vertical" Margin="0,0,0,20" Visibility="{Binding IsNightly, Converter={StaticResource boolToVisConverter}}">
+ <StackPanel Orientation="Vertical" Margin="0,0,0,10" Visibility="{Binding IsNightly, Converter={StaticResource boolToVisConverter}}">
<TextBlock Text="{x:Static Properties:Resources.Options_Experimental}" FontSize="14" Margin="0,0,0,10"/>
@@ -195,7 +199,7 @@
<TextBlock Text="{x:Static Properties:Resources.Options_Output}" FontSize="20" FontFamily="Segoe UI Light" />
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_AutomaticFileNaming}" FontSize="14" Margin="0,0,0,10"/>
@@ -282,7 +286,7 @@
<TextBlock Text="{x:Static Properties:Resources.Options_Advanced}" FontSize="20" FontFamily="Segoe UI Light" />
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_AdvancedOptions}" FontSize="14" Margin="0,0,0,10"/>
@@ -310,7 +314,7 @@
</StackPanel>
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_x264}" FontSize="14" Margin="0,0,0,10"/>
<StackPanel Orientation="Horizontal" Margin="20,0,0,0">
<TextBlock Text="{x:Static Properties:Resources.Options_x264Granularity}" VerticalAlignment="Center" Width="250" />
@@ -318,7 +322,7 @@
</StackPanel>
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_DVD}" FontSize="14" Margin="0,0,0,10"/>
@@ -328,7 +332,7 @@
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,10,0,20">
+ <StackPanel Orientation="Vertical" Margin="0,10,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_Logging}" FontSize="14" Margin="0,0,0,10"/>