From 0f0fd8e8dd453496a6f1a159e549638ae8e02d39 Mon Sep 17 00:00:00 2001 From: Christian Paul Date: Sat, 30 Jan 2021 17:00:04 +0100 Subject: [PATCH 1/2] Add missing space --- api/funkwhale_api/common/dynamic_preferences_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/funkwhale_api/common/dynamic_preferences_registry.py b/api/funkwhale_api/common/dynamic_preferences_registry.py index 6d15fcd8f..4733d3a18 100644 --- a/api/funkwhale_api/common/dynamic_preferences_registry.py +++ b/api/funkwhale_api/common/dynamic_preferences_registry.py @@ -11,7 +11,7 @@ class APIAutenticationRequired(types.BooleanPreference): verbose_name = "API Requires authentication" default = True help_text = ( - "If disabled, anonymous users will be able to query the API" + "If disabled, anonymous users will be able to query the API " "and access music data (as well as other data exposed in the API " "without specific permissions)." ) From f93c9680a00257c1e5184d319e315eb97cf02fe7 Mon Sep 17 00:00:00 2001 From: Christian Paul Date: Sat, 30 Jan 2021 17:04:25 +0100 Subject: [PATCH 2/2] much minutes -> many minutes --- api/funkwhale_api/music/dynamic_preferences_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/funkwhale_api/music/dynamic_preferences_registry.py b/api/funkwhale_api/music/dynamic_preferences_registry.py index c46af5022..13d5ae56a 100644 --- a/api/funkwhale_api/music/dynamic_preferences_registry.py +++ b/api/funkwhale_api/music/dynamic_preferences_registry.py @@ -27,7 +27,7 @@ class MusicCacheDuration(types.IntPreference): default = 60 * 24 * 7 verbose_name = "Transcoding cache duration" help_text = ( - "How much minutes do you want to keep a copy of transcoded tracks " + "How many minutes do you want to keep a copy of transcoded tracks " "on the server? Transcoded files that were not listened in this interval " "will be erased and retranscoded on the next listening." )