mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
update translations
This commit is contained in:
parent
b87f759460
commit
1a5a75854b
50 changed files with 1276 additions and 212 deletions
|
@ -0,0 +1,8 @@
|
|||
using System.ComponentModel;
|
||||
|
||||
namespace MediaBrowser.Model.Extensions
|
||||
{
|
||||
public interface IHasPropertyChangedEvent : INotifyPropertyChanged
|
||||
{
|
||||
}
|
||||
}
|
|
@ -6,7 +6,16 @@ namespace MediaBrowser.Model.Extensions
|
|||
{
|
||||
public static class ListHelper
|
||||
{
|
||||
public static bool ContainsIgnoreCase(IEnumerable<string> list, string value)
|
||||
public static bool ContainsIgnoreCase(List<string> list, string value)
|
||||
{
|
||||
if (value == null)
|
||||
{
|
||||
throw new ArgumentNullException("value");
|
||||
}
|
||||
|
||||
return list.Contains(value, StringComparer.OrdinalIgnoreCase);
|
||||
}
|
||||
public static bool ContainsIgnoreCase(string[] list, string value)
|
||||
{
|
||||
if (value == null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue