diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:28:05 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-13 23:28:05 +0100 |
| commit | ae0732136fe72e5e3c26517e9e350178bf2e9b59 (patch) | |
| tree | cdfc9cd6ce97ceca0b2d8d3023d9815f80357dd5 /OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs | |
| parent | d7b7be395b76c7fcc49d3baffeb59d51a9b36378 (diff) | |
| parent | f8dd182e422db49d98cc090f4e205cc46517f610 (diff) | |
Merge remote-tracking branch 'upstream/dev' into build-system-consolidation
Diffstat (limited to 'OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs')
| -rw-r--r-- | OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs b/OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs index d41ac8e82..b37862466 100644 --- a/OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs +++ b/OpenSubtitlesHandler/MethodResponses/MethodResponseServerInfo.cs @@ -49,12 +49,12 @@ namespace OpenSubtitlesHandler private List<string> _last_update_strings = new List<string>(); /// <summary> - /// Version of server's XML-RPC API implementation + /// Version of server's XML-RPC API implementation /// </summary> [Description("Version of server's XML-RPC API implementation"), Category("OS")] public string xmlrpc_version { get { return _xmlrpc_version; } set { _xmlrpc_version = value; } } /// <summary> - /// XML-RPC interface URL + /// XML-RPC interface URL /// </summary> [Description("XML-RPC interface URL"), Category("OS")] public string xmlrpc_url { get { return _xmlrpc_url; } set { _xmlrpc_url = value; } } @@ -64,27 +64,27 @@ namespace OpenSubtitlesHandler [Description("Server's application name and version"), Category("OS")] public string application { get { return _application; } set { _application = value; } } /// <summary> - /// Contact e-mail address for server related quuestions and problems + /// Contact e-mail address for server related quuestions and problems /// </summary> [Description("Contact e-mail address for server related quuestions and problems"), Category("OS")] public string contact { get { return _contact; } set { _contact = value; } } /// <summary> - /// Main server URL + /// Main server URL /// </summary> [Description("Main server URL"), Category("OS")] public string website_url { get { return _website_url; } set { _website_url = value; } } /// <summary> - /// Number of users currently online + /// Number of users currently online /// </summary> [Description("Number of users currently online"), Category("OS")] public int users_online_total { get { return _users_online_total; } set { _users_online_total = value; } } /// <summary> - /// Number of users currently online using a client application (XML-RPC API) + /// Number of users currently online using a client application (XML-RPC API) /// </summary> [Description("Number of users currently online using a client application (XML-RPC API)"), Category("OS")] public int users_online_program { get { return _users_online_program; } set { _users_online_program = value; } } /// <summary> - /// Number of currently logged-in users + /// Number of currently logged-in users /// </summary> [Description("Number of currently logged-in users"), Category("OS")] public int users_loggedin { get { return _users_loggedin; } set { _users_loggedin = value; } } @@ -104,7 +104,7 @@ namespace OpenSubtitlesHandler [Description("Total number of subtitle downloads"), Category("OS")] public string subs_downloads { get { return _subs_downloads; } set { _subs_downloads = value; } } /// <summary> - /// Total number of subtitle files stored on the server + /// Total number of subtitle files stored on the server /// </summary> [Description("Total number of subtitle files stored on the server"), Category("OS")] public string subs_subtitle_files { get { return _subs_subtitle_files; } set { _subs_subtitle_files = value; } } @@ -119,7 +119,7 @@ namespace OpenSubtitlesHandler [Description("Total number of movie A.K.A. titles in the database"), Category("OS")] public string movies_aka { get { return _movies_aka; } set { _movies_aka = value; } } /// <summary> - /// Total number of subtitle languages supported + /// Total number of subtitle languages supported /// </summary> [Description("Total number of subtitle languages supported"), Category("OS")] public string total_subtitles_languages { get { return _total_subtitles_languages; } set { _total_subtitles_languages = value; } } |
