// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Application Constants
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF
{
///
/// Application Constants
///
public class Constants
{
///
/// The appcast 64.
///
public const string Appcast64 = "https://handbrake.fr/appcast.x86_64.xml";
///
/// The appcast 32.
///
public const string Appcast32 = "https://handbrake.fr/appcast.i386.xml";
///
/// The appcast 32.
///
public const string AppcastUnstable32 = "https://handbrake.fr/appcast_unstable.i386.xml";
///
/// The appcast 32.
///
public const string AppcastUnstable64 = "https://handbrake.fr/appcast_unstable.x86_64.xml";
///
/// The any.
///
public const string Any = "(Any)";
///
/// The chapters.
///
public const string Chapters = "{chapters}";
///
/// The title.
///
public const string Title = "{title}";
///
/// The quality.
///
public const string Quality = "{quality}";
///
/// The quality.
///
public const string Date = "{date}";
///
/// The quality.
///
public const string Time = "{time}";
///
/// The bitrate.
///
public const string Bitrate = "{bitrate}";
}
}