From 4b4daf507cea6b3862eb20cd27460b4a39cb4bc5 Mon Sep 17 00:00:00 2001 From: Ciaran Ainsworth <ciaran.ainsworth@oneserve.co.uk> Date: Wed, 4 Sep 2019 10:01:37 +0100 Subject: [PATCH] Updated wording in dynamic preferences file --- .../federation/dynamic_preferences_registry.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/funkwhale_api/federation/dynamic_preferences_registry.py b/api/funkwhale_api/federation/dynamic_preferences_registry.py index 01bfdf727..cf1faa704 100644 --- a/api/funkwhale_api/federation/dynamic_preferences_registry.py +++ b/api/funkwhale_api/federation/dynamic_preferences_registry.py @@ -14,7 +14,7 @@ class MusicCacheDuration(types.IntPreference): default = 60 * 24 * 2 verbose_name = "Music cache duration" help_text = ( - "How much minutes do you want to keep a copy of federated tracks" + "How many minutes do you want to keep a copy of federated tracks " "locally? Federated files that were not listened in this interval " "will be erased and refetched from the remote on the next listening." ) @@ -38,7 +38,7 @@ class CollectionPageSize(preferences.DefaultFromSettingMixin, types.IntPreferenc name = "collection_page_size" setting = "FEDERATION_COLLECTION_PAGE_SIZE" verbose_name = "Federation collection page size" - help_text = "How much items to display in ActivityPub collections." + help_text = "How many items to display in ActivityPub collections." field_kwargs = {"required": False} @@ -49,7 +49,7 @@ class ActorFetchDelay(preferences.DefaultFromSettingMixin, types.IntPreference): setting = "FEDERATION_ACTOR_FETCH_DELAY" verbose_name = "Federation actor fetch delay" help_text = ( - "How much minutes to wait before refetching actors on " + "How many minutes to wait before refetching actors on " "request authentication." ) field_kwargs = {"required": False} -- GitLab