diff --git a/modules/settings/notices/quota-100.php b/modules/settings/notices/quota-100.php index 75760718..0f02beec 100644 --- a/modules/settings/notices/quota-100.php +++ b/modules/settings/notices/quota-100.php @@ -23,8 +23,8 @@ class Quota_100 extends Notice_Base { public function content(): string { $plan = Settings::get( Settings::PLAN_DATA )->plan->name; - if ( $plan === 'Free' ) { - return sprintf( '
%s
', + if ( 'Free' === $plan ) { + return sprintf( '%s
', __( 'You’ve reached your free plan limit', 'pojo-accessibility' ), __( 'Upgrade to scan more pages, unlock AI fixes, and access all accessibility features.', 'pojo-accessibility' ), SettingsModule::get_upgrade_link( 'acc-100-quota' ), @@ -32,7 +32,7 @@ public function content(): string { ); } - return sprintf( '%s
', + return sprintf( '%s
', __( 'You’ve reached your monthly plan usage', 'pojo-accessibility' ), __( 'Upgrade now to raise your limit and maintain complete access to all accessibility features.', 'pojo-accessibility' ), SettingsModule::get_upgrade_link( 'acc-100-quota' ),