@@ -217,19 +217,21 @@ define(function (require, exports, module) {
217217 // Use kernal mode apis for trusted check of pro features.
218218 Phoenix . pro . plan = {
219219 paidSubscriber : false ,
220- name : "Community Edition"
220+ name : Strings . USER_FREE_PLAN_NAME_DO_NOT_TRANSLATE ,
221+ fullName : Strings . USER_FREE_PLAN_NAME_DO_NOT_TRANSLATE
221222 } ;
222223 }
223224
224225 if ( entitlements && entitlements . plan ) {
225226 Phoenix . pro . plan = {
226227 paidSubscriber : entitlements . plan . paidSubscriber ,
227228 name : entitlements . plan . name ,
229+ fullName : entitlements . plan . fullName ,
228230 validTill : entitlements . plan . validTill
229231 } ;
230232 }
231233 if ( entitlements && entitlements . plan && entitlements . plan . paidSubscriber ) {
232- // Pro user (paid subscriber or trial): show plan name with feather icon
234+ // Pro user (paid subscriber or trial): show short name branding with `name feather icon`(not full name)
233235 let displayName = entitlements . plan . name || brackets . config . main_pro_plan ;
234236 if ( entitlements . isInProTrial ) {
235237 displayName = brackets . config . main_pro_plan ; // Just "Phoenix Pro" for branding, not "Phoenix Pro Trial"
@@ -379,15 +381,15 @@ define(function (require, exports, module) {
379381 } else {
380382 // For paid users: regular plan name with icon
381383 const proTitle = `<span class="phoenix-pro-title">
382- <span class="pro-plan-name user-plan-name">${ entitlements . plan . name } </span>
384+ <span class="pro-plan-name user-plan-name">${ entitlements . plan . fullName } </span>
383385 <i class="fa-solid fa-feather" style="margin-left: 3px;"></i>
384386 </span>` ;
385387 $planName . addClass ( 'user-plan-paid' ) . html ( proTitle ) ;
386388 $getProLink . addClass ( 'forced-hidden' ) ;
387389 }
388390 } else {
389391 // Use simple text for free users
390- $planName . addClass ( 'user-plan-free' ) . text ( entitlements . plan . name ) ;
392+ $planName . addClass ( 'user-plan-free' ) . text ( entitlements . plan . fullName ) ;
391393 }
392394 } else {
393395 $getProLink . removeClass ( 'forced-hidden' ) ;
@@ -436,7 +438,7 @@ define(function (require, exports, module) {
436438 initials : profileData . profileIcon . initials ,
437439 avatarColor : profileData . profileIcon . color ,
438440 planClass : "user-plan-free" ,
439- planName : Strings . USER_FREE_PLAN_NAME ,
441+ planName : Strings . USER_FREE_PLAN_NAME_DO_NOT_TRANSLATE ,
440442 titleText : "Ai Quota Used" ,
441443 usageText : "100 / 200 credits" ,
442444 usedPercent : 0 ,
0 commit comments