+SHOW_TAGS_IN_A_CLOUD = Setting('SHOW_TAGS_IN_A_CLOUD', True, VIEW_SET, dict(
+label = _("Show tags in a cloud"),
+help_text = _("If selected the tags in the recent tags widget will be displayed in a cloud."),
+required=False))
+
+TAGS_CLOUD_MIN_OCCURS = Setting('TAGS_CLOUD_MIN_OCCURS', 1, VIEW_SET, dict(
+label = _("Tags cloud min occurs"),
+help_text = _("Used to calculate the font size of the tags in the cloud widget.")))
+
+TAGS_CLOUD_MAX_OCCURS = Setting('TAGS_CLOUD_MAX_OCCURS', 35, VIEW_SET, dict(
+label = _("Tags cloud max occurs"),
+help_text = _("Used to calculate the font size of the tags in the cloud widget.")))
+
+TAGS_CLOUD_MIN_FONT_SIZE = Setting('TAGS_CLOUD_MIN_FONT_SIZE', 10, VIEW_SET, dict(
+label = _("Tags cloud min font size"),
+help_text = _("Used to calculate the font size of the tags in the cloud widget.")))
+
+TAGS_CLOUD_MAX_FONT_SIZE = Setting('TAGS_CLOUD_MAX_FONT_SIZE', 25, VIEW_SET, dict(
+label = _("Tags cloud max font size"),
+help_text = _("Used to calculate the font size of the tags in the cloud widget.")))
+