update translations

This commit is contained in:
Luke Pulverenti
2015-02-05 16:14:08 -05:00
parent 7d415fc2fd
commit bde06629da
47 changed files with 2434 additions and 175 deletions

View File

@@ -1,4 +1,5 @@

using System.Collections.Generic;
namespace MediaBrowser.Controller.Sync
{
public interface ICloudSyncProvider
@@ -8,5 +9,11 @@ namespace MediaBrowser.Controller.Sync
/// </summary>
/// <value>The name.</value>
string Name { get; }
/// <summary>
/// Gets the synchronize targets.
/// </summary>
/// <returns>IEnumerable&lt;SyncTarget&gt;.</returns>
IEnumerable<SyncAccount> GetSyncAccounts();
}
}