one-click-accessibility/modules/settings/assets/js/components/quota-bar/data.js
Nirbhay Singh 60155a0020
[APP-1447] Updated quota bar designs (#278)
* update: quota bar designs

* fix: the popover was partially visible

* update: AI credits name

* update: usage calculation logic

* add: quota indicators

* update: quotas tooltip text

* update: quotas notices text

* update: make toggle icon dynamic

* fix: @elementor/ui imports

* Update modules/settings/assets/js/layouts/quota-bar.js

Co-authored-by: VasylD <vasyld@elementor.red>

* update: styling of component

---------

Co-authored-by: VasylD <vasyld@elementor.red>
2025-06-03 18:56:34 +02:00

25 lines
973 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { __ } from '@wordpress/i18n';
export const QuotaBarData = {
visits: {
title: __('Widget loads', 'pojo-accessibility'),
infotipDescription: __(
'This is how many times your widget loads for each unique IP/device in a 24-hour span across your sites this month. Upgrade if youre nearing your limit to keep all features available.',
'pojo-accessibility',
),
},
scanner: {
title: __('Pages scanned', 'pojo-accessibility'),
infotipDescription: __(
'This is how many URLs (like site pages, blog posts, or product pages) youve scanned for accessibility this month. Upgrade if youre nearing your limit to keep scanning more.',
'pojo-accessibility',
),
},
ai: {
title: __('AI credits', 'pojo-accessibility'),
infotipDescription: __(
'This is how many AI credits youve used to resolve issues or to generate content. Upgrade if youre nearing your plan limit to keep full functionality.',
'pojo-accessibility',
),
},
};