react-native-inapp-inspector 2.2.2 → 2.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/dist/commonjs/constants/version.d.ts +1 -1
  2. package/dist/commonjs/constants/version.js +1 -1
  3. package/dist/esm/constants/version.d.ts +1 -1
  4. package/dist/esm/constants/version.js +1 -1
  5. package/package.json +2 -1
  6. package/src/analytics.ts +35 -0
  7. package/src/bundle.ts +25 -0
  8. package/src/components/AnalyticsDetail.tsx +865 -0
  9. package/src/components/AnalyticsEventCard.tsx +441 -0
  10. package/src/components/AnalyticsGraph.tsx +583 -0
  11. package/src/components/AnimatedEntrance.tsx +64 -0
  12. package/src/components/AppHeaderLogo.tsx +109 -0
  13. package/src/components/BrandCircleIcon.tsx +144 -0
  14. package/src/components/BrandSquareIcon.tsx +144 -0
  15. package/src/components/CodeSnippet.tsx +725 -0
  16. package/src/components/ConsoleLogCard.tsx +628 -0
  17. package/src/components/CopyButton.tsx +87 -0
  18. package/src/components/DiffViewer.tsx +82 -0
  19. package/src/components/DomainHeader.tsx +237 -0
  20. package/src/components/EmptyState.tsx +73 -0
  21. package/src/components/EndOfListFooter.tsx +100 -0
  22. package/src/components/ErrorBoundary.tsx +688 -0
  23. package/src/components/HeadersSection.tsx +192 -0
  24. package/src/components/HighlightText.tsx +100 -0
  25. package/src/components/Inspector/AnalyticsFilterModal.tsx +1250 -0
  26. package/src/components/Inspector/AnalyticsTab.tsx +1336 -0
  27. package/src/components/Inspector/BundleTab.tsx +4731 -0
  28. package/src/components/Inspector/ConsoleTab.tsx +702 -0
  29. package/src/components/Inspector/CrashDetail.tsx +941 -0
  30. package/src/components/Inspector/CrashFilterModal.tsx +721 -0
  31. package/src/components/Inspector/CrashTab.tsx +871 -0
  32. package/src/components/Inspector/FabLauncher.tsx +80 -0
  33. package/src/components/Inspector/InspectorContext.tsx +28 -0
  34. package/src/components/Inspector/InspectorHeader.tsx +973 -0
  35. package/src/components/Inspector/LogDetail.tsx +1427 -0
  36. package/src/components/Inspector/MainScreen.tsx +258 -0
  37. package/src/components/Inspector/NavigationTracker.tsx +13 -0
  38. package/src/components/Inspector/NetworkDetail.tsx +794 -0
  39. package/src/components/Inspector/NetworkTab.tsx +1095 -0
  40. package/src/components/Inspector/NpmUpdateToast.tsx +392 -0
  41. package/src/components/Inspector/PerformanceTab.tsx +1894 -0
  42. package/src/components/Inspector/ReduxDetail.tsx +1651 -0
  43. package/src/components/Inspector/ReduxTab.tsx +954 -0
  44. package/src/components/Inspector/SettingsPanel.tsx +3181 -0
  45. package/src/components/Inspector/TabBar.tsx +187 -0
  46. package/src/components/Inspector/TelemetryConsentModal.tsx +392 -0
  47. package/src/components/Inspector/UpdateAvailableModal.tsx +545 -0
  48. package/src/components/JsonViewer.tsx +486 -0
  49. package/src/components/LogCard.tsx +491 -0
  50. package/src/components/LogSyntaxHighlighter.tsx +178 -0
  51. package/src/components/MetaAccordion.tsx +340 -0
  52. package/src/components/MiniBarChart.tsx +42 -0
  53. package/src/components/MiniLineChart.tsx +33 -0
  54. package/src/components/NetworkIcons.tsx +2118 -0
  55. package/src/components/SectionHeader.tsx +113 -0
  56. package/src/components/SegmentedTabs.tsx +83 -0
  57. package/src/components/Slider.tsx +300 -0
  58. package/src/components/SourcePageCard.tsx +148 -0
  59. package/src/components/Toast.tsx +131 -0
  60. package/src/components/TouchableScale.tsx +91 -0
  61. package/src/components/TreeNode.tsx +186 -0
  62. package/src/console.ts +24 -0
  63. package/src/constants/index.ts +38 -0
  64. package/src/constants/version.ts +3 -0
  65. package/src/crash.ts +32 -0
  66. package/src/customHooks/analyticsLogger.ts +336 -0
  67. package/src/customHooks/bundleAnalyzer.ts +1231 -0
  68. package/src/customHooks/consoleLogger.ts +497 -0
  69. package/src/customHooks/crashHandler.ts +944 -0
  70. package/src/customHooks/logFilters.ts +32 -0
  71. package/src/customHooks/networkLogger.ts +419 -0
  72. package/src/customHooks/performanceTracker.ts +1014 -0
  73. package/src/customHooks/reduxLogger.ts +406 -0
  74. package/src/customHooks/useAccordion.tsx +60 -0
  75. package/src/decorators/index.ts +184 -0
  76. package/src/helpers/gaAnalyticsRegistry.ts +204 -0
  77. package/src/helpers/index.ts +860 -0
  78. package/src/helpers/memoryManager.ts +138 -0
  79. package/src/helpers/searchQueryParser.ts +283 -0
  80. package/src/helpers/settingsStore.ts +171 -0
  81. package/src/helpers/telemetry.ts +505 -0
  82. package/src/helpers/toast.ts +17 -0
  83. package/src/i18n/index.ts +69 -0
  84. package/src/i18n/locales/en.json +1052 -0
  85. package/src/index.tsx +2336 -0
  86. package/src/native/NativeInspector.ts +397 -0
  87. package/src/native/NativeNetworkInspector.ts +24 -0
  88. package/src/network.ts +22 -0
  89. package/src/performance.ts +38 -0
  90. package/src/redux.ts +23 -0
  91. package/src/styles/AppColors.ts +408 -0
  92. package/src/styles/AppFonts.ts +8 -0
  93. package/src/styles/common.ts +209 -0
  94. package/src/styles/index.ts +1570 -0
  95. package/src/types/enums.ts +194 -0
  96. package/src/types/index.ts +34 -0
  97. package/src/types/interfaces.ts +515 -0
@@ -0,0 +1,1052 @@
1
+ {
2
+ "common": {
3
+ "cancel": "Cancel",
4
+ "clear": "Clear",
5
+ "clearAll": "Clear All",
6
+ "close": "Close",
7
+ "loading": "Loading...",
8
+ "success": "Success",
9
+ "pending": "Pending",
10
+ "failed": "Failed",
11
+ "copy": "Copy",
12
+ "copied": "Copied!",
13
+ "copyJson": "Copy JSON",
14
+ "collapseAll": "Collapse All",
15
+ "expandAll": "Expand All",
16
+ "viewOnNpm": "View on NPM",
17
+ "later": "Later",
18
+ "source": "SOURCE",
19
+ "open": "Open",
20
+ "openInBrowser": "Open in Browser",
21
+ "openInBrowserPrompt": "Are you sure you want to open this URL in your external browser?"
22
+ },
23
+ "header": {
24
+ "updateAvailableTitle": "Update Available",
25
+ "updateAvailableMessage": "react-native-inapp-inspector v{{version}} is available on NPM (installed: v{{installed}}).",
26
+ "clearEverythingTitle": "Clear Everything",
27
+ "clearEverythingMessage": "This clears all tabs — APIs, Logs, Analytics and Redux timeline. Continue?",
28
+ "paramCount": "{{count}} param",
29
+ "paramCount_plural": "{{count}} params",
30
+ "sourceFirebase": "FB",
31
+ "sourceManual": "MAN",
32
+ "firebase": "firebase",
33
+ "manual": "manual"
34
+ },
35
+ "tabs": {
36
+ "apis": "APIs",
37
+ "logs": "Logs",
38
+ "analytics": "Analytics",
39
+ "redux": "Redux"
40
+ },
41
+ "settings": {
42
+ "mainTitle": "Settings & Modules",
43
+ "mainSubtitle": "Manage modules and preferences",
44
+ "requiredBadge": "REQUIRED",
45
+ "defaultBadge": "DEFAULT",
46
+ "notConnectedBadge": "NOT CONNECTED",
47
+ "notDetectedBadge": "NOT DETECTED",
48
+ "readOnlyBadge": "READ ONLY",
49
+ "coreBadge": "CORE",
50
+ "activeBadge": "ACTIVE",
51
+ "dormantBadge": "DORMANT",
52
+ "protectedBadge": "PROTECTED",
53
+ "modulesAndTools": "Modules & Tools",
54
+ "uiPreferences": "UI Preferences",
55
+ "zeroOverheadTitle": "Zero Background Overhead",
56
+ "zeroOverheadDesc": "Check the modules you wish to activate. Disabled modules consume 0% CPU & memory until saved.",
57
+ "unsavedPending": "● Unsaved selections pending",
58
+ "allSynchronized": "All modules synchronized",
59
+ "modulesActive": "{{active}} of {{total}} Modules Active",
60
+ "saveChanges": "Save Changes",
61
+ "settingsSaved": "Settings Saved",
62
+ "settingsSavedDesc": "Active module configurations have been successfully updated.",
63
+ "configure": "Configure",
64
+ "appearanceTheme": "APPEARANCE & THEME",
65
+ "windowLayout": "WINDOW & LAYOUT",
66
+ "startupDefault": "STARTUP & DEFAULT SCREEN",
67
+ "logFiltersDeduplication": "LOG FILTERS & DEDUPLICATION",
68
+ "resetSettings": "Reset All Settings",
69
+ "resetSettingsDesc": "Wipe customized preferences back to default",
70
+ "reset": "Reset",
71
+ "reduxNotConnectedTip": "Redux store is not connected. Call connectReduxStore(store) or use inspectorReduxMiddleware to enable.",
72
+ "analyticsNotConnectedTip": "Analytics is not initialized. Call setupAnalyticsLogger(analytics()) to enable.",
73
+ "tabVisibility": "Tab Visibility",
74
+ "tabVisibilityDescription": "Choose which modules appear in the inspector",
75
+ "settingsTitle": "Settings",
76
+ "back": "Back",
77
+ "apis": {
78
+ "title": "APIs Settings",
79
+ "total": "Total: {{count}}",
80
+ "maxRequestLogs": "Max Request Logs",
81
+ "maxRequestLogsDescription": "Buffer size of network requests preserved in memory",
82
+ "clearNetworkLogs": "Clear Network Logs",
83
+ "clearNetworkLogsDescription": "{{count}} requests stored",
84
+ "networkLogsCleared": "Network logs cleared.",
85
+ "showStatusFilter": "Status Filter",
86
+ "showStatusFilterDescription": "Show status chips in the APIs list",
87
+ "showMethodFilter": "Method Filter",
88
+ "showMethodFilterDescription": "Show method chips in the APIs list",
89
+ "defaultTabDescription": "Tab the inspector opens on"
90
+ },
91
+ "logs": {
92
+ "title": "Logs Settings",
93
+ "total": "Total: {{count}}",
94
+ "maxConsoleLogs": "Max Console Logs",
95
+ "maxConsoleLogsDescription": "How many console messages to retain",
96
+ "logLevels": "Log Severities",
97
+ "logLevelsDescription": "Select which severities to capture in Logs",
98
+ "showInfo": "Show Info logs",
99
+ "showInfoDesc": "Informational logs & debug prints",
100
+ "showWarn": "Show Warning logs",
101
+ "showWarnDesc": "Warning notices & deprecations",
102
+ "showError": "Show Error logs",
103
+ "showErrorDesc": "Runtime errors & exceptions",
104
+ "clearConsoleLogs": "Clear Console Logs",
105
+ "clearConsoleLogsDescription": "{{count}} logs stored",
106
+ "consoleLogsCleared": "Console logs cleared."
107
+ },
108
+ "analytics": {
109
+ "title": "Analytics Settings",
110
+ "total": "Events: {{count}}",
111
+ "maxAnalyticsEvents": "Events Captured",
112
+ "maxAnalyticsEventsDescription": "{{count}} analytics events stored in buffer",
113
+ "clearAnalyticsEvents": "Clear Analytics History",
114
+ "clearAnalyticsEventsDescription": "Wipe all captured telemetry events",
115
+ "analyticsEventsCleared": "Analytics events cleared."
116
+ },
117
+ "redux": {
118
+ "title": "Redux Settings",
119
+ "reducers": "Reducers: {{count}}",
120
+ "autoRefresh": "Auto-refresh Store",
121
+ "autoRefreshDescription": "Capture Redux store state tree on every dispatch",
122
+ "defaultJsonExpandDepth": "Default JSON Expand Depth",
123
+ "defaultJsonExpandDepthDescription": "Initial depth of Redux state tree to auto-expand",
124
+ "clearReduxState": "Clear Redux State",
125
+ "clearReduxStateDescription": "Reset current state snapshot in inspector",
126
+ "clearReduxStateEmpty": "No store snapshot recorded",
127
+ "reduxStateCleared": "Redux state snapshot cleared.",
128
+ "clearReduxTimeline": "Clear Redux Timeline",
129
+ "clearReduxTimelineDescription": "Remove all captured action history",
130
+ "reduxTimelineCleared": "Redux action history cleared."
131
+ },
132
+ "bundle": {
133
+ "title": "Bundle Settings",
134
+ "sourceBundler": "Metro Source Bundler",
135
+ "sourceBundlerDesc": "Parses live module trees and calculates binary size breakdowns",
136
+ "clearCache": "Clear Bundle Cache",
137
+ "clearCacheDesc": "Force re-fetching and parsing of JS bundle",
138
+ "cacheCleared": "Bundle analysis cache cleared."
139
+ },
140
+ "performance": {
141
+ "title": "Performance Settings",
142
+ "frameMeasurement": "Live Frame Measurement",
143
+ "frameMeasurementDesc": "Samples UI/JS frame rates & detects wasteful re-renders",
144
+ "clearEvents": "Clear Performance Events",
145
+ "clearEventsDesc": "Reset recorded jank and FPS drops history",
146
+ "eventsCleared": "Performance events cleared."
147
+ },
148
+ "crash": {
149
+ "title": "Crash Settings",
150
+ "maxCrashLogs": "Max Crash Logs",
151
+ "maxCrashLogsDesc": "How many crash records to preserve in history",
152
+ "globalGuard": "Global Crash Guard",
153
+ "globalGuardDesc": "Intercepts native, JS, and render errors directly",
154
+ "clearHistory": "Clear Crash History",
155
+ "clearHistoryDesc": "{{count}} crash logs stored",
156
+ "historyCleared": "Crash logs cleared."
157
+ },
158
+ "general": {
159
+ "darkMode": "Dark Mode Theme",
160
+ "darkModeDescription": "Toggle sleek dark aesthetic or light contrast",
161
+ "modalHeight": "Inspector Window Height",
162
+ "modalHeightDescription": "Modal screen coverage percentage",
163
+ "modalAnimation": "Transition Animation",
164
+ "modalAnimationDescription": "Entrance and dismissal presentation style",
165
+ "duplicateLogs": "Show Duplicate Logs",
166
+ "duplicateLogsDescription": "Off: Identical repeated entries collapse into ×N badges",
167
+ "defaultOpeningTab": "Default Opening Tab",
168
+ "defaultOpeningTabDesc": "Initial tab active when launcher button is tapped",
169
+ "activeConsoleLogLevels": "Active Console Log Levels",
170
+ "activeConsoleLogLevelsDesc": "Select which severities to capture in Logs",
171
+ "resetToDefaults": "Reset to Defaults",
172
+ "resetToDefaultsDescription": "Restore all inspector settings",
173
+ "resetConfirmationTitle": "Settings Reset",
174
+ "resetConfirmationMessage": "All settings have been reset to default values.",
175
+ "storageStatus": "Persistent Storage",
176
+ "storageStatusEnabled": "Settings Storage: Persistent ({{type}})",
177
+ "storageStatusEnabledDesc": "Your preferences and module visibility persist across app reboots.",
178
+ "storageStatusDisabled": "Settings Storage: In-Memory (Temporary)",
179
+ "storageStatusDisabledDesc": "Preferences reset on app kill. Pass custom storage to <NetworkInspector storage={...} /> to persist on Android."
180
+ }
181
+ },
182
+ "network": {
183
+ "title": "APIs",
184
+ "searchPlaceholder": "Search by URL, status or method...",
185
+ "emptyTitle": "No API calls captured yet",
186
+ "emptySubtitle": "Network requests will appear here as you use the app.",
187
+ "reload": "Reload",
188
+ "clearTitle": "Clear Network Logs",
189
+ "clearMessage": "Are you sure you want to clear all captured network logs?",
190
+ "detailTabs": {
191
+ "metadata": "Metadata",
192
+ "headers": "Headers",
193
+ "request": "Request",
194
+ "response": "Response"
195
+ },
196
+ "requestTitle": "Request",
197
+ "responseTitle": "Response",
198
+ "searchRequest": "Search request...",
199
+ "searchResponse": "Search response...",
200
+ "searchHeaders": "Search headers...",
201
+ "requestHeaders": "Request Headers",
202
+ "responseHeaders": "Response Headers",
203
+ "diffTitle": "Diff",
204
+ "noResponse": "No response body",
205
+ "noRequest": "No request body",
206
+ "statusFailed": "Failed",
207
+ "urlHeader": "URL",
208
+ "methodHeader": "Method",
209
+ "statusHeader": "Status",
210
+ "durationHeader": "Duration",
211
+ "sizeHeader": "Size",
212
+ "triggeredAt": "Triggered at",
213
+ "contentType": "Content-Type",
214
+ "sourcePage": "Source Page",
215
+ "sourcePageUnknown": "Unknown source",
216
+ "loadMore": "Load more",
217
+ "groupByPage": "Group by page",
218
+ "groupByDomain": "Group by domain",
219
+ "groupByNone": "List",
220
+ "domain": "Domain",
221
+ "page": "Page",
222
+ "requests": "{{count}} requests",
223
+ "requests_plural": "{{count}} requests",
224
+ "noFilteredResults": "No requests match the current filters",
225
+ "scrollToTop": "Scroll to top",
226
+ "copyCurl": "Copy cURL",
227
+ "copyFetch": "Copy fetch snippet",
228
+ "emptyResponse": "Empty response",
229
+ "bodyHidden": "{ Body hidden }",
230
+ "queryParams": "Query Params",
231
+ "fullUrl": "Full URL",
232
+ "open": "Open",
233
+ "showMore": "Show More",
234
+ "showLess": "Show Less",
235
+ "failedNetworkError": "Failed (Network Error)",
236
+ "noMatchingHeaders": "No matching headers",
237
+ "diffHidden": "{ Diff hidden }",
238
+ "noDiff": "No differences from previous API.",
239
+ "healthTitle": "Network Health & Telemetry",
240
+ "successRate": "Success Rate",
241
+ "avgLatency": "Avg Latency",
242
+ "p95Latency": "P95 Latency",
243
+ "bandwidth": "Bandwidth",
244
+ "fastest": "Fastest",
245
+ "slowest": "Slowest",
246
+ "timingWaterfall": "Timing Waterfall & Latency",
247
+ "throughput": "Throughput",
248
+ "performanceTier": "Performance Tier",
249
+ "perf": {
250
+ "fast": "Fast (< 200ms)",
251
+ "moderate": "Moderate (200-800ms)",
252
+ "slow": "Slow (> 800ms)"
253
+ },
254
+ "jsonViewer": {
255
+ "pretty": "Pretty",
256
+ "raw": "Raw",
257
+ "table": "Table",
258
+ "emptyObject": "Empty Object",
259
+ "emptyTable": "Empty Object",
260
+ "key": "Key",
261
+ "value": "Value"
262
+ }
263
+ },
264
+ "console": {
265
+ "title": "Logs",
266
+ "searchPlaceholder": "Search logs...",
267
+ "emptyTitle": "No console logs yet",
268
+ "emptySubtitle": "Console output from your app will appear here.",
269
+ "analyticsBadge": "Analytics",
270
+ "userLogBadge": "user-log",
271
+ "jsonTitle": "Log JSON",
272
+ "messageTitle": "Log Message",
273
+ "search": "Search log...",
274
+ "searchJson": "Search log JSON...",
275
+ "logMessage": "Log message",
276
+ "consoleLog": "Console Log",
277
+ "characters": "{{count}} chars",
278
+ "duplicates": "×{{count}} duplicates",
279
+ "showMore": "Show more",
280
+ "showLess": "Show less",
281
+ "clearTitle": "Clear Logs",
282
+ "clearMessage": "Are you sure you want to clear all console logs?",
283
+ "seeMore": "Show more",
284
+ "noResults": "No logs match the current filters",
285
+ "filterAll": "All",
286
+ "filterInfo": "Info",
287
+ "filterWarn": "Warn",
288
+ "filterError": "Error",
289
+ "filterUserLog": "User Log",
290
+ "filterAnalytics": "Analytics",
291
+ "tabOutput": "Output",
292
+ "tabArgs": "Args ({{count}})",
293
+ "tabStack": "Stack Trace",
294
+ "tabMetadata": "Metadata",
295
+ "callStack": "Call Stack ({{count}} frames)",
296
+ "errorStack": "Error Exception Stack ({{count}} frames)",
297
+ "callOriginStack": "Call Origin Stack",
298
+ "errorThrownStack": "Error Thrown Stack",
299
+ "appCodeScope": "🎯 App Code ({{count}})",
300
+ "allFramesScope": "📜 All Frames ({{count}})",
301
+ "cardsView": "Cards",
302
+ "rawTraceView": "Raw",
303
+ "noStackAvailable": "No call stack frames found matching the active filter.",
304
+ "originBadge": "#1 ORIGIN",
305
+ "appCodeBadge": "App Code",
306
+ "dependencyBadge": "Dependency",
307
+ "nativeBadge": "Native",
308
+ "hermesVmBadge": "Hermes VM",
309
+ "fullStackTrace": "Full Stack Trace",
310
+ "lineCol": "Line {{line}}, Col {{col}}",
311
+ "lineColShort": "L{{line}}:C{{col}}",
312
+ "searchInLogDetails": "Search in log details..."
313
+ },
314
+ "analytics": {
315
+ "title": "Analytics",
316
+ "searchPlaceholder": "Search events...",
317
+ "emptyTitle": "No analytics events yet",
318
+ "emptySubtitle": "Analytics events will appear here as your app tracks them.",
319
+ "clearTitle": "Clear Analytics",
320
+ "clearMessage": "Are you sure you want to clear all analytics events?",
321
+ "eventParams": "{{count}} params",
322
+ "eventCount": "{{count}} events",
323
+ "userProperties": "User Properties",
324
+ "userId": "User ID",
325
+ "defaultParameters": "Default Parameters",
326
+ "collectionEnabled": "Collection Enabled",
327
+ "screenView": "screen_view",
328
+ "eventDetails": "Event Details",
329
+ "parameters": "Parameters",
330
+ "noParams": "No parameters",
331
+ "recentEvents": "Recent Events",
332
+ "analyticsError": "Analytics Error",
333
+ "duplicate": "Duplicate",
334
+ "params": "params",
335
+ "props": "props",
336
+ "item": "item",
337
+ "items": "items",
338
+ "pageViewCategory": "Page View",
339
+ "ecommerceCategory": "Ecommerce",
340
+ "systemCategory": "System",
341
+ "customCategory": "Custom",
342
+ "realtimeStream": "Realtime Activity",
343
+ "liveTelemetry": "Live Telemetry",
344
+ "eventsInWindow": "events in window",
345
+ "eventVelocity": "{{rate}} ev/min",
346
+ "peakVolume": "Peak: {{count}}",
347
+ "time30mAgo": "-30m",
348
+ "time20mAgo": "-20m",
349
+ "time10mAgo": "-10m",
350
+ "timeNow": "NOW",
351
+ "selectedBucket": "Bucket: {{time}} ({{count}} events)",
352
+ "totalRevenue": "Revenue",
353
+ "activeDistribution": "Category Split",
354
+ "allCategory": "All",
355
+ "screensCategory": "Screens",
356
+ "overviewTab": "Overview",
357
+ "jsonTreeTab": "JSON Tree",
358
+ "rawPayloadTab": "Raw Payload",
359
+ "sessionContext": "Session Context",
360
+ "userPropertiesSnapshot": "User Properties Snapshot",
361
+ "parameterKeys": "Parameters ({{count}})",
362
+ "searchParameters": "Search parameters...",
363
+ "noParamsFound": "No parameters match your search",
364
+ "sourceFirebase": "FIREBASE GA4",
365
+ "sourceCustom": "CUSTOM / MANUAL"
366
+ },
367
+ "redux": {
368
+ "title": "Redux",
369
+ "searchPlaceholder": "Search state or actions...",
370
+ "emptyTitle": "No Redux store connected",
371
+ "emptySubtitle": "Connect your store to inspect its state and actions.",
372
+ "stateTab": "State",
373
+ "actionsTab": "Actions",
374
+ "clearTitle": "Clear Redux Timeline",
375
+ "clearMessage": "Are you sure you want to clear the dispatched action history?",
376
+ "noActions": "No actions dispatched yet. Trigger an action in the app to populate history.",
377
+ "noSearchResults": "No actions match your search.",
378
+ "lastAction": "Last action",
379
+ "actionHistory": "Action History",
380
+ "affectedSlices": "Affected slices",
381
+ "noAffectedSlices": "None",
382
+ "dispatchTime": "Dispatched at",
383
+ "prevState": "Previous State",
384
+ "nextState": "Next State",
385
+ "viewDiff": "View Diff",
386
+ "emptyState": "State is empty",
387
+ "rootState": "Root State",
388
+ "connectionStatus": "Connected",
389
+ "connectionStatusNone": "Not connected",
390
+ "autoRefresh": "Auto-refresh",
391
+ "paused": "Paused",
392
+ "liveState": "Live State",
393
+ "timeline": "Timeline",
394
+ "persisted": "Persisted",
395
+ "storage": "Storage",
396
+ "metadata": "Metadata",
397
+ "inMemory": "In-Memory",
398
+ "slice": "SLICE",
399
+ "rootKeys": "Root Keys",
400
+ "size": "Size",
401
+ "actions": "actions",
402
+ "keys": "Keys",
403
+ "last": "Last",
404
+ "live": "Live",
405
+ "loading": "Loading",
406
+ "error": "Error",
407
+ "empty": "Empty",
408
+ "payload": "Payload",
409
+ "actionPayload": "Action Payload:",
410
+ "stateChangesDiff": "State Changes (Diff):",
411
+ "tapToInspectAction": "Tap to inspect action payload & diff changes",
412
+ "noDispatchedActions": "No dispatched actions recorded for this slice yet.",
413
+ "sliceJson": "Slice JSON",
414
+ "originSaga": "SAGA",
415
+ "originThunk": "THUNK",
416
+ "originUi": "UI",
417
+ "originDirect": "DIRECT",
418
+ "originListener": "LISTENER",
419
+ "triggeredFrom": "Triggered From:",
420
+ "openInEditor": "Open in Editor",
421
+ "callStack": "Call Stack Trace",
422
+ "sliceOrigin": "Slice / Origin"
423
+ },
424
+ "performance": {
425
+ "title": "Performance",
426
+ "fpsTarget": "60 FPS Target Monitor",
427
+ "healthScore": "FPS Health Score",
428
+ "excellent": "Excellent (60 FPS)",
429
+ "good": "Good (Minor Janks)",
430
+ "needsOptimization": "Needs Optimization",
431
+ "liveFps": "Live FPS & Refresh Cycle",
432
+ "realtimeWindow": "Real-Time (1s window)",
433
+ "uiRenderThread": "UI Render Thread",
434
+ "optimalFrame": "Optimal (<16.6ms)",
435
+ "slowFrame": "Slow Frame (>16.6ms)",
436
+ "budgetUsage": "60 FPS Budget Usage",
437
+ "avgFrameTime": "Avg Frame Time",
438
+ "peakTime": "Peak Time",
439
+ "jsThread": "JS Thread",
440
+ "uiThread": "UI Thread",
441
+ "jsiLatency": "JSI Latency",
442
+ "heapImpact": "Heap Impact",
443
+ "optimizationTip": "Optimization Tip:",
444
+ "recordedEvents": "Recorded Events & Interactions",
445
+ "liveStream": "Live Session Stream",
446
+ "emptyTitle": "No performance events captured yet",
447
+ "emptySubtitle": "Perform actions in your app to see thread timings, render cost, and FPS tracking.",
448
+ "tabOverview": "Overview",
449
+ "tabRenders": "Renders",
450
+ "tabInteractions": "Interactions",
451
+ "tabMemory": "Memory",
452
+ "filterAll": "All",
453
+ "filterSlow": "Slow (>16ms)",
454
+ "filterCritical": "Critical (>33ms)",
455
+ "searchPlaceholder": "Search component, interaction...",
456
+ "avgRenderTime": "Avg Render",
457
+ "totalRenders": "Total Renders",
458
+ "renderCost": "Render Cost",
459
+ "slowRenders": "Slow Renders",
460
+ "unnecessaryRenders": "Wasteful Renders",
461
+ "heapAllocated": "Heap Allocated",
462
+ "heapLimit": "Heap Limit",
463
+ "gcEvents": "GC Events",
464
+ "leakRisk": "Leak Risk",
465
+ "lowRisk": "Low Risk",
466
+ "mediumRisk": "Medium Risk",
467
+ "highRisk": "High Risk",
468
+ "memoryTimeline": "Memory Timeline",
469
+ "clearPerformance": "Clear Performance Data",
470
+ "clearConfirmation": "Are you sure you want to clear all performance tracking data?",
471
+ "liveFpsDip": "Live Frame Rate Dip ({{fps}} FPS)",
472
+ "liveFpsDipDetail": "Main thread frame duration extended to {{duration}}ms during view update.",
473
+ "liveFpsDipAdvice": "Heavy JavaScript execution during frame pass delayed display presentation.",
474
+ "yogaLayout": "Yoga Flexbox Layout",
475
+ "hermesGc": "Hermes Garbage Collection",
476
+ "jsEngine": "JS Engine",
477
+ "uiReconciler": "UI Reconciler",
478
+ "memoryHeap": "Memory Heap",
479
+ "allLogs": "All Logs",
480
+ "jankySlow": "Janky / Slow",
481
+ "navigation": "Navigation",
482
+ "components": "Components",
483
+ "memoryGc": "Memory & GC",
484
+ "networkIo": "Network & I/O",
485
+ "catAll": "All",
486
+ "catJanky": "Janky",
487
+ "catNavigation": "Navigation",
488
+ "catRender": "Components",
489
+ "catMemory": "Memory",
490
+ "catIo": "I/O",
491
+ "recording": "Recording",
492
+ "paused": "Paused",
493
+ "budgetHeadroom": "~{{time}}ms Headroom ({{percent}}%)",
494
+ "jsExec": "JS Exec: {{time}}ms",
495
+ "yogaLayoutTime": "Yoga Layout: {{time}}ms",
496
+ "uiRenderTime": "UI Render: {{time}}ms",
497
+ "freeTime": "Free: {{time}}ms",
498
+ "heapAllocatedSub": "{{allocated}} MB allocated",
499
+ "hermesAot": "Hermes (AOT)",
500
+ "v8Jit": "V8 (JIT)",
501
+ "jscEngine": "JSC",
502
+ "bytecodeCompiled": "Bytecode compiled",
503
+ "jitEngine": "JIT Engine",
504
+ "webkitEngine": "Webkit Engine",
505
+ "fabricJsi": "Fabric / JSI",
506
+ "paperBridge": "Paper / Bridge",
507
+ "directCppBindings": "Direct C++ bindings",
508
+ "asyncJsonBridge": "Async JSON Bridge",
509
+ "fpsUnit": "FPS",
510
+ "jsLag": "JS Lag",
511
+ "jankRate": "Jank Rate",
512
+ "fpsAreaChartTitle": "Real-Time FPS Stream & Jitter (30s)",
513
+ "fpsAreaChartSub": "Live 60 FPS target with continuous frame variance measurement",
514
+ "frameLatencyDistTitle": "Frame Latency Distribution",
515
+ "frameLatencyDistSub": "Proportion of frames delivered within 16.6ms budget",
516
+ "optimalBucket": "< 16.6ms (60 FPS)",
517
+ "minorJankBucket": "16.7 - 33.3ms (30-60 FPS)",
518
+ "noticeableJankBucket": "33.4 - 50.0ms (20-30 FPS)",
519
+ "severeFreezeBucket": "> 50.0ms (< 20 FPS)",
520
+ "hermesHeapTrendTitle": "Memory & Hermes Heap Dynamics",
521
+ "hermesHeapTrendSub": "Live allocation vs generational GC scavenge cycles",
522
+ "live": "Live",
523
+ "msTotal": "{{duration}}ms total • {{time}}",
524
+ "droppedFrames": "{{count}} Dropped",
525
+ "zeroDropped": "0 Dropped",
526
+ "frameBudgetMs": "{{time}}ms / frame ({{budget}}% budget)",
527
+ "target60Fps": "Target 60 FPS • Actual {{fps}} FPS",
528
+ "frameDuration": "Frame Duration",
529
+ "frameDurationVal": "{{time}} ms (16.67ms budget)",
530
+ "frameUtilization": "Frame Budget Exceeded",
531
+ "frameBudgetOk": "Frame Budget Headroom",
532
+ "bottleneck": "Bottleneck",
533
+ "jsBound": "JS Thread Bound",
534
+ "uiBound": "UI Thread Bound",
535
+ "balanced": "Balanced",
536
+ "smooth": "Smooth 60 FPS",
537
+ "minorJank": "Minor Stutter",
538
+ "noticeableJank": "Noticeable Jank",
539
+ "severeFreeze": "Severe Freeze",
540
+ "screenContext": "Screen Context",
541
+ "profileReason1": "Inline arrow function props passed to children (onAddToCart={() => ...})",
542
+ "profileReason2": "Unmemoized Redux selector creating new object reference on every dispatch",
543
+ "profileReason3": "Dynamic style object created in render body ({ marginTop: insets.top + 10 })",
544
+ "profileReason4": "FlatList missing getItemLayout causing async layout measuring passes",
545
+ "profileReason5": "renderItem function defined anonymously inside JSX body",
546
+ "profileReason6": "List item components not wrapped with React.memo",
547
+ "profileReason7": "Parent screen re-rendered on keyboard show/hide event",
548
+ "profileReason8": "Unstable callback reference passed into checkout button",
549
+ "profileReason9": "TextInput value state triggers parent re-render on every keystroke without debouncing",
550
+ "profileReason10": "Passing unmemoized filter object ({ category, minPrice }) down to child chips",
551
+ "profileReason11": "Avatar image cache re-validation on auth session refresh",
552
+ "fixUseCallbackTitle": "Wrap Event Handlers in useCallback",
553
+ "fixUseCallbackDesc": "Inline functions recreate a new memory reference on every render, invalidating React.memo on child components.",
554
+ "fixCreateSelectorTitle": "Memoize Redux / Zustand Selectors with shallowEqual",
555
+ "fixCreateSelectorDesc": "Returning new object or array references inside useSelector forces an automatic re-render on every state dispatch.",
556
+ "fixUseMemoStylesTitle": "Hoist Styles or Use useMemo for Dynamic Dimensions",
557
+ "fixUseMemoStylesDesc": "Inline style objects create new object identities on every frame pass, causing Yoga Flexbox reconciliation diffs.",
558
+ "fixGetItemLayoutTitle": "Implement getItemLayout for Fixed-Height Items",
559
+ "fixGetItemLayoutDesc": "Supplying getItemLayout allows FlatList to immediately compute scroll offsets and virtual windows without measuring views asynchronously.",
560
+ "fixReactMemoTitle": "Wrap List Items in React.memo",
561
+ "fixReactMemoDesc": "Prevents all 50+ visible list items from re-rendering when parent list state (e.g. scroll position or pagination) updates.",
562
+ "fixComponentSplittingTitle": "Isolate Fast-Changing State in Leaf Components",
563
+ "fixComponentSplittingDesc": "Move keyboard listeners and modal animation state into self-contained subcomponents so the parent does not re-render.",
564
+ "fixDebouncedInputTitle": "Debounce Search Input or Use Local Controlled State",
565
+ "fixDebouncedInputDesc": "Do not propagate keystroke state into global store immediately. Use a 250ms debounce or uncontrolled ref.",
566
+ "fixPrimitivePropsTitle": "Pass Primitive Props Instead of Large Objects",
567
+ "fixPrimitivePropsDesc": "Passing only categoryId string instead of whole category object prevents re-renders when other category metadata updates.",
568
+ "fixUseRefForTrackingTitle": "Use useRef for Non-Visual Tracking Values",
569
+ "fixUseRefForTrackingDesc": "Do not store analytics timers, scroll offsets, or tracking IDs in useState if they do not directly alter the JSX tree.",
570
+ "highImpact": "High Impact",
571
+ "mediumImpact": "Medium Impact",
572
+ "bestPractice": "Best Practice",
573
+ "beforeUseCallback": "// ❌ Before in <{{comp}} /> (re-creates function reference on every render):",
574
+ "afterUseCallback": "// ✅ After (stable memoized callback reference):",
575
+ "beforeCreateSelector": "// ❌ Before in <{{comp}} /> (returns new object reference every render):",
576
+ "afterCreateSelector": "// ✅ After (shallowEqual prevents re-render unless values change):",
577
+ "beforeMemo": "// ❌ Before (<{{comp}} />):",
578
+ "afterMemo": "// ✅ After (skips render if props are shallowly identical):",
579
+ "flatListOptimization": "// FlatList Optimization for <{{comp}} />",
580
+ "customComparator": "// Custom equality function for <{{comp}} />",
581
+ "debounceInput": "// Debounce input inside <{{comp}} /> to prevent per-keystroke renders:",
582
+ "isolateState": "// Isolate rapidly changing state from <{{comp}} /> to child sub-tree\n// ✅ Encapsulate animated layout inside isolated component:",
583
+ "beforeUseRef": "// ❌ Before in <{{comp}} /> (triggers whole component re-render on value change):",
584
+ "afterUseRef": "// ✅ After (preserves mutable reference across renders without re-rendering):",
585
+ "fixInteractionManagerTitle": "Defer Offscreen Logic with InteractionManager",
586
+ "fixInteractionManagerDesc": "Heavy data processing during screen animations drops frames. Defer until transition finishes.",
587
+ "beforeInteractionManager": "// ❌ Before in <{{comp}} /> (runs heavy computation while transition animates):\nuseEffect(() => {\n loadHeavyData();\n}, []);",
588
+ "afterInteractionManager": "// ✅ After (waits until transition completes smoothly):\nuseEffect(() => {\n const task = InteractionManager.runAfterInteractions(() => {\n loadHeavyData();\n });\n return () => task.cancel();\n}, []);",
589
+ "fixFlatListWindowingTitle": "Tune FlatList Windowing Properties",
590
+ "fixFlatListWindowingDesc": "Configure maxToRenderPerBatch and windowSize to minimize offscreen virtualized view allocations.",
591
+ "beforeFlatListWindowing": "// FlatList Windowing Optimization for <{{comp}} />:\n<FlatList\n data={items}\n maxToRenderPerBatch={10}\n windowSize={5}\n initialNumToRender={8}\n removeClippedSubviews={true}\n/>",
592
+ "fixImageCachingTitle": "Optimize Image Caching and Downscaling",
593
+ "fixImageCachingDesc": "Use priority headers or resizeMode downscaling to avoid massive bitmap allocations in the Hermes heap.",
594
+ "beforeImageCaching": "// Image Optimization for <{{comp}} />:\n<Image\n source={{ uri: imageUrl, cache: 'force-cache' }}\n resizeMode=\"cover\"\n fadeDuration={100}\n/>",
595
+ "fixContextSplittingTitle": "Split Monolithic Context into Granular Providers",
596
+ "fixContextSplittingDesc": "Components subscribing to a large context re-render even when unused state properties change.",
597
+ "beforeContextSplitting": "// ❌ Before (<{{comp}} /> consumes entire AppContext):\nconst { user, cart, theme } = useAppContext();",
598
+ "afterContextSplitting": "// ✅ After (subscribe to dedicated slice context):\nconst theme = useThemeContext();",
599
+ "fixInlineStylesHoistTitle": "Hoist Static Styles with StyleSheet.create",
600
+ "fixInlineStylesHoistDesc": "Inline style objects allocate new memory references on each render pass, causing Yoga reconciliation overhead.",
601
+ "beforeInlineStyles": "// ❌ Before (<{{comp}} /> allocates inline object every frame):\n<View style={{ flex: 1, padding: 16, backgroundColor: '#ffffff' }} />",
602
+ "afterInlineStyles": "// ✅ After (hoisted StyleSheet reference):\nconst styles = StyleSheet.create({ container: { flex: 1, padding: 16, backgroundColor: '#ffffff' } });\n<View style={styles.container} />",
603
+ "transitionEventLabel": "Screen Transition: {{screen}}",
604
+ "transitionEventDetail": "Transition completed in {{duration}}ms (TTI: {{tti}}ms).",
605
+ "transitionEventAdvice": "Interaction completed within 60 FPS target budget.",
606
+ "heavyTaskEventLabel": "Heavy Synchronous Task: {{taskName}}",
607
+ "heavyTaskEventDetail": "JS thread blocked for {{duration}}ms during task execution.",
608
+ "heavyTaskEventAdvice": "Consider offloading to web worker, InteractionManager, or batching in chunks.",
609
+ "asyncOpEventLabel": "Slow Async Operation: {{opName}}",
610
+ "asyncOpEventDetail": "Async task took {{duration}}ms to resolve.",
611
+ "renderLoopWarningLabel": "Rapid Re-render Spike in <{{comp}} />",
612
+ "renderLoopWarningDetail": "Component re-rendered {{count}} times in 500ms. Potential infinite loop or unstable dependencies.",
613
+ "renderLoopWarningAdvice": "Check useEffect / useCallback dependency arrays for unstable object or function references.",
614
+ "event1Label": "Main Thread Spike during Navigation",
615
+ "event1Detail": "Screen transition triggered heavy layout reconciliation and simultaneous component mounts.",
616
+ "event1Advice": "Defer non-critical offscreen hooks with InteractionManager.runAfterInteractions to preserve 60 FPS.",
617
+ "event2Label": "FlatList Virtualization Re-render Pass",
618
+ "event2Detail": "FlatList rendered 25 items simultaneously on orientation change without memoized row component.",
619
+ "event2Advice": "Implement getItemLayout and React.memo(LogCard) to skip redundant diffing passes.",
620
+ "event3Label": "Native Modal Slide-Up Transition",
621
+ "event3Detail": "Hardware accelerated native driver animated transform running smoothly at sustained 60 FPS.",
622
+ "event3Advice": "Using nativeDriver: true successfully prevents JS thread blocking during animations.",
623
+ "event4Label": "Hermes Generational Garbage Collection",
624
+ "event4Detail": "Minor generational GC cycle scavenged 4.2 MB ephemeral heap objects with sub-millisecond thread pause.",
625
+ "event4Advice": "Hermes generational garbage collector is operating within optimal sub-5ms limits.",
626
+ "gcCycleLabel": "Manual Garbage Collection Cycle",
627
+ "gcCycleDetail": "Reclaimed ~{{amount}} MB unreferenced heap objects and compacted memory nursery.",
628
+ "gcCycleAdvice": "Heap usage optimized. Generational nursery cleared.",
629
+ "liveFpsDropLabel": "Live Frame Rate Dip ({{fps}} FPS)",
630
+ "liveFpsDropDetail": "Main thread frame duration extended to {{duration}}ms during view update.",
631
+ "liveFpsDropAdvice": "Heavy JavaScript execution during frame pass delayed display presentation.",
632
+ "event5Label": "Large JSON Payload Deserialization",
633
+ "event5Detail": "50-item API response parse overhead in network adapter (185 KB JSON raw string).",
634
+ "event5Advice": "Consider paginating API payloads or streaming responses if payload size exceeds 250 KB.",
635
+ "event6Label": "Image Bitmap Decode & Rasterization",
636
+ "event6Detail": "Retina raster decode for banner_dark.png (1200×630px raster buffer allocation).",
637
+ "event6Advice": "Downscale asset dimensions or convert to WebP to reduce decode latency by ~65%.",
638
+ "event7Label": "Native TurboModule JSI Invocation",
639
+ "event7Detail": "AsyncStorage / MMKV preferences transaction read across 32 configuration keys.",
640
+ "event7Advice": "Direct C++ JSI Turbomodule bindings completely bypass legacy JSON bridge serialization overhead.",
641
+ "event8Label": "Redux Action State Tree Diffing",
642
+ "event8Detail": "Redux dispatch pass evaluated 6 reducer slices and emitted state notification in 4.8ms.",
643
+ "event8Advice": "State tree immutability preserved. Memoized selectors prevented redundant component renders.",
644
+ "event9Label": "Touch-to-Render Event Latency",
645
+ "event9Detail": "Gesture responder dispatched tap event to TabBar button with immediate 60 FPS response.",
646
+ "event9Advice": "Touch responder latency is well within standard 16.67ms frame budget.",
647
+ "event10Label": "C++ Yoga Flexbox Layout Pass",
648
+ "event10Detail": "Inspector UI multi-tab card layout recalculation and font metrics pass in C++ Yoga engine.",
649
+ "event10Advice": "Flexbox layout constraints are cached and computed efficiently with zero reflow penalties."
650
+ },
651
+ "bundle": {
652
+ "heroTitle": "Bundle & Asset Architecture",
653
+ "heroSubtitle": "Real-time size breakdown across all assets, code, and dependencies",
654
+ "heroSubtitleLive": "Live analysis of {{scriptUrl}}",
655
+ "liveAnalysisUnavailable": "Live bundle analysis unavailable",
656
+ "liveAnalysisUnavailableSub": "Could not reach the Metro dev server, so values are estimates. Make sure the app runs in development via `npx react-native start` and the Inspector can reach your Metro port (8081, 8082, ...).",
657
+ "bundleOverviewJson": "Bundle Overview JSON",
658
+ "devBundleSize": "DEV BUNDLE SIZE",
659
+ "devBundleHint": "{{kb}} KB • {{modules}} modules",
660
+ "trackedFilesHint": "{{count}} Tracked files",
661
+ "imagesMedia": "IMAGES & MEDIA",
662
+ "pctOfTrackedAssets": "{{pct}}% of tracked assets",
663
+ "tsJsSource": "TS / JS SOURCE",
664
+ "jsEngine": "JS ENGINE",
665
+ "bytecodeAot": "Bytecode AOT",
666
+ "standard": "Standard",
667
+ "splitUpTitle": "Development Bundle Split-Up",
668
+ "splitUpSub": "Measured {{mb}} MB JS bundle • {{files}} files • {{packages}} packages",
669
+ "splitUpJson": "Split-Up JSON",
670
+ "splitAppSource": "App Source Code",
671
+ "splitNodeModules": "node_modules Dependencies",
672
+ "splitAssetsMedia": "Assets & Media",
673
+ "splitMetroOverhead": "Metro Dev Overhead",
674
+ "splitSize": "{{kb}} KB • {{mb}} MB",
675
+ "productionFootprint": "PRODUCTION FOOTPRINT",
676
+ "productionValue": "iOS {{ios}} MB • Android {{android}} MB",
677
+ "productionDownload": "Download: iOS ~{{ios}} MB • AAB ~{{aab}} MB • APK ~{{apk}} MB",
678
+ "treemapTitle": "Asset & File Type Ratio Treemap",
679
+ "treemapSub": "Total ~{{mb}} MB",
680
+ "treemapJson": "Ratio Treemap JSON",
681
+ "legendImages": "Images:",
682
+ "legendTs": "TS/TSX:",
683
+ "legendJs": "JS Libs:",
684
+ "legendFonts": "Fonts:",
685
+ "legendJson": "JSON:",
686
+ "categoryBreakdown": "Category Breakdown",
687
+ "categoriesJson": "Categories Breakdown JSON",
688
+ "catImagesTitle": "Images & Media Assets",
689
+ "catImagesDesc": "PNG, WebP, SVG, and JPG assets in bundle",
690
+ "catJsTitle": "Compiled Node Modules & JS",
691
+ "catJsDesc": "Third-party dependencies and native bridges",
692
+ "catFontsTitle": "Custom Fonts & Vector Glyphs",
693
+ "catFontsDesc": "Font assets in bundle",
694
+ "catTsTitle": "TypeScript & JSX Components",
695
+ "catTsDesc": "App screen components, hooks, and business logic",
696
+ "catJsonTitle": "JSON Data & Localizations",
697
+ "catJsonDesc": "i18n translation dictionaries and static configs",
698
+ "totalBundleAssets": "TOTAL HOST PROJECT FILES",
699
+ "totalBundleValue": "{{kb}} KB (~{{mb}} MB)",
700
+ "totalFormula": "Sum of host source files: {{images}} KB + {{js}} KB + {{fonts}} KB + {{ts}} KB + {{json}} KB = {{total}} KB ({{count}} items)",
701
+ "prodIosApp": "iOS App (.ipa)",
702
+ "prodAndroidAab": "Android AAB (.aab)",
703
+ "prodAndroidApk": "Universal APK (.apk)",
704
+ "prodHeroTitleIos": "iOS Production Binary Footprint",
705
+ "prodHeroTitleAab": "Google Play App Bundle (.aab)",
706
+ "prodHeroTitleApk": "Universal Standalone APK (.apk)",
707
+ "prodHeroSubIos": "App Store install & over-the-air cellular download estimates",
708
+ "prodHeroSubAab": "Optimized per-device dynamic delivery split APK architecture",
709
+ "prodHeroSubApk": "Multi-ABI universal install archive for sideloading & direct distribution",
710
+ "prodInstallSize": "INSTALL SIZE",
711
+ "prodInstallHint": "On-device uncompressed footprint",
712
+ "prodDownloadSize": "DOWNLOAD SIZE",
713
+ "prodDownloadHint": "Store network transfer payload",
714
+ "prodCompression": "COMPRESSION",
715
+ "prodCompressionHint": "Bytecode & asset ratio",
716
+ "prodFormatArch": "FORMAT ARCHITECTURE",
717
+ "prodFormatHintIos": "Apple ARM64 runtime",
718
+ "prodFormatHintAab": "Dynamic Google Play delivery",
719
+ "prodFormatHintApk": "Sideload universal package",
720
+ "prodArchTitle": "Binary Component Architecture",
721
+ "prodArchSub": "Compiled native libraries, runtime bytecodes, assets, and signature blocks",
722
+ "prodTotalIos": "TOTAL IOS APP BINARY",
723
+ "prodTotalAab": "TOTAL ANDROID AAB BUNDLE",
724
+ "prodTotalApk": "TOTAL UNIVERSAL APK",
725
+ "prodTotalFormula": "From {{devKb}} KB (~{{devMb}} MB • {{count}} total assets) dev source bundle → {{installMb}} MB optimized native binary ({{pct}}% bytecode/asset compression).",
726
+ "tabOverview": "Overview",
727
+ "tabProduction": "Production ({{count}})",
728
+ "tabFiles": "Files ({{count}})",
729
+ "tabPackages": "Packages ({{count}})",
730
+ "tabMedia": "Media ({{count}})",
731
+ "tabOptimizer": "Optimizer",
732
+ "analyzingTitle": "Analyzing host app bundle from Metro…",
733
+ "analyzingHint": "Fetching bundle & extracting real modules",
734
+ "searchFilesPlaceholder": "Search by file name (.png, .tsx, .ttf, path)...",
735
+ "filteredFilesJson": "Filtered Files JSON",
736
+ "catAll": "All Files",
737
+ "catUnused": "Not Consumed (Dead)",
738
+ "catConsumed": "In-Use / Active",
739
+ "catImages": "Images & Media",
740
+ "catTypescript": "TypeScript / TSX",
741
+ "catJavascript": "JS & Node Modules",
742
+ "catFonts": "Fonts & Glyphs",
743
+ "catJson": "JSON & Data",
744
+ "treeView": "Tree View",
745
+ "flatList": "Flat List",
746
+ "expand": "Expand",
747
+ "collapse": "Collapse",
748
+ "showingFilesOf": "Showing {{shown}} of {{total}} files",
749
+ "filesOf": "{{count}} of {{total}} Files",
750
+ "notConsumed": "Not Consumed",
751
+ "consumed": "Consumed",
752
+ "copyFileInfo": "Copy {{name}} Info",
753
+ "fileDetailsJson": "File Details JSON",
754
+ "file": "file",
755
+ "files": "files",
756
+ "fileSizeKb": "{{size}} KB",
757
+ "fileSizeMb": "{{size}} MB",
758
+ "mbValue": "~{{size}} MB",
759
+ "kbMbValue": "{{kb}} KB ({{mb}} MB)",
760
+ "legendValue": "{{kb}} KB ({{pct}}%)",
761
+ "mediaSavings": "{{size}} KB",
762
+ "searchPackagesPlaceholder": "Search package (react-native, axios, navigation)...",
763
+ "dependenciesJson": "Dependencies JSON",
764
+ "showingDependencies": "Showing {{count}} dependencies",
765
+ "versionPrefix": "v{{version}}",
766
+ "bundled": "bundled",
767
+ "deprecated": "DEPRECATED",
768
+ "updateAvailable": "Update: v{{version}}",
769
+ "upToDate": "Up to date",
770
+ "bundledBadge": "Bundled",
771
+ "packageDetailsJson": "Package Details JSON",
772
+ "direct": "Direct",
773
+ "transitive": "Transitive",
774
+ "minified": "~{{size}} KB minified",
775
+ "npmLink": "npm ↗",
776
+ "dependenciesCount": "{{count}} Dependencies",
777
+ "mediaAuditorTitle": "Media Compression Auditor",
778
+ "mediaAssetsJson": "Media Assets JSON",
779
+ "mediaAuditorPrefix": "Images & Fonts constitute",
780
+ "mediaAuditorMid": "of total assets (~{{kb}} KB). Converting PNGs to WebP and font subsetting can reduce size by up to",
781
+ "mediaAuditorSuffix": "KB.",
782
+ "mediaAssetsList": "Media Assets & Fonts ({{count}} items)",
783
+ "mediaItemJson": "Media Item JSON",
784
+ "mediaAndFonts": "{{count}} Media & Fonts",
785
+ "optimizerTitle": "React Native Bundle Optimization Checklist",
786
+ "optimizationChecklist": "Optimization Checklist",
787
+ "optTip1Title": "Convert Heavy PNGs to WebP / SVGs",
788
+ "optTip1Desc": "Images account for >40% of final app download size. Converting 2x/3x raster PNGs to WebP saves 60-70% size with no visible fidelity loss.",
789
+ "optTip2Title": "Enable Hermes Bytecode Engine",
790
+ "optTip2DescActive": "Hermes is active! JavaScript is compiled into optimized bytecode Ahead-Of-Time.",
791
+ "optTip2DescInactive": "Hermes is disabled. Enable hermes in your app config for ~40% smaller payload and instant TTI startup.",
792
+ "optTip3Title": "Font Subsetting & Weight Pruning",
793
+ "optTip3Desc": "Include only the font weights you actively use (e.g. Regular & Bold). Remove unused glyph ranges to save 100KB+ per font file.",
794
+ "optTip4Title": "Selective Path Imports (Tree-shaking)",
795
+ "optTip4Desc": "Import from specific subpaths (e.g. lodash/get or specific vector icon sets) instead of importing large monolithic packages.",
796
+ "optTip5Title": "Screen Lazy-Loading",
797
+ "optTip5Desc": "Lazy load secondary screens and heavy modal sheets using dynamic imports and InteractionManager to reduce initial bundle evaluation.",
798
+ "highImpact": "High Impact",
799
+ "mediumImpact": "Medium Impact",
800
+ "bestPractice": "Best Practice",
801
+ "actionRequired": "Action Required",
802
+ "active": "Active",
803
+ "tipDetails": "Tip Details",
804
+ "iosComp1Name": "Frameworks & Dynamic Pods",
805
+ "iosComp1Desc": "React, Hermes, and {{count}} native pod frameworks.",
806
+ "iosComp1Advice": "Ensure Dead Code Stripping (STRIP_INSTALLED_PRODUCT = YES) in Release mode.",
807
+ "iosComp2Name": "Mach-O Executable (ARM64)",
808
+ "iosComp2Desc": "Host App compiled Swift/Objective-C and C++ native bridges.",
809
+ "iosComp2Advice": "Enable Monolithic LTO (Link-Time Optimization) in Xcode Scheme.",
810
+ "iosComp3Name": "Asset Catalog (Assets.car)",
811
+ "iosComp3Desc": "AppIcons, splash screens, vector glyphs, and bundled fonts.",
812
+ "iosComp3Advice": "Compile images into Xcode Asset Catalog for automatic App Thinning.",
813
+ "iosComp4Name": "Hermes Bytecode (main.jsbundle)",
814
+ "iosComp4Desc": "Host app JavaScript compiled AOT into Hermes bytecode ({{count}} files).",
815
+ "iosComp4Advice": "AOT bytecode loads with 0ms compile latency on device launch.",
816
+ "iosComp5Name": "Metadata & Code Signatures",
817
+ "iosComp5Desc": "_CodeSignature, Info.plist, and entitlements block.",
818
+ "iosComp5Advice": "Standard Apple Code Signing & provisioning signature.",
819
+ "andComp1Name": "Native C++ Libraries (.so)",
820
+ "andComp1Desc": "libhermes.so, libfbjni.so, and {{count}} C++ native adapters.",
821
+ "andComp1Advice": "Deploy with Android App Bundle (.aab) to deliver per-ABI split APKs.",
822
+ "andComp2Name": "Compiled DEX (classes.dex)",
823
+ "andComp2Desc": "Compiled Java & Kotlin runtime, AndroidX, and React Native bridges.",
824
+ "andComp2Advice": "Enable R8 / ProGuard shrinking (minifyEnabled true) in build.gradle.",
825
+ "andComp3Name": "Android Resources (res/)",
826
+ "andComp3Desc": "Drawables, vector XMLs, mipmap densities, resources.arsc, fonts.",
827
+ "andComp3Advice": "Use WebP and VectorDrawables to avoid multi-density asset duplication.",
828
+ "andComp4Name": "Hermes Bytecode (Android)",
829
+ "andComp4Desc": "Host app JavaScript compiled into Hermes bytecode ({{count}} files).",
830
+ "andComp4Advice": "Pre-compiled bytecode during assembleRelease gradle task.",
831
+ "andComp5Name": "Manifest & Signatures (META-INF)",
832
+ "andComp5Desc": "AndroidManifest.xml, signing certs, v2/v3/v4 APK Signature Scheme blocks.",
833
+ "andComp5Advice": "Official Google Play signing & signature block.",
834
+ "apkComp1Name": "Multi-ABI C++ Libraries (.so)",
835
+ "apkComp1Desc": "Universal multi-architecture shared libraries (.so) bundled for direct sideloading.",
836
+ "apkComp1Advice": "Use Android App Bundle (.aab) for Google Play to reduce install size by 60%.",
837
+ "apkComp2Name": "Compiled DEX Bytecode (classes.dex)",
838
+ "apkComp2Desc": "Compiled Java & Kotlin runtime, AndroidX libraries, and native bridge modules.",
839
+ "apkComp2Advice": "Enable R8 / ProGuard shrinking (minifyEnabled true) and shrinkResources true.",
840
+ "apkComp3Name": "Android Resources & Assets (res/)",
841
+ "apkComp3Desc": "Drawables, vector XMLs, mipmap densities, resources.arsc, fonts.",
842
+ "apkComp3Advice": "Use WebP and VectorDrawables to avoid multi-density asset duplication.",
843
+ "apkComp4Name": "Hermes Bytecode Bundle (Android)",
844
+ "apkComp4Desc": "Host app JavaScript compiled into Hermes bytecode ({{count}} files).",
845
+ "apkComp4Advice": "Pre-compiled bytecode during assembleRelease gradle task.",
846
+ "apkComp5Name": "Manifest & Signatures (META-INF)",
847
+ "apkComp5Desc": "AndroidManifest.xml, signing certs, JAR & v2/v3/v4 APK Signature Scheme.",
848
+ "apkComp5Advice": "Enterprise sideload & direct install signature block."
849
+ },
850
+ "errors": {
851
+ "title": "Something went wrong",
852
+ "message": "An unexpected error occurred.",
853
+ "retry": "Try Again",
854
+ "reset": "Reset",
855
+ "close": "Close",
856
+ "errorReport": "Error report",
857
+ "modalTitle": "Inspector crashed",
858
+ "modalMessage": "The inspector hit an unexpected error. You can reset it below.",
859
+ "inlineTitle": "Inspector error",
860
+ "inlineMessage": "An unexpected error occurred inside the inspector.",
861
+ "networkError": "Network request failed",
862
+ "crashIntercepted": "CRASH INTERCEPTED",
863
+ "protected": "PROTECTED",
864
+ "rootCauseTitle": "Root Cause Diagnostics",
865
+ "rootCauseSubtitle": "Inspector caught this runtime error to prevent app termination",
866
+ "exactLocation": "EXACT SOURCE LOCATION",
867
+ "file": "File:",
868
+ "lineCol": "Line / Col:",
869
+ "lineColVal": "Line {{line}}, Col {{col}}",
870
+ "function": "Function:",
871
+ "callStack": "CALL STACK FRAMES",
872
+ "framesCount": "{{count}} frames",
873
+ "tryAgainRecover": "Try Again / Recover",
874
+ "copyDiagnostics": "Copy Diagnostics",
875
+ "appTag": "APP",
876
+ "copy": "Copy"
877
+ },
878
+ "jsonViewer": {
879
+ "pretty": "Pretty",
880
+ "raw": "Raw",
881
+ "table": "Table",
882
+ "emptyObject": "Empty Object"
883
+ },
884
+ "codeSnippet": {
885
+ "copy": "Copy",
886
+ "copied": "Copied!",
887
+ "matchCount": "{{count}} match",
888
+ "matchCount_plural": "{{count}} matches",
889
+ "noMatches": "No matches",
890
+ "searchPlaceholder": "Search...",
891
+ "prevMatch": "Previous match",
892
+ "nextMatch": "Next match",
893
+ "clearSearch": "Clear search"
894
+ },
895
+ "diffViewer": {
896
+ "added": "added",
897
+ "removed": "removed",
898
+ "changed": "changed",
899
+ "noDiff": "No differences",
900
+ "emptyTitle": "No differences found",
901
+ "emptySubtitle": "The two payloads are identical."
902
+ },
903
+ "logCard": {
904
+ "seeMore": "Show more",
905
+ "seeLess": "Show less",
906
+ "copy": "Copy",
907
+ "copied": "Copied!"
908
+ },
909
+ "emptyState": {
910
+ "title": "Nothing here yet",
911
+ "subtitle": "Data will appear here as you use the app.",
912
+ "reload": "Reload"
913
+ },
914
+ "errorBoundary": {
915
+ "title": "Something went wrong",
916
+ "message": "An unexpected error occurred.",
917
+ "retry": "Try Again",
918
+ "reset": "Reset",
919
+ "close": "Close"
920
+ },
921
+ "crash": {
922
+ "title": "Crash",
923
+ "searchPlaceholder": "Search error, message, stack...",
924
+ "searchDetailPlaceholder": "Search in trace or JSON...",
925
+ "statCrashes": "Crashes",
926
+ "statFatal": "Fatal",
927
+ "statJsErrors": "JS Errors",
928
+ "statPromises": "Promises",
929
+ "statRender": "Render",
930
+ "statNative": "Native",
931
+ "filterAll": "All",
932
+ "filterFatal": "Fatal",
933
+ "filterJsError": "JS Error",
934
+ "filterPromise": "Promise",
935
+ "filterRender": "Render",
936
+ "filterNative": "Native",
937
+ "fatalBadge": "FATAL",
938
+ "handledBadge": "HANDLED",
939
+ "fatalCrash": "FATAL CRASH",
940
+ "handledException": "HANDLED EXCEPTION",
941
+ "unknownException": "Unknown Exception",
942
+ "report": "Report",
943
+ "inspect": "Inspect",
944
+ "copyReport": "Copy Report",
945
+ "copied": "Copied",
946
+ "clearTitle": "Clear Crash History",
947
+ "clearMessage": "Are you sure you want to clear all intercepted crash records?",
948
+ "clearCancel": "Cancel",
949
+ "clearConfirm": "Clear All",
950
+ "emptyTitle": "Zero Crashes Detected",
951
+ "emptySubtitle": "Global crash guard is active. All native and JavaScript exceptions are intercepted and protected.",
952
+ "emptySearchSubtitle": "No crash entries matched your search query.",
953
+ "tabStack": "Stack ({{count}})",
954
+ "tabDiagnostics": "Diagnostics",
955
+ "tabTrail": "Trail ({{count}})",
956
+ "tabRawJson": "Raw JSON",
957
+ "appFrames": "App Frames ({{count}})",
958
+ "allFrames": "All Frames ({{count}})",
959
+ "frameApp": "APP",
960
+ "frameLib": "LIB",
961
+ "anonymous": "<anonymous>",
962
+ "noStackTrace": "No stack trace captured for this event.",
963
+ "deviceEnvironment": "Device & Environment",
964
+ "platform": "Platform",
965
+ "osVersion": "OS Version",
966
+ "reactNative": "React Native",
967
+ "jsEngine": "JS Engine",
968
+ "hermesEngine": "Hermes Engine",
969
+ "jsc": "JSC",
970
+ "architecture": "Architecture",
971
+ "fabricNewArch": "Fabric (New Arch)",
972
+ "paperLegacy": "Paper (Legacy)",
973
+ "appState": "App State",
974
+ "jsHeapMemory": "JS Heap Memory",
975
+ "usedHeap": "Used Heap",
976
+ "totalHeap": "Total Heap",
977
+ "noBreadcrumbs": "No breadcrumb events recorded prior to this crash.",
978
+ "simNativeMessage": "Simulated native fatal exception",
979
+ "simPromiseMessage": "Simulated unhandled promise rejection",
980
+ "simRenderMessage": "Simulated React component render error",
981
+ "simJsMessage": "Simulated JavaScript exception",
982
+ "reportTitle": "CRASH DIAGNOSTIC REPORT",
983
+ "reportErrorName": "Error Name:",
984
+ "reportMessage": "Message:",
985
+ "reportType": "Type:",
986
+ "reportFatalYes": "YES (Fatal)",
987
+ "reportFatalNo": "NO (Caught/Handled)",
988
+ "reportFatal": "Fatal:",
989
+ "reportTimestamp": "Timestamp:",
990
+ "reportUptime": "App Uptime:",
991
+ "reportUptimeValue": "{{seconds}} seconds",
992
+ "reportPlatform": "Platform:",
993
+ "reportReactNative": "React Native:",
994
+ "reportHermes": "Hermes:",
995
+ "reportEnabled": "Enabled",
996
+ "reportDisabled": "Disabled",
997
+ "reportArchitecture": "Architecture:",
998
+ "reportFabricNew": "Fabric (New)",
999
+ "reportPaperLegacy": "Paper (Legacy)",
1000
+ "reportScreenSize": "Screen Size:",
1001
+ "reportAppState": "App State:",
1002
+ "reportJsMemory": "JS Memory:",
1003
+ "reportStackTrace": "STACK TRACE:",
1004
+ "reportNoStackTrace": "No stack trace available",
1005
+ "reportComponentHierarchy": "COMPONENT HIERARCHY:",
1006
+ "reportRecentBreadcrumbs": "RECENT BREADCRUMBS:",
1007
+ "mdReportTitle": "🚨 Crash Report: {{name}}",
1008
+ "mdStackTrace": "📦 Stack Trace",
1009
+ "mdComponentHierarchy": "🌲 Component Hierarchy",
1010
+ "mdRecentBreadcrumbs": "👣 Recent Breadcrumbs",
1011
+ "mdSeverityFatal": "FATAL",
1012
+ "mdSeverityHandled": "HANDLED",
1013
+ "breadcrumbNavigation": "Navigated from \"{{from}}\" to \"{{to}}\"",
1014
+ "breadcrumbAction": "Action: {{actionType}}",
1015
+ "unknown": "Unknown",
1016
+ "runtimeException": "Runtime Exception",
1017
+ "logFatalCrash": "Fatal Crash",
1018
+ "logUnhandledError": "Unhandled Error",
1019
+ "errorNameFatal": "FatalError",
1020
+ "errorNameUnhandled": "UnhandledException",
1021
+ "nativeCrashTitle": "Native Crash",
1022
+ "nativeUncaughtException": "Native Uncaught Exception",
1023
+ "nativeException": "Native Exception",
1024
+ "unhandledPromiseRejection": "Unhandled Promise Rejection",
1025
+ "filterTitle": "Crash Filters",
1026
+ "filterSubtitle": "Diagnostics & Reports",
1027
+ "filterReset": "Reset All",
1028
+ "filterTypeSection": "CRASH TYPE",
1029
+ "filterTypeAll": "All Types",
1030
+ "filterTimeSection": "TIME HORIZON",
1031
+ "filterTimeAll": "All Time",
1032
+ "filterTime15m": "Last 15 mins",
1033
+ "filterTime1h": "Last 1 hour",
1034
+ "filterTime24h": "Last 24 hours",
1035
+ "filterTime7d": "Last 7 days",
1036
+ "filterPlatformSection": "PLATFORM",
1037
+ "filterPlatformAll": "All Platforms",
1038
+ "filterPlatformIos": "iOS",
1039
+ "filterPlatformAndroid": "Android",
1040
+ "filterEngineSection": "JS ENGINE",
1041
+ "filterEngineAll": "All Engines",
1042
+ "filterEngineHermes": "Hermes",
1043
+ "filterSortSection": "SORT ORDER",
1044
+ "filterSortNewest": "Newest First (Default)",
1045
+ "filterSortOldest": "Oldest First",
1046
+ "filterDiscard": "Discard",
1047
+ "filterApply": "Apply ({{count}} Crashes)",
1048
+ "frameCopy": "Copy",
1049
+ "frameCopied": "Copied",
1050
+ "componentHierarchy": "Component Hierarchy"
1051
+ }
1052
+ }