You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add i18n translations for MysticismSection and StickyCTA
- Add mysticism translations to all 5 languages (en, ru, de, zh, es)
- Add stickyCta translations for Invest/Calculator buttons
- Update MysticismSection to use i18n with fallbacks
- Update App.tsx with MysticismToggle component using i18n
- Update StickyCTA to use stickyCta translations
Translations include:
- Mathematical Foundations title
- SU(3) Gauge Symmetry
- Chern-Simons Invariants
- Golden Ratio Identity
- Phoenix Number
Co-authored-by: Ona <no-reply@ona.com>
"description": "Ternäre Zustände {-1, 0, +1} entsprechen der Farbladung in der Quantenchromodynamik. Die 8 Gluon-Generatoren von SU(3) bieten natürliche Fehlerkorrektur.",
"subtitle": "These mathematical structures provide theoretical grounding for ternary computing advantages.",
810
+
"toggleShow": "▶ For Mathematicians: SU(3), Chern-Simons, φ",
811
+
"toggleHide": "▼ Hide Mathematical Foundations",
812
+
"items": [
813
+
{
814
+
"title": "SU(3) Gauge Symmetry",
815
+
"description": "Ternary states {-1, 0, +1} map to color charge in quantum chromodynamics. The 8 gluon generators of SU(3) provide natural error correction.",
"description": "Los estados ternarios {-1, 0, +1} corresponden a la carga de color en cromodinámica cuántica. Los 8 generadores de gluones de SU(3) proporcionan corrección de errores natural.",
"description": "Protección topológica de estados cuánticos a través de la teoría de Chern-Simons. El invariante k=3 corresponde a la profundidad lógica ternaria.",
408
+
"formula": "CS(A) = k/4π ∫ Tr(A∧dA + ⅔A∧A∧A)"
409
+
},
410
+
{
411
+
"title": "Identidad de la Proporción Áurea",
412
+
"description": "La fórmula sagrada φ² + 1/φ² = 3 conecta la proporción áurea con lo ternario.",
413
+
"formula": "φ² + 1/φ² = 3 = TRINIDAD"
414
+
},
415
+
{
416
+
"title": "Número Fénix",
417
+
"description": "La constante autorreferencial que emerge de la recursión ternaria. Relacionada con las constantes de Feigenbaum.",
"description": "Топологическая защита квантовых состояний через теорию Черна-Саймонса. Инвариант k=3 соответствует глубине троичной логики.",
814
+
"formula": "CS(A) = k/4π ∫ Tr(A∧dA + ⅔A∧A∧A)"
815
+
},
816
+
{
817
+
"title": "Тождество Золотого Сечения",
818
+
"description": "Священная формула φ² + 1/φ² = 3 связывает золотое сечение с троичностью. Это тождество лежит в основе оптимального кодирования информации.",
819
+
"formula": "φ² + 1/φ² = 3 = ТРОИЦА"
820
+
},
821
+
{
822
+
"title": "Число Феникса",
823
+
"description": "Самореферентная константа, возникающая из троичной рекурсии. Связана с константами Фейгенбаума в теории хаоса.",
Copy file name to clipboardExpand all lines: website/src/components/sections/MysticismSection.tsx
+39-26Lines changed: 39 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -1,30 +1,43 @@
1
1
"use client";
2
2
import{motion}from'framer-motion';
3
+
import{useI18n}from'../../i18n/context';
3
4
4
-
constmysticismItems=[
5
-
{
6
-
title: 'SU(3) Gauge Symmetry',
7
-
description: 'Ternary states {-1, 0, +1} map to color charge in quantum chromodynamics. The 8 gluon generators of SU(3) provide natural error correction.',
0 commit comments