mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
chore: fix spelling
* a * acceleration * addition * altogether * api clients * artist * associated * bandwidth * cannot * capabilities * case-insensitive * case-sensitive * configuration * delimiter * dependent * diacritics * directors * enable * explicitly * filters * finish * have * hierarchy * implicit * include * information * into * its * keepalive * localization * macos * manual * matching * metadata * nonexistent * options * overridden * parsed * parser * playback * preferring * processes * processing * provider * ratings * retrieval * running * segments * separate * should * station * subdirectories * superseded * supported * system * than * the * throws * transpose * valid * was link: forum or chat rooms Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -83,9 +83,9 @@ public class ServerConfiguration : BaseApplicationConfiguration
|
||||
public bool QuickConnectAvailable { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [enable case sensitive item ids].
|
||||
/// Gets or sets a value indicating whether [enable case-sensitive item ids].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable case sensitive item ids]; otherwise, <c>false</c>.</value>
|
||||
/// <value><c>true</c> if [enable case-sensitive item ids]; otherwise, <c>false</c>.</value>
|
||||
public bool EnableCaseSensitiveItemIds { get; set; } = true;
|
||||
|
||||
public bool DisableLiveTvChannelUserDataName { get; set; } = true;
|
||||
@@ -249,7 +249,7 @@ public class ServerConfiguration : BaseApplicationConfiguration
|
||||
public bool AllowClientLogUpload { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the dummy chapter duration in seconds, use 0 (zero) or less to disable generation alltogether.
|
||||
/// Gets or sets the dummy chapter duration in seconds, use 0 (zero) or less to disable generation altogether.
|
||||
/// </summary>
|
||||
/// <value>The dummy chapters duration.</value>
|
||||
public int DummyChapterDuration { get; set; }
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace MediaBrowser.Model.Dlna
|
||||
/// <param name="videoFramerate">The framerate.</param>
|
||||
/// <param name="packetLength">The packet length.</param>
|
||||
/// <param name="timestamp">The <see cref="TransportStreamTimestamp"/>.</param>
|
||||
/// <param name="isAnamorphic">A value indicating whether tthe video is anamorphic.</param>
|
||||
/// <param name="isInterlaced">A value indicating whether tthe video is interlaced.</param>
|
||||
/// <param name="isAnamorphic">A value indicating whether the video is anamorphic.</param>
|
||||
/// <param name="isInterlaced">A value indicating whether the video is interlaced.</param>
|
||||
/// <param name="refFrames">The reference frames.</param>
|
||||
/// <param name="numVideoStreams">The number of video streams.</param>
|
||||
/// <param name="numAudioStreams">The number of audio streams.</param>
|
||||
|
||||
@@ -59,7 +59,7 @@ public class DirectPlayProfile
|
||||
/// <returns>True if supported.</returns>
|
||||
public bool SupportsAudioCodec(string? codec)
|
||||
{
|
||||
// Video profiles can have audio codec restrictions too, therefore incude Video as valid type.
|
||||
// Video profiles can have audio codec restrictions too, therefore include Video as valid type.
|
||||
return (Type == DlnaProfileType.Audio || Type == DlnaProfileType.Video) && ContainerHelper.ContainsContainer(AudioCodec, codec);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace MediaBrowser.Model.Entities;
|
||||
public enum HardwareAccelerationType
|
||||
{
|
||||
/// <summary>
|
||||
/// Software accelleration.
|
||||
/// Software acceleration.
|
||||
/// </summary>
|
||||
none = 0,
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace MediaBrowser.Model.Entities
|
||||
Tvdb = 4,
|
||||
|
||||
/// <summary>
|
||||
/// The tvcom providerd.
|
||||
/// The tvcom provider.
|
||||
/// </summary>
|
||||
Tvcom = 5,
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Entities;
|
||||
public static class ProviderIdsExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Case insensitive dictionary of <see cref="MetadataProvider"/> string representation.
|
||||
/// Case-insensitive dictionary of <see cref="MetadataProvider"/> string representation.
|
||||
/// </summary>
|
||||
private static readonly Dictionary<string, string> _metadataProviderEnumDictionary =
|
||||
Enum.GetValues<MetadataProvider>()
|
||||
@@ -107,7 +107,7 @@ public static class ProviderIdsExtensions
|
||||
/// <param name="instance">The instance.</param>
|
||||
/// <param name="name">The name, this should not contain a '=' character.</param>
|
||||
/// <param name="value">The value.</param>
|
||||
/// <remarks>Due to how deserialization from the database works the name can not contain '='.</remarks>
|
||||
/// <remarks>Due to how deserialization from the database works the name cannot contain '='.</remarks>
|
||||
/// <returns><c>true</c> if the provider id got set successfully; otherwise, <c>false</c>.</returns>
|
||||
public static bool TrySetProviderId(this IHasProviderIds instance, string? name, string? value)
|
||||
{
|
||||
@@ -153,7 +153,7 @@ public static class ProviderIdsExtensions
|
||||
/// <param name="instance">The instance.</param>
|
||||
/// <param name="name">The name, this should not contain a '=' character.</param>
|
||||
/// <param name="value">The value.</param>
|
||||
/// <remarks>Due to how deserialization from the database works the name can not contain '='.</remarks>
|
||||
/// <remarks>Due to how deserialization from the database works the name cannot contain '='.</remarks>
|
||||
public static void SetProviderId(this IHasProviderIds instance, string name, string value)
|
||||
{
|
||||
ArgumentNullException.ThrowIfNull(instance);
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace MediaBrowser.Model.Globalization
|
||||
/// <summary>
|
||||
/// Gets the localization options.
|
||||
/// </summary>
|
||||
/// <returns><see cref="IEnumerable{LocalizatonOption}" />.</returns>
|
||||
/// <returns><see cref="IEnumerable{LocalizationOption}" />.</returns>
|
||||
IEnumerable<LocalizationOption> GetLocalizationOptions();
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -145,7 +145,7 @@ namespace MediaBrowser.Model.IO
|
||||
/// Gets the directories.
|
||||
/// </summary>
|
||||
/// <param name="path">The path.</param>
|
||||
/// <param name="recursive">If set to <c>true</c> also searches in subdirectiories.</param>
|
||||
/// <param name="recursive">If set to <c>true</c> also searches in subdirectories.</param>
|
||||
/// <returns>All found directories.</returns>
|
||||
IEnumerable<FileSystemMetadata> GetDirectories(string path, bool recursive = false);
|
||||
|
||||
@@ -153,7 +153,7 @@ namespace MediaBrowser.Model.IO
|
||||
/// Gets the files.
|
||||
/// </summary>
|
||||
/// <param name="path">The path in which to search.</param>
|
||||
/// <param name="recursive">If set to <c>true</c> also searches in subdirectiories.</param>
|
||||
/// <param name="recursive">If set to <c>true</c> also searches in subdirectories.</param>
|
||||
/// <returns>All found files.</returns>
|
||||
IEnumerable<FileSystemMetadata> GetFiles(string path, bool recursive = false);
|
||||
|
||||
|
||||
@@ -34,7 +34,12 @@ namespace MediaBrowser.Model.Plugins
|
||||
Malfunctioned = -3,
|
||||
|
||||
/// <summary>
|
||||
/// This plugin has been superceded by another version.
|
||||
/// This plugin has been superseded by another version.
|
||||
/// </summary>
|
||||
Superseded = -4,
|
||||
|
||||
/// <summary>
|
||||
/// [DEPRECATED] See Superseded.
|
||||
/// </summary>
|
||||
Superceded = -4,
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ using MediaBrowser.Model.Entities;
|
||||
namespace MediaBrowser.Model.Session;
|
||||
|
||||
/// <summary>
|
||||
/// Class holding information on a runnning transcode.
|
||||
/// Class holding information on a running transcode.
|
||||
/// </summary>
|
||||
public class TranscodingInfo
|
||||
{
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace MediaBrowser.Model.System
|
||||
/// Gets or sets a value indicating whether the startup wizard is completed.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Nullable for OpenAPI specification only to retain backwards compatibility in apiclients.
|
||||
/// Nullable for OpenAPI specification only to retain backwards compatibility in api clients.
|
||||
/// </remarks>
|
||||
/// <value>The startup completion status.</value>]
|
||||
public bool? StartupWizardCompleted { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user