@jjlmoya/utils-chrono 1.2.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. package/package.json +1 -1
  2. package/src/category/ChronoCategorySEO.astro +9 -2
  3. package/src/category/i18n/de.ts +11 -9
  4. package/src/category/i18n/en.ts +11 -9
  5. package/src/category/i18n/fr.ts +11 -9
  6. package/src/category/i18n/id.ts +11 -9
  7. package/src/category/i18n/it.ts +11 -9
  8. package/src/category/i18n/ja.ts +11 -9
  9. package/src/category/i18n/ko.ts +11 -9
  10. package/src/category/i18n/nl.ts +11 -9
  11. package/src/category/i18n/pl.ts +11 -9
  12. package/src/category/i18n/pt.ts +11 -9
  13. package/src/category/i18n/ru.ts +11 -9
  14. package/src/category/i18n/sv.ts +11 -9
  15. package/src/category/i18n/tr.ts +11 -9
  16. package/src/category/i18n/zh.ts +11 -9
  17. package/src/category/index.ts +6 -0
  18. package/src/entries.ts +10 -1
  19. package/src/index.ts +3 -0
  20. package/src/tests/locale_completeness.test.ts +1 -1
  21. package/src/tests/no_h1_in_components.test.ts +1 -1
  22. package/src/tests/tool_validation.test.ts +1 -1
  23. package/src/tool/beat-rate-converter/bibliography.ts +1 -1
  24. package/src/tool/beat-rate-converter/components/ConverterPanel.astro +57 -20
  25. package/src/tool/beat-rate-converter/i18n/en.ts +5 -5
  26. package/src/tool/crown-reference-guide/bibliography.ts +3 -3
  27. package/src/tool/crown-reference-guide/i18n/de.ts +37 -29
  28. package/src/tool/crown-reference-guide/i18n/en.ts +38 -30
  29. package/src/tool/crown-reference-guide/i18n/es.ts +36 -28
  30. package/src/tool/crown-reference-guide/i18n/fr.ts +38 -30
  31. package/src/tool/crown-reference-guide/i18n/id.ts +38 -30
  32. package/src/tool/crown-reference-guide/i18n/it.ts +38 -30
  33. package/src/tool/crown-reference-guide/i18n/ja.ts +38 -30
  34. package/src/tool/crown-reference-guide/i18n/ko.ts +38 -30
  35. package/src/tool/crown-reference-guide/i18n/nl.ts +38 -30
  36. package/src/tool/crown-reference-guide/i18n/pl.ts +38 -30
  37. package/src/tool/crown-reference-guide/i18n/pt.ts +38 -30
  38. package/src/tool/crown-reference-guide/i18n/ru.ts +41 -33
  39. package/src/tool/crown-reference-guide/i18n/sv.ts +38 -30
  40. package/src/tool/crown-reference-guide/i18n/tr.ts +38 -30
  41. package/src/tool/crown-reference-guide/i18n/zh.ts +37 -29
  42. package/src/tool/demagnetizing-timer/i18n/de.ts +1 -1
  43. package/src/tool/demagnetizing-timer/i18n/en.ts +1 -1
  44. package/src/tool/demagnetizing-timer/i18n/es.ts +1 -1
  45. package/src/tool/demagnetizing-timer/i18n/fr.ts +1 -1
  46. package/src/tool/demagnetizing-timer/i18n/id.ts +1 -1
  47. package/src/tool/demagnetizing-timer/i18n/it.ts +1 -1
  48. package/src/tool/demagnetizing-timer/i18n/ja.ts +1 -1
  49. package/src/tool/demagnetizing-timer/i18n/ko.ts +1 -1
  50. package/src/tool/demagnetizing-timer/i18n/nl.ts +1 -1
  51. package/src/tool/demagnetizing-timer/i18n/pl.ts +2 -2
  52. package/src/tool/demagnetizing-timer/i18n/pt.ts +1 -1
  53. package/src/tool/demagnetizing-timer/i18n/ru.ts +7 -7
  54. package/src/tool/demagnetizing-timer/i18n/sv.ts +1 -1
  55. package/src/tool/demagnetizing-timer/i18n/tr.ts +1 -1
  56. package/src/tool/demagnetizing-timer/i18n/zh.ts +1 -1
  57. package/src/tool/lume-color-simulator/bibliography.astro +16 -0
  58. package/src/tool/lume-color-simulator/bibliography.ts +16 -0
  59. package/src/tool/lume-color-simulator/client.ts +186 -0
  60. package/src/tool/lume-color-simulator/component.astro +17 -0
  61. package/src/tool/lume-color-simulator/components/LumePanel.astro +98 -0
  62. package/src/tool/lume-color-simulator/entry.ts +57 -0
  63. package/src/tool/lume-color-simulator/i18n/de.ts +174 -0
  64. package/src/tool/lume-color-simulator/i18n/en.ts +174 -0
  65. package/src/tool/lume-color-simulator/i18n/es.ts +174 -0
  66. package/src/tool/lume-color-simulator/i18n/fr.ts +174 -0
  67. package/src/tool/lume-color-simulator/i18n/id.ts +174 -0
  68. package/src/tool/lume-color-simulator/i18n/it.ts +175 -0
  69. package/src/tool/lume-color-simulator/i18n/ja.ts +174 -0
  70. package/src/tool/lume-color-simulator/i18n/ko.ts +174 -0
  71. package/src/tool/lume-color-simulator/i18n/nl.ts +175 -0
  72. package/src/tool/lume-color-simulator/i18n/pl.ts +174 -0
  73. package/src/tool/lume-color-simulator/i18n/pt.ts +174 -0
  74. package/src/tool/lume-color-simulator/i18n/ru.ts +174 -0
  75. package/src/tool/lume-color-simulator/i18n/sv.ts +174 -0
  76. package/src/tool/lume-color-simulator/i18n/tr.ts +174 -0
  77. package/src/tool/lume-color-simulator/i18n/zh.ts +174 -0
  78. package/src/tool/lume-color-simulator/index.ts +11 -0
  79. package/src/tool/lume-color-simulator/lume-color-simulator.css +208 -0
  80. package/src/tool/lume-color-simulator/seo.astro +16 -0
  81. package/src/tool/moon-phase-visualizer/bibliography.astro +16 -0
  82. package/src/tool/moon-phase-visualizer/bibliography.ts +16 -0
  83. package/src/tool/moon-phase-visualizer/client.ts +243 -0
  84. package/src/tool/moon-phase-visualizer/component.astro +17 -0
  85. package/src/tool/moon-phase-visualizer/components/MoonPanel.astro +63 -0
  86. package/src/tool/moon-phase-visualizer/entry.ts +51 -0
  87. package/src/tool/moon-phase-visualizer/i18n/de.ts +175 -0
  88. package/src/tool/moon-phase-visualizer/i18n/en.ts +175 -0
  89. package/src/tool/moon-phase-visualizer/i18n/es.ts +175 -0
  90. package/src/tool/moon-phase-visualizer/i18n/fr.ts +175 -0
  91. package/src/tool/moon-phase-visualizer/i18n/id.ts +175 -0
  92. package/src/tool/moon-phase-visualizer/i18n/it.ts +176 -0
  93. package/src/tool/moon-phase-visualizer/i18n/ja.ts +175 -0
  94. package/src/tool/moon-phase-visualizer/i18n/ko.ts +175 -0
  95. package/src/tool/moon-phase-visualizer/i18n/nl.ts +176 -0
  96. package/src/tool/moon-phase-visualizer/i18n/pl.ts +175 -0
  97. package/src/tool/moon-phase-visualizer/i18n/pt.ts +175 -0
  98. package/src/tool/moon-phase-visualizer/i18n/ru.ts +175 -0
  99. package/src/tool/moon-phase-visualizer/i18n/sv.ts +175 -0
  100. package/src/tool/moon-phase-visualizer/i18n/tr.ts +175 -0
  101. package/src/tool/moon-phase-visualizer/i18n/zh.ts +175 -0
  102. package/src/tool/moon-phase-visualizer/index.ts +11 -0
  103. package/src/tool/moon-phase-visualizer/moon-phase-visualizer.css +216 -0
  104. package/src/tool/moon-phase-visualizer/seo.astro +16 -0
  105. package/src/tool/power-reserve-estimator/bibliography.ts +2 -2
  106. package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +146 -39
  107. package/src/tool/power-reserve-estimator/i18n/en.ts +3 -3
  108. package/src/tool/strap-taper-calculator/i18n/en.ts +2 -2
  109. package/src/tool/strap-taper-calculator/i18n/ru.ts +3 -3
  110. package/src/tool/watch-accuracy-tracker/i18n/ru.ts +2 -2
  111. package/src/tool/watch-savings-planner/i18n/en.ts +5 -5
  112. package/src/tool/watch-size-comparator/bibliography.astro +16 -0
  113. package/src/tool/watch-size-comparator/bibliography.ts +16 -0
  114. package/src/tool/watch-size-comparator/client.ts +287 -0
  115. package/src/tool/watch-size-comparator/component.astro +17 -0
  116. package/src/tool/watch-size-comparator/components/WatchForm.astro +121 -0
  117. package/src/tool/watch-size-comparator/drawing/index.ts +79 -0
  118. package/src/tool/watch-size-comparator/drawing/measures.ts +57 -0
  119. package/src/tool/watch-size-comparator/drawing/utils.ts +37 -0
  120. package/src/tool/watch-size-comparator/drawing/watch.ts +78 -0
  121. package/src/tool/watch-size-comparator/entry.ts +62 -0
  122. package/src/tool/watch-size-comparator/i18n/de.ts +189 -0
  123. package/src/tool/watch-size-comparator/i18n/en.ts +189 -0
  124. package/src/tool/watch-size-comparator/i18n/es.ts +189 -0
  125. package/src/tool/watch-size-comparator/i18n/fr.ts +189 -0
  126. package/src/tool/watch-size-comparator/i18n/id.ts +189 -0
  127. package/src/tool/watch-size-comparator/i18n/it.ts +190 -0
  128. package/src/tool/watch-size-comparator/i18n/ja.ts +189 -0
  129. package/src/tool/watch-size-comparator/i18n/ko.ts +189 -0
  130. package/src/tool/watch-size-comparator/i18n/nl.ts +190 -0
  131. package/src/tool/watch-size-comparator/i18n/pl.ts +189 -0
  132. package/src/tool/watch-size-comparator/i18n/pt.ts +189 -0
  133. package/src/tool/watch-size-comparator/i18n/ru.ts +189 -0
  134. package/src/tool/watch-size-comparator/i18n/sv.ts +189 -0
  135. package/src/tool/watch-size-comparator/i18n/tr.ts +189 -0
  136. package/src/tool/watch-size-comparator/i18n/zh.ts +189 -0
  137. package/src/tool/watch-size-comparator/index.ts +11 -0
  138. package/src/tool/watch-size-comparator/seo.astro +16 -0
  139. package/src/tool/watch-size-comparator/watch-size-comparator.css +373 -0
  140. package/src/tool/water-resistance-converter/bibliography.ts +2 -2
  141. package/src/tool/water-resistance-converter/i18n/de.ts +5 -5
  142. package/src/tool/water-resistance-converter/i18n/en.ts +6 -6
  143. package/src/tool/water-resistance-converter/i18n/es.ts +6 -6
  144. package/src/tool/water-resistance-converter/i18n/fr.ts +6 -6
  145. package/src/tool/water-resistance-converter/i18n/id.ts +6 -6
  146. package/src/tool/water-resistance-converter/i18n/it.ts +6 -6
  147. package/src/tool/water-resistance-converter/i18n/ja.ts +6 -6
  148. package/src/tool/water-resistance-converter/i18n/ko.ts +6 -6
  149. package/src/tool/water-resistance-converter/i18n/nl.ts +6 -6
  150. package/src/tool/water-resistance-converter/i18n/pl.ts +6 -6
  151. package/src/tool/water-resistance-converter/i18n/pt.ts +6 -6
  152. package/src/tool/water-resistance-converter/i18n/ru.ts +8 -8
  153. package/src/tool/water-resistance-converter/i18n/sv.ts +6 -6
  154. package/src/tool/water-resistance-converter/i18n/tr.ts +6 -6
  155. package/src/tool/water-resistance-converter/i18n/zh.ts +3 -3
  156. package/src/tool/wrist-presence-calculator/i18n/fr.ts +1 -1
  157. package/src/tool/wrist-presence-calculator/i18n/pl.ts +1 -1
  158. package/src/tool/wrist-presence-calculator/i18n/pt.ts +1 -1
  159. package/src/tool/wrist-presence-calculator/i18n/ru.ts +5 -5
  160. package/src/tool/wrist-presence-calculator/i18n/sv.ts +1 -1
  161. package/src/tools.ts +6 -0
@@ -0,0 +1,174 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { LumeColorSimulatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<LumeColorSimulatorUI> = {
6
+ slug: 'lume-color-simulator',
7
+ title: '루미 컬러 시뮬레이터 – 시계 발광색 시각화 도구',
8
+ description: '다양한 루미 컬러를 실시간으로 확인하세요. C1, C3, BGW9, 루미노바 등 여러 종류를 주변 밝기 레벨별로 비교해볼 수 있습니다.',
9
+ ui: {
10
+ title: '루미 컬러 시뮬레이터',
11
+ lumeType: '루미 종류',
12
+ brightness: '주변 밝기',
13
+ dark: '어두움',
14
+ light: '밝음',
15
+ color: '색상',
16
+ hex: 'HEX',
17
+ rgb: 'RGB',
18
+ type: '종류',
19
+ description: '설명',
20
+ c1Name: 'C1',
21
+ c1Desc: '그린(클래식)',
22
+ c3Name: 'C3',
23
+ c3Desc: '슈퍼 그린',
24
+ bgw9Name: 'BGW9',
25
+ bgw9Desc: '아이스 블루',
26
+ lumiNovaName: '루미노바',
27
+ lumiNovaDesc: '웜 화이트',
28
+ vintageName: '빈티지',
29
+ vintageDesc: '에이징 라듐',
30
+ orangeName: '오렌지',
31
+ orangeDesc: '다이버 오렌지',
32
+ blueName: '블루',
33
+ blueDesc: '딥 블루',
34
+ greenName: '그린',
35
+ greenDesc: '네온 그린',
36
+ tipTitle: '팁',
37
+ tipContent: '루미의 밝기는 안료 품질과 흡수한 빛의 양에 따라 달라집니다. BGW9는 청백색으로 빛나며 가장 밝고, 빈티지 루미는 따뜻하고 은은하게 빛납니다.',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: '시계 루미 컬러 시뮬레이터 – 실시간 발광색 비교', level: 2 },
41
+ { type: 'paragraph', html: '루미는 시계 수집에서 가장 개인적인 선택 중 하나입니다. <strong>C1 슈퍼-루미노바</strong>의 클래식한 녹색 발광이 좋으신가요, 아니면 <strong>BGW9</strong>의 시원한 청백색이 더 끌리시나요? 이 시뮬레이터는 각 루미 종류가 밝은 햇빛부터 완전한 암흑까지 다양한 밝기 레벨에서 어떻게 보이는지 보여주고, 각 색상의 정확한 <strong>HEX 및 RGB 값</strong>도 함께 제공합니다.' },
42
+ { type: 'title', text: '슈퍼-루미노바 종류 비교', level: 3 },
43
+ {
44
+ type: 'table', headers: ['종류', '주간 색상', '발광 색상', '밝기', '추천 용도'], rows: [
45
+ ['C1', '연한 녹색', '녹색', '중간', '드레스 워치, 오리지널 감성'],
46
+ ['C3', '황록색', '밝은 녹색', '가장 높음', '다이버 워치, 툴 워치'],
47
+ ['BGW9', '오프 화이트', '아이스 블루', '높음', '모던 스포츠 워치, 깔끔한 룩'],
48
+ ['루미노바', '웜 베이지', '웜 화이트', '낮음~중간', '가성비 루미'],
49
+ ['빈티지', '크림 / 황갈색', '따뜻하고 은은함', '낮음', '헤리티지 스타일 시계'],
50
+ ['오렌지', '오렌지', '오렌지', '중간', '다이버 악센트, 레트로 다이버'],
51
+ ['블루', '연한 파랑', '파랑', '중간', '디자이너 다이얼, 패션 워치'],
52
+ ['그린', '밝은 녹색', '녹색', '높음', '밀리터리 스타일 시계'],
53
+ ]
54
+ },
55
+ { type: 'title', text: 'C1 vs C3 vs BGW9 – 어떤 것을 선택해야 할까?', level: 3 },
56
+ {
57
+ type: 'comparative', columns: 2, items: [
58
+ { title: 'C1 클래식 그린', icon: 'mdi:lightbulb-on', description: '최초의 슈퍼-루미노바 포뮬레이션입니다. 중간 밝기의 녹색으로 빛납니다. 어떤 시계 스타일에도 무난하게 어울리는 클래식한 선택이에요.', points: ['중간 밝기, 4~6시간 가시성', '녹색 발광, 따뜻한 톤', '가장 저렴한 포뮬레이션', '보급형 시계에 흔히 사용'], highlight: false },
59
+ { title: 'C3 슈퍼 그린', icon: 'mdi:lightning-bolt', description: '가장 밝은 녹색 루미입니다. 수중 가독성이 중요한 전문 다이버 워치에 사용되며, 최소한의 충전으로 최대 발광을 제공합니다.', points: ['최고 밝기, 8~12시간 가시성', '햇빛 아래서 황록색', '세이코, 시티즌, 오메가 선호', '저조도 가독성 최고'], highlight: true },
60
+ ]
61
+ },
62
+ {
63
+ type: 'comparative', columns: 2, items: [
64
+ { title: 'BGW9 아이스 블루', icon: 'mdi:snowflake', description: '녹색 대신 청백색으로 빛납니다. C3보다는 약간 덜 밝지만 깔끔하고 모던한 미적 감각으로 선호도가 높습니다. 럭셔리 스포츠 워치에 인기가 많아요.', points: ['높은 밝기, 6~10시간 가시성', '청백색 발광, 중성 톤', '주간에 깔끔하고 모던한 룩', '튜더, 그랜드 세이코, 오메가 사용'], highlight: true },
65
+ { title: '빈티지 라듐 스타일', icon: 'mdi:fire', description: '1960년대 라듐 루미를 재현한 따뜻한 베이지/크림 톤입니다. 미적 정통성을 위해 의도적으로 어둡게 제작되었으며, 빛이 따뜻하고 은은하며 시간이 지날수록 멋스러워집니다.', points: ['낮은 밝기, 2~4시간 가시성', '웜 크림에서 은은한 앰버', '방사능 없이 에이징 룩 구현', '헤리티지 재출시 모델에 인기'], highlight: false },
66
+ ]
67
+ },
68
+ { type: 'diagnostic', variant: 'info', title: '밝기가 전부는 아닙니다', icon: 'mdi:palette', html: '가장 밝은 루미(C3)가 항상 최선의 선택은 아닙니다. <strong>BGW9</strong>는 약간의 밝기를 희생하는 대신 많은 컬렉터가 선호하는 중성적이고 모던한 룩을 제공합니다. <strong>빈티지 루미</strong>는 성능보다 시대에 맞는 미학을 우선시합니다. 자신에게 가장 중요한 것이 <strong>최대 발광, 모던한 미학, 아니면 헤리티지 정통성</strong>인지에 따라 선택하세요.' },
69
+ { type: 'title', text: '루미의 작동 원리: 발광의 과학', level: 3 },
70
+ {
71
+ type: 'glossary', items: [
72
+ { term: '슈퍼-루미노바', definition: '스트론튬 알루미네이트 기반의 광발광 안료입니다. 자외선과 가시광선을 흡수하여 빛으로 다시 방출합니다. 비방사성이고 안전합니다. 1993년 Nemoto & Co.에서 개발했습니다.' },
73
+ { term: '충전 시간', definition: '루미 안료를 포화시키는 데 필요한 빛 노출 시간입니다. 직사광선이나 자외선 아래에서 완전 충전까지 10~30분이 걸립니다. 충전 시간이 길수록 더 오래, 더 밝게 빛납니다.' },
74
+ { term: '발광 지속 시간', definition: '충전 후 루미가 눈에 보이는 상태로 유지되는 시간입니다. 품질 좋은 슈퍼-루미노바는 6~12시간 동안 선명하게 빛납니다. 충전 후 처음 30분이 가장 밝습니다.' },
75
+ { term: '안료 등급', definition: '스트론튬 알루미네이트 결정의 품질입니다. 고급 안료(C3, BGW9)는 더 크고 균일한 결정을 사용하여 더 밝고 오래 빛납니다. 저급 안료(루미노바)는 작은 결정을 사용하며 더 어둡습니다.' },
76
+ ]
77
+ },
78
+ {
79
+ type: 'summary', title: '루미 선택 요약 가이드', items: [
80
+ '어둠 속에서 최대 가독성이 필요하다면: C3(가장 밝은 녹색) 또는 BGW9(가장 밝은 청백색)를 선택하세요.',
81
+ '모던한 럭셔리 룩을 원한다면: BGW9는 현재 하이엔드 시계 브랜드 사이에서 가장 선호됩니다.',
82
+ '빈티지/헤리티지 빌드에는: 빈티지 또는 오렌지를 선택하여 시대에 맞는 따뜻한 느낌을 살리세요.',
83
+ 'C1은 올라운더입니다: 적당한 밝기, 클래식한 녹색, 합리적인 가격.',
84
+ '주간 루미 색상과 발광 색상은 크게 다릅니다. 시뮬레이터로 둘을 비교해보세요.',
85
+ ]
86
+ },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: '어느 루미가 가장 밝나요?',
91
+ answer: 'C3 슈퍼-루미노바가 가장 밝은 녹색 포뮬레이션이고, BGW9가 가장 밝은 청백색입니다. 둘 다 C1이나 기본 루미노바보다 훨씬 밝습니다.',
92
+ },
93
+ {
94
+ question: 'BGW9 루미가 무엇인가요?',
95
+ answer: 'BGW9는 녹색 대신 청백색으로 빛나는 슈퍼-루미노바 변종입니다. C3보다 약간 덜 밝지만 깔끔하고 모던한 외관으로 많은 사람에게 선호됩니다.',
96
+ },
97
+ {
98
+ question: '빈티지 루미는 빛나나요?',
99
+ answer: '현대식 빈티지 스타일 루미(베이지/웜)는 빛나지만, 에이징 라듐을 재현하기 위해 의도적으로 어둡게 제작되었습니다. 최대 밝기보다 미적 정통성을 택한 것입니다.',
100
+ },
101
+ {
102
+ question: '루미는 얼마나 오래 가나요?',
103
+ answer: '밝은 빛 아래서 완전 충전 후, 품질 좋은 슈퍼-루미노바는 6~12시간 동안 선명하게 빛납니다. 가장 밝은 시기는 충전 후 처음 30분입니다.',
104
+ },
105
+ ],
106
+ bibliography,
107
+ howTo: [
108
+ {
109
+ name: '루미 종류 선택하기',
110
+ text: 'C1, C3, BGW9, 루미노바, 빈티지, 오렌지, 블루, 그린 중에서 선택하세요.',
111
+ },
112
+ {
113
+ name: '밝기 조절하기',
114
+ text: '주변 밝기 슬라이더를 낮(왼쪽)에서 밤(오른쪽)으로 움직여 루미가 어떻게 변하는지 확인하세요.',
115
+ },
116
+ {
117
+ name: '스펙 확인하기',
118
+ text: '정보 카드에 현재 색상의 정확한 HEX 및 RGB 값이 표시됩니다.',
119
+ },
120
+ ],
121
+ schemas: [
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Which lume is brightest?',
129
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'C3 Super-LumiNova is the brightest green. BGW9 is the brightest blue-white.' },
130
+ },
131
+ {
132
+ '@type': 'Question',
133
+ 'name': 'What is BGW9 lume?',
134
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'BGW9 is a Super-LumiNova variant that glows blue-white instead of green.' },
135
+ },
136
+ {
137
+ '@type': 'Question',
138
+ 'name': 'Does vintage lume glow?',
139
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'Modern vintage-style lume glows but is intentionally dimmer to mimic aged radium.' },
140
+ },
141
+ ],
142
+ },
143
+ {
144
+ '@context': 'https://schema.org',
145
+ '@type': 'SoftwareApplication',
146
+ 'name': 'Lume Color Simulator',
147
+ 'operatingSystem': 'All',
148
+ 'applicationCategory': 'UtilitiesApplication',
149
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
150
+ },
151
+ {
152
+ '@context': 'https://schema.org',
153
+ '@type': 'HowTo',
154
+ 'name': 'How to simulate lume colors',
155
+ 'step': [
156
+ {
157
+ '@type': 'HowToStep',
158
+ 'name': 'Select a lume type',
159
+ 'text': 'Choose from C1, C3, BGW9, LumiNova, or other presets.',
160
+ },
161
+ {
162
+ '@type': 'HowToStep',
163
+ 'name': 'Adjust brightness',
164
+ 'text': 'Slide brightness from day to night to see the lume behavior.',
165
+ },
166
+ {
167
+ '@type': 'HowToStep',
168
+ 'name': 'Read the specs',
169
+ 'text': 'The info card shows HEX and RGB values of the current color.',
170
+ },
171
+ ],
172
+ },
173
+ ],
174
+ };
@@ -0,0 +1,175 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { LumeColorSimulatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<LumeColorSimulatorUI> = {
6
+ slug: 'lume-kleuren-simulator',
7
+ title: 'Lume Color Simulator–horloge lume visualisator',
8
+ description: 'Visualiseer verschillende lume-kleuren in realtime. Vergelijk C1, C3, BGW9, LumiNova en meer bij verschillende omgevingshelderheden.',
9
+ ui: {
10
+ title: 'Lume Color Simulator',
11
+ lumeType: 'Lume-type',
12
+ brightness: 'Omgevingshelderheid',
13
+ dark: 'Donker',
14
+ light: 'Licht',
15
+ color: 'Kleur',
16
+ hex: 'HEX',
17
+ rgb: 'RGB',
18
+ type: 'Type',
19
+ description: 'Beschrijving',
20
+ c1Name: 'C1',
21
+ c1Desc: 'Groen (klassiek)',
22
+ c3Name: 'C3',
23
+ c3Desc: 'Supergroen',
24
+ bgw9Name: 'BGW9',
25
+ bgw9Desc: 'IJsblauw',
26
+ lumiNovaName: 'LumiNova',
27
+ lumiNovaDesc: 'Warm wit',
28
+ vintageName: 'Vintage',
29
+ vintageDesc: 'Verouderd radium',
30
+ orangeName: 'Oranje',
31
+ orangeDesc: 'Duikeroranje',
32
+ blueName: 'Blauw',
33
+ blueDesc: 'Diepblauw',
34
+ greenName: 'Groen',
35
+ greenDesc: 'Neongroen',
36
+ tipTitle: 'Tip',
37
+ tipContent: 'De helderheid van lume hangt af van de pigmentkwaliteit en hoeveel licht het heeft geabsorbeerd. BGW9 gloeit blauwwit en is het helderst, terwijl vintage lume een warme, zwakke gloed heeft.',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Watch Lume Color Simulator-real-time gloed visualisator', level: 2 },
41
+ { type: 'paragraph', html: 'Lume is een van de meest persoonlijke keuzes bij het verzamelen van horloges. Geeft u de voorkeur aan de klassieke groene gloed van <strong>C1 Super-LumiNova</strong> of het ijzige blauw van <strong>BGW9</strong>? Deze simulator laat u zien hoe elk lumetype eruitziet bij verschillende helderheidsniveaus, van vol daglicht tot pikdonker, met exacte <strong>HEX- en RGB-waarden</strong> voor elke tint.' },
42
+ { type: 'title', text: 'Super-LumiNova types vergeleken', level: 3 },
43
+ {
44
+ type: 'table', headers: ['Type', 'Dagkleur', 'Gloeikleur', 'Helderheid', 'Geschikt voor'], rows: [
45
+ ['C1', 'Lichtgroen', 'Groen', 'Medium', 'Dress watches, originele uitstraling'],
46
+ ['C3', 'Geelgroen', 'Heldergroen', 'Hoogste', 'Duikhorloges, gereedschapshorloges'],
47
+ ['BGW9', 'Witachtig', 'IJsblauw', 'Hoog', 'Moderne sporthorloges, strakke look'],
48
+ ['LumiNova', 'Warm beige', 'Warm wit', 'Laag-medium', 'Budgetvriendelijke lume'],
49
+ ['Vintage', 'Creme / bruin', 'Warm gedimd', 'Laag', 'Heritage-stijl horloges'],
50
+ ['Oranje', 'Oranje', 'Oranje', 'Medium', 'Duikeraccenten, retro duikers'],
51
+ ['Blauw', 'Lichtblauw', 'Blauw', 'Medium', 'Designer wijzerplaten, modehorloges'],
52
+ ['Groen', 'Heldergroen', 'Groen', 'Hoog', 'Militaire-stijl horloges'],
53
+ ]
54
+ },
55
+ { type: 'title', text: 'C1 vs C3 vs BGW9—welke moet u kiezen?', level: 3 },
56
+ {
57
+ type: 'comparative', columns: 2, items: [
58
+ { title: 'C1 Klassiek Groen', icon: 'mdi:lightbulb-on', description: 'De originele Super-LumiNova-formulering. Gloeit groen met gemiddelde helderheid. Een veilige, klassieke keuze die bij elke horlogestijl past.', points: ['Medium helderheid, 4–6u zichtbaar', 'Groene gloed, warme tint', 'Meest betaalbare formulering', 'Gebruikelijk in instapmodellen'], highlight: false },
59
+ { title: 'C3 Supergroen', icon: 'mdi:lightning-bolt', description: 'De helderste groene lume beschikbaar. Gebruikt in professionele duikhorloges waar leesbaarheid onder water cruciaal is. Maximale gloed met minimale lading.', points: ['Hoogste helderheid, 8–12u zichtbaar', 'Geelgroen bij daglicht', 'Verkoren door Seiko, Citizen, Omega', 'Beste voor leesbaarheid bij weinig licht'], highlight: true },
60
+ ]
61
+ },
62
+ {
63
+ type: 'comparative', columns: 2, items: [
64
+ { title: 'BGW9 IJsblauw', icon: 'mdi:snowflake', description: 'Gloeit blauwwit in plaats van groen. Iets minder helder dan C3 maar favoriet vanwege de strakke, moderne uitstraling. Populair in luxe sporthorloges.', points: ['Hoge helderheid, 6–10u zichtbaar', 'Blauwwitte gloed, neutrale tint', 'Strakke, moderne look bij daglicht', 'Gebruikt door Tudor, Grand Seiko, Omega'], highlight: true },
65
+ { title: 'Vintage radiumstijl', icon: 'mdi:fire', description: 'Warme beige/creme tint die de radium lume uit de jaren \'60 nabootst. Opzettelijk gedimd voor esthetische authenticiteit. De gloed is warm, subtiel en veroudert prachtig.', points: ['Lage helderheid, 2–4u zichtbaar', 'Warm creme tot gedimd amber', 'Verouderd uiterlijk zonder radioactiviteit', 'Populair in heritage heruitgaven'], highlight: false },
66
+ ]
67
+ },
68
+ { type: 'diagnostic', variant: 'info', title: 'Helderheid is niet alles', icon: 'mdi:palette', html: 'De helderste lume (C3) is niet altijd de beste keuze. <strong>BGW9</strong> ruilt een klein verschil in helderheid in voor een neutralere, modernere look waar veel verzamelaars de voorkeur aan geven. <strong>Vintage lume</strong> geeft prioriteit aan periodegetrouwe esthetiek boven prestaties. Kies op basis van wat voor u het belangrijkst is: <strong>maximale gloed, moderne esthetiek of heritage authenticiteit.</strong>' },
69
+ { type: 'title', text: 'Hoe lume werkt: de wetenschap achter de gloed', level: 3 },
70
+ {
71
+ type: 'glossary', items: [
72
+ { term: 'Super-LumiNova', definition: 'Een fotoluminescent pigment op basis van strontiumaluminaat. Het absorbeert UV- en zichtbaar licht en zendt het opnieuw uit als gloed. Niet-radioactief en veilig. Oorspronkelijk ontwikkeld door Nemoto & Co. in 1993.' },
73
+ { term: 'Laadtijd', definition: 'De duur van blootstelling aan licht die nodig is om het lumepigment te verzadigen. Een volledige lading duurt 10–30 minuten onder direct zonlicht of UV. Langere lading = langere en helderdere gloed.' },
74
+ { term: 'Gloeiduur', definition: 'Hoe lang de lume zichtbaar blijft na het laden. Kwalitatieve Super-LumiNova gloeit zichtbaar gedurende 6–12 uur. De helderste periode is de eerste 30 minuten na het laden.' },
75
+ { term: 'Pigmentkwaliteit', definition: 'De kwaliteit van de strontiumaluminaatkristallen. Hogere kwaliteit pigmenten (C3, BGW9) gebruiken grotere, meer uniforme kristallen voor een helderdere en langere gloed. Lagere kwaliteiten (LumiNova) gebruiken kleinere kristallen en zijn zwakker.' },
76
+ ]
77
+ },
78
+ {
79
+ type: 'summary', title: 'Snelle gids voor lumekeuze', items: [
80
+ 'Voor maximale leesbaarheid in het donker: kies C3 (helderste groen) of BGW9 (helderste blauwwit).',
81
+ 'Voor een moderne luxe look: BGW9 is momenteel favoriet bij high-end horlogemerken.',
82
+ 'Voor vintage/heritage builds: gebruik Vintage of Oranje voor periodegetrouwe warmte.',
83
+ 'C1 is de alleskunner: goede helderheid, klassiek groen, betaalbaar.',
84
+ 'De lumekleur bij daglicht verschilt aanzienlijk van de gloeikleur—gebruik de simulator om beide te vergelijken.',
85
+ ]
86
+ },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: 'Welke lume is het helderst?',
91
+ answer: 'C3 Super-LumiNova is de helderste groene formulering. BGW9 is de helderste blauwwitte. Beide zijn aanzienlijk helderder dan C1 of standaard LumiNova.',
92
+ },
93
+ {
94
+ question: 'Wat is BGW9 lume?',
95
+ answer: 'BGW9 is een Super-LumiNova variant die blauwwit gloeit in plaats van groen. Het is iets minder helder dan C3 maar wordt door velen verkozen vanwege het strakke, moderne uiterlijk.',
96
+ },
97
+ {
98
+ question: 'Gloeit vintage lume?',
99
+ answer: 'Moderne vintage-stijl lume (beige/warm) gloeit maar is opzettelijk gedimd om verouderd radium na te bootsen. De afweging is esthetische authenticiteit boven maximale helderheid.',
100
+ },
101
+ {
102
+ question: 'Hoe lang blijft lume zichtbaar?',
103
+ answer: 'Na een volledige lading onder helder licht, gloeit kwalitatieve Super-LumiNova zichtbaar gedurende 6–12 uur. De helderste periode is de eerste 30 minuten.',
104
+ },
105
+ ],
106
+ bibliography,
107
+ howTo: [
108
+ {
109
+ name: 'Selecteer een lumetype',
110
+ text: 'Kies uit C1, C3, BGW9, LumiNova, Vintage, Oranje, Blauw of Groen voorinstellingen.',
111
+ },
112
+ {
113
+ name: 'Pas helderheid aan',
114
+ text: 'Schuif de omgevingshelderheidsregelaar van dag (links) naar nacht (rechts) om te zien hoe de lume zich gedraagt.',
115
+ },
116
+ {
117
+ name: 'Lees de specificaties',
118
+ text: 'De infokaart toont de exacte HEX- en RGB-waarden van de huidige kleur.',
119
+ },
120
+ ],
121
+ schemas: [
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Welke lume is het helderst?',
129
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'C3 Super-LumiNova is het helderste groen. BGW9 is het helderste blauwwit.' },
130
+ },
131
+ {
132
+ '@type': 'Question',
133
+ 'name': 'Wat is BGW9 lume?',
134
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'BGW9 is een Super-LumiNova variant die blauwwit gloeit in plaats van groen.' },
135
+ },
136
+ {
137
+ '@type': 'Question',
138
+ 'name': 'Gloeit vintage lume?',
139
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'Moderne vintage-stijl lume gloeit maar is opzettelijk gedimd om verouderd radium na te bootsen.' },
140
+ },
141
+ ],
142
+ },
143
+ {
144
+ '@context': 'https://schema.org',
145
+ '@type': 'SoftwareApplication',
146
+ 'name': 'Lume Color Simulator',
147
+ 'operatingSystem': 'All',
148
+ 'applicationCategory': 'UtilitiesApplication',
149
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
150
+ },
151
+ {
152
+ '@context': 'https://schema.org',
153
+ '@type': 'HowTo',
154
+ 'name': 'Hoe lumekleuren simuleren',
155
+ 'step': [
156
+ {
157
+ '@type': 'HowToStep',
158
+ 'name': 'Selecteer een lumetype',
159
+ 'text': 'Kies uit C1, C3, BGW9, LumiNova of andere voorinstellingen.',
160
+ },
161
+ {
162
+ '@type': 'HowToStep',
163
+ 'name': 'Pas helderheid aan',
164
+ 'text': 'Schuif helderheid van dag naar nacht om het lume-gedrag te zien.',
165
+ },
166
+ {
167
+ '@type': 'HowToStep',
168
+ 'name': 'Lees de specificaties',
169
+ 'text': 'De infokaart toont HEX- en RGB-waarden van de huidige kleur.',
170
+ },
171
+ ],
172
+ },
173
+ ],
174
+ };
175
+
@@ -0,0 +1,174 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { LumeColorSimulatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<LumeColorSimulatorUI> = {
6
+ slug: 'symulator-kolorow-lumy',
7
+ title: 'Symulator kolorów lumy – wizualizacja świecenia zegarka',
8
+ description: 'Wizualizuj różne kolory lumy w czasie rzeczywistym. Porównaj C1, C3, BGW9, LumiNova i inne przy różnych poziomach oświetlenia otoczenia.',
9
+ ui: {
10
+ title: 'Symulator kolorów lumy',
11
+ lumeType: 'Rodzaj lumy',
12
+ brightness: 'Jasność otoczenia',
13
+ dark: 'Ciemno',
14
+ light: 'Jasno',
15
+ color: 'Kolor',
16
+ hex: 'HEX',
17
+ rgb: 'RGB',
18
+ type: 'Typ',
19
+ description: 'Opis',
20
+ c1Name: 'C1',
21
+ c1Desc: 'Zielony (klasyczny)',
22
+ c3Name: 'C3',
23
+ c3Desc: 'Super zielony',
24
+ bgw9Name: 'BGW9',
25
+ bgw9Desc: 'Lodowy błękit',
26
+ lumiNovaName: 'LumiNova',
27
+ lumiNovaDesc: 'Ciepła biel',
28
+ vintageName: 'Vintage',
29
+ vintageDesc: 'Postarzany rad',
30
+ orangeName: 'Pomarańczowy',
31
+ orangeDesc: 'Nurek pomarańcz',
32
+ blueName: 'Niebieski',
33
+ blueDesc: 'Głęboki błękit',
34
+ greenName: 'Zielony',
35
+ greenDesc: 'Neonowa zieleń',
36
+ tipTitle: 'Wskazówka',
37
+ tipContent: 'Jasność lumy zależy od jakości pigmentu i ilości pochłoniętego światła. BGW9 świeci na niebiesko-biało i jest najjaśniejsza, podczas gdy vintage ma ciepłą, stonowaną poświatę.',
38
+ },
39
+ seo: [
40
+ { type: 'title', text: 'Symulator kolorów lumy zegarka – wizualizacja świecenia w czasie rzeczywistym', level: 2 },
41
+ { type: 'paragraph', html: 'Luma to jeden z najbardziej osobistych wyborów w kolekcjonowaniu zegarków. Wolisz klasyczną zieloną poświatę <strong>C1 Super-LumiNova</strong> czy lodowy błękit <strong>BGW9</strong>? Ten symulator pokazuje, jak każdy rodzaj lumy wygląda przy różnych poziomach oświetlenia – od pełnego słońca po całkowitą ciemność – z dokładnymi wartościami <strong>HEX i RGB</strong> dla każdego odcienia.' },
42
+ { type: 'title', text: 'Porównanie typów Super-LumiNova', level: 3 },
43
+ {
44
+ type: 'table', headers: ['Typ', 'Kolor w świetle dziennym', 'Kolor świecenia', 'Jasność', 'Najlepszy do'], rows: [
45
+ ['C1', 'Jasnozielony', 'Zielony', 'Średnia', 'Zegarków garniturowych, oryginalna estetyka'],
46
+ ['C3', 'Żółto-zielony', 'Jaskrawy zielony', 'Najwyższa', 'Zegarków nurkowych, narzędziowych'],
47
+ ['BGW9', 'Łamana biel', 'Lodowy błękit', 'Wysoka', 'Nowoczesnych sportowych, czysty wygląd'],
48
+ ['LumiNova', 'Ciepły beż', 'Ciepła biel', 'Niska–średnia', 'Lumy w przystępnej cenie'],
49
+ ['Vintage', 'Krem / płowy', 'Ciepła, przyciemniona', 'Niska', 'Zegarków w stylu heritage'],
50
+ ['Pomarańczowy', 'Pomarańczowy', 'Pomarańczowy', 'Średnia', 'Akcentów nurkowych, retro diverów'],
51
+ ['Niebieski', 'Jasnoniebieski', 'Niebieski', 'Średnia', 'Designerskich tarcz, zegarków modowych'],
52
+ ['Zielony', 'Jaskrawy zielony', 'Zielony', 'Wysoka', 'Zegarków w stylu militarnym'],
53
+ ]
54
+ },
55
+ { type: 'title', text: 'C1 vs C3 vs BGW9 – który wybrać?', level: 3 },
56
+ {
57
+ type: 'comparative', columns: 2, items: [
58
+ { title: 'C1 Klasyczna zieleń', icon: 'mdi:lightbulb-on', description: 'Oryginalna formuła Super-LumiNova. Świeci na zielono ze średnią jasnością. Bezpieczny, klasyczny wybór pasujący do każdego stylu zegarka.', points: ['Średnia jasność, widoczna 4–6 h', 'Zielona poświata, ciepły odcień', 'Najtańsza formuła', 'Popularna w zegarkach podstawowych'], highlight: false },
59
+ { title: 'C3 Super zielony', icon: 'mdi:lightning-bolt', description: 'Najjaśniejsza zielona luma dostępna na rynku. Stosowana w profesjonalnych zegarkach nurkowych, gdzie czytelność pod wodą jest kluczowa. Maksymalna poświata przy minimalnym naświetleniu.', points: ['Najwyższa jasność, widoczna 8–12 h', 'Żółto-zielona w świetle dziennym', 'Preferowana przez Seiko, Citizen, Omega', 'Najlepsza do odczytu przy słabym świetle'], highlight: true },
60
+ ]
61
+ },
62
+ {
63
+ type: 'comparative', columns: 2, items: [
64
+ { title: 'BGW9 Lodowy błękit', icon: 'mdi:snowflake', description: 'Świeci na niebiesko-biało zamiast na zielono. Nieco mniej jasna niż C3, ale preferowana za czysty, nowoczesny wygląd. Popularna w luksusowych zegarkach sportowych.', points: ['Wysoka jasność, widoczna 6–10 h', 'Niebiesko-biała poświata, neutralny odcień', 'Czysty, nowoczesny wygląd w świetle dziennym', 'Używana przez Tudor, Grand Seiko, Omega'], highlight: true },
65
+ { title: 'Vintage w stylu radowym', icon: 'mdi:fire', description: 'Ciepły beżowo-kremowy odcień imitujący lumę radową z lat 60. Celowo przyciemniona dla autentyczności estetycznej. Poświata jest ciepła, subtelna i pięknie się starzeje.', points: ['Niska jasność, widoczna 2–4 h', 'Ciepły krem do przyciemnionego bursztynu', 'Postarzany wygląd bez radioaktywności', 'Popularna w reedycjach heritage'], highlight: false },
66
+ ]
67
+ },
68
+ { type: 'diagnostic', variant: 'info', title: 'Jasność to nie wszystko', icon: 'mdi:palette', html: 'Najjaśniejsza luma (C3) nie zawsze jest najlepszym wyborem. <strong>BGW9</strong> rezygnuje z odrobiny jasności na rzecz bardziej neutralnego, nowoczesnego wyglądu, który wielu kolekcjonerów ceni wyżej. <strong>Vintage</strong> stawia autentyczność stylistyczną nad wydajność. Wybierz to, co dla Ciebie najważniejsze: <strong>maksymalną poświatę, nowoczesną estetykę czy autentyczność stylu heritage.</strong>' },
69
+ { type: 'title', text: 'Jak działa luma? Nauka stojąca za świeceniem', level: 3 },
70
+ {
71
+ type: 'glossary', items: [
72
+ { term: 'Super-LumiNova', definition: 'Fotoluminescencyjny pigment na bazie glinostroncjanu. Pochłania światło UV i widzialne, a następnie emituje je jako poświatę. Nieradioaktywny i bezpieczny. Opracowany przez Nemoto & Co. w 1993 roku.' },
73
+ { term: 'Czas ładowania', definition: 'Czas ekspozycji na światło potrzebny do nasycenia pigmentu lumy. Pełne naładowanie trwa 10–30 minut w bezpośrednim świetle słonecznym lub UV. Dłuższe ładowanie = dłuższa i jaśniejsza poświata.' },
74
+ { term: 'Czas świecenia', definition: 'Jak długo luma pozostaje widoczna po naładowaniu. Wysokiej jakości Super-LumiNova świeci widocznie przez 6–12 godzin. Najjaśniejszy okres to pierwsze 30 minut po naładowaniu.' },
75
+ { term: 'Klasa pigmentu', definition: 'Jakość kryształów glinostroncjanu. Pigmenty wyższej klasy (C3, BGW9) używają większych, bardziej jednolitych kryształów, co daje jaśniejszą i dłuższą poświatę. Niższe klasy (LumiNova) używają mniejszych kryształów i są ciemniejsze.' },
76
+ ]
77
+ },
78
+ {
79
+ type: 'summary', title: 'Szybki przewodnik wyboru lumy', items: [
80
+ 'Maksymalna czytelność w ciemności: wybierz C3 (najjaśniejsza zieleń) lub BGW9 (najjaśniejszy błękit).',
81
+ 'Nowoczesny, luksusowy wygląd: BGW9 to obecny faworyt wśród elitarnych marek.',
82
+ 'Styl vintage/heritage: użyj Vintage lub Pomarańczowego dla ciepłego, retro wyglądu.',
83
+ 'C1 to uniwersalista: dobra jasność, klasyczna zieleń, przystępna cena.',
84
+ 'Kolor lumy w świetle dziennym znacząco różni się od koloru świecenia – porównaj oba w symulatorze.',
85
+ ]
86
+ },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: 'Która luma jest najjaśniejsza?',
91
+ answer: 'C3 Super-LumiNova to najjaśniejsza zielona formuła. BGW9 to najjaśniejsza niebiesko-biała. Obie są znacznie jaśniejsze od C1 czy standardowej LumiNova.',
92
+ },
93
+ {
94
+ question: 'Czym jest luma BGW9?',
95
+ answer: 'BGW9 to wariant Super-LumiNova, który świeci na niebiesko-biało zamiast na zielono. Jest nieco mniej jasna niż C3, ale preferowana przez wielu za czysty, nowoczesny wygląd.',
96
+ },
97
+ {
98
+ question: 'Czy luma vintage świeci?',
99
+ answer: 'Nowoczesna luma w stylu vintage (beżowa/ciepła) świeci, ale jest celowo przyciemniona, aby imitować postarzany rad. To kompromis między autentycznością estetyczną a maksymalną jasnością.',
100
+ },
101
+ {
102
+ question: 'Jak długo świeci luma?',
103
+ answer: 'Po pełnym naładowaniu w jasnym świetle, wysokiej jakości Super-LumiNova świeci widocznie przez 6–12 godzin. Najjaśniejszy okres to pierwsze 30 minut.',
104
+ },
105
+ ],
106
+ bibliography,
107
+ howTo: [
108
+ {
109
+ name: 'Wybierz rodzaj lumy',
110
+ text: 'Wybierz spośród presetów C1, C3, BGW9, LumiNova, Vintage, Pomarańczowy, Niebieski lub Zielony.',
111
+ },
112
+ {
113
+ name: 'Dostosuj jasność otoczenia',
114
+ text: 'Przesuń suwak jasności otoczenia od dnia (lewo) do nocy (prawo), aby zobaczyć, jak zachowuje się luma.',
115
+ },
116
+ {
117
+ name: 'Sprawdź parametry',
118
+ text: 'Karta informacyjna pokazuje dokładne wartości HEX i RGB aktualnego koloru.',
119
+ },
120
+ ],
121
+ schemas: [
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Która luma jest najjaśniejsza?',
129
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'C3 Super-LumiNova to najjaśniejsza zieleń. BGW9 to najjaśniejszy błękit.' },
130
+ },
131
+ {
132
+ '@type': 'Question',
133
+ 'name': 'Czym jest luma BGW9?',
134
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'BGW9 to wariant Super-LumiNova świecący na niebiesko-biało zamiast na zielono.' },
135
+ },
136
+ {
137
+ '@type': 'Question',
138
+ 'name': 'Czy luma vintage świeci?',
139
+ 'acceptedAnswer': { '@type': 'Answer', 'text': 'Nowoczesna luma vintage świeci, ale jest celowo przyciemniona, by imitować postarzany rad.' },
140
+ },
141
+ ],
142
+ },
143
+ {
144
+ '@context': 'https://schema.org',
145
+ '@type': 'SoftwareApplication',
146
+ 'name': 'Symulator kolorów lumy',
147
+ 'operatingSystem': 'All',
148
+ 'applicationCategory': 'UtilitiesApplication',
149
+ 'browserRequirements': 'Wymaga HTML5. Wymaga JavaScript.',
150
+ },
151
+ {
152
+ '@context': 'https://schema.org',
153
+ '@type': 'HowTo',
154
+ 'name': 'Jak symulować kolory lumy',
155
+ 'step': [
156
+ {
157
+ '@type': 'HowToStep',
158
+ 'name': 'Wybierz rodzaj lumy',
159
+ 'text': 'Wybierz spośród C1, C3, BGW9, LumiNova lub innych presetów.',
160
+ },
161
+ {
162
+ '@type': 'HowToStep',
163
+ 'name': 'Dostosuj jasność otoczenia',
164
+ 'text': 'Przesuń suwak jasności od dnia do nocy, aby zobaczyć zachowanie lumy.',
165
+ },
166
+ {
167
+ '@type': 'HowToStep',
168
+ 'name': 'Sprawdź parametry',
169
+ 'text': 'Karta informacyjna pokazuje wartości HEX i RGB aktualnego koloru.',
170
+ },
171
+ ],
172
+ },
173
+ ],
174
+ };