mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 17:33:37 +08:00
dba6a5eabf
The file size error messages for max_image_size_kb and max_attachment_size_kb are shown to the user in the KB format, regardless of how large the limit is. Since we are going to support uploading much larger files soon, this KB-based limit soon becomes unfriendly to the end user. For example, if the max attachment size is set to 512000 KB, this is what the user sees: > Sorry, the file you are trying to upload is too big (maximum size is 512000KB) This makes the user do math. In almost all file explorers that a regular user would be familiar width, the file size is shown in a format based on the maximum increment (e.g. KB, MB, GB). This commit changes the behaviour to output a humanized file size instead of the raw KB. For the above example, it would now say: > Sorry, the file you are trying to upload is too big (maximum size is 512 MB) This humanization also handles decimals, e.g. 1536KB = 1.5 MB |
||
---|---|---|
.. | ||
anonymous_shadow_creator_spec.rb | ||
auto_silence_spec.rb | ||
badge_granter_spec.rb | ||
color_scheme_revisor_spec.rb | ||
destroy_task_spec.rb | ||
email_settings_exception_handler_spec.rb | ||
email_settings_validator_spec.rb | ||
email_style_updater_spec.rb | ||
external_upload_manager_spec.rb | ||
flag_sockpuppets_spec.rb | ||
group_action_logger_spec.rb | ||
group_mentions_updater_spec.rb | ||
group_message_spec.rb | ||
heat_settings_updater_spec.rb | ||
inline_uploads_multisite_spec.rb | ||
inline_uploads_spec.rb | ||
notification_emailer_spec.rb | ||
post_action_notifier_spec.rb | ||
post_alerter_spec.rb | ||
post_owner_changer_spec.rb | ||
push_notification_pusher_spec.rb | ||
random_topic_selector_spec.rb | ||
search_indexer_spec.rb | ||
site_settings_spec.rb | ||
staff_action_logger_spec.rb | ||
themes_spec.rb | ||
topic_status_updater_spec.rb | ||
topic_timestamp_changer_spec.rb | ||
trust_level_granter_spec.rb | ||
user_activator_spec.rb | ||
user_anonymizer_spec.rb | ||
user_authenticator_spec.rb | ||
user_destroyer_spec.rb | ||
user_merger_spec.rb | ||
user_notification_schedule_processor_spec.rb | ||
user_silencer_spec.rb | ||
user_updater_spec.rb | ||
username_changer_spec.rb | ||
username_checker_service_spec.rb | ||
wildcard_domain_checker_spec.rb | ||
wildcard_url_checker_spec.rb | ||
word_watcher_spec.rb |