Skip to content

Commit

Permalink
Merge pull request #1516 from mvegaca/dev
Browse files Browse the repository at this point in the history
Fix status message
  • Loading branch information
ralarcon authored Nov 30, 2017
2 parents d27bb58 + f6b806c commit 32d8a00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/src/UI/Extensions/SyncStatusExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ private static string GetResourceString(this SyncStatus status)
return StringRes.StatusPrepared;
case SyncStatus.NewVersionAvailable:
return StringRes.StatusNewVersionAvailable;
case SyncStatus.OverVersion:
return StringRes.StatusOverVersionContent;
case SyncStatus.OverVersionNoContent:
return StringRes.StatusOverVersionNoContent;
default:
return string.Empty;
}
Expand Down

0 comments on commit 32d8a00

Please sign in to comment.