mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 22:26:58 +08:00
* update: add locked version of quota status bar * fix: text color for infotip * fix: width issues * fix: add check for 0
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
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 you’re 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) you’ve scanned for accessibility this month. Upgrade if you’re nearing your limit to keep scanning more.',
|
||
'pojo-accessibility',
|
||
),
|
||
},
|
||
ai: {
|
||
title: __('AI credits', 'pojo-accessibility'),
|
||
infotipDescription: __(
|
||
'This is how many AI credits you’ve used to resolve issues or to generate content. Upgrade if you’re nearing your plan limit to keep full functionality.',
|
||
'pojo-accessibility',
|
||
),
|
||
lockedDescription: __(
|
||
'Upgrade your plan to unlock AI credits for generating alt‑text, one‑click accessibility fixes, and more.',
|
||
'pojo-accessibility',
|
||
),
|
||
},
|
||
};
|