Files
worldmonitor/src/locales/en.json
Sebastien Melki b1d835b69f feat: HappyMonitor — positive news dashboard (happy.worldmonitor.app) (#229)
* chore: add project config

* docs: add domain research (stack, features, architecture, pitfalls)

* docs: define v1 requirements

* docs: create roadmap (9 phases)

* docs(01): capture phase context

* docs(state): record phase 1 context session

* docs(01): research phase domain

* docs(01): create phase plan

* fix(01): revise plans based on checker feedback

* feat(01-01): register happy variant in config system and build tooling

- Add 'happy' to allowed stored variants in variant.ts
- Create variants/happy.ts with panels, map layers, and VariantConfig
- Add HAPPY_PANELS, HAPPY_MAP_LAYERS, HAPPY_MOBILE_MAP_LAYERS inline in panels.ts
- Update ternary export chains to select happy config when SITE_VARIANT === 'happy'
- Add happy entry to VARIANT_META in vite.config.ts
- Add dev:happy and build:happy scripts to package.json

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-01): update index.html for variant detection, CSP, and Google Fonts

- Add happy.worldmonitor.app to CSP frame-src directive
- Extend inline script to detect variant from hostname (happy/tech/finance) and localStorage
- Set data-variant attribute on html element before first paint to prevent FOUC
- Add Google Fonts preconnect and Nunito stylesheet links
- Add favicon variant path replacement in htmlVariantPlugin for non-full variants

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-01): create happy variant favicon assets

- Create SVG globe favicon in sage green (#6B8F5E) and warm gold (#C4A35A)
- Generate PNG favicons at all required sizes (16, 32, 180, 192, 512)
- Generate favicon.ico with PNG-in-ICO wrapper
- Create branded OG image (1200x630) with cream background, sage/gold scheme

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(01-01): complete variant registration plan

- Create 01-01-SUMMARY.md documenting variant registration
- Update STATE.md with plan 1 completion, metrics, decisions
- Update ROADMAP.md with phase 01 progress (1/3 plans)
- Mark INFRA-01, INFRA-02, INFRA-03 requirements complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-02): create happy variant CSS theme with warm palette and semantic overrides

- Complete happy-theme.css with light mode (cream/sage), dark mode (navy/warm), and semantic colors
- 179 lines covering all CSS custom properties: backgrounds, text, borders, overlays, map, panels
- Nunito typography and 14px panel border radius for soft rounded aesthetic
- Semantic colors remapped: gold (critical), sage (growth), blue (hope), pink (kindness)
- Dark mode uses warm navy/sage tones, never pure black
- Import added to main.css after panels.css

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-02): add happy variant skeleton shell overrides and theme-color meta

- Inline skeleton styles for happy variant light mode (cream bg, Nunito font, sage dot, warm shimmer)
- Inline skeleton styles for happy variant dark mode (navy bg, warm borders, sage tones)
- Rounded corners (14px) on skeleton panels and map for soft aesthetic
- Softer pill border-radius (8px) in happy variant
- htmlVariantPlugin: theme-color meta updated to #FAFAF5 for happy variant mobile chrome

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(01-02): complete happy theme CSS plan

- SUMMARY.md with execution results and self-check
- STATE.md advanced to plan 2/3, decisions logged
- ROADMAP.md progress updated (2/3 plans complete)
- REQUIREMENTS.md: THEME-01, THEME-03, THEME-04 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-03): create warm basemap styles and wire variant-aware map selection

- Add happy-light.json: sage land, cream background, light blue ocean (forked from CARTO Voyager)
- Add happy-dark.json: dark sage land, navy background, dark navy ocean (forked from CARTO Dark Matter)
- Both styles preserve CARTO CDN source/sprite/glyph URLs for tile loading
- DeckGLMap.ts selects happy basemap URLs when SITE_VARIANT is 'happy'

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(01-03): style panel chrome, empty states, and loading for happy variant

- Panels get 14px rounded corners with subtle warm shadows
- Panel titles use normal casing (no uppercase) for friendlier feel
- Empty states (.panel-empty, .empty-state) show nature-themed sprout SVG icon
- Loading radar animation softened to 3s rotation with sage-green glow
- Status dots use gentle happy-pulse animation (2.5s ease-in-out)
- Error states use warm gold tones instead of harsh red
- Map controls, tabs, badges all get rounded corners
- Severity badges use warm semantic colors
- Download banner and posture radar adapted to warm theme

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(01-03): bridge SITE_VARIANT to data-variant attribute on <html>

The CSS theme overrides rely on [data-variant="happy"] on the document root,
but the inline script only detects variant from hostname/localStorage. This
leaves local dev (VITE_VARIANT=happy) and Vercel deployments without the
attribute set. Two fixes:

1. main.ts sets document.documentElement.dataset.variant from SITE_VARIANT
2. Vite htmlVariantPlugin injects build-time variant fallback into inline script

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(01-03): boost CSS specificity so happy theme wins over :root

The happy-theme.css was imported before :root in main.css, and both
[data-variant="happy"] and :root have equal specificity (0-1-0), so
:root variables won after in the cascade. Fix by using :root[data-variant="happy"]
(specificity 0-2-0) which always beats :root (0-1-0).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(01): fix CSS cascade — import happy-theme after main.css in main.ts

The root cause: happy-theme.css was @imported inside main.css (line 4),
which meant Vite loaded it BEFORE the :root block (line 9+). With equal
specificity, the later :root variables always won.

Fix: remove @import from main.css, import happy-theme.css directly in
main.ts after main.css. This ensures cascade order is correct — happy
theme variables come last and win. No !important needed.

Also consolidated semantic color variables into the same selector blocks
to reduce redundancy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(01): fix CSS cascade with @layer base and theme toggle for happy variant

- Wrap main.css in @layer base via base-layer.css so happy-theme.css
  (unlayered) always wins the cascade for custom properties
- Remove duplicate <link> stylesheet from index.html (was double-loading)
- Default happy variant to light theme (data-theme="light") so the
  theme toggle works on first click instead of requiring two clicks
- Force build-time variant in inline script — stale localStorage can no
  longer override the deployment variant
- Prioritize VITE_VARIANT env over localStorage in variant.ts so
  variant-specific builds are deterministic

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(01-03): complete map basemap & panel chrome plan — Phase 1 done

- Add 01-03-SUMMARY.md with task commits, deviations, and self-check
- Update STATE.md: Phase 1 complete, advance to ready for Phase 2
- Update ROADMAP.md: mark Phase 1 plans 3/3 complete
- Update REQUIREMENTS.md: mark THEME-02 and THEME-05 complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-01): complete phase execution

* docs(phase-02): research curated content pipeline

* docs(02): create phase plan — curated content pipeline

* feat(02-01): add positive RSS feeds for happy variant

- Add HAPPY_FEEDS record with 8 feeds across 5 categories (positive, science, nature, health, inspiring)
- Update FEEDS export ternary to route happy variant to HAPPY_FEEDS
- Add happy source tiers to SOURCE_TIERS (Tier 2 for main sources, Tier 3 for category feeds)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(02-01): extend GDELT with tone filtering and positive topic queries

- Add tone_filter (field 4) and sort (field 5) to SearchGdeltDocumentsRequest proto
- Regenerate TypeScript client/server types via buf generate
- Handler appends toneFilter to GDELT query string, uses req.sort for sort param
- Add POSITIVE_GDELT_TOPICS array with 5 positive topic queries
- Add fetchPositiveGdeltArticles() with tone>5 and ToneDesc defaults
- Add fetchPositiveTopicIntelligence() and fetchAllPositiveTopicIntelligence() helpers
- Existing fetchGdeltArticles() backward compatible (empty toneFilter/sort = no change)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(02-01): complete positive feeds & GDELT tone filtering plan

- Create 02-01-SUMMARY.md with execution results
- Update STATE.md: phase 2, plan 1 of 2, decisions, metrics
- Update ROADMAP.md: phase 02 progress (1/2 plans)
- Mark FEED-01 and FEED-03 requirements complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(02-02): add positive content classifier and extend NewsItem type

- Create positive-classifier.ts with 6 content categories (science-health, nature-wildlife, humanity-kindness, innovation-tech, climate-wins, culture-community)
- Source-based pre-mapping for GNN category feeds (fast path)
- Priority-ordered keyword classification for general positive feeds (slow path)
- Add happyCategory optional field to NewsItem interface
- Export HAPPY_CATEGORY_LABELS and HAPPY_CATEGORY_ALL for downstream UI use

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore(02-02): clean up happy variant config and verify feed wiring

- Remove dead FEEDS placeholder from happy.ts (now handled by HAPPY_FEEDS in feeds.ts)
- Remove unused Feed type import
- Verified SOURCE_TIERS has all 8 happy feed entries (Tier 2: GNN/Positive.News/RTBC/Optimist, Tier 3: GNN category feeds)
- Verified FEEDS export routes to HAPPY_FEEDS when SITE_VARIANT=happy
- Verified App.ts loadNews() dynamically iterates FEEDS keys
- Happy variant builds successfully

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(02-02): complete content category classifier plan

- SUMMARY.md documenting classifier implementation and feed wiring cleanup
- STATE.md updated: Phase 2 complete, 5 total plans done, 56% progress
- ROADMAP.md updated: Phase 02 marked complete (2/2 plans)
- REQUIREMENTS.md: FEED-04 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(02-03): create gap closure plan for classifier wiring

* feat(02-03): wire classifyNewsItem into happy variant news ingestion

- Import classifyNewsItem from positive-classifier service
- Add classification step in loadNewsCategory() after fetchCategoryFeeds
- Guard with SITE_VARIANT === 'happy' to avoid impact on other variants
- In-place mutation via for..of loop sets happyCategory on every NewsItem

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(02-03): complete classifier wiring gap closure plan

- Add 02-03-SUMMARY.md documenting classifier wiring completion
- Update STATE.md with plan 3/3 position and decisions
- Update ROADMAP.md with completed plan checkboxes
- Include 02-VERIFICATION.md phase verification document

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-2): complete phase execution

* test(02): complete UAT - 1 passed, 1 blocker diagnosed

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-3): research positive news feed & quality pipeline

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(03): create phase plan for positive news feed and quality pipeline

* fix(03): revise plans based on checker feedback

* feat(03-02): add imageUrl to NewsItem and extract images from RSS

- Add optional imageUrl field to NewsItem interface
- Add extractImageUrl() helper to rss.ts with 4-strategy image extraction
  (media:content, media:thumbnail, enclosure, img-in-description)
- Wire image extraction into fetchFeed() for happy variant only

* feat(03-01): add happy variant guards to all App.ts code paths

- Skip DEFCON/PizzInt indicator for happy variant
- Add happy variant link (sun icon) to variant switcher header
- Show 'Good News Map' title for happy variant map section
- Skip LiveNewsPanel, LiveWebcams, TechEvents, ServiceStatus, TechReadiness, MacroSignals, ETFFlows, Stablecoin panels for happy
- Gate live-news first-position logic with happy exclusion
- Only load 'news' data for happy variant (skip markets, predictions, pizzint, fred, oil, spending, intelligence, military layers)
- Only schedule 'news' refresh interval for happy (skip all geopolitical/financial refreshes)
- Add happy-specific search modal with positive placeholder and no military/geopolitical sources

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(03-02): create PositiveNewsFeedPanel with filter bar and card rendering

- New PositiveNewsFeedPanel component extending Panel with:
  - Category filter bar (All + 6 positive categories)
  - Rich card rendering with image, title, source, category badge, time
  - Filter state preserved across data refreshes
  - Proper cleanup in destroy()
- Add CSS styles to happy-theme.css for cards and filter bar
  - Category-specific badge colors using theme variables
  - Scoped under [data-variant="happy"] to avoid affecting other variants

* feat(03-01): return empty channels for happy variant in LiveNewsPanel

- Defense-in-depth: LIVE_CHANNELS returns empty array for happy variant
- Ensures zero Bloomberg/war streams even if panel is somehow instantiated
- Combined with createPanels() guard from Task 1 for belt-and-suspenders safety

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(03-02): complete positive news feed panel plan

- Created 03-02-SUMMARY.md with execution results
- Updated STATE.md with position, decisions, and metrics
- Updated ROADMAP.md with phase 03 progress (2/3 plans)
- Marked NEWS-01, NEWS-02 requirements as complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(03-01): complete Happy Variant App.ts Integration plan

- SUMMARY.md with execution results and decisions
- STATE.md updated with 03-01 decisions and session info
- ROADMAP.md progress updated (2/3 phase 3 plans)
- NEWS-03 requirement marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(03-03): create sentiment gate service for ML-based filtering

- Exports filterBySentiment() wrapping mlWorker.classifySentiment()
- Default threshold 0.85 with localStorage override for tuning
- Graceful degradation: returns all items if ML unavailable
- Batches titles at 20 items per call (ML_THRESHOLDS.maxTextsPerBatch)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(03-03): wire multi-stage quality pipeline and positive-feed panel into App.ts

- Register 'positive-feed' in HAPPY_PANELS replacing 'live-news'
- Import PositiveNewsFeedPanel, filterBySentiment, fetchAllPositiveTopicIntelligence
- Add positivePanel + happyAllItems class properties
- Create PositiveNewsFeedPanel in createPanels() for happy variant
- Accumulate curated items in loadNewsCategory() for happy variant
- Implement loadHappySupplementaryAndRender() 4-stage pipeline:
  1. Curated feeds render immediately (non-blocking UX)
  2. GDELT positive articles fetched as supplementary
  3. Sentiment-filtered via DistilBERT-SST2 (filterBySentiment)
  4. Merged + sorted by date, re-rendered
- Auto-refresh on REFRESH_INTERVALS.feeds re-runs full pipeline
- ML failure degrades gracefully to curated-only display

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(03-03): complete quality pipeline plan - phase 3 done

- Summary: multi-stage positive news pipeline with ML sentiment gate
- STATE.md: phase 3 complete (3/3), 89% progress
- ROADMAP.md: phase 03 marked complete
- REQUIREMENTS.md: FEED-02, FEED-05 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(03): wire positive-feed panel key in panels.ts and add happy map layer/legend config

The executor updated happy.ts but the actual HAPPY_PANELS export comes from
panels.ts — it still had 'live-news' instead of 'positive-feed', so the panel
never rendered. Also adds happyLayers (natural only) and happy legend to Map.ts
to hide military layer toggles and geopolitical legend items.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-3): complete phase execution

* docs(phase-4): research global map & positive events

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(04): create phase plan — global map & positive events

* fix(04): revise plans based on checker feedback

* feat(04-01): add positiveEvents and kindness keys to MapLayers interface and all variant configs

- Add positiveEvents and kindness boolean keys to MapLayers interface
- Update all 10 variant layer configs (8 in panels.ts + 2 in happy.ts)
- Happy variant: positiveEvents=true, kindness=true; all others: false
- Fix variant config files (full, tech, finance) and e2e harnesses for compilation

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(04-01): add happy variant layer toggles and legend in DeckGLMap

- Add happy branch to createLayerToggles with 3 toggles: Positive Events, Acts of Kindness, Natural Events
- Add happy branch to createLegend with 4 items: Positive Event (green), Breakthrough (gold), Act of Kindness (light green), Natural Event (orange)
- Non-happy variants unchanged

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(04-01): complete map layer config & happy variant toggles plan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(04-02): add positive events geocoding pipeline and map layer

- Proto service PositiveEventsService with ListPositiveGeoEvents RPC
- Server-side GDELT GEO fetch with positive topic queries, dedup, classification
- Client-side service calling server RPC + RSS geocoding via inferGeoHubsFromTitle
- DeckGLMap green/gold ScatterplotLayer with pulse animation for significant events
- Tooltip shows event name, category, and report count
- Routes registered in api gateway and vite dev server

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(04-02): wire positive events loading into App.ts happy variant pipeline

- Import fetchPositiveGeoEvents and geocodePositiveNewsItems
- Load positive events in loadAllData() for happy variant with positiveEvents toggle
- loadPositiveEvents() merges GDELT GEO RPC + geocoded RSS items, deduplicates by name
- loadDataForLayer switch case for toggling positiveEvents layer on/off
- MapContainer.setPositiveEvents() delegates to DeckGLMap

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(04-02): complete positive events geocoding pipeline plan

- SUMMARY.md with task commits, decisions, deviations
- STATE.md updated with position, metrics, decisions
- ROADMAP.md and REQUIREMENTS.md updated

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(04-03): create kindness-data service with baseline generator and curated events

- Add KindnessPoint interface for map visualization data
- Add MAJOR_CITIES constant with ~60 cities worldwide (population-weighted)
- Implement generateBaselineKindness() producing 50-80 synthetic points per cycle
- Implement extractKindnessEvents() for real kindness items from curated news
- Export fetchKindnessData() merging baseline + real events

* feat(04-03): add kindness layer to DeckGLMap and wire into App.ts pipeline

- Add createKindnessLayers() with solid green fill + gentle pulse ring for real events
- Add kindness-layer tooltip showing city name and description
- Add setKindnessData() setter in DeckGLMap and MapContainer
- Wire loadKindnessData() into App.ts loadAllData and loadDataForLayer
- Kindness layer gated by mapLayers.kindness toggle (happy variant only)
- Pulse animation triggers when real kindness events are present

* docs(04-03): complete kindness data pipeline & map layer plan

- Create 04-03-SUMMARY.md documenting kindness layer implementation
- Update STATE.md: phase 04 complete (3/3 plans), advance position
- Update ROADMAP.md: phase 04 marked complete
- Mark KIND-01 and KIND-02 requirements as complete

* docs(phase-4): complete phase execution

* docs(phase-5): research humanity data panels domain

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(05-humanity-data-panels): create phase plan

* feat(05-01): create humanity counters service with metric definitions and rate calculations

- Define 6 positive global metrics with annual totals from UN/WHO/World Bank/UNESCO
- Calculate per-second rates from annual totals / 31,536,000 seconds
- Absolute-time getCounterValue() avoids drift across tabs/throttling
- Locale-aware formatCounterValue() using Intl.NumberFormat

* feat(05-02): install papaparse and create progress data service

- Install papaparse + @types/papaparse for potential OWID CSV fallback
- Create src/services/progress-data.ts with 4 World Bank indicators
- Export PROGRESS_INDICATORS (life expectancy, literacy, child mortality, poverty)
- Export fetchProgressData() using existing getIndicatorData() RPC
- Null value filtering, year sorting, invertTrend-aware change calculation

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(05-01): create CountersPanel component with 60fps animated ticking numbers

- Extend Panel base class with counters-grid of 6 counter cards
- requestAnimationFrame loop updates all values at 60fps
- Absolute-time calculation via getCounterValue() prevents drift
- textContent updates (not innerHTML) avoid layout thrashing
- startTicking() / destroy() lifecycle methods for App.ts integration

* feat(05-02): create ProgressChartsPanel with D3.js area charts

- Extend Panel base class with id 'progress', title 'Human Progress'
- Render 4 stacked D3 area charts (life expectancy, literacy, child mortality, poverty)
- Warm happy-theme colors: sage green, soft blue, warm gold, muted rose
- d3.area() with curveMonotoneX for smooth filled curves
- Header with label, change badge (e.g., "+58.0% since 1960"), and unit
- Hover tooltip with bisector-based nearest data point detection
- ResizeObserver with 200ms debounce for responsive re-rendering
- Clean destroy() lifecycle with observer disconnection

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(05-01): complete ticking counters service & panel plan

- SUMMARY.md with execution results and self-check
- STATE.md updated to phase 5, plan 1/3
- ROADMAP.md progress updated
- Requirements COUNT-01, COUNT-02, COUNT-03 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(05-02): complete progress charts panel plan

- Create 05-02-SUMMARY.md with execution results
- Update STATE.md: plan 2/3, decisions, metrics
- Update ROADMAP.md: phase 05 progress (2/3 plans)
- Mark PROG-01, PROG-02, PROG-03 complete in REQUIREMENTS.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(05-03): wire CountersPanel and ProgressChartsPanel into App.ts lifecycle

- Import CountersPanel, ProgressChartsPanel, and fetchProgressData
- Add class properties for both new panels
- Instantiate both panels in createPanels() gated by SITE_VARIANT === 'happy'
- Add progress data loading task in refreshAll() for happy variant
- Add loadProgressData() private method calling fetchProgressData + setData
- Add destroy() cleanup for both panels (stops rAF loop and ResizeObserver)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(05-03): add counter and progress chart CSS styles to happy-theme.css

- Counters grid: responsive 3-column layout (3/2/1 at 900px/500px breakpoints)
- Counter cards: hover lift, tabular-nums for jitter-free 60fps updates
- Counter icon/value/label/source typography hierarchy
- Progress chart containers: stacked with border dividers
- Chart header with label, badge, and unit display
- D3 SVG axis styling (tick text fill, domain stroke)
- Hover tooltip with absolute positioning and shadow
- Dark mode adjustments for card hover shadow and tooltip shadow
- All selectors scoped under [data-variant='happy']

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(05-03): complete panel wiring & CSS plan

- Create 05-03-SUMMARY.md with execution results
- Update STATE.md: phase 5 complete (3/3 plans), decisions, metrics
- Update ROADMAP.md: phase 05 progress (3/3 summaries, Complete)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-5): complete phase execution

* docs(06): research phase 6 content spotlight panels

* docs(phase-6): create phase plan

* feat(06-01): add science RSS feeds and BreakthroughsTickerPanel

- Expand HAPPY_FEEDS.science from 1 to 5 feeds (ScienceDaily, Nature News, Live Science, New Scientist)
- Create BreakthroughsTickerPanel extending Panel with horizontal scrolling ticker
- Doubled content rendering for seamless infinite CSS scroll animation
- Sanitized HTML output using escapeHtml/sanitizeUrl

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(06-01): create HeroSpotlightPanel with photo, map location, and hero card

- Create HeroSpotlightPanel extending Panel for daily hero spotlight
- Render hero card with image, source, title, time, and optional map button
- Conditionally show "Show on map" button only when both lat and lon exist
- Expose onLocationRequest callback for App.ts map integration wiring
- Sanitized HTML output using escapeHtml/sanitizeUrl

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(06-02): add GoodThingsDigestPanel with progressive AI summarization

- Panel extends Panel base class with id 'digest', title '5 Good Things'
- Renders numbered story cards with titles immediately (progressive rendering)
- Summarizes each story in parallel via generateSummary() with Promise.allSettled
- AbortController cancels in-flight summaries on re-render or destroy
- Graceful fallback to truncated title on summarization failure
- Passes [title, source] to satisfy generateSummary's 2-headline minimum

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(06-02): complete Good Things Digest Panel plan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(06-01): complete content spotlight panels plan

- Add 06-01-SUMMARY.md with execution results
- Update STATE.md with position, decisions, metrics
- Update ROADMAP.md and REQUIREMENTS.md progress

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(06-03): wire Phase 6 panels into App.ts lifecycle and update happy.ts config

- Import and instantiate BreakthroughsTickerPanel, HeroSpotlightPanel, GoodThingsDigestPanel in createPanels()
- Wire heroPanel.onLocationRequest callback to map.setCenter + map.flashLocation
- Distribute data to all three panels after content pipeline in loadHappySupplementaryAndRender()
- Add destroy calls for all three panels in App.destroy()
- Add digest key to DEFAULT_PANELS in happy.ts config

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(06-03): add CSS styles for ticker, hero card, and digest panels

- Add happy-ticker-scroll keyframe animation for infinite horizontal scroll
- Add breakthroughs ticker styles (wrapper, track, items with hover pause)
- Add hero spotlight card styles (image, body, source, title, location button)
- Add digest list styles (numbered cards, titles, sources, progressive summaries)
- Add dark mode overrides for all three panel types
- All selectors scoped under [data-variant="happy"]

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(06-03): complete panel wiring & CSS plan

- Create 06-03-SUMMARY.md with execution results
- Update STATE.md: phase 6 complete, 18 plans done, 78% progress
- Update ROADMAP.md: phase 06 marked complete (3/3 plans)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-6): complete phase execution

* docs(07): research conservation & energy trackers phase

* docs(07-conservation-energy-trackers): create phase plan

* feat(07-02): add renewable energy data service

- Fetch World Bank EG.ELC.RNEW.ZS indicator (IEA-sourced) for global + 7 regions
- Return global percentage, historical time-series, and regional breakdown
- Graceful degradation: individual region failures skipped, complete failure returns zeroed data
- Follow proven progress-data.ts pattern for getIndicatorData() RPC usage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(07-01): add conservation wins dataset and data service

- Create conservation-wins.json with 10 species recovery stories and population timelines
- Create conservation-data.ts with SpeciesRecovery interface and fetchConservationWins() loader
- Species data sourced from USFWS, IUCN, NOAA, WWF, and other published reports

* feat(07-02): add RenewableEnergyPanel with D3 arc gauge and regional breakdown

- Animated D3 arc gauge showing global renewable electricity % with 1.5s easeCubicOut
- Historical trend sparkline using d3.area() + curveMonotoneX below gauge
- Regional breakdown with horizontal bars sorted by percentage descending
- All colors use getCSSColor() for theme-aware rendering
- Empty state handling when no data available

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(07-01): add SpeciesComebackPanel with D3 sparklines and species cards

- Create SpeciesComebackPanel extending Panel base class
- Render species cards with photo (lazy loading + error fallback), info badges, D3 sparkline, and summary
- D3 sparklines use area + line with curveMonotoneX and viewBox for responsive sizing
- Recovery status badges (recovered/recovering/stabilized) and IUCN category badges
- Population values formatted with Intl.NumberFormat for readability

* docs(07-02): complete renewable energy panel plan

- SUMMARY.md with task commits, decisions, self-check
- STATE.md updated to phase 7 plan 2, 83% progress
- ROADMAP.md phase 07 progress updated
- REQUIREMENTS.md: ENERGY-01, ENERGY-02, ENERGY-03 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(07-01): complete species comeback panel plan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(07-03): wire species and renewable panels into App.ts lifecycle

- Add imports for SpeciesComebackPanel, RenewableEnergyPanel, and data services
- Add class properties for speciesPanel and renewablePanel
- Instantiate both panels in createPanels() gated by SITE_VARIANT === 'happy'
- Add loadSpeciesData() and loadRenewableData() tasks in refreshAll()
- Add destroy cleanup for both panels before map cleanup
- Add species and renewable entries to happy.ts DEFAULT_PANELS config

* feat(07-03): add CSS styles for species cards and renewable energy gauge

- Species card grid layout with 2-column responsive grid
- Photo, info, badges (recovered/recovering/stabilized/IUCN), sparkline, summary styles
- Renewable energy gauge section, historical sparkline, and regional bar chart styles
- Dark mode overrides for species card hover shadow and IUCN badge background
- All styles scoped with [data-variant='happy'] using existing CSS variables

* docs(07-03): complete panel wiring & CSS plan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(happy): add missing panel entries and RSS proxy for dev mode

HAPPY_PANELS in panels.ts was missing digest, species, and renewable
entries — panels were constructed but never appended to the grid because
the panelOrder loop only iterated the 6 original keys.

Also adds RSS proxy middleware for Vite dev server, fixes sebuf route
regex to match hyphenated domains (positive-events), and adds happy
feed domains to the rss-proxy allowlist.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: progress data lookup, ticker speed, ultrawide layout gap

1. Progress/renewable data: World Bank API returns countryiso3code "WLD"
   for world aggregate, but services were looking up by request code "1W".
   Changed lookups to use "WLD".

2. Breakthroughs ticker: slowed animation from 30s to 60s duration.

3. Ultrawide layout (>2000px): replaced float-based layout with CSS grid.
   Map stays in left column (60%), panels grid in right column (40%).
   Eliminates dead space under the map where panels used to wrap below.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: UI polish — counter overflow, ticker speed, monitors panel, filter tabs

- Counter values: responsive font-size with clamp(), overflow protection,
  tighter card padding to prevent large numbers from overflowing
- Breakthroughs ticker: slowed from 60s to 120s animation duration
- My Monitors panel: gate monitors from panel order in happy variant
  (was unconditionally pushed into panelOrder regardless of variant)
- Filter tabs: smaller padding/font, flex-shrink:0, fade mask on right
  edge to hint at scrollable overflow

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(happy): exclude APT groups layer from happy variant map

The APT groups layer (cyber threat actors like Fancy Bear, Cozy Bear)
was only excluded for the tech variant. Now also excluded for happy,
since cyber threat data has no place on a Good News Map.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(happy-map): labeled markers, remove fake baseline, fix APT leak

- Positive events now show category emoji + location name as colored
  text labels (TextLayer) instead of bare dots. Labels filter by zoom
  level to avoid clutter at global view.
- Removed synthetic kindness baseline (50-80 fake "Volunteers at work"
  dots in random cities). Only real kindness events from news remain.
- Kindness events also get labeled dots with headlines.
- Improved tooltips with proper category names and source counts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(happy-map): disable earthquakes, fix GDELT query syntax

- Disable natural events layer (earthquakes) for happy variant —
  not positive news
- Fix GDELT GEO positive queries: OR terms require parentheses
  per GDELT API syntax, added third query for charity/volunteer news
- Updated both desktop and mobile happy map layer configs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(happy): ultrawide grid overflow, panel text polish

Ultrawide: set min-height:0 on map/panels grid children so they
respect 1fr row constraint and scroll independently instead of
pushing content below the viewport.

Panel CSS: softer word-break on counters, line-clamp on digest
and species summaries, ticker title max-width, consistent
text-dim color instead of opacity hacks.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(08-map-data-overlays): research phase domain

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(08-map-data-overlays): create phase plan

* Add Global Giving Activity Index with multi-platform aggregation (#255)

* feat(08-01): add static data for happiness scores, renewable installations, and recovery zones

- Create world-happiness.json with 152 country scores from WHR 2025
- Create renewable-installations.json with 92 global entries (solar/wind/hydro/geothermal)
- Extend conservation-wins.json with recoveryZone lat/lon for all 10 species

* feat(08-01): add service loaders, extend MapLayers with happiness/species/energy keys

- Create happiness-data.ts with fetchHappinessScores() returning Map<ISO2, score>
- Create renewable-installations.ts with fetchRenewableInstallations() returning typed array
- Extend SpeciesRecovery interface with optional recoveryZone field
- Add happiness, speciesRecovery, renewableInstallations to MapLayers interface
- Update all 8 variant MapLayers configs (happiness=true in happy, false elsewhere)
- Update e2e harness files with new layer keys

* docs(08-01): complete data foundation plan summary and state updates

- Create 08-01-SUMMARY.md with execution results
- Update STATE.md to phase 8, plan 1/2
- Update ROADMAP.md progress for phase 08
- Mark requirements MAP-03, MAP-04, MAP-05 complete

* feat(08-02): add happiness choropleth, species recovery, and renewable installation overlay layers

- Add three Deck.gl layer creation methods with color-coded rendering
- Add public data setters for happiness scores, species recovery zones, and renewable installations
- Wire layers into buildLayers() gated by MapLayers keys
- Add tooltip cases for all three new layer types
- Extend happy variant layer toggles (World Happiness, Species Recovery, Clean Energy)
- Extend happy variant legend with choropleth, species, and renewable entries
- Cache country GeoJSON reference in loadCountryBoundaries() for choropleth reuse

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(08-02): wire MapContainer delegation and App.ts data loading for map overlays

- Add MapContainer delegation methods for happiness, species recovery, and renewable installations
- Add happiness scores and renewable installations map data loading in App.ts refreshAll()
- Chain species recovery zone data to map from existing loadSpeciesData()
- All three overlay datasets flow from App.ts through MapContainer to DeckGLMap

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(08-02): complete map overlay layers plan

- Create 08-02-SUMMARY.md with execution results
- Update STATE.md: phase 8 complete (2/2 plans), 22 total plans, decisions logged
- Update ROADMAP.md: phase 08 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-8): complete phase execution

* docs(roadmap): add Phase 7.1 gap closure for renewable energy installation & coal data

Addresses Phase 7 verification gaps (ENERGY-01, ENERGY-03): renewable panel
lacks solar/wind installation growth and coal plant closure visualizations.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(7.1): research renewable energy installation & coal retirement data

* docs(71): create phase plans for renewable energy installation & coal retirement data

* feat(71-01): add GetEnergyCapacity RPC proto and server handler

- Create get_energy_capacity.proto with request/response messages
- Add GetEnergyCapacity RPC to EconomicService in service.proto
- Implement server handler with EIA capability API integration
- Coal code fallback (COL -> BIT/SUB/LIG/RC) for sub-type support
- Redis cache with 24h TTL for annual capacity data
- Register handler in economic service handler

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(71-01): add client-side fetchEnergyCapacity with circuit breaker

- Add GetEnergyCapacityResponse import and capacityBreaker to economic service
- Export fetchEnergyCapacityRpc() with energyEia feature gating
- Add CapacitySeries/CapacityDataPoint types to renewable-energy-data.ts
- Export fetchEnergyCapacity() that transforms proto types to domain types

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(71-01): complete EIA energy capacity data pipeline plan

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(71-02): add setCapacityData() with D3 stacked area chart to RenewableEnergyPanel

- setCapacityData() renders D3 stacked area (solar yellow + wind blue) with coal decline (red)
- Chart labeled 'US Installed Capacity (EIA)' with compact inline legend
- Appends below existing gauge/sparkline/regions without replacing content
- CSS styles for capacity section, header, legend in happy-theme.css

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(71-02): wire EIA capacity data loading in App.ts loadRenewableData()

- Import fetchEnergyCapacity from renewable-energy-data service
- Call fetchEnergyCapacity() after World Bank gauge data, pass to setCapacityData()
- Wrapped in try/catch so EIA failure does not break existing gauge

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(71-02): complete EIA capacity visualization plan

- SUMMARY.md documenting D3 stacked area chart implementation
- STATE.md updated: Phase 7.1 complete (2/2 plans), progress 100%
- ROADMAP.md updated with plan progress

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-71): complete phase execution

* docs(phase-09): research sharing, TV mode & polish domain

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(09): create phase plan for sharing, TV mode & polish

* docs(phase-09): plan Sharing, TV Mode & Polish

3 plans in 2 waves covering share cards (Canvas 2D renderer),
TV/ambient mode (fullscreen panel cycling + CSS particles),
and celebration animations (canvas-confetti milestones).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-01): create Canvas 2D renderer for happy share cards

- 1080x1080 branded PNG with warm gradient per category
- Category badge, headline word-wrap, source, date, HappyMonitor branding
- shareHappyCard() with Web Share API -> clipboard -> download fallback
- wrapText() helper for Canvas 2D manual line breaking

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-02): create TvModeController and TV mode CSS

- TvModeController class manages fullscreen, panel cycling with configurable 30s-2min interval
- CSS [data-tv-mode] attribute drives larger typography, hidden interactive elements, smooth panel transitions
- Ambient floating particles (CSS-only, opacity 0.04) with reduced motion support
- TV exit button appears on hover, hidden by default outside TV mode

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-02): wire TV mode into App.ts header and lifecycle

- TV mode button with monitor icon in happy variant header
- TV exit button at page level, visible on hover in TV mode
- Shift+T keyboard shortcut toggles TV mode
- TvModeController instantiated lazily on first toggle
- Proper cleanup in destroy() method

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-01): add share button to positive news cards with handler

- Share button (SVG upload icon) appears on card hover, top-right
- Delegated click handler prevents link navigation, calls shareHappyCard
- Brief .shared visual feedback (green, scale) for 1.5s on click
- Dark mode support for share button background
- Fix: tv-mode.ts panelKeys index guard (pre-existing build blocker)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(09-02): complete TV Mode plan

- SUMMARY.md with task commits, deviations, decisions
- STATE.md updated: position, metrics, decisions, session
- ROADMAP.md updated: phase 09 progress (2/3 plans)
- REQUIREMENTS.md updated: TV-01, TV-02, TV-03 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(09-01): complete positive news share cards plan

- SUMMARY.md with Canvas 2D renderer and share button accomplishments
- STATE.md updated with decisions and session continuity
- ROADMAP.md progress updated (2/3 plans in phase 09)
- REQUIREMENTS.md: SHARE-01, SHARE-02, SHARE-03 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-03): add celebration service with canvas-confetti

- Install canvas-confetti + @types/canvas-confetti
- Create src/services/celebration.ts with warm nature-inspired palette
- Session-level dedup (Set<string>) prevents repeat celebrations
- Respects prefers-reduced-motion media query
- Milestone detection for species recovery + renewable energy records
- Moderate particle counts (40-80) for "warm, not birthday party" feel

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(09-03): wire milestone celebrations into App.ts data pipelines

- Import checkMilestones in App.ts
- Call checkMilestones after species data loads with recovery statuses
- Call checkMilestones after renewable energy data loads with global percentage
- All celebration calls gated behind SITE_VARIANT === 'happy'
- Placed after panel setData() so data is visible before confetti fires

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(09-03): complete celebration animations plan

- 09-03-SUMMARY.md with execution results
- STATE.md updated: phase 09 complete, 26 plans total, 100% progress
- ROADMAP.md updated with phase 09 completion
- REQUIREMENTS.md: THEME-06 marked complete

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-09): complete phase execution

* fix(happy): remove natural events layer from happy variant

Natural events (earthquakes, volcanoes, storms) were leaking into the
happy variant through stale localStorage and the layer toggle UI. Force
all non-happy layers off regardless of localStorage state, and remove
the natural events toggle from both DeckGL and SVG map layer configs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(phase-7.1): complete phase execution — mark all phases done

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs(v1): complete milestone audit — 49/49 requirements satisfied

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(happy): close audit tech debt — map layer defaults, theme-color meta

- Enable speciesRecovery and renewableInstallations layers by default
  in HAPPY_MAP_LAYERS (panels.ts + happy.ts) so MAP-04/MAP-05 are
  visible on first load
- Use happy-specific theme-color meta values (#FAFAF5 light, #1A2332
  dark) in setTheme() and applyStoredTheme() instead of generic colors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* docs: add checkpoint for giving integration handoff

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat(giving): integrate Global Giving Activity Index from PR #254

Cherry-pick the giving feature that was left behind when PR #255
batch-merged without including #254's proto/handler/panel files.

Adds:
- Proto definitions (GivingService, GivingSummary, PlatformGiving, etc.)
- Server handler: GoFundMe/GlobalGiving/JustGiving/crypto/OECD aggregation
- Client service with circuit breaker
- GivingPanel with tabs (platforms, categories, crypto, institutional)
- Full wiring: API routes, vite dev server, data freshness, panel config
- Happy variant panel config entry

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(giving): move panel init and data fetch out of full-variant-only blocks

The GivingPanel was instantiated inside `if (SITE_VARIANT === 'full')` and
the data fetch was inside `loadIntelligenceSignals()` (also full-only).
Moved both to variant-agnostic scope so the panel works on happy variant.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(giving): bypass debounced setContent so tab buttons are clickable

Panel.setContent() is debounced (150ms), so event listeners attached
immediately after it were binding to DOM elements that got replaced by
the deferred innerHTML write. Write directly to this.content.innerHTML
like other interactive panels do.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: remove .planning/ from repo and gitignore it

Planning files served their purpose during happy monitor development.
They remain on disk for reference but no longer tracked.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: merge new panels into saved panelSettings so they aren't hidden

When panelSettings is loaded from localStorage, any panels added since
the user last saved settings would be missing from the config. The
applyPanelSettings loop wouldn't touch them, but without a config entry
they also wouldn't appear in the settings toggle UI correctly.

Now merges DEFAULT_PANELS entries into loaded settings for any keys
that don't exist yet, so new panels are visible by default.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: giving data baselines, theme toggle persistence, and client caching

- Replace broken GoFundMe (301→404) and GlobalGiving (401) API calls
  with hardcoded baselines from published annual reports. Activity index
  rises from 42 to 56 as all 3 platforms now report non-zero volumes.
- Fix happy variant theme toggle not persisting across page reloads:
  applyStoredTheme() couldn't distinguish "no preference" from "user
  chose dark" — both returned DEFAULT_THEME. Now checks raw localStorage.
- Fix inline script in index.html not setting data-theme="dark" for
  happy variant, causing CSS :root[data-variant="happy"] (light) to
  win over :root[data-variant="happy"][data-theme="dark"].
- Add client-side caching to giving service: persistCache on circuit
  breaker, 30min in-memory TTL, and request deduplication.
- Add Playwright E2E tests for theme toggle (8 tests, all passing).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* perf: add persistent cache to all 29 circuit breakers across 19 services

Enable persistCache and set appropriate cacheTtlMs on every circuit
breaker that lacked them. Data survives page reloads via IndexedDB
fallback and reduces redundant API calls on navigation.

TTLs matched to data freshness: 5min for real-time feeds (weather,
earthquakes, wildfires, aviation), 10min for event data (conflict,
cyber, unrest, climate, research), 15-30min for slow-moving data
(economic indicators, energy capacity, population exposure).

Market quotes breaker intentionally left at cacheTtlMs: 0 (real-time).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: expand map labels progressively as user zooms in

Labels now show more text at higher zoom levels instead of always
truncating at 30 chars. Zoom <3: 20 chars, <5: 35, <7: 60, 7+: full.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: keep 30-char baseline for map labels, expand to full text at zoom 6+

Previous change was too aggressive with low-zoom truncation (20 chars).
Now keeps original 30-char limit at global view, progressively expands
to 50/80/200 chars as user zooms in. Also scales font size with zoom.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* Revert "fix: keep 30-char baseline for map labels, expand to full text at zoom 6+"

This reverts commit 33b8a8accc2d48acd45f3dcea97a083b8bcebbf0.

* Revert "feat: expand map labels progressively as user zooms in"

This reverts commit 285f91fe471925ca445243ae5d8ac37723f2eda7.

* perf: stale-while-revalidate for instant page load

Circuit breaker now returns stale cached data immediately and refreshes
in the background, instead of blocking on API calls when cache exceeds
TTL. Also persists happyAllItems to IndexedDB so Hero, Digest, and
Breakthroughs panels render instantly from cache on page reload.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: address PR #229 review — 4 issues from koala

1. P1: Fix duplicate event listeners in PositiveNewsFeedPanel.renderCards()
   — remove listener before re-adding to prevent stacking on re-renders

2. P1: Fix TV mode cycling hidden panels causing blank screen
   — filter out user-disabled panels from cycle list, rebuild keys on toggle

3. P2: Fix positive classifier false positives for short keywords
   — "ai" and "art" now use space-delimited matching to avoid substring hits
     (e.g. "aid", "rain", "said", "start", "part")

4. P3: Fix CSP blocking Google Fonts stylesheet for Nunito
   — add https://fonts.googleapis.com to style-src directive

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: decompose App.ts into focused modules under src/app/

Break the 4,597-line monolithic App class into 7 focused modules plus a
~460-line thin orchestrator. Each module implements the AppModule lifecycle
(init/destroy) and communicates via a shared AppContext state object with
narrow callback interfaces — no circular dependencies.

Modules extracted:
- app-context.ts: shared state types (AppContext, AppModule, etc.)
- desktop-updater.ts: desktop version checking + update badge
- country-intel.ts: country briefs, timeline, CII signals
- search-manager.ts: search modal, result routing, index updates
- refresh-scheduler.ts: periodic data refresh with jitter/backoff
- panel-layout.ts: panel creation, grid layout, drag-drop
- data-loader.ts: all 36 data loading methods
- event-handlers.ts: DOM events, shortcuts, idle detection, URL sync

Verified: tsc --noEmit (zero errors), all 3 variant builds pass
(full, tech, finance), runtime smoke test confirms no regressions.

* fix: resolve test failures and missing CSS token from PR review

1. flushStaleRefreshes test now reads from refresh-scheduler.ts (moved
   during App.ts modularization)
2. e2e runtime tests updated to import DesktopUpdater and DataLoaderManager
   instead of App.prototype for resolveUpdateDownloadUrl and loadMarkets
3. Add --semantic-positive CSS variable to main.css and happy-theme.css
   (both light and dark variants)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: hide happy variant button from other variants

The button is only visible when already on the happy variant. This
allows merging the modularized App.ts without exposing the unfinished
happy layout to users — layout work continues in a follow-up PR.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Elie Habib <elie.habib@gmail.com>
2026-02-25 10:05:26 +04:00

1968 lines
78 KiB
JSON

{
"app": {
"title": "World Monitor",
"description": "Global Situation with AI Insights"
},
"countryBrief": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"limitedCoverage": "Limited coverage",
"instabilityIndex": "Instability Index",
"notTracked": "Not tracked — {{country}} is not in the CII tier-1 list",
"intelBrief": "Intelligence Brief",
"generatingBrief": "Generating intelligence brief...",
"topNews": "Top News",
"activeSignals": "Active Signals",
"timeline": "7-Day Timeline",
"predictionMarkets": "Prediction Markets",
"loadingMarkets": "Loading prediction markets...",
"infrastructure": "Infrastructure Exposure",
"briefUnavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings.",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No prediction markets found",
"loadingIndex": "Loading index...",
"components": {
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Security",
"information": "Information"
},
"signals": {
"protests": "protests",
"militaryAir": "mil. aircraft",
"militarySea": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"displaced": "displaced",
"climate": "Climate stress",
"conflictEvents": "conflict events"
},
"timeAgo": {
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"infra": {
"pipeline": "Pipelines",
"cable": "Undersea Cables",
"datacenter": "Data Centers",
"base": "Military Bases",
"nuclear": "Nuclear Facilities",
"port": "Ports"
},
"levels": {
"critical": "Critical",
"high": "High",
"elevated": "Elevated",
"moderate": "Moderate",
"normal": "Normal",
"low": "Low"
},
"trends": {
"rising": "Rising",
"falling": "Falling",
"stable": "Stable"
},
"fallback": {
"instabilityIndex": "**Instability Index: {{score}}/100** ({{level}}, {{trend}})",
"protestsDetected": "{{count}} active protests detected",
"aircraftTracked": "{{count}} military aircraft tracked",
"vesselsTracked": "{{count}} military vessels tracked",
"internetOutages": "{{count}} internet outages",
"recentEarthquakes": "{{count}} recent earthquakes",
"stockIndex": "Stock index: {{value}}",
"recentHeadlines": "**Recent headlines:**"
}
},
"header": {
"world": "WORLD",
"tech": "TECH",
"live": "LIVE",
"search": "Search",
"settings": "PANELS",
"sources": "SOURCES",
"copyLink": "Copy Link",
"fullscreen": "Fullscreen",
"pinMap": "Pin map to top",
"viewOnGitHub": "View on GitHub",
"filterSources": "Filter sources...",
"sourcesEnabled": "{{enabled}}/{{total}} enabled",
"finance": "FINANCE",
"toggleTheme": "Toggle dark/light mode",
"panelDisplayCaption": "Choose which panels to show on the dashboard",
"tabGeneral": "General",
"tabPanels": "Panels",
"tabSources": "Sources",
"languageLabel": "Language",
"sourceRegionAll": "All",
"sourceRegionWorldwide": "Worldwide",
"sourceRegionUS": "United States",
"sourceRegionMiddleEast": "Middle East",
"sourceRegionAfrica": "Africa",
"sourceRegionLatAm": "Latin America",
"sourceRegionAsiaPacific": "Asia-Pacific",
"sourceRegionEurope": "Europe",
"sourceRegionTopical": "Topical",
"sourceRegionIntel": "Intelligence",
"sourceRegionTechNews": "Tech News",
"sourceRegionAiMl": "AI & ML",
"sourceRegionStartupsVc": "Startups & VC",
"sourceRegionRegionalTech": "Regional Ecosystems",
"sourceRegionDeveloper": "Developer",
"sourceRegionCybersecurity": "Cybersecurity",
"sourceRegionTechPolicy": "Policy & Research",
"sourceRegionTechMedia": "Media & Podcasts",
"sourceRegionMarkets": "Markets & Analysis",
"sourceRegionFixedIncomeFx": "Fixed Income & FX",
"sourceRegionCommodities": "Commodities",
"sourceRegionCryptoDigital": "Crypto & Digital",
"sourceRegionCentralBanks": "Central Banks & Economy",
"sourceRegionDeals": "Deals & Corporate",
"sourceRegionFinRegulation": "Financial Regulation",
"sourceRegionGulfMena": "Gulf & MENA",
"filterPanels": "Filter panels...",
"panelCatCore": "Core",
"panelCatIntelligence": "Intelligence",
"panelCatRegionalNews": "Regional News",
"panelCatMarketsFinance": "Markets & Finance",
"panelCatTopical": "Topical",
"panelCatDataTracking": "Data & Tracking",
"panelCatTechAi": "Tech & AI",
"panelCatStartupsVc": "Startups & VC",
"panelCatSecurityPolicy": "Security & Policy",
"panelCatMarkets": "Markets",
"panelCatFixedIncomeFx": "Fixed Income & FX",
"panelCatCommodities": "Commodities",
"panelCatCryptoDigital": "Crypto & Digital",
"panelCatCentralBanks": "Central Banks & Econ",
"panelCatDeals": "Deals & Institutional",
"panelCatGulfMena": "Gulf & MENA"
},
"panels": {
"liveNews": "Live News",
"markets": "Markets",
"map": "Global Situation",
"techMap": "Global Tech",
"techHubs": "Hot Tech Hubs",
"status": "System Status",
"insights": "AI Insights",
"strategicPosture": "AI Strategic Posture",
"cii": "Country Instability",
"strategicRisk": "Strategic Risk Overview",
"intel": "Intel Feed",
"gdeltIntel": "Live Intelligence",
"cascade": "Infrastructure Cascade",
"politics": "World News",
"us": "United States",
"europe": "Europe",
"middleeast": "Middle East",
"africa": "Africa",
"latam": "Latin America",
"asia": "Asia-Pacific",
"energy": "Energy & Resources",
"gov": "Government",
"thinktanks": "Think Tanks",
"polymarket": "Predictions",
"commodities": "Commodities",
"economic": "Economic Indicators",
"finance": "Financial",
"tech": "Technology",
"crypto": "Crypto",
"heatmap": "Sector Heatmap",
"ai": "AI/ML",
"layoffs": "Layoffs Tracker",
"monitors": "My Monitors",
"satelliteFires": "Fires",
"macroSignals": "Market Radar",
"etfFlows": "BTC ETF Tracker",
"stablecoins": "Stablecoins",
"ucdpEvents": "UCDP Conflict Events",
"giving": "Global Giving",
"displacement": "UNHCR Displacement",
"climate": "Climate Anomalies",
"populationExposure": "Population Exposure",
"startups": "Startups & VC",
"vcblogs": "VC Insights & Essays",
"regionalStartups": "Global Startup News",
"unicorns": "Unicorn Tracker",
"accelerators": "Accelerators & Demo Days",
"security": "Cybersecurity",
"policy": "AI Policy & Regulation",
"regulation": "AI Regulation Dashboard",
"hardware": "Semiconductors & Hardware",
"cloud": "Cloud & Infrastructure",
"dev": "Developer Community",
"github": "GitHub Trending",
"ipo": "IPO & SPAC",
"funding": "Funding & VC",
"producthunt": "Product Hunt",
"events": "Tech Events",
"serviceStatus": "Service Status",
"techReadiness": "Tech Readiness Index",
"gccInvestments": "GCC Investments",
"geoHubs": "Geopolitical Hubs",
"liveWebcams": "Live Webcams"
},
"modals": {
"search": {
"placeholder": "Search news, pipelines, bases, markets...",
"hint": "News • Pipelines • Bases • Cables • Datacenters • Markets",
"placeholderTech": "Search companies, AI labs, startups, events...",
"hintTech": "HQs • Companies • AI Labs • Startups • Accelerators • Events",
"placeholderFinance": "Search exchanges, markets, central banks...",
"hintFinance": "Exchanges • Financial Centers • Central Banks • Commodities",
"recent": "Recent Searches",
"empty": "Search across all data sources",
"noResults": "No results",
"navigate": "navigate",
"select": "select",
"close": "close",
"types": {
"country": "Country",
"news": "News",
"hotspot": "Hotspot",
"market": "Market",
"prediction": "Prediction",
"conflict": "Conflict",
"base": "Military Base",
"pipeline": "Pipeline",
"cable": "Submarine Cable",
"datacenter": "Datacenter",
"earthquake": "Earthquake",
"outage": "Outage",
"nuclear": "Nuclear Site",
"irradiator": "Irradiator",
"techcompany": "Tech Company",
"ailab": "AI Lab",
"startup": "Startup",
"techevent": "Tech Event",
"techhq": "Tech HQ",
"accelerator": "Accelerator"
}
},
"signal": {
"title": "INTELLIGENCE FINDING",
"soundAlerts": "Sound alerts",
"dismiss": "Dismiss",
"confidence": "Confidence",
"country": "Country:",
"scoreChange": "Score Change:",
"instabilityLevel": "Instability Level:",
"primaryDriver": "Primary Driver:",
"location": "Location:",
"eventTypes": "Event Types:",
"eventCount": "Event Count:",
"eventCountValue": "{{count}} events in 24h",
"source": "Source:",
"countriesAffected": "Countries Affected:",
"impactLevel": "Impact Level:",
"focalPoints": "CORRELATED FOCAL POINTS",
"newsCorrelation": "NEWS CORRELATION",
"viewOnMap": "View on map",
"whyItMatters": "Why it matters:",
"action": "Action:",
"note": "Note:",
"suppress": "Suppress this term",
"suppressed": "Suppressed",
"predictionLeading": "Prediction Leading",
"newsLeading": "News Leading",
"silentDivergence": "Silent Divergence",
"velocitySpike": "Velocity Spike",
"keywordSpike": "Keyword Spike",
"convergence": "Convergence",
"triangulation": "Triangulation",
"flowDrop": "Flow Drop",
"flowPriceDivergence": "Flow/Price Divergence",
"geoConvergence": "Geographic Convergence",
"marketMove": "Market Move Explained",
"sectorCascade": "Sector Cascade",
"militarySurge": "Military Surge"
},
"story": {
"generating": "Generating story...",
"close": "Close",
"shareTitle": "Share story",
"save": "Save",
"whatsapp": "WhatsApp",
"twitter": "X",
"linkedin": "LinkedIn",
"copyLink": "Link",
"saved": "Saved!",
"copied": "Copied!",
"opening": "Opening...",
"error": "Failed to generate story."
},
"mobileWarning": {
"title": "Mobile View",
"description": "You're viewing a simplified mobile version focused on MENA region with essential layers enabled.",
"tip": "Tip: Use the view buttons (GLOBAL/US/MENA) to switch regions. Tap markers to see details.",
"dontShowAgain": "Don't show again",
"gotIt": "Got it"
},
"downloadBanner": {
"title": "Desktop Available",
"description": "Native performance, secure local key storage, offline map tiles.",
"macSilicon": "macOS (Apple Silicon)",
"macIntel": "macOS (Intel)",
"windows": "Windows (.exe)",
"linux": "Linux (.AppImage)",
"showAllPlatforms": "Show all platforms",
"showLess": "Show less",
"dismiss": "Dismiss"
},
"runtimeConfig": {
"title": "Desktop Configuration",
"alertTitle": {
"configured": "Desktop settings configured",
"needsKeys": "Configure API keys to unlock features",
"some": "Some features need API keys"
},
"openSettings": "Open Settings",
"skipSetup": "Skip the setup \u2014 a single World Monitor license unlocks everything. Join the waitlist for early access.",
"summary": {
"desktop": "Desktop mode",
"web": "Web mode (read-only, server-managed credentials)",
"secrets": "local secrets configured",
"available": "features available"
},
"status": {
"ready": "Ready",
"staged": "Staged",
"needsKeys": "Needs Keys",
"invalid": "Invalid",
"missing": "Missing",
"valid": "Valid",
"looksInvalid": "Looks invalid"
},
"placeholder": {
"setSecret": "Set secret",
"staged": "Staged (save with OK)"
},
"help": {
"URLHAUS_AUTH_KEY": "Used for both URLhaus and ThreatFox APIs.",
"OTX_API_KEY": "Optional enrichment source for the cyber threat layer.",
"ABUSEIPDB_API_KEY": "Optional enrichment source for malicious IP reputation.",
"FINNHUB_API_KEY": "Real-time stock quotes and market data.",
"NASA_FIRMS_API_KEY": "Fire Information for Resource Management System.",
"OLLAMA_API_URL": "e.g. http://127.0.0.1:11434 (Ollama) or http://127.0.0.1:1234/v1 (LM Studio) — OpenAI-compatible endpoint.",
"OLLAMA_MODEL": "e.g. llama3.1:8b — model tag to use for summarization."
}
},
"settingsWindow": {
"validating": "Validating API keys...",
"saved": "Settings saved",
"failed": "Save failed: {{error}}",
"verifyFailed": "Saved verified keys. Failed: {{errors}}",
"verboseOn": "Verbose sidecar logging ON (saved)",
"verboseOff": "Verbose sidecar logging OFF (saved)",
"invokeFail": "Failed to run {{command}}. Check desktop log.",
"openLogs": "Opened logs folder",
"openApiLog": "Opened API log",
"sidecarError": "Could not reach sidecar to toggle verbose mode",
"noTraffic": "No traffic recorded yet.",
"sidecarUnreachable": "Sidecar not reachable.",
"logCleared": "Log cleared.",
"worldMonitor": {
"tabLabel": "World Monitor",
"heroTitle": "One key. Everything included.",
"heroDescription": "A single World Monitor license replaces every API key and LLM provider you'd otherwise configure yourself. AI summaries, real-time intelligence, market data, conflict tracking, fire detection, satellite imagery — all powered, all managed, zero setup.",
"apiKey": {
"title": "License Key",
"placeholder": "wm_xxxxxxxxxxxxxxxxxxxxxxxx",
"description": "Paste your license to unlock every data source and AI feature instantly.",
"statusValid": "LICENSED",
"statusMissing": "NO LICENSE"
},
"dividerOr": "OR",
"register": {
"title": "Reserve Your Spot",
"description": "We're preparing to launch World Monitor licenses. Sign up now and be first in line — early members get priority access and founding-member pricing.",
"emailPlaceholder": "your@email.com",
"submitBtn": "Join Waitlist",
"submitting": "Submitting...",
"success": "You're on the list! We'll notify you first.",
"alreadyRegistered": "You're already on the waitlist.",
"error": "Registration failed. Please try again.",
"invalidEmail": "Please enter a valid email address."
},
"byokTitle": "Or bring your own keys",
"byokDescription": "Prefer full control? Head to the API Keys and LLMs tabs to configure each data source and AI provider individually."
},
"table": {
"time": "Time",
"method": "Method",
"path": "Path",
"status": "Status",
"duration": "Duration"
}
},
"countryIntel": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"instabilityIndex": "Instability Index",
"protests": "protests",
"militaryAircraft": "mil. aircraft",
"militaryVessels": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"loadingIndex": "Loading index...",
"loadingMarkets": "Loading prediction markets...",
"generatingBrief": "Generating intelligence brief...",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No prediction markets found",
"predictionMarkets": "Prediction Markets",
"unavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings."
},
"countryBrief": {
"identifying": "Identifying country...",
"locating": "Locating region...",
"limitedCoverage": "Limited coverage",
"instabilityIndex": "Instability Index",
"notTracked": "Not tracked — {{country}} is not in the CII tier-1 list",
"intelBrief": "Intelligence Brief",
"generatingBrief": "Generating intelligence brief...",
"topNews": "Top News",
"activeSignals": "Active Signals",
"timeline": "7-Day Timeline",
"predictionMarkets": "Prediction Markets",
"loadingMarkets": "Loading prediction markets...",
"infrastructure": "Infrastructure Exposure",
"briefUnavailable": "AI brief unavailable — configure GROQ_API_KEY in Settings.",
"cached": "Cached",
"fresh": "Fresh",
"noMarkets": "No prediction markets found",
"loadingIndex": "Loading index...",
"components": {
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Security",
"information": "Information"
},
"signals": {
"protests": "protests",
"militaryAir": "mil. aircraft",
"militarySea": "mil. vessels",
"outages": "outages",
"earthquakes": "earthquakes",
"displaced": "displaced",
"climate": "Climate stress",
"conflictEvents": "conflict events"
},
"timeAgo": {
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"infra": {
"pipeline": "Pipelines",
"cable": "Undersea Cables",
"datacenter": "Data Centers",
"base": "Military Bases",
"nuclear": "Nuclear Facilities",
"port": "Ports"
},
"levels": {
"critical": "Critical",
"high": "High",
"elevated": "Elevated",
"moderate": "Moderate",
"normal": "Normal",
"low": "Low"
},
"trends": {
"rising": "Rising",
"falling": "Falling",
"stable": "Stable"
},
"fallback": {
"instabilityIndex": "**Instability Index: {{score}}/100** ({{level}}, {{trend}})",
"protestsDetected": "{{count}} active protests detected",
"aircraftTracked": "{{count}} military aircraft tracked",
"vesselsTracked": "{{count}} military vessels tracked",
"internetOutages": "{{count}} internet outages",
"recentEarthquakes": "{{count}} recent earthquakes",
"stockIndex": "Stock index: {{value}}",
"recentHeadlines": "**Recent headlines:**"
}
}
},
"components": {
"webcams": {
"regions": {
"all": "ALL",
"mideast": "MIDEAST",
"europe": "EUROPE",
"americas": "AMERICAS",
"asia": "ASIA"
}
},
"monitor": {
"placeholder": "Keywords (comma separated)",
"add": "+ Add Monitor",
"addKeywords": "Add keywords to monitor news",
"noMatches": "No matches in {{count}} articles",
"showingMatches": "Showing {{count}} of {{total}} matches",
"match": "match",
"matches": "matches"
},
"regulation": {
"dashboard": "AI Regulation Dashboard",
"timeline": "Timeline",
"deadlines": "Deadlines",
"regulations": "Regulations",
"countries": "Countries",
"recentActions": "Recent Regulatory Actions (Last 12 Months)",
"upcomingDeadlines": "Upcoming Compliance Deadlines",
"activeRegulations": "Active Regulations",
"proposedRegulations": "Proposed Regulations",
"globalLandscape": "Global Regulatory Landscape",
"emptyActions": "No recent regulatory actions",
"emptyDeadlines": "No upcoming compliance deadlines in the next 12 months",
"keyProvisions": "Key Provisions",
"learnMore": "Learn More",
"active": "Active",
"proposed": "Proposed",
"updated": "Updated",
"actionsCount": "{{count}} actions",
"deadlinesCount": "{{count}} deadlines",
"days": "days",
"activeCount": "Active Regulations ({{count}})",
"proposedCount": "Proposed Regulations ({{count}})",
"moreProvisions": "+{{count}} more...",
"source": "Source",
"stances": {
"strict": "Strict",
"moderate": "Moderate",
"permissive": "Permissive",
"undefined": "Undefined"
}
},
"economic": {
"indicators": "Indicators",
"oil": "Oil",
"gov": "Gov",
"noData": "No economic data available",
"noOilData": "Oil data not available",
"noOilMetrics": "No oil metrics available. Add EIA_API_KEY to enable.",
"noSpending": "No recent government awards",
"awards": "awards",
"noIndicatorData": "No indicator data yet - FRED may be loading",
"fredKeyMissing": "FRED API key required — add it in Settings to enable economic indicators",
"noOilDataRetry": "Oil data temporarily unavailable - will retry",
"vsPreviousWeek": "vs previous week",
"in": "in"
},
"gdelt": {
"empty": "No recent articles for this topic"
},
"geoHubs": {
"tooltip": "<strong>Geopolitical Activity Hubs</strong><br>Shows regions with the most news activity.<br><br><em>Hub types:</em><br>• 🏛️ Capitals — World capitals and government centers<br>• ⚔️ Conflict Zones — Active conflict areas<br>• ⚓ Strategic — Chokepoints and key regions<br>• 🏢 Organizations — UN, NATO, IAEA, etc.<br><br><em>Activity levels:</em><br>• <span style=\"color: #ff4444\">High</span> — Breaking news or 70+ score<br>• <span style=\"color: #ff8844\">Elevated</span> — Score 40-69<br>• <span style=\"color: #888\">Low</span> — Score below 40<br><br>Click a hub to zoom to its location.",
"noActive": "No active geopolitical hubs",
"story": "story",
"stories": "stories",
"infoTooltip": "<strong>Geopolitical Activity Hubs</strong><br>Shows regions with the most news activity.<br><br><em>Hub types:</em><br>• 🏛️ Capitals — World capitals and government centers<br>• ⚔️ Conflict Zones — Active conflict areas<br>• ⚓ Strategic — Chokepoints and key regions<br>• 🏢 Organizations — UN, NATO, IAEA, etc.<br><br><em>Activity levels:</em><br>• <span style=\"color: {{highColor}}\">High</span> — Breaking news or 70+ score<br>• <span style=\"color: {{elevatedColor}}\">Elevated</span> — Score 40-69<br>• <span style=\"color: {{lowColor}}\">Low</span> — Score below 40<br><br>Click a hub to zoom to its location."
},
"techHubs": {
"tooltip": "<strong>Tech Hub Activity</strong><br>Shows tech hubs with the most news activity.<br><br><em>Activity levels:</em><br>• <span style=\"color: #00ff88\">High</span> — Breaking news or 50+ score<br>• <span style=\"color: #ffc800\">Elevated</span> — Score 20-49<br>• <span style=\"color: #888\">Low</span> — Score below 20<br><br>Click a hub to zoom to its location.",
"noActive": "No active tech hubs",
"infoTooltip": "<strong>Tech Hub Activity</strong><br>Shows tech hubs with the most news activity.<br><br><em>Activity levels:</em><br>• <span style=\"color: {{highColor}}\">High</span> — Breaking news or 50+ score<br>• <span style=\"color: {{elevatedColor}}\">Elevated</span> — Score 20-49<br>• <span style=\"color: {{lowColor}}\">Low</span> — Score below 20<br><br>Click a hub to zoom to its location."
},
"predictions": {
"tooltip": "<strong>Prediction Markets</strong><br>Real-money forecasting markets:<br><ul><li>Prices reflect crowd probability estimates</li><li>Higher volume = more reliable signal</li><li>Geopolitical and current events focus</li></ul>Source: Polymarket (polymarket.com)",
"error": "Failed to load predictions",
"yes": "Yes",
"no": "No",
"vol": "Vol"
},
"stablecoins": {
"pegHealth": "Peg Health",
"supplyVolume": "Supply & Volume",
"unavailable": "Stablecoin data temporarily unavailable",
"token": "Token",
"mcap": "MCap",
"vol24h": "24h Vol",
"chg24h": "24h Chg"
},
"status": {
"dataFeeds": "Data Feeds",
"apiStatus": "API Status",
"storage": "Storage",
"systemStatus": "System Status",
"updatedJustNow": "Updated just now",
"updatedAt": "Updated {{time}}",
"storageUnavailable": "Storage info unavailable"
},
"playback": {
"toggleMode": "Toggle Playback Mode",
"live": "LIVE",
"historicalPlayback": "Historical Playback"
},
"pizzint": {
"title": "Pentagon Pizza Index",
"defcon": "DEFCON {{level}}",
"updated": "Updated {{timeAgo}}",
"tensionsTitle": "Geopolitical Tensions",
"source": "Source:",
"statusClosed": "CLOSED",
"statusSpike": "SPIKE",
"statusHigh": "HIGH",
"statusElevated": "ELEVATED",
"statusNominal": "NOMINAL",
"statusQuiet": "QUIET",
"justNow": "just now",
"minutesAgo": "{{m}}m ago",
"hoursAgo": "{{h}}h ago",
"defconLabels": {
"1": "COCKED PISTOL - MAXIMUM READINESS",
"2": "FAST PACE - ARMED FORCES READY",
"3": "ROUND HOUSE - INCREASE FORCE READINESS",
"4": "DOUBLE TAKE - INCREASED INTELLIGENCE WATCH",
"5": "FADE OUT - LOWEST READINESS"
}
},
"strategicPosture": {
"elapsed": "Elapsed: {{elapsed}} s",
"clickToView": "Click to view {{name}} on map",
"clickToViewMap": "Click to view on map",
"refresh": "Refresh",
"units": {
"fighters": "Fighters",
"tankers": "Tankers",
"awacs": "AWACS",
"recon": "Recon",
"transport": "Transport",
"bombers": "Bombers",
"drones": "Drones",
"aircraft": "Aircraft",
"carriers": "Carriers",
"destroyers": "Destroyers",
"frigates": "Frigates",
"submarines": "Submarines",
"patrol": "Patrol",
"auxiliary": "Auxiliary",
"navalVessels": "Naval Vessels"
},
"infoTooltip": "<strong>Methodology</strong><p>Aggregates military aircraft and naval vessels by theater.</p><ul><li><strong>Normal:</strong> Baseline activity</li><li><strong>Elevated:</strong> Above threshold (50+ aircraft)</li><li><strong>Critical:</strong> High concentration (100+ aircraft)</li></ul><p><strong>Strike Capable:</strong> Tankers + AWACS + Fighters present in sufficient numbers for sustained operations.</p>",
"scanningTheaters": "Scanning Theaters",
"positions": "Aircraft positions",
"navalVesselsLoading": "Naval vessels",
"theaterAnalysis": "Theater analysis",
"connectingStreams": "Connecting to live ADS-B & AIS streams...",
"initialLoadNote": "Initial load takes 30-60 seconds as tracking data accumulates",
"acquiringData": "Acquiring Data",
"acquiringDesc": "Connecting to ADS-B network for military flight data. This may take 30-60 seconds on first load.",
"openSkyAdsb": "OpenSky ADS-B",
"aisVesselStream": "AIS Vessel Stream",
"retryNow": "Retry Now",
"feedRateLimited": "Feed Rate Limited",
"rateLimitedDesc": "OpenSky API has request limits. The panel will automatically retry in a few minutes, or you can try again now.",
"rateLimitedTip": "Tip: Peak hours (UTC 12:00-20:00) often see higher limits.",
"tryAgain": "Try Again",
"badges": {
"critical": "CRIT",
"elevated": "ELEV",
"normal": "NORM"
},
"trendStable": "stable",
"domains": {
"air": "AIR",
"sea": "SEA"
},
"strike": "STRIKE",
"staleWarning": "Using cached data - live feed temporarily unavailable",
"updated": "Updated:",
"theaters": {
"iran-theater": "Iran Theater",
"taiwan-theater": "Taiwan Strait",
"baltic-theater": "Baltic Theater",
"blacksea-theater": "Black Sea",
"korea-theater": "Korean Peninsula",
"south-china-sea": "South China Sea",
"east-med-theater": "Eastern Mediterranean",
"israel-gaza-theater": "Israel/Gaza",
"yemen-redsea-theater": "Yemen/Red Sea"
}
},
"countryBrief": {
"shareStory": "Share story",
"printPdf": "Print / PDF",
"exportData": "Export data",
"sourceRef": "Source [{{n}}]"
},
"relatedAssets": {
"pipeline": "Pipeline",
"cable": "Cable",
"datacenter": "Datacenter",
"base": "Base",
"nuclear": "Nuclear"
},
"community": {
"joinDiscussion": "Join the Discussion",
"openDiscussion": "Open Discussion",
"dontShowAgain": "Don't show again"
},
"threatLabels": {
"critical": "CRIT",
"high": "HIGH",
"medium": "MED",
"low": "LOW",
"info": "INFO"
},
"deckgl": {
"zoomIn": "Zoom In",
"zoomOut": "Zoom Out",
"resetView": "Reset View",
"legend": {
"title": "LEGEND",
"startupHub": "Startup Hub",
"techHQ": "Tech HQ",
"accelerator": "Accelerator",
"cloudRegion": "Cloud Region",
"datacenter": "Datacenter",
"stockExchange": "Stock Exchange",
"financialCenter": "Financial Center",
"centralBank": "Central Bank",
"commodityHub": "Commodity Hub",
"waterway": "Waterway",
"highAlert": "High Alert",
"elevated": "Elevated",
"monitoring": "Monitoring",
"base": "Base",
"nuclear": "Nuclear"
},
"layerGuide": "Layer Guide",
"layersTitle": "Layers",
"timeAll": "All",
"views": {
"global": "Global",
"americas": "Americas",
"mena": "MENA",
"europe": "Europe",
"asia": "Asia",
"latam": "Latin America",
"africa": "Africa",
"oceania": "Oceania"
},
"layers": {
"startupHubs": "Startup Hubs",
"techHQs": "Tech HQs",
"accelerators": "Accelerators",
"cloudRegions": "Cloud Regions",
"aiDataCenters": "AI Data Centers",
"underseaCables": "Undersea Cables",
"internetOutages": "Internet Outages",
"cyberThreats": "Cyber Threats",
"techEvents": "Tech Events",
"naturalEvents": "Natural Events",
"fires": "Fires",
"intelHotspots": "Intel Hotspots",
"conflictZones": "Conflict Zones",
"militaryBases": "Military Bases",
"nuclearSites": "Nuclear Sites",
"gammaIrradiators": "Gamma Irradiators",
"spaceports": "Spaceports",
"pipelines": "Pipelines",
"militaryActivity": "Military Activity",
"shipTraffic": "Ship Traffic",
"flightDelays": "Flight Delays",
"protests": "Protests",
"ucdpEvents": "UCDP Events",
"displacementFlows": "Displacement Flows",
"climateAnomalies": "Climate Anomalies",
"weatherAlerts": "Weather Alerts",
"strategicWaterways": "Strategic Waterways",
"economicCenters": "Economic Centers",
"criticalMinerals": "Critical Minerals",
"stockExchanges": "Stock Exchanges",
"financialCenters": "Financial Centers",
"centralBanks": "Central Banks",
"commodityHubs": "Commodity Hubs",
"gulfInvestments": "GCC Investments"
},
"tooltip": {
"earthquake": "Earthquake",
"militaryAircraft": "Military Aircraft",
"vesselCluster": "Vessel Cluster",
"vessels": "vessels",
"flightCluster": "Flight Cluster",
"aircraft": "aircraft",
"protest": "Protest",
"protestsCount": "{{count}} protests",
"techHQsCount": "{{count}} tech HQs",
"techEventsCount": "{{count}} tech events",
"dataCentersCount": "{{count}} data centers",
"underseaCable": "Undersea Cable",
"pipeline": "Pipeline",
"conflictZone": "Conflict Zone",
"naturalEvent": "Natural Event",
"financialCenter": "financial center",
"port": "Port",
"disruption": "Disruption",
"advisory": "Advisory",
"repairShip": "Repair Ship",
"internetOutage": "Internet Outage",
"medium": "medium",
"news": "News",
"undisclosed": "Undisclosed",
"stake": "stake"
},
"layerHelp": {
"title": "Map Layers Guide",
"labels": {
"countries": "Countries",
"timeRecent": "1H/6H/24H",
"timeExtended": "7D/30D/ALL",
"sanctions": "Sanctions",
"shipping": "Shipping"
},
"sections": {
"techEcosystem": "Tech Ecosystem",
"infrastructure": "Infrastructure",
"naturalEconomic": "Natural & Economic",
"financeCore": "Finance Core",
"infrastructureRisk": "Infrastructure & Risk",
"macroContext": "Macro Context",
"timeFilter": "Time Filter (top-right)",
"geopolitical": "Geopolitical",
"militaryStrategic": "Military & Strategic",
"transport": "Transport",
"labels": "Labels"
},
"descriptions": {
"techStartupHubs": "Major startup ecosystems (SF, NYC, London, etc.)",
"techCloudRegions": "AWS, Azure, GCP data center regions",
"techHQs": "Headquarters of major tech companies",
"techAccelerators": "Y Combinator, Techstars, 500 Startups locations",
"infraCables": "Major undersea fiber optic cables (internet backbone)",
"infraDatacenters": "AI compute clusters >=10,000 GPUs",
"infraOutages": "Internet blackouts and service disruptions",
"naturalEventsTech": "Earthquakes, storms, fires (may affect data centers)",
"weatherAlerts": "Severe weather alerts",
"economicCenters": "Stock exchanges & central banks",
"countriesOverlay": "Country name overlays",
"financeExchanges": "Major global exchanges by market tier",
"financeCenters": "Global and regional finance hubs",
"financeCentralBanks": "Monetary policy institutions worldwide",
"financeCommodityHubs": "Key exchanges, ports, and refining hubs",
"financeCables": "Major undersea fiber routes tied to market infrastructure",
"financePipelines": "Oil/gas pipeline routes affecting energy markets",
"financeOutages": "Internet disruptions that can impact market operations",
"financeCyberThreats": "Security events around financial infrastructure",
"macroWaterways": "Strategic chokepoints for commodity shipping",
"weatherAlertsMarket": "Severe weather events with market relevance",
"naturalEventsMacro": "Earthquakes, fires, floods, and other natural disruptions",
"timeRecent": "Filter time-based data to recent hours",
"timeExtended": "Show data from past week, month, or all time",
"geoConflicts": "Active war zones (Ukraine, Gaza, etc.) with boundaries",
"geoHotspots": "Tension regions - color-coded by news activity level",
"geoSanctions": "Countries under US/EU/UN economic sanctions",
"geoProtests": "Civil unrest, demonstrations (time-filtered)",
"militaryBases": "US/NATO, China, Russia military installations (150+)",
"militaryNuclear": "Power plants, enrichment, weapons facilities",
"militaryIrradiators": "Industrial gamma irradiator facilities",
"militaryActivity": "Live military aircraft and vessel tracking",
"infraCablesFull": "Major undersea fiber optic cables (20 backbone routes)",
"infraPipelinesFull": "Oil/gas pipelines (Nord Stream, TAPI, etc.)",
"infraDatacentersFull": "AI compute clusters >=10,000 GPUs only",
"transportShipping": "Live vessel tracking via AIS (ship positions)",
"transportDelays": "Airport delays and ground stops (FAA)",
"naturalEventsFull": "Earthquakes (USGS) + storms, fires, volcanoes, floods (NASA EONET)",
"firesFull": "Active wildfires and fire perimeters (NASA FIRMS)",
"climateAnomalies": "Temperature and precipitation anomalies",
"waterwaysLabels": "Strategic chokepoint labels",
"geoUcdpEvents": "Uppsala Conflict Data Program armed conflict events",
"geoDisplacement": "Refugee and displacement flow patterns",
"militarySpaceports": "Rocket launch sites and space facilities",
"infraCyberThreats": "Cyber attacks and security events",
"mineralsFull": "Strategic mineral deposits and mining sites",
"techCyberThreats": "Cyber attacks and security events",
"techEvents": "Major tech conferences and events",
"techFires": "Active wildfires near tech infrastructure",
"financeGulfInvestments": "GCC sovereign wealth fund investments and FDI"
},
"notes": {
"timeAffects": "Affects: Earthquakes, Weather, Protests, Outages"
}
}
},
"cii": {
"shareStory": "Share story",
"noSignals": "No instability signals detected",
"infoTooltip": "<strong>Methodology</strong><ul><li><strong>U</strong>nrest: civil disorder & protests</li><li><strong>C</strong>onflict: armed conflict intensity</li><li><strong>S</strong>ecurity: military flights/vessels over territory</li><li><strong>I</strong>nformation: news velocity and focal point correlation</li><li>Hotspot proximity boost (strategic locations)</li></ul><em>U:C:S:I values show component scores.</em> Focal Point Detection correlates news entities with map signals for accurate scoring."
},
"insights": {
"noStories": "No breaking or multi-source stories yet",
"step": "Step {{step}}/{{total}}",
"waitingForData": "Waiting for news data...",
"rankingStories": "Ranking important stories...",
"analyzingSentiment": "Analyzing sentiment...",
"generatingBrief": "Generating world brief...",
"infoTooltip": "<strong>AI-Powered Analysis</strong><br>• <strong>World Brief</strong>: AI summary (Groq/OpenRouter)<br>• <strong>Sentiment</strong>: News tone analysis<br>• <strong>Velocity</strong>: Fast-moving stories<br>• <strong>Focal Points</strong>: Correlates news entities with map signals (military, protests, outages)<br><em>Desktop only • Powered by Llama 3.3 + Focal Point Detection</em>",
"settingsTitle": "Settings",
"sectionMap": "Map",
"sectionAi": "AI Analysis",
"mapFlashLabel": "Live Event Pulse",
"mapFlashDesc": "Flash locations on the map when breaking news arrives",
"aiFlowTitle": "Settings",
"aiFlowCloudLabel": "Cloud AI (Groq & OpenRouter)",
"aiFlowCloudDesc": "Send headlines to cloud for AI summarization (recommended)",
"aiFlowBrowserLabel": "Browser Local Model",
"aiFlowBrowserDesc": "Run AI locally in your browser",
"aiFlowBrowserWarn": "Downloads ~250 MB of model data to your browser",
"aiFlowOllamaCta": "Want fully local AI?",
"aiFlowOllamaCtaDesc": "Download the desktop app for Ollama support",
"aiFlowDownloadDesktop": "Download Desktop App →",
"aiFlowStatusActive": "Cloud AI active",
"aiFlowStatusCloudAndBrowser": "Cloud AI + Browser model active",
"aiFlowStatusBrowserOnly": "Browser model only",
"aiFlowStatusDisabled": "No AI providers enabled",
"insightsDisabledTitle": "AI analysis is disabled",
"insightsDisabledHint": "Enable providers via the settings gear in the map header"
},
"cascade": {
"noImpacts": "No country impacts detected",
"filters": {
"cables": "Cables",
"pipelines": "Pipelines",
"ports": "Ports",
"chokepoints": "Chokepoints"
},
"filterType": {
"cable": "cable",
"pipeline": "pipeline",
"port": "port",
"chokepoint": "chokepoint",
"country": "country"
},
"selectPrompt": "Select {{type}}...",
"analyzeImpact": "Analyze Impact",
"impactLevels": {
"critical": "critical",
"high": "high",
"medium": "medium",
"low": "low"
},
"capacityPercent": "{{percent}}% capacity",
"noCountryImpacts": "No country impacts detected",
"alternativeRoutes": "Alternative Routes",
"countriesAffected": "Countries Affected ({{count}})",
"links": "links",
"selectInfrastructureHint": "Select infrastructure to analyze cascade impact",
"infoTooltip": "<strong>Cascade Analysis</strong> Models infrastructure dependencies:<ul><li>Subsea cables, pipelines, ports, chokepoints</li><li>Select infrastructure to simulate failure</li><li>Shows affected countries and capacity loss</li><li>Identifies redundant routes</li></ul>Data from TeleGeography and industry sources."
},
"strategicRisk": {
"noRisks": "No significant risks detected",
"levels": {
"critical": "Critical",
"elevated": "Elevated",
"moderate": "Moderate",
"low": "Low"
},
"trend": "Trend",
"trends": {
"escalating": "Escalating",
"deEscalating": "De-escalating",
"stable": "Stable"
},
"insufficientData": "Insufficient Data",
"unableToAssess": "Unable to assess risk level.",
"enableDataSources": "Enable data sources to begin monitoring.",
"requiredDataSources": "Required Data Sources",
"optionalSources": "Optional Sources",
"enableCoreFeeds": "Enable Core Feeds",
"waitingForData": "Waiting for data...",
"refresh": "Refresh",
"learningMode": "Learning Mode - {{minutes}}m until reliable",
"noData": "no data",
"enable": "Enable",
"convergenceMetric": "Convergence",
"ciiDeviation": "CII Deviation",
"infraEvents": "Infra Events",
"highAlerts": "High Alerts",
"topRisks": "Top Risks",
"recentAlerts": "Recent Alerts ({{count}})",
"updated": "Updated: {{time}}",
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago"
},
"infoTooltip": "<strong>Methodology</strong> Composite score (0-100) blending:<ul><li>50% Country Instability (top 5 weighted)</li><li>30% Geographic convergence zones</li><li>20% Infrastructure incidents</li></ul>Auto-refreshes every 5 minutes."
},
"techEvents": {
"loading": "Loading tech events...",
"noEvents": "No events to display",
"showOnMap": "Show on map",
"moreInfo": "More info",
"retry": "Retry",
"upcoming": "Upcoming",
"conferences": "Conferences",
"earnings": "Earnings",
"all": "All",
"conferencesCount": "{{count}} conferences",
"onMap": "{{count}} on map",
"techmemeEvents": "Techmeme Events ↗",
"today": "TODAY",
"soon": "SOON"
},
"techReadiness": {
"internetUsers": "Internet Users",
"mobileSubscriptions": "Mobile Subscriptions",
"rdSpending": "R&D Spending",
"fetchingData": "Fetching World Bank Data",
"internetUsersIndicator": "Internet Users",
"mobileSubscriptionsIndicator": "Mobile Subscriptions",
"broadbandAccess": "Broadband Access",
"rdExpenditure": "R&D Expenditure",
"analyzingCountries": "Analyzing 200+ countries...",
"source": "Source: World Bank",
"updated": "Updated: {{date}}",
"infoTooltip": "<strong>Global Tech Readiness</strong><br>Composite score (0-100) based on World Bank data:<br><br><strong>Metrics shown:</strong><br>🌐 Internet Users (% of population)<br>📱 Mobile Subscriptions (per 100 people)<br>🔬 R&D Expenditure (% of GDP)<br><br><strong>Weights:</strong> R&D (35%), Internet (30%), Broadband (20%), Mobile (15%)<br><br><em>— = No recent data available</em><br><em>Source: World Bank Open Data (2019-2024)</em>"
},
"populationExposure": {
"noData": "No exposure data available",
"totalAffected": "Total Affected",
"affectedCount": "{{count}} affected",
"radiusKm": "{{km}}km radius",
"infoTooltip": "<strong>Population Exposure Estimates</strong> Estimated population within event impact radius. Based on WorldPop country density data.<ul><li>Conflict: 50km radius</li><li>Earthquake: 100km radius</li><li>Flood: 100km radius</li><li>Wildfire: 30km radius</li></ul>"
},
"satelliteFires": {
"noData": "No fire data available",
"region": "Region",
"fires": "Fires",
"high": "High",
"total": "Total",
"never": "never",
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago"
},
"infoTooltip": "NASA FIRMS VIIRS satellite thermal detections across monitored conflict regions. High-intensity = brightness >360K & confidence >80%."
},
"ucdpEvents": {
"stateBased": "State-Based",
"nonState": "Non-State",
"oneSided": "One-Sided",
"country": "Country",
"deaths": "Deaths",
"date": "Date",
"actors": "Actors",
"deathsCount": "{{count}} deaths",
"moreNotShown": "{{count}} more events not shown",
"noEvents": "No events in this category",
"infoTooltip": "<strong>UCDP Georeferenced Events</strong> Event-level conflict data from Uppsala University.<ul><li><strong>State-Based</strong>: Government vs rebel group</li><li><strong>Non-State</strong>: Armed group vs armed group</li><li><strong>One-Sided</strong>: Violence against civilians</li></ul>Deaths shown as best estimate (low-high range). ACLED duplicates are filtered out automatically."
},
"giving": {
"activityIndex": "Activity Index",
"trend": "Trend",
"estDailyFlow": "Est. Daily Flow",
"cryptoDaily": "Crypto Daily",
"tabs": {
"platforms": "Platforms",
"categories": "Categories",
"crypto": "Crypto",
"institutional": "Institutional"
},
"platform": "Platform",
"dailyVol": "Daily Vol.",
"velocity": "Velocity",
"freshness": "Data",
"category": "Category",
"share": "Share",
"trending": "TREND",
"dailyInflow": "24h Inflow",
"wallets": "Wallets",
"ofTotal": "% of Total",
"topReceivers": "Top Receivers",
"oecdOda": "OECD ODA",
"cafIndex": "CAF Index",
"candidGrants": "Candid Grants",
"dataLag": "Data Lag",
"infoTooltip": "<strong>Global Giving Activity Index</strong> Composite index tracking personal giving across crowdfunding platforms and crypto wallets.<ul><li><strong>Platforms</strong>: GoFundMe, GlobalGiving, JustGiving campaign sampling</li><li><strong>Crypto</strong>: On-chain charity wallet inflows (Endaoment, Giving Block)</li><li><strong>Institutional</strong>: OECD ODA, CAF World Giving Index, Candid grants</li></ul>Index is directional (not exact dollar amounts). Combines live sampling with published annual reports."
},
"displacement": {
"noData": "No data",
"refugees": "Refugees",
"asylumSeekers": "Asylum Seekers",
"idps": "IDPs",
"total": "Total",
"origins": "Origins",
"hosts": "Hosts",
"badges": {
"crisis": "CRISIS",
"high": "HIGH",
"elevated": "ELEVATED"
},
"country": "Country",
"status": "Status",
"count": "Count",
"infoTooltip": "<strong>UNHCR Displacement Data</strong> Global refugee, asylum seeker, and IDP counts from UNHCR.<ul><li><strong>Origins</strong>: Countries people flee FROM</li><li><strong>Hosts</strong>: Countries hosting refugees</li><li>Crisis badges: >1M | High: >500K displaced</li></ul>Data updates yearly. CC BY 4.0 license."
},
"climate": {
"noAnomalies": "No significant anomalies detected",
"zone": "Zone",
"temp": "Temp",
"precip": "Precip",
"severityLabel": "Severity",
"severity": {
"extreme": "EXTREME",
"moderate": "MODERATE",
"normal": "NORMAL"
},
"infoTooltip": "<strong>Climate Anomaly Monitor</strong> Temperature and precipitation deviations from 30-day baseline. Data from Open-Meteo (ERA5 reanalysis).<ul><li><strong>Extreme</strong>: >5°C or >80mm/day deviation</li><li><strong>Moderate</strong>: >3°C or >40mm/day deviation</li></ul>Monitors 15 conflict/disaster-prone zones."
},
"newsPanel": {
"close": "Close",
"summarize": "Summarize this panel",
"generatingSummary": "Generating summary...",
"sources": "{{count}} sources",
"relatedAssetsNear": "Related assets near {{location}}"
},
"export": {
"exportData": "Export Data"
},
"runtimeConfig": {
"getApiKey": "Get API key"
},
"intelligenceFindings": {
"popupAlerts": "Pop up new alerts",
"badgeTitle": "Intelligence findings",
"title": "Intelligence Findings",
"none": "No recent intelligence findings",
"monitoring": "MONITORING",
"scanning": "Scanning for correlations and anomalies...",
"reviewRecommended": "{{count}} intelligence findings - review recommended",
"count": "{{count}} intelligence finding",
"detected": "{{count}} DETECTED",
"critical": "{{count}} CRITICAL",
"highPriority": "{{count}} HIGH PRIORITY",
"more": "+{{count}} more findings",
"all": "All Intelligence Findings ({{count}})",
"priority": {
"critical": "CRITICAL",
"high": "HIGH",
"medium": "MEDIUM",
"low": "LOW"
},
"insights": {
"criticalDestabilization": "Critical destabilization - immediate attention",
"significantShift": "Significant shift - monitor closely",
"developingSituation": "Developing situation - track for escalation",
"convergence": "Multiple events clustering in region",
"cascade": "Infrastructure disruption spreading",
"review": "Review for situational awareness"
},
"time": {
"justNow": "just now",
"minutesAgo": "{{count}}m ago",
"hoursAgo": "{{count}}h ago",
"daysAgo": "{{count}}d ago"
}
},
"countryTimeline": {
"now": "now",
"noEventsIn7Days": "No events in 7 days"
},
"gdeltIntel": {
"infoTooltip": "<strong>GDELT Intelligence</strong> Real-time global news monitoring:<ul><li>Curated topic categories (conflicts, cyber, etc.)</li><li>Articles from 100+ languages translated</li><li>Updates every 15 minutes</li></ul>Source: GDELT Project (gdeltproject.org)"
},
"investments": {
"infoTooltip": "Database of Saudi Arabia and UAE foreign direct investments in global critical infrastructure. Click a row to fly to the investment on the map.",
"searchPlaceholder": "Search assets, countries, entities…",
"allCountries": "All Countries",
"saudiArabia": "Saudi Arabia",
"uae": "UAE",
"allSectors": "All Sectors",
"allEntities": "All Entities",
"allStatuses": "All Statuses",
"operational": "Operational",
"underConstruction": "Under Construction",
"announced": "Announced",
"rumoured": "Rumoured",
"divested": "Divested",
"asset": "Asset",
"country": "Country",
"sector": "Sector",
"status": "Status",
"investment": "Investment",
"year": "Year",
"noMatch": "No investments match filters",
"undisclosed": "Undisclosed",
"sectors": {
"ports": "Ports",
"pipelines": "Pipelines",
"energy": "Energy",
"datacenters": "Data Centers",
"airports": "Airports",
"railways": "Railways",
"telecoms": "Telecoms",
"water": "Water",
"logistics": "Logistics",
"mining": "Mining",
"realEstate": "Real Estate",
"manufacturing": "Manufacturing"
}
},
"prediction": {
"infoTooltip": "<strong>Prediction Markets</strong> Real-money forecasting markets:<ul><li>Prices reflect crowd probability estimates</li><li>Higher volume = more reliable signal</li><li>Geopolitical and current events focus</li></ul>Source: Polymarket (polymarket.com)"
},
"etfFlows": {
"unavailable": "ETF data temporarily unavailable",
"netFlow": "Net Flow",
"estFlow": "Est. Flow",
"totalVol": "Total Vol",
"etfs": "ETFs",
"netInflow": "NET INFLOW",
"netOutflow": "NET OUTFLOW",
"table": {
"ticker": "Ticker",
"issuer": "Issuer",
"estFlow": "Est. Flow",
"volume": "Volume",
"change": "Change"
}
},
"macroSignals": {
"overall": "Overall",
"verdict": {
"buy": "BUY",
"cash": "CASH"
},
"bullish": "{{count}}/{{total}} bullish",
"signals": {
"liquidity": "Liquidity",
"flow": "Flow",
"regime": "Regime",
"btcTrend": "BTC Trend",
"hashRate": "Hash Rate",
"mining": "Mining",
"fearGreed": "Fear & Greed"
}
},
"panel": {
"showMethodologyInfo": "Show methodology info",
"dragToResize": "Drag to resize (double-click to reset)",
"openSettings": "Open Settings"
},
"languageSelector": {
"selectLanguage": "Select Language"
},
"serviceStatus": {
"checkingServices": "Checking services...",
"allOperational": "All services operational",
"ok": "OK",
"degraded": "Degraded",
"outage": "Outage",
"backendUnavailable": "Desktop local backend unavailable. Falling back to cloud API.",
"desktopReadiness": "Desktop readiness",
"acceptanceChecks": "Acceptance checks: {{ready}}/{{total}} ready · key-backed features {{available}}/{{featureTotal}}",
"nonParityFallbacks": "Non-parity fallbacks ({{count}})",
"categories": {
"all": "All",
"cloud": "Cloud",
"dev": "Dev Tools",
"comm": "Comms",
"ai": "AI",
"saas": "SaaS"
}
},
"verification": {
"title": "Information Verification Checklist",
"hint": "Based on Bellingcat's OSH Framework",
"verdicts": {
"verified": "VERIFIED",
"likely": "LIKELY AUTHENTIC",
"uncertain": "UNCERTAIN",
"unreliable": "UNRELIABLE"
},
"notesTitle": "Verification Notes",
"noNotes": "No notes added",
"addNotePlaceholder": "Add verification note...",
"add": "Add",
"resetChecklist": "Reset Checklist",
"checks": {
"recency": "Recent timestamp confirmed",
"geolocation": "Location verified",
"source": "Primary source identified",
"crossref": "Cross-referenced with other sources",
"noAi": "No AI generation artifacts",
"noRecrop": "Not recycled/old footage",
"metadata": "Metadata verified",
"context": "Context established"
}
},
"liveNews": {
"retry": "Retry",
"notLive": "{{name}} is not currently live",
"cannotEmbed": "{{name}} cannot be embedded in this app (YouTube {{code}})",
"botCheck": "YouTube is requesting sign-in to play {{name}}",
"signInToYouTube": "Sign in to YouTube",
"openOnYouTube": "Open on YouTube",
"manage": "Manage channels",
"addChannel": "Add channel",
"remove": "Remove",
"youtubeHandle": "YouTube handle (e.g. @Channel)",
"displayName": "Display name (optional)",
"openPanelSettings": "Panel display settings",
"channelSettings": "Channel Settings",
"save": "Save",
"cancel": "Cancel",
"confirmDelete": "Delete this channel?",
"confirmTitle": "Confirm",
"restoreDefaults": "Restore default channels",
"availableChannels": "Available channels",
"customChannel": "Custom channel",
"regionNorthAmerica": "North America",
"regionEurope": "Europe",
"regionLatinAmerica": "Latin America",
"regionAsia": "Asia",
"regionAfrica": "Africa",
"invalidHandle": "Enter a valid YouTube handle (e.g. @ChannelName)",
"channelNotFound": "YouTube channel not found",
"verifying": "Verifying…"
}
},
"popups": {
"startDate": "START DATE",
"endDate": "END DATE",
"magnitude": "Magnitude",
"depth": "Depth",
"intensity": "Intensity",
"type": "Type",
"status": "Status",
"severity": "Severity",
"location": "LOCATION",
"coordinates": "Coordinates",
"casualties": "CASUALTIES",
"displaced": "DISPLACED",
"belligerents": "BELLIGERENTS",
"keyDevelopments": "KEY DEVELOPMENTS",
"unknown": "Unknown",
"source": "Source",
"target": "Target",
"events": "Events",
"impact": "Impact",
"capacity": "Capacity",
"alerts": "Active Alerts",
"updated": "Updated",
"common": {
"start": "START",
"end": "END",
"updated": "UPDATED"
},
"conflict": {
"title": "CONFLICT ZONE"
},
"earthquake": {
"levels": {
"major": "MAJOR",
"moderate": "MODERATE",
"minor": "MINOR"
}
},
"base": {
"types": {
"us-nato": "US/NATO",
"china": "CHINA",
"russia": "RUSSIA"
}
},
"protest": {
"acledVerified": "ACLED (verified)",
"gdelt": "GDELT",
"riots": "Riots",
"highSeverity": "High Severity"
},
"flight": {
"groundStop": "GROUND STOP",
"groundDelay": "GROUND DELAY PROGRAM",
"departureDelay": "DEPARTURE DELAYS",
"arrivalDelay": "ARRIVAL DELAYS",
"delaysReported": "DELAYS REPORTED",
"delays": "DELAYS",
"avgDelay": "AVG DELAY",
"cancelled": "CANCELLED",
"sources": {
"faa": "FAA ASWS",
"eurocontrol": "Eurocontrol",
"computed": "Computed"
},
"regions": {
"americas": "Americas",
"europe": "Europe",
"apac": "Asia-Pacific",
"mena": "Middle East",
"africa": "Africa"
}
},
"apt": {
"description": "Advanced Persistent Threat group with state-level capabilities. Known for sophisticated cyber operations targeting critical infrastructure, government, and defense sectors."
},
"cyberThreat": {
"title": "CYBER THREAT"
},
"nuclear": {
"types": {
"plant": "POWER PLANT",
"enrichment": "ENRICHMENT",
"weapons": "WEAPONS COMPLEX",
"research": "RESEARCH"
},
"description": "Nuclear facility under monitoring. Strategic importance for regional security and non-proliferation concerns."
},
"economic": {
"types": {
"exchange": "STOCK EXCHANGE",
"centralBank": "CENTRAL BANK",
"financialHub": "FINANCIAL HUB"
},
"closed": "CLOSED"
},
"irradiator": {
"subtitle": "Industrial Gamma Irradiator Facility",
"description": "Industrial irradiation facility using Cobalt-60 or Cesium-137 sources for medical device sterilization, food preservation, or material processing. Source: IAEA DIIF Database."
},
"pipeline": {
"title": "PIPELINE",
"types": {
"oil": "OIL PIPELINE",
"gas": "GAS PIPELINE",
"products": "PRODUCTS PIPELINE"
},
"status": {
"operating": "OPERATING",
"construction": "UNDER CONSTRUCTION"
},
"description": "Major {{type}} pipeline infrastructure. {{status}}"
},
"pipelineStatusDesc": {
"operating": "Currently operational and transporting resources.",
"construction": "Currently under construction."
},
"cable": {
"fault": "FAULT",
"degraded": "DEGRADED",
"active": "ACTIVE",
"major": "MAJOR",
"cable": "CABLE",
"subtitle": "Undersea Fiber Optic Cable",
"type": "SUBMARINE CABLE",
"advisory": "FAULT ADVISORY",
"repairDeployment": "REPAIR DEPLOYMENT",
"repairStatus": {
"onStation": "On Station",
"enRoute": "En Route"
},
"health": {
"evidence": "HEALTH EVIDENCE"
},
"description": "Undersea telecommunications cable carrying international internet traffic. These fiber optic cables form the backbone of global internet connectivity, transmitting over 95% of intercontinental data."
},
"repairShip": {
"note": "Repair vessel tracking indicates active deployment toward fault site.",
"badge": "REPAIR SHIP",
"description": "Repair ship tracking indicates active deployment in support of undersea cable restoration.",
"status": {
"onStation": "ON STATION",
"enRoute": "EN ROUTE"
}
},
"strategic": "STRATEGIC",
"verified": "VERIFIED",
"sampledList": "Showing a sampled list of {{count}} events.",
"reason": "REASON",
"threat": "THREAT",
"aka": "Also known as",
"sponsor": "SPONSOR",
"origin": "ORIGIN",
"country": "COUNTRY",
"malware": "MALWARE",
"lastSeen": "LAST SEEN",
"open": "OPEN",
"tradingHours": "TRADING HOURS",
"gamma": "GAMMA",
"city": "CITY",
"length": "LENGTH",
"operator": "OPERATOR",
"countries": "COUNTRIES",
"waypoints": "WAYPOINTS",
"repairEta": "REPAIR ETA",
"timeUnits": {
"m": "m",
"h": "h",
"d": "d"
},
"hotspot": {
"escalation": "ESCALATION ASSESSMENT",
"baseline": "Baseline",
"score": "Score",
"trend": "Trend",
"components": {
"news": "News",
"cii": "CII",
"geo": "Geo",
"military": "Military"
},
"levels": {
"stable": "STABLE",
"watch": "WATCH",
"elevated": "ELEVATED",
"high": "HIGH",
"critical": "CRITICAL"
}
},
"buttons": {
"track": "Track Issue",
"details": "View Details"
},
"historicalContext": "HISTORICAL CONTEXT",
"lastMajorEvent": "Last Major Event",
"precedents": "Precedents",
"cyclicalPattern": "Cyclical Pattern",
"whyItMatters": "WHY IT MATTERS",
"keyEntities": "KEY ENTITIES",
"relatedHeadlines": "RELATED HEADLINES",
"liveIntel": "Live Intelligence",
"loadingNews": "Loading global news...",
"noCoverage": "No recent global coverage",
"time": "Time",
"area": "Area",
"expires": "Expires",
"aisGapSpike": "AIS GAP SPIKE",
"chokepointCongestion": "CHOKEPOINT CONGESTION",
"darkening": "DARKENING",
"density": "DENSITY",
"darkShips": "DARK SHIPS",
"vesselCount": "VESSEL COUNT",
"window": "WINDOW",
"region": "REGION",
"fatalities": "FATALITIES",
"actors": "ACTORS",
"near": "Near",
"moreEvents": "more events",
"monitoring": "Monitoring",
"viewUSGS": "View on USGS",
"expired": "Expired",
"timeAgo": {
"s": "{{count}}s ago",
"m": "{{count}}m ago",
"h": "{{count}}h ago",
"d": "{{count}}d ago"
},
"cableAdvisory": {
"reported": "REPORTED",
"impact": "IMPACT",
"eta": "ETA"
},
"outage": {
"levels": {
"total": "TOTAL BLACKOUT",
"major": "MAJOR OUTAGE",
"partial": "PARTIAL DISRUPTION",
"disruption": "DISRUPTION"
},
"reported": "REPORTED",
"categories": "CATEGORIES",
"readReport": "Read full report"
},
"datacenter": {
"status": {
"existing": "OPERATIONAL",
"planned": "PLANNED",
"decommissioned": "DECOMMISSIONED",
"unknown": "UNKNOWN"
},
"gpuChipCount": "GPU/CHIP COUNT",
"chipType": "CHIP TYPE",
"power": "POWER",
"sector": "SECTOR",
"attribution": "Data: Epoch AI GPU Clusters",
"chips": "chips",
"cluster": {
"title": "{{count}} Data Centers",
"totalChips": "TOTAL CHIPS",
"totalPower": "TOTAL POWER",
"operational": "OPERATIONAL",
"planned": "PLANNED",
"moreDataCenters": "+ {{count}} more data centers",
"sampledSites": "Showing a sampled list of {{count}} sites."
}
},
"startupHub": {
"tiers": {
"mega": "MEGA HUB",
"major": "MAJOR HUB",
"emerging": "EMERGING",
"hub": "HUB"
},
"unicorns": "UNICORNS"
},
"cloudRegion": {
"provider": "PROVIDER",
"availabilityZones": "AVAILABILITY ZONES"
},
"techHQ": {
"types": {
"faang": "BIG TECH",
"unicorn": "UNICORN",
"public": "PUBLIC",
"tech": "TECH"
},
"marketCap": "MARKET CAP",
"employees": "EMPLOYEES"
},
"accelerator": {
"types": {
"accelerator": "ACCELERATOR",
"incubator": "INCUBATOR",
"studio": "STARTUP STUDIO"
},
"founded": "FOUNDED",
"notableAlumni": "NOTABLE ALUMNI"
},
"techEvent": {
"days": {
"today": "TODAY",
"tomorrow": "TOMORROW",
"inDays": "IN {{count}} DAYS"
},
"date": "DATE",
"moreInformation": "More Information"
},
"techHQCluster": {
"companiesCount": "{{count}} COMPANIES",
"bigTechCount": "{{count}} Big Tech",
"unicornsCount": "{{count}} Unicorns",
"publicCount": "{{count}} Public",
"sampled": "Showing a sampled list of {{count}} companies."
},
"techEventCluster": {
"eventsCount": "{{count}} EVENTS",
"upcomingWithin2Weeks": "{{count}} upcoming within 2 weeks",
"sampled": "Showing a sampled list of {{count}} events."
},
"militaryFlight": {
"types": {
"fighter": "Fighter",
"bomber": "Bomber",
"transport": "Transport",
"tanker": "Tanker",
"awacs": "AWACS/AEW",
"reconnaissance": "Reconnaissance",
"helicopter": "Helicopter",
"drone": "UAV/Drone",
"patrol": "Patrol",
"specialOps": "Special Operations",
"vip": "VIP Transport"
},
"altitude": "ALTITUDE",
"ground": "Ground",
"speed": "SPEED",
"heading": "HEADING",
"hexCode": "HEX CODE",
"squawk": "SQUAWK",
"attribution": "Source: OpenSky Network"
},
"militaryVessel": {
"aisDark": "AIS DARK",
"vessel": "Vessel",
"speed": "SPEED",
"heading": "HEADING",
"mmsi": "MMSI",
"hull": "HULL #",
"region": "REGION",
"strikeGroup": "STRIKE GROUP",
"deploymentStatus": "STATUS",
"usniIntel": "USNI Intel",
"usniSource": "Source: USNI News Fleet Tracker",
"approximatePosition": "Position approximate — based on USNI weekly report, not real-time AIS.",
"darkDescription": "⚠ Vessel has gone dark - AIS signal lost. May indicate sensitive operations."
},
"militaryCluster": {
"flightActivity": {
"exercise": "Military Exercise",
"patrol": "Patrol Activity",
"transport": "Transport Operations",
"unknown": "Military Activity"
},
"moreAircraft": "+{{count}} more aircraft",
"aircraftCount": "{{count}} AIRCRAFT",
"aircraft": "AIRCRAFT",
"activity": "ACTIVITY",
"primary": "PRIMARY",
"trackedAircraft": "TRACKED AIRCRAFT",
"vesselActivity": {
"exercise": "Naval Exercise",
"deployment": "Naval Deployment",
"patrol": "Patrol Activity",
"transit": "Fleet Transit",
"unknown": "Naval Activity"
},
"moreVessels": "+{{count}} more vessels",
"vesselsCount": "{{count}} VESSELS",
"vessels": "VESSELS",
"trackedVessels": "TRACKED VESSELS"
},
"naturalEvent": {
"closed": "CLOSED",
"active": "ACTIVE",
"reported": "REPORTED",
"viewOnSource": "View on {{source}}",
"attribution": "Data: NASA EONET"
},
"port": {
"types": {
"container": "CONTAINER",
"oil": "OIL TERMINAL",
"lng": "LNG TERMINAL",
"naval": "NAVAL PORT",
"mixed": "MIXED",
"bulk": "BULK"
},
"worldRank": "WORLD RANK"
},
"spaceport": {
"status": {
"active": "ACTIVE",
"construction": "CONSTRUCTION",
"inactive": "INACTIVE"
},
"launchActivity": "LAUNCH ACTIVITY",
"description": "Strategic space launch facility. Launch cadence and orbit access capabilities are key geopolitical indicators."
},
"mineral": {
"status": {
"producing": "PRODUCING",
"development": "DEVELOPMENT",
"exploration": "EXPLORATION"
},
"projectSubtitle": "{{mineral}} PROJECT"
},
"stockExchange": {
"marketCap": "MARKET CAP"
},
"financialCenter": {
"gfciRank": "GFCI RANK",
"specialties": "SPECIALTIES"
},
"centralBank": {
"currency": "CURRENCY"
},
"commodityHub": {
"commodities": "COMMODITIES"
},
"hotspotSubtexts": {
"conflict_zone": "Conflict Zone",
"dprk_watch": "DPRK Watch",
"egypt_gis": "Egypt/GIS",
"energy_space": "Energy/Space",
"financial_hub": "Financial Hub",
"gchq_mi6": "GCHQ/MI6",
"greenland_intel": "Greenland Intel",
"haiti_crisis": "Haiti Crisis",
"irgc_activity": "IRGC Activity",
"insurgency_coups": "Insurgency/Coups",
"iraq_pmf": "Iraq/PMF",
"kremlin_activity": "Kremlin Activity",
"lebanon_hezbollah": "Lebanon/Hezbollah",
"mossad_idf": "Mossad/IDF",
"nato_hq": "NATO HQ",
"pla_mss_activity": "PLA/MSS Activity",
"pentagon_pizza_index": "Pentagon Pizza Index",
"piracy_conflict": "Piracy/Conflict",
"qatar_al_udeid": "Qatar/Al Udeid",
"saudi_gip_mbs": "Saudi GIP/MBS",
"strait_watch": "Strait Watch",
"syria_crisis": "Syria Crisis",
"tech_ai_hub": "Tech/AI Hub",
"turkey_mit": "Turkey/MIT",
"uae_ecsr": "UAE/ECSR",
"venezuela_crisis": "Venezuela Crisis",
"yemen_houthis": "Yemen/Houthis"
}
},
"signals": {
"context": {
"prediction_leads_news": {
"whyItMatters": "Prediction markets often price in information before it becomes news—traders may have early access to developments.",
"actionableInsight": "Monitor for breaking news in the next 1-6 hours that could explain the market move.",
"confidenceNote": "Higher confidence if multiple prediction markets move in same direction."
},
"news_leads_markets": {
"whyItMatters": "News is breaking faster than markets are reacting—potential mispricing opportunity.",
"actionableInsight": "Watch for market catch-up as algorithms and traders digest the news.",
"confidenceNote": "Stronger signal if news is from Tier 1 wire services."
},
"silent_divergence": {
"whyItMatters": "Market moving significantly without any identifiable news catalyst—possible insider knowledge, algorithmic trading, or unreported development.",
"actionableInsight": "Investigate alternative data sources; news may emerge later explaining the move.",
"confidenceNote": "Lower confidence as cause is unknown—treat as early warning, not confirmed intelligence."
},
"velocity_spike": {
"whyItMatters": "A story is accelerating across multiple news sources—indicates growing significance and potential for market/policy impact.",
"actionableInsight": "This topic warrants immediate attention; expect official statements or market reactions.",
"confidenceNote": "Higher confidence with more sources; check if Tier 1 sources are among them."
},
"keyword_spike": {
"whyItMatters": "A term is appearing at significantly higher frequency than its baseline across multiple sources, indicating a developing story.",
"actionableInsight": "Review related headlines and AI summary, then correlate with country instability and market moves.",
"confidenceNote": "Confidence increases with stronger baseline multiplier and broader source diversity."
},
"convergence": {
"whyItMatters": "Multiple independent source types confirming same event—cross-validation increases likelihood of accuracy.",
"actionableInsight": "Treat this as high-confidence intelligence; triangulation reduces false positive risk.",
"confidenceNote": "Very high confidence when wire + government + intel sources align."
},
"triangulation": {
"whyItMatters": "The \"authority triangle\" (wire services, government sources, intel specialists) are aligned—this is the gold standard for breaking news confirmation.",
"actionableInsight": "This is actionable intelligence; expect market/policy reactions imminently.",
"confidenceNote": "Highest confidence signal in the system—multiple authoritative sources agree."
},
"flow_drop": {
"whyItMatters": "Physical commodity flow disruption detected—supply constraints often precede price spikes.",
"actionableInsight": "Monitor energy commodity prices; assess supply chain exposure.",
"confidenceNote": "Confidence depends on disruption duration and alternative supply availability."
},
"flow_price_divergence": {
"whyItMatters": "Supply disruption news is not yet reflected in commodity prices—potential information edge.",
"actionableInsight": "Either markets are slow to react, or the disruption is less significant than reported.",
"confidenceNote": "Medium confidence—markets may have better information than news reports."
},
"geo_convergence": {
"whyItMatters": "Multiple news events clustering around same geographic location—potential escalation or coordinated activity.",
"actionableInsight": "Increase monitoring priority for this region; correlate with satellite/AIS data if available.",
"confidenceNote": "Higher confidence if events span multiple source types and time periods."
},
"explained_market_move": {
"whyItMatters": "Market move has clear news catalyst—no mystery, price action reflects known information.",
"actionableInsight": "Understand the narrative driving the move; assess if reaction is proportional.",
"confidenceNote": "High confidence—news and price action are correlated."
},
"hotspot_escalation": {
"whyItMatters": "Geopolitical hotspot showing significant escalation based on news activity, country instability, geographic convergence, and military presence.",
"actionableInsight": "Increase monitoring priority; assess downstream impacts on infrastructure, markets, and regional stability.",
"confidenceNote": "Confidence weighted by multiple data sources—news (35%), country instability (25%), geo-convergence (25%), military activity (15%)."
},
"sector_cascade": {
"whyItMatters": "Market movement is cascading across related sectors—indicates systemic reaction to a catalyzing event.",
"actionableInsight": "Identify the primary catalyst; assess exposure across correlated assets.",
"confidenceNote": "Higher confidence when multiple sectors move with similar velocity and direction."
},
"military_surge": {
"whyItMatters": "Military transport activity significantly above baseline—indicates potential deployment, humanitarian operation, or force projection.",
"actionableInsight": "Correlate with regional news; assess nearby base activity and naval movements.",
"confidenceNote": "Higher confidence with sustained activity over multiple hours and diverse aircraft types."
},
"fallback": {
"whyItMatters": "Signal detected.",
"actionableInsight": "Monitor for developments.",
"confidenceNote": "Standard confidence."
}
}
},
"alerts": {
"instabilityRising": "{{country}} Instability Rising",
"instabilityFalling": "{{country}} Instability Falling",
"indexRose": "Instability index rose from {{from}} to {{to}} ({{change}}). Driver: {{driver}}",
"indexFell": "Instability index fell from {{from}} to {{to}} ({{change}}). Driver: {{driver}}",
"geoAlert": "Geographic Alert: {{location}}",
"cascadeAlert": "Infrastructure Cascade Alert",
"infraAlert": "Infrastructure Alert: {{name}}",
"countriesAffected": "{{count}} countries affected, highest impact: {{impact}}",
"alert": "Alert: {{location}}",
"multipleRegions": "Multiple Regions",
"trending": "\"{{term}}\" Trending - {{count}} mentions in {{hours}}h",
"eventsDetected": "{{count}} events detected in region ({{lat}}°, {{lon}}°)"
},
"intel": {
"topics": {
"military": {
"name": "Military Activity",
"description": "Military exercises, deployments, and operations"
},
"cyber": {
"name": "Cyber Threats",
"description": "Cyber attacks, ransomware, and digital threats"
},
"nuclear": {
"name": "Nuclear",
"description": "Nuclear programs, IAEA inspections, proliferation"
},
"sanctions": {
"name": "Sanctions",
"description": "Economic sanctions and trade restrictions"
},
"intelligence": {
"name": "Intelligence",
"description": "Espionage, intelligence operations, surveillance"
},
"maritime": {
"name": "Maritime Security",
"description": "Naval operations, maritime chokepoints, sea lanes"
}
}
},
"common": {
"loading": "Loading...",
"error": "Error",
"noData": "No data available",
"noDataAvailable": "No data available",
"updated": "Updated just now",
"ago": "{{time}} ago",
"retrying": "Retrying…",
"failedToLoad": "Failed to load data",
"noDataShort": "No data",
"upstreamUnavailable": "Upstream API unavailable — will retry automatically",
"loadingUcdpEvents": "Loading UCDP events",
"loadingStablecoins": "Loading stablecoins...",
"scanningThermalData": "Scanning thermal data",
"calculatingExposure": "Calculating exposure",
"computingSignals": "Computing signals...",
"loadingEtfData": "Loading ETF data...",
"loadingGiving": "Loading global giving data",
"loadingDisplacement": "Loading displacement data",
"loadingClimateData": "Loading climate data",
"failedTechReadiness": "Failed to load tech readiness data",
"failedRiskOverview": "Failed to calculate risk overview",
"failedPredictions": "Failed to load predictions",
"failedCII": "Failed to calculate CII",
"failedDependencyGraph": "Failed to build dependency graph",
"failedIntelFeed": "Failed to load intelligence feed",
"failedMarketData": "Failed to load market data",
"failedSectorData": "Failed to load sector data",
"failedCommodities": "Failed to load commodities",
"failedCryptoData": "Failed to load crypto data",
"failedClusterNews": "Failed to cluster news",
"noNewsAvailable": "No news available",
"noActiveTechHubs": "No active tech hubs",
"noActiveGeoHubs": "No active geopolitical hubs",
"allSourcesDisabled": "All sources disabled",
"allIntelSourcesDisabled": "All Intel sources disabled",
"noEventsInCategory": "No events in this category",
"exportCsv": "Export CSV",
"exportJson": "Export JSON",
"exportData": "Export Data",
"selectAll": "Select All",
"selectNone": "Select None",
"unrest": "Unrest",
"conflict": "Conflict",
"security": "Security",
"information": "Information",
"shareStory": "Share story",
"exportImage": "Export Image",
"exportPdf": "Export PDF",
"new": "NEW",
"live": "LIVE",
"cached": "CACHED",
"unavailable": "UNAVAILABLE",
"close": "Close",
"currentVariant": "(current)",
"retry": "Retry",
"retrying": "Retrying...",
"refresh": "Refresh"
}
}