@jjlmoya/utils-textiles 1.21.0 → 1.23.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 (213) hide show
  1. package/package.json +2 -2
  2. package/src/category/i18n/de.ts +76 -76
  3. package/src/category/i18n/en.ts +76 -76
  4. package/src/category/i18n/es.ts +76 -76
  5. package/src/category/i18n/fr.ts +76 -76
  6. package/src/category/i18n/id.ts +76 -76
  7. package/src/category/i18n/it.ts +76 -76
  8. package/src/category/i18n/ja.ts +76 -76
  9. package/src/category/i18n/ko.ts +76 -76
  10. package/src/category/i18n/nl.ts +76 -76
  11. package/src/category/i18n/pl.ts +76 -76
  12. package/src/category/i18n/pt.ts +76 -76
  13. package/src/category/i18n/ru.ts +76 -76
  14. package/src/category/i18n/sv.ts +76 -76
  15. package/src/category/i18n/zh.ts +76 -76
  16. package/src/category/index.ts +2 -0
  17. package/src/category/seo.astro +1 -1
  18. package/src/components/PreviewNavSidebar.astro +1 -1
  19. package/src/components/PreviewToolbar.astro +1 -1
  20. package/src/data.ts +1 -1
  21. package/src/entries.ts +4 -1
  22. package/src/env.d.ts +1 -1
  23. package/src/index.ts +1 -1
  24. package/src/layouts/PreviewLayout.astro +113 -113
  25. package/src/pages/index.astro +1 -1
  26. package/src/tests/bibliography_wellformed_export.test.ts +46 -0
  27. package/src/tests/category_seo_quality.test.ts +74 -0
  28. package/src/tests/faq_count.test.ts +19 -19
  29. package/src/tests/i18n_coverage.test.ts +4 -2
  30. package/src/tests/locale_spelling.test.ts +44 -0
  31. package/src/tests/mocks/astro_mock.js +1 -1
  32. package/src/tests/no_en_dash.test.ts +70 -70
  33. package/src/tests/no_h1_in_components.test.ts +1 -1
  34. package/src/tests/seo_length.test.ts +22 -22
  35. package/src/tests/seo_parity.test.ts +2 -2
  36. package/src/tests/seo_translation_completeness.test.ts +69 -0
  37. package/src/tests/seo_wellformed_export.test.ts +65 -0
  38. package/src/tests/spanish_leakage.test.ts +175 -175
  39. package/src/tests/tool_validation.test.ts +17 -17
  40. package/src/tool/burnTest/i18n/es.ts +211 -211
  41. package/src/tool/burnTest/i18n/fr.ts +211 -211
  42. package/src/tool/burnTest/i18n/ja.ts +211 -211
  43. package/src/tool/burnTest/i18n/ko.ts +211 -211
  44. package/src/tool/burnTest/i18n/pl.ts +211 -211
  45. package/src/tool/burnTest/i18n/ru.ts +211 -211
  46. package/src/tool/burnTest/i18n/sv.ts +211 -211
  47. package/src/tool/burnTest/i18n/zh.ts +211 -211
  48. package/src/tool/burnTest/seo.astro +15 -15
  49. package/src/tool/clothingSizeConverter/i18n/de.ts +348 -348
  50. package/src/tool/clothingSizeConverter/i18n/en.ts +348 -348
  51. package/src/tool/clothingSizeConverter/i18n/fr.ts +348 -348
  52. package/src/tool/clothingSizeConverter/i18n/ja.ts +348 -348
  53. package/src/tool/clothingSizeConverter/i18n/ko.ts +348 -348
  54. package/src/tool/clothingSizeConverter/i18n/nl.ts +348 -348
  55. package/src/tool/clothingSizeConverter/i18n/pl.ts +348 -348
  56. package/src/tool/clothingSizeConverter/i18n/ru.ts +348 -348
  57. package/src/tool/clothingSizeConverter/i18n/sv.ts +348 -348
  58. package/src/tool/clothingSizeConverter/i18n/tr.ts +348 -348
  59. package/src/tool/clothingSizeConverter/i18n/zh.ts +348 -348
  60. package/src/tool/clothingSizeConverter/seo.astro +15 -15
  61. package/src/tool/embroideryStitchPricingEstimator/bibliography.astro +6 -0
  62. package/src/tool/embroideryStitchPricingEstimator/bibliography.ts +12 -0
  63. package/src/tool/embroideryStitchPricingEstimator/component.astro +111 -0
  64. package/src/tool/embroideryStitchPricingEstimator/controller.ts +111 -0
  65. package/src/tool/embroideryStitchPricingEstimator/dom-views.ts +94 -0
  66. package/src/tool/embroideryStitchPricingEstimator/embroidery-stitch-count-pricing-estimator.css +438 -0
  67. package/src/tool/embroideryStitchPricingEstimator/entry.ts +29 -0
  68. package/src/tool/embroideryStitchPricingEstimator/evaluator.ts +22 -0
  69. package/src/tool/embroideryStitchPricingEstimator/i18n/de.ts +38 -0
  70. package/src/tool/embroideryStitchPricingEstimator/i18n/en.ts +194 -0
  71. package/src/tool/embroideryStitchPricingEstimator/i18n/es.ts +38 -0
  72. package/src/tool/embroideryStitchPricingEstimator/i18n/fr.ts +38 -0
  73. package/src/tool/embroideryStitchPricingEstimator/i18n/id.ts +38 -0
  74. package/src/tool/embroideryStitchPricingEstimator/i18n/it.ts +38 -0
  75. package/src/tool/embroideryStitchPricingEstimator/i18n/ja.ts +38 -0
  76. package/src/tool/embroideryStitchPricingEstimator/i18n/ko.ts +38 -0
  77. package/src/tool/embroideryStitchPricingEstimator/i18n/nl.ts +38 -0
  78. package/src/tool/embroideryStitchPricingEstimator/i18n/pl.ts +38 -0
  79. package/src/tool/embroideryStitchPricingEstimator/i18n/pt.ts +38 -0
  80. package/src/tool/embroideryStitchPricingEstimator/i18n/ru.ts +38 -0
  81. package/src/tool/embroideryStitchPricingEstimator/i18n/sv.ts +38 -0
  82. package/src/tool/embroideryStitchPricingEstimator/i18n/tr.ts +38 -0
  83. package/src/tool/embroideryStitchPricingEstimator/i18n/zh.ts +38 -0
  84. package/src/tool/embroideryStitchPricingEstimator/index.ts +11 -0
  85. package/src/tool/embroideryStitchPricingEstimator/logic.test.ts +40 -0
  86. package/src/tool/embroideryStitchPricingEstimator/logic.ts +86 -0
  87. package/src/tool/embroideryStitchPricingEstimator/seo.astro +15 -0
  88. package/src/tool/embroideryStitchPricingEstimator/storage.ts +20 -0
  89. package/src/tool/embroideryStitchPricingEstimator/ui.ts +53 -0
  90. package/src/tool/fabricProjectCalculator/i18n/de.ts +236 -236
  91. package/src/tool/fabricProjectCalculator/i18n/ja.ts +236 -236
  92. package/src/tool/fabricProjectCalculator/i18n/ko.ts +236 -236
  93. package/src/tool/fabricProjectCalculator/i18n/nl.ts +236 -236
  94. package/src/tool/fabricProjectCalculator/i18n/pl.ts +236 -236
  95. package/src/tool/fabricProjectCalculator/i18n/ru.ts +236 -236
  96. package/src/tool/fabricProjectCalculator/i18n/sv.ts +236 -236
  97. package/src/tool/fabricProjectCalculator/i18n/tr.ts +236 -236
  98. package/src/tool/fabricProjectCalculator/i18n/zh.ts +236 -236
  99. package/src/tool/fabricProjectCalculator/seo.astro +15 -15
  100. package/src/tool/fabricTruth/i18n/de.ts +268 -268
  101. package/src/tool/fabricTruth/i18n/en.ts +268 -268
  102. package/src/tool/fabricTruth/i18n/es.ts +302 -302
  103. package/src/tool/fabricTruth/i18n/fr.ts +268 -268
  104. package/src/tool/fabricTruth/i18n/id.ts +268 -268
  105. package/src/tool/fabricTruth/i18n/it.ts +268 -268
  106. package/src/tool/fabricTruth/i18n/ja.ts +268 -268
  107. package/src/tool/fabricTruth/i18n/ko.ts +268 -268
  108. package/src/tool/fabricTruth/i18n/nl.ts +268 -268
  109. package/src/tool/fabricTruth/i18n/pl.ts +268 -268
  110. package/src/tool/fabricTruth/i18n/pt.ts +268 -268
  111. package/src/tool/fabricTruth/i18n/ru.ts +268 -268
  112. package/src/tool/fabricTruth/i18n/sv.ts +268 -268
  113. package/src/tool/fabricTruth/i18n/tr.ts +268 -268
  114. package/src/tool/fabricTruth/i18n/zh.ts +272 -272
  115. package/src/tool/fabricTruth/seo.astro +15 -15
  116. package/src/tool/fiberPrep/i18n/de.ts +215 -215
  117. package/src/tool/fiberPrep/i18n/fr.ts +215 -215
  118. package/src/tool/fiberPrep/i18n/ja.ts +215 -215
  119. package/src/tool/fiberPrep/i18n/ko.ts +215 -215
  120. package/src/tool/fiberPrep/i18n/nl.ts +215 -215
  121. package/src/tool/fiberPrep/i18n/pl.ts +215 -215
  122. package/src/tool/fiberPrep/i18n/ru.ts +215 -215
  123. package/src/tool/fiberPrep/i18n/sv.ts +215 -215
  124. package/src/tool/fiberPrep/i18n/tr.ts +215 -215
  125. package/src/tool/fiberPrep/i18n/zh.ts +215 -215
  126. package/src/tool/fiberPrep/seo.astro +15 -15
  127. package/src/tool/knittingGauge/i18n/de.ts +224 -224
  128. package/src/tool/knittingGauge/i18n/ja.ts +224 -224
  129. package/src/tool/knittingGauge/i18n/ko.ts +224 -224
  130. package/src/tool/knittingGauge/i18n/pl.ts +224 -224
  131. package/src/tool/knittingGauge/i18n/ru.ts +224 -224
  132. package/src/tool/knittingGauge/i18n/tr.ts +224 -224
  133. package/src/tool/knittingGauge/i18n/zh.ts +224 -224
  134. package/src/tool/knittingGauge/seo.astro +15 -15
  135. package/src/tool/laundryGuide/i18n/de.ts +271 -271
  136. package/src/tool/laundryGuide/i18n/en.ts +271 -271
  137. package/src/tool/laundryGuide/i18n/es.ts +271 -271
  138. package/src/tool/laundryGuide/i18n/fr.ts +255 -255
  139. package/src/tool/laundryGuide/i18n/id.ts +271 -271
  140. package/src/tool/laundryGuide/i18n/it.ts +271 -271
  141. package/src/tool/laundryGuide/i18n/ja.ts +271 -271
  142. package/src/tool/laundryGuide/i18n/ko.ts +271 -271
  143. package/src/tool/laundryGuide/i18n/nl.ts +271 -271
  144. package/src/tool/laundryGuide/i18n/pl.ts +271 -271
  145. package/src/tool/laundryGuide/i18n/pt.ts +271 -271
  146. package/src/tool/laundryGuide/i18n/ru.ts +271 -271
  147. package/src/tool/laundryGuide/i18n/sv.ts +271 -271
  148. package/src/tool/laundryGuide/i18n/tr.ts +271 -271
  149. package/src/tool/laundryGuide/i18n/zh.ts +271 -271
  150. package/src/tool/laundryGuide/seo.astro +15 -15
  151. package/src/tool/needleConverter/i18n/de.ts +202 -202
  152. package/src/tool/needleConverter/i18n/es.ts +207 -207
  153. package/src/tool/needleConverter/i18n/fr.ts +207 -207
  154. package/src/tool/needleConverter/i18n/ja.ts +202 -202
  155. package/src/tool/needleConverter/i18n/ko.ts +202 -202
  156. package/src/tool/needleConverter/i18n/nl.ts +202 -202
  157. package/src/tool/needleConverter/i18n/pl.ts +202 -202
  158. package/src/tool/needleConverter/i18n/ru.ts +202 -202
  159. package/src/tool/needleConverter/i18n/sv.ts +202 -202
  160. package/src/tool/needleConverter/i18n/tr.ts +202 -202
  161. package/src/tool/needleConverter/i18n/zh.ts +202 -202
  162. package/src/tool/needleConverter/seo.astro +15 -15
  163. package/src/tool/sewingPatternScaler/component.astro +236 -236
  164. package/src/tool/sewingPatternScaler/i18n/fr.ts +170 -170
  165. package/src/tool/sewingPatternScaler/i18n/ja.ts +114 -114
  166. package/src/tool/sewingPatternScaler/i18n/ko.ts +114 -114
  167. package/src/tool/sewingPatternScaler/i18n/nl.ts +114 -114
  168. package/src/tool/sewingPatternScaler/i18n/pl.ts +114 -114
  169. package/src/tool/sewingPatternScaler/i18n/ru.ts +114 -114
  170. package/src/tool/sewingPatternScaler/i18n/sv.ts +114 -114
  171. package/src/tool/sewingPatternScaler/i18n/tr.ts +114 -114
  172. package/src/tool/sewingPatternScaler/i18n/zh.ts +114 -114
  173. package/src/tool/sewingPatternScaler/seo.astro +15 -15
  174. package/src/tool/shoeSizeConverter/i18n/fr.ts +183 -183
  175. package/src/tool/shoeSizeConverter/i18n/ja.ts +179 -179
  176. package/src/tool/shoeSizeConverter/i18n/ko.ts +179 -179
  177. package/src/tool/shoeSizeConverter/i18n/nl.ts +179 -179
  178. package/src/tool/shoeSizeConverter/i18n/pl.ts +179 -179
  179. package/src/tool/shoeSizeConverter/i18n/ru.ts +179 -179
  180. package/src/tool/shoeSizeConverter/i18n/sv.ts +179 -179
  181. package/src/tool/shoeSizeConverter/i18n/tr.ts +179 -179
  182. package/src/tool/shoeSizeConverter/i18n/zh.ts +179 -179
  183. package/src/tool/shoeSizeConverter/seo.astro +15 -15
  184. package/src/tool/stainChemistry/bibliography.ts +16 -16
  185. package/src/tool/stainChemistry/i18n/de.ts +286 -286
  186. package/src/tool/stainChemistry/i18n/en.ts +289 -289
  187. package/src/tool/stainChemistry/i18n/es.ts +286 -286
  188. package/src/tool/stainChemistry/i18n/fr.ts +296 -296
  189. package/src/tool/stainChemistry/i18n/id.ts +286 -286
  190. package/src/tool/stainChemistry/i18n/it.ts +286 -286
  191. package/src/tool/stainChemistry/i18n/ja.ts +286 -286
  192. package/src/tool/stainChemistry/i18n/ko.ts +283 -283
  193. package/src/tool/stainChemistry/i18n/nl.ts +286 -286
  194. package/src/tool/stainChemistry/i18n/pl.ts +286 -286
  195. package/src/tool/stainChemistry/i18n/pt.ts +286 -286
  196. package/src/tool/stainChemistry/i18n/ru.ts +286 -286
  197. package/src/tool/stainChemistry/i18n/sv.ts +286 -286
  198. package/src/tool/stainChemistry/i18n/tr.ts +286 -286
  199. package/src/tool/stainChemistry/i18n/zh.ts +281 -281
  200. package/src/tool/stainChemistry/seo.astro +15 -15
  201. package/src/tool/yarnCalculator/i18n/de.ts +296 -296
  202. package/src/tool/yarnCalculator/i18n/es.ts +296 -296
  203. package/src/tool/yarnCalculator/i18n/fr.ts +296 -296
  204. package/src/tool/yarnCalculator/i18n/ja.ts +296 -296
  205. package/src/tool/yarnCalculator/i18n/ko.ts +296 -296
  206. package/src/tool/yarnCalculator/i18n/nl.ts +296 -296
  207. package/src/tool/yarnCalculator/i18n/pl.ts +296 -296
  208. package/src/tool/yarnCalculator/i18n/ru.ts +296 -296
  209. package/src/tool/yarnCalculator/i18n/sv.ts +296 -296
  210. package/src/tool/yarnCalculator/i18n/tr.ts +296 -296
  211. package/src/tool/yarnCalculator/i18n/zh.ts +295 -295
  212. package/src/tool/yarnCalculator/seo.astro +15 -15
  213. package/src/tools.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-textiles",
3
- "version": "1.21.0",
3
+ "version": "1.23.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -27,7 +27,7 @@
27
27
  "lint": "eslint src/ --max-warnings 0 && stylelint \"src/**/*.{css,astro}\"",
28
28
  "check": "astro check",
29
29
  "type-check": "astro check",
30
- "test": "vitest run",
30
+ "test": "vitest run --reporter=verbose --testTimeout=30000",
31
31
  "preversion": "npm run lint && npm run test && npm run build",
32
32
  "postversion": "git push && git push --tags",
33
33
  "patch": "npm version patch",
@@ -1,76 +1,76 @@
1
- import type { CategoryLocaleContent } from '../../types';
2
-
3
- export const content: CategoryLocaleContent = {
4
- slug: 'textilien',
5
- title: 'Textil Werkzeuge',
6
- description: 'Kostenlose Rechner und Hilfsmittel für die Textilanalyse, Kleidungspflege und das Stoffdesign. Verstehen Sie die tatsächliche Zusammensetzung Ihrer Kleidung.',
7
- seo: [
8
- {
9
- type: 'title',
10
- text: 'Textilwissenschaft: Faseranalyse und Stoffzusammensetzung',
11
- level: 2,
12
- },
13
- {
14
- type: 'paragraph',
15
- html: 'Die Welt der Textilien ist eine faszinierende Schnittstelle zwischen Chemie, Physik und Ingenieurwesen. In diesem Bereich bieten wir spezialisierte Werkzeuge an, damit Sie wirklich verstehen, was Sie tragen. Von der Zusammensetzungsanalyse bis hin zu Stoffverbrauchsberechnungen und Schnittmuster-Skalierungen sind diese Hilfsmittel für Profis, DIY-Enthusiasten und bewusste Konsumenten konzipiert, die fundierte Entscheidungen über ihre Kleidung treffen möchten.',
16
- },
17
- {
18
- type: 'title',
19
- level: 2,
20
- text: 'Textile Wahrheit: Plastik erkennen, das als Mode getarnt ist',
21
- },
22
- {
23
- type: 'paragraph',
24
- html: 'Die Modeindustrie nutzt ausgefeilte Marketingtechniken, um mittelmäßige Kleidungsstücke zu Premiumpreisen zu verkaufen. Unser Werkzeug für textile Wahrheit analysiert die tatsächliche Zusammensetzung der Kleidung - die auf dem Etikett aufgeführten Faseranteile -, um Ihnen unangenehme Wahrheiten zu offenbaren: Ist es wirklich Baumwolle oder "teures Plastik"? Enthält es echte Seide oder nur 3 % als Werbegag? Es verwendet einen Algorithmus, der auf europäischen und nordamerikanischen Industriestandards basiert und Atmungsaktivität, Haltbarkeit und thermische Effizienz bewertet.',
25
- },
26
- {
27
- type: 'title',
28
- level: 2,
29
- text: 'Textile Meisterschaft: Wissenschaftlicher Leitfaden für Waschen und Pflege',
30
- },
31
- {
32
- type: 'paragraph',
33
- html: 'Jede Faser benötigt ein spezifisches Protokoll. Baumwolle verträgt heißes Wasser; Seide wird dadurch ruiniert. Wolle benötigt kaltes Wasser; Polyester kann den Trockner vertragen. Unser Textilpflege-Rechner liefert Ihnen präzise Anweisungen basierend auf der tatsächlichen Zusammensetzung Ihres Kleidungsstücks, was dessen Lebensdauer erheblich verlängert.',
34
- },
35
- {
36
- type: 'title',
37
- level: 2,
38
- text: 'Flecken-Chemie: Protokolle nach Fasertyp',
39
- },
40
- {
41
- type: 'paragraph',
42
- html: 'Ein Weinfleck auf Leinen erfordert ein anderes Protokoll als derselbe Fleck auf Seide. Fettflecken auf Polyester benötigen Lösungsmittel; auf Wolle erfordern sie empfindlichere Methoden. Dieses Werkzeug gleicht Flecken, Fasertypen und chemische Mittel ab, um Ihnen die beste Entfernungsstrategie anzubieten, ohne den Stoff zu beschädigen.',
43
- },
44
- {
45
- type: 'title',
46
- level: 2,
47
- text: 'Brennprobe: Fasern durch Verbrennen identifizieren',
48
- },
49
- {
50
- type: 'paragraph',
51
- html: 'Historisch gesehen haben Textilexperten Brennproben verwendet, um Fasern zu identifizieren: Das Flammenverhalten, der Geruch und die Rückstände offenbaren die chemische Natur der Faser. Naturfasern (Zellulose, Protein) haben andere Eigenschaften als synthetische Fasern (aus Erdöl gewonnene Kunststoffe).',
52
- },
53
- {
54
- type: 'title',
55
- level: 2,
56
- text: 'Werkzeuge für Weber und Näher',
57
- },
58
- {
59
- type: 'paragraph',
60
- html: 'Wenn Sie ein Liebhaber des Schneiderns, Strickens oder Häkelns sind, haben wir fortschrittliche Rechner: von Nadelkonvertern über Stoffverbrauchsberechnungen, Schnittmuster-Skalierer, die Proportionen respektieren, bis hin zu Maschenproben-Hilfsmitteln (Gauge), die sicherstellen, dass Ihr Endprojekt genau die gewünschten Maße hat.',
61
- },
62
- {
63
- type: 'title',
64
- level: 2,
65
- text: 'Bewusster Konsum und nachhaltige Mode',
66
- },
67
- {
68
- type: 'paragraph',
69
- html: 'Jeder Kleidungskauf ist eine Entscheidung mit ökologischen und sozialen Auswirkungen. Das Verständnis der Textilzusammensetzung ist der erste Schritt zu bewusstem Konsum. Abbaubare Naturfasern (Baumwolle, Leinen, Wolle) haben eine ganz andere Umweltbelastung als synthetische Fasern (Polyester, Acryl), deren Zersetzung 200 Jahre dauert.',
70
- },
71
- {
72
- type: 'paragraph',
73
- html: 'Unsere Werkzeuge befähigen Sie dazu, intelligentere Einkäufe zu tätigen, Ihre Kleidung besser zu pflegen und ihre Lebensdauer zu verlängern - der nachhaltigste Akt überhaupt.',
74
- },
75
- ],
76
- };
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'textilien',
5
+ title: 'Textil Werkzeuge',
6
+ description: 'Kostenlose Rechner und Hilfsmittel für die Textilanalyse, Kleidungspflege und das Stoffdesign. Verstehen Sie die tatsächliche Zusammensetzung Ihrer Kleidung.',
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: 'Textilwissenschaft: Faseranalyse und Stoffzusammensetzung',
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Die Welt der Textilien ist eine faszinierende Schnittstelle zwischen Chemie, Physik und Ingenieurwesen. In diesem Bereich bieten wir spezialisierte Werkzeuge an, damit Sie wirklich verstehen, was Sie tragen. Von der Zusammensetzungsanalyse bis hin zu Stoffverbrauchsberechnungen und Schnittmuster-Skalierungen sind diese Hilfsmittel für Profis, DIY-Enthusiasten und bewusste Konsumenten konzipiert, die fundierte Entscheidungen über ihre Kleidung treffen möchten.',
16
+ },
17
+ {
18
+ type: 'title',
19
+ level: 2,
20
+ text: 'Textile Wahrheit: Plastik erkennen, das als Mode getarnt ist',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Die Modeindustrie nutzt ausgefeilte Marketingtechniken, um mittelmäßige Kleidungsstücke zu Premiumpreisen zu verkaufen. Unser Werkzeug für textile Wahrheit analysiert die tatsächliche Zusammensetzung der Kleidung - die auf dem Etikett aufgeführten Faseranteile -, um Ihnen unangenehme Wahrheiten zu offenbaren: Ist es wirklich Baumwolle oder "teures Plastik"? Enthält es echte Seide oder nur 3 % als Werbegag? Es verwendet einen Algorithmus, der auf europäischen und nordamerikanischen Industriestandards basiert und Atmungsaktivität, Haltbarkeit und thermische Effizienz bewertet.',
25
+ },
26
+ {
27
+ type: 'title',
28
+ level: 2,
29
+ text: 'Textile Meisterschaft: Wissenschaftlicher Leitfaden für Waschen und Pflege',
30
+ },
31
+ {
32
+ type: 'paragraph',
33
+ html: 'Jede Faser benötigt ein spezifisches Protokoll. Baumwolle verträgt heißes Wasser; Seide wird dadurch ruiniert. Wolle benötigt kaltes Wasser; Polyester kann den Trockner vertragen. Unser Textilpflege-Rechner liefert Ihnen präzise Anweisungen basierend auf der tatsächlichen Zusammensetzung Ihres Kleidungsstücks, was dessen Lebensdauer erheblich verlängert.',
34
+ },
35
+ {
36
+ type: 'title',
37
+ level: 2,
38
+ text: 'Flecken-Chemie: Protokolle nach Fasertyp',
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: 'Ein Weinfleck auf Leinen erfordert ein anderes Protokoll als derselbe Fleck auf Seide. Fettflecken auf Polyester benötigen Lösungsmittel; auf Wolle erfordern sie empfindlichere Methoden. Dieses Werkzeug gleicht Flecken, Fasertypen und chemische Mittel ab, um Ihnen die beste Entfernungsstrategie anzubieten, ohne den Stoff zu beschädigen.',
43
+ },
44
+ {
45
+ type: 'title',
46
+ level: 2,
47
+ text: 'Brennprobe: Fasern durch Verbrennen identifizieren',
48
+ },
49
+ {
50
+ type: 'paragraph',
51
+ html: 'Historisch gesehen haben Textilexperten Brennproben verwendet, um Fasern zu identifizieren: Das Flammenverhalten, der Geruch und die Rückstände offenbaren die chemische Natur der Faser. Naturfasern (Zellulose, Protein) haben andere Eigenschaften als synthetische Fasern (aus Erdöl gewonnene Kunststoffe).',
52
+ },
53
+ {
54
+ type: 'title',
55
+ level: 2,
56
+ text: 'Werkzeuge für Weber und Näher',
57
+ },
58
+ {
59
+ type: 'paragraph',
60
+ html: 'Wenn Sie ein Liebhaber des Schneiderns, Strickens oder Häkelns sind, haben wir fortschrittliche Rechner: von Nadelkonvertern über Stoffverbrauchsberechnungen, Schnittmuster-Skalierer, die Proportionen respektieren, bis hin zu Maschenproben-Hilfsmitteln (Gauge), die sicherstellen, dass Ihr Endprojekt genau die gewünschten Maße hat.',
61
+ },
62
+ {
63
+ type: 'title',
64
+ level: 2,
65
+ text: 'Bewusster Konsum und nachhaltige Mode',
66
+ },
67
+ {
68
+ type: 'paragraph',
69
+ html: 'Jeder Kleidungskauf ist eine Entscheidung mit ökologischen und sozialen Auswirkungen. Das Verständnis der Textilzusammensetzung ist der erste Schritt zu bewusstem Konsum. Abbaubare Naturfasern (Baumwolle, Leinen, Wolle) haben eine ganz andere Umweltbelastung als synthetische Fasern (Polyester, Acryl), deren Zersetzung 200 Jahre dauert.',
70
+ },
71
+ {
72
+ type: 'paragraph',
73
+ html: 'Unsere Werkzeuge befähigen Sie dazu, intelligentere Einkäufe zu tätigen, Ihre Kleidung besser zu pflegen und ihre Lebensdauer zu verlängern - der nachhaltigste Akt überhaupt.',
74
+ },
75
+ ],
76
+ };
@@ -1,76 +1,76 @@
1
- import type { CategoryLocaleContent } from '../../types';
2
-
3
- export const content: CategoryLocaleContent = {
4
- slug: 'textiles',
5
- title: 'Textile Tools',
6
- description: 'Free calculators and utilities for textile analysis, garment care, and fabric design. Understand the real composition of your clothes.',
7
- seo: [
8
- {
9
- type: 'title',
10
- text: 'Textile Science: Fiber Analysis and Fabric Composition',
11
- level: 2,
12
- },
13
- {
14
- type: 'paragraph',
15
- html: 'The world of textiles is a fascinating intersection of chemistry, physics, and engineering. In this section, we offer specialized tools to help you truly understand what you\'re wearing. From composition analysis to fabric consumption calculations and pattern scaling, these utilities are designed for professionals, DIY enthusiasts, and conscious consumers who want to make informed decisions about their garments.',
16
- },
17
- {
18
- type: 'title',
19
- level: 2,
20
- text: 'Fabric Truthfulness: Detect Plastic Disguised as Fashion',
21
- },
22
- {
23
- type: 'paragraph',
24
- html: 'The fashion industry uses sophisticated marketing techniques to sell mediocre garments at premium prices. Our Fabric Truthfulness tool analyzes the real composition of garments - the fiber percentages listed on the label - to reveal uncomfortable truths: Is it truly cotton or "expensive plastic"? Does it contain real silk or just 3% as a publicity hook? It uses an algorithm based on European and North American industrial standards that evaluates breathability, durability, and thermal efficiency.',
25
- },
26
- {
27
- type: 'title',
28
- level: 2,
29
- text: 'Textile Mastery: Scientific Guide to Washing and Care',
30
- },
31
- {
32
- type: 'paragraph',
33
- html: 'Each fiber requires a specific protocol. Cotton tolerates hot water; silk is ruined by it. Wool requires cold water; polyester can handle the dryer. Our textile care calculator provides precise instructions based on the real composition of your garment, significantly extending its lifespan.',
34
- },
35
- {
36
- type: 'title',
37
- level: 2,
38
- text: 'Stain Chemistry: Protocols by Fiber Type',
39
- },
40
- {
41
- type: 'paragraph',
42
- html: 'A wine stain on linen requires a different protocol than the same stain on silk. Grease stains on polyester need solvents; on wool, they require more delicate methods. This tool matches stains, fiber types, and chemical agents to offer you the best removal strategy without damaging the fabric.',
43
- },
44
- {
45
- type: 'title',
46
- level: 2,
47
- text: 'Burn Test: Identify Fibers by Burning Them',
48
- },
49
- {
50
- type: 'paragraph',
51
- html: 'Historically, textile experts have used burn tests to identify fibers: the flame behavior, smell, and residue reveal the chemical nature of the fiber. Natural fibers (cellulose, protein) have distinct characteristics from synthetics (plastics derived from petroleum).',
52
- },
53
- {
54
- type: 'title',
55
- level: 2,
56
- text: 'Tools for Weavers and Sewers',
57
- },
58
- {
59
- type: 'paragraph',
60
- html: 'If you\'re an enthusiast of sewing, knitting, or crochet, we have advanced calculators: from needle converters to fabric consumption calculations, pattern scalers that respect proportions, and gauge utilities that ensure your final project has exactly the desired dimensions.',
61
- },
62
- {
63
- type: 'title',
64
- level: 2,
65
- text: 'Conscious Consumerism and Sustainable Fashion',
66
- },
67
- {
68
- type: 'paragraph',
69
- html: 'Every clothing purchase is a decision with environmental and social impact. Understanding textile composition is the first step toward conscious consumerism. Natural degradable fibers (cotton, linen, wool) have a very different environmental impact than synthetics (polyester, acrylic), which will take 200 years to decompose.',
70
- },
71
- {
72
- type: 'paragraph',
73
- html: 'Our tools empower you to make smarter purchases, better care for your garments, and extend their lifespan - the most sustainable act possible.',
74
- },
75
- ],
76
- };
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'textiles',
5
+ title: 'Textile Tools',
6
+ description: 'Free calculators and utilities for textile analysis, garment care, and fabric design. Understand the real composition of your clothes.',
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: 'Textile Science: Fiber Analysis and Fabric Composition',
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'The world of textiles is a fascinating intersection of chemistry, physics, and engineering. In this section, we offer specialized tools to help you truly understand what you\'re wearing. From composition analysis to fabric consumption calculations and pattern scaling, these utilities are designed for professionals, DIY enthusiasts, and conscious consumers who want to make informed decisions about their garments.',
16
+ },
17
+ {
18
+ type: 'title',
19
+ level: 2,
20
+ text: 'Fabric Truthfulness: Detect Plastic Disguised as Fashion',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'The fashion industry uses sophisticated marketing techniques to sell mediocre garments at premium prices. Our Fabric Truthfulness tool analyzes the real composition of garments - the fiber percentages listed on the label - to reveal uncomfortable truths: Is it truly cotton or "expensive plastic"? Does it contain real silk or just 3% as a publicity hook? It uses an algorithm based on European and North American industrial standards that evaluates breathability, durability, and thermal efficiency.',
25
+ },
26
+ {
27
+ type: 'title',
28
+ level: 2,
29
+ text: 'Textile Mastery: Scientific Guide to Washing and Care',
30
+ },
31
+ {
32
+ type: 'paragraph',
33
+ html: 'Each fiber requires a specific protocol. Cotton tolerates hot water; silk is ruined by it. Wool requires cold water; polyester can handle the dryer. Our textile care calculator provides precise instructions based on the real composition of your garment, significantly extending its lifespan.',
34
+ },
35
+ {
36
+ type: 'title',
37
+ level: 2,
38
+ text: 'Stain Chemistry: Protocols by Fiber Type',
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: 'A wine stain on linen requires a different protocol than the same stain on silk. Grease stains on polyester need solvents; on wool, they require more delicate methods. This tool matches stains, fiber types, and chemical agents to offer you the best removal strategy without damaging the fabric.',
43
+ },
44
+ {
45
+ type: 'title',
46
+ level: 2,
47
+ text: 'Burn Test: Identify Fibers by Burning Them',
48
+ },
49
+ {
50
+ type: 'paragraph',
51
+ html: 'Historically, textile experts have used burn tests to identify fibers: the flame behavior, smell, and residue reveal the chemical nature of the fiber. Natural fibers (cellulose, protein) have distinct characteristics from synthetics (plastics derived from petroleum).',
52
+ },
53
+ {
54
+ type: 'title',
55
+ level: 2,
56
+ text: 'Tools for Weavers and Sewers',
57
+ },
58
+ {
59
+ type: 'paragraph',
60
+ html: 'If you\'re an enthusiast of sewing, knitting, or crochet, we have advanced calculators: from needle converters to fabric consumption calculations, pattern scalers that respect proportions, and gauge utilities that ensure your final project has exactly the desired dimensions.',
61
+ },
62
+ {
63
+ type: 'title',
64
+ level: 2,
65
+ text: 'Conscious Consumerism and Sustainable Fashion',
66
+ },
67
+ {
68
+ type: 'paragraph',
69
+ html: 'Every clothing purchase is a decision with environmental and social impact. Understanding textile composition is the first step toward conscious consumerism. Natural degradable fibers (cotton, linen, wool) have a very different environmental impact than synthetics (polyester, acrylic), which will take 200 years to decompose.',
70
+ },
71
+ {
72
+ type: 'paragraph',
73
+ html: 'Our tools empower you to make smarter purchases, better care for your garments, and extend their lifespan - the most sustainable act possible.',
74
+ },
75
+ ],
76
+ };
@@ -1,76 +1,76 @@
1
- import type { CategoryLocaleContent } from '../../types';
2
-
3
- export const content: CategoryLocaleContent = {
4
- slug: 'textiles',
5
- title: 'Herramientas de Textiles',
6
- description: 'Calculadoras y utilidades gratuitas para análisis textil, cuidado de prendas y diseño de tejidos. Entiende la composición real de tu ropa.',
7
- seo: [
8
- {
9
- type: 'title',
10
- text: 'Ciencia Textil: Análisis de Fibras y Composición de Prendas',
11
- level: 2,
12
- },
13
- {
14
- type: 'paragraph',
15
- html: 'El mundo de los textiles es una intersección fascinante entre química, física e ingeniería. En esta sección, ofrecemos herramientas especializadas para que entiendas realmente qué llevas puesto. Desde análisis de composición hasta cálculos de consumo de tela y escalado de patrones, estas utilidades están diseñadas para profesionales, aficionados al DIY y consumidores conscientes que desean tomar decisiones informadas sobre sus prendas.',
16
- },
17
- {
18
- type: 'title',
19
- level: 2,
20
- text: 'Veracidad Textil: Detecta Plástico Disfrazado de Moda',
21
- },
22
- {
23
- type: 'paragraph',
24
- html: 'La industria de la moda utiliza técnicas sofisticadas de marketing para vender prendas mediocres a precios premium. Nuestra herramienta de Veracidad Textil analiza la composición real de las prendas - los porcentajes de fibras listados en la etiqueta - para revelarte verdades incómodas: ¿es realmente algodón o es "plástico caro"? ¿Contiene seda real o solo un 3% como gancho publicitario? Utiliza un algoritmo basado en estándares industriales europeos y norteamericanos que evalúa transpirabilidad, durabilidad y eficiencia térmica.',
25
- },
26
- {
27
- type: 'title',
28
- level: 2,
29
- text: 'Maestría Textil: Guía Científica de Lavado y Cuidado',
30
- },
31
- {
32
- type: 'paragraph',
33
- html: 'Cada fibra requiere un protocolo específico. El algodón tolera agua caliente; la seda se arruina. La lana requiere agua fría; el poliéster puede soportar secadora. Nuestra calculadora de cuidado textil te proporciona instrucciones precisas basadas en la composición real de tu prenda, alargando su vida útil significativamente.',
34
- },
35
- {
36
- type: 'title',
37
- level: 2,
38
- text: 'Química de Manchas: Protocolos por Tipo de Fibra',
39
- },
40
- {
41
- type: 'paragraph',
42
- html: 'Una mancha de vino en lino requiere un protocolo diferente al de la misma mancha en seda. Las manchas de grasa en poliéster necesitan disolventes; en lana, requieren métodos más delicados. Esta herramienta empareja manchas, tipos de fibra y agentes químicos para ofrecerte la mejor estrategia de eliminación sin dañar la tela.',
43
- },
44
- {
45
- type: 'title',
46
- level: 2,
47
- text: 'Prueba de Combustión: Identifica Fibras Quemándolas',
48
- },
49
- {
50
- type: 'paragraph',
51
- html: 'Historicamente, los expertos en textiles han utilizado pruebas de combustión para identificar fibras: el comportamiento de la llama, el olor y el residuo revelan la naturaleza química de la fibra. Las fibras naturales (celulosa, proteína) tienen características distintas a las sintéticas (plásticos derivados del petróleo).',
52
- },
53
- {
54
- type: 'title',
55
- level: 2,
56
- text: 'Herramientas para Tejedores y Costureros',
57
- },
58
- {
59
- type: 'paragraph',
60
- html: 'Si eres un aficionado a la confección, el punto o el ganchillo, contamos con calculadoras avanzadas: desde convertidores de agujas hasta cálculos de consumo de tela, escaladores de patrones que respetan proporciones y utilidades de tensión (gauge) que aseguran que tu proyecto final tenga exactamente las dimensiones deseadas.',
61
- },
62
- {
63
- type: 'title',
64
- level: 2,
65
- text: 'Consumerismo Consciente y Moda Sostenible',
66
- },
67
- {
68
- type: 'paragraph',
69
- html: 'Cada compra de ropa es una decisión con impacto ambiental y social. Entender la composición textil es el primer paso hacia el consumerismo consciente. Las fibras naturales degradables (algodón, lino, lana) tienen un impacto ambiental muy diferente al de los sintéticos (poliéster, acrílico), que tardarán 200 años en descomponerse.',
70
- },
71
- {
72
- type: 'paragraph',
73
- html: 'Nuestras herramientas te capacitan para hacer compras más inteligentes, cuidar mejor tus prendas y alargar su vida útil - el acto más sostenible posible.',
74
- },
75
- ],
76
- };
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'textiles',
5
+ title: 'Herramientas de Textiles',
6
+ description: 'Calculadoras y utilidades gratuitas para análisis textil, cuidado de prendas y diseño de tejidos. Entiende la composición real de tu ropa.',
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: 'Ciencia Textil: Análisis de Fibras y Composición de Prendas',
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'El mundo de los textiles es una intersección fascinante entre química, física e ingeniería. En esta sección, ofrecemos herramientas especializadas para que entiendas realmente qué llevas puesto. Desde análisis de composición hasta cálculos de consumo de tela y escalado de patrones, estas utilidades están diseñadas para profesionales, aficionados al DIY y consumidores conscientes que desean tomar decisiones informadas sobre sus prendas.',
16
+ },
17
+ {
18
+ type: 'title',
19
+ level: 2,
20
+ text: 'Veracidad Textil: Detecta Plástico Disfrazado de Moda',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'La industria de la moda utiliza técnicas sofisticadas de marketing para vender prendas mediocres a precios premium. Nuestra herramienta de Veracidad Textil analiza la composición real de las prendas - los porcentajes de fibras listados en la etiqueta - para revelarte verdades incómodas: ¿es realmente algodón o es "plástico caro"? ¿Contiene seda real o solo un 3% como gancho publicitario? Utiliza un algoritmo basado en estándares industriales europeos y norteamericanos que evalúa transpirabilidad, durabilidad y eficiencia térmica.',
25
+ },
26
+ {
27
+ type: 'title',
28
+ level: 2,
29
+ text: 'Maestría Textil: Guía Científica de Lavado y Cuidado',
30
+ },
31
+ {
32
+ type: 'paragraph',
33
+ html: 'Cada fibra requiere un protocolo específico. El algodón tolera agua caliente; la seda se arruina. La lana requiere agua fría; el poliéster puede soportar secadora. Nuestra calculadora de cuidado textil te proporciona instrucciones precisas basadas en la composición real de tu prenda, alargando su vida útil significativamente.',
34
+ },
35
+ {
36
+ type: 'title',
37
+ level: 2,
38
+ text: 'Química de Manchas: Protocolos por Tipo de Fibra',
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: 'Una mancha de vino en lino requiere un protocolo diferente al de la misma mancha en seda. Las manchas de grasa en poliéster necesitan disolventes; en lana, requieren métodos más delicados. Esta herramienta empareja manchas, tipos de fibra y agentes químicos para ofrecerte la mejor estrategia de eliminación sin dañar la tela.',
43
+ },
44
+ {
45
+ type: 'title',
46
+ level: 2,
47
+ text: 'Prueba de Combustión: Identifica Fibras Quemándolas',
48
+ },
49
+ {
50
+ type: 'paragraph',
51
+ html: 'Historicamente, los expertos en textiles han utilizado pruebas de combustión para identificar fibras: el comportamiento de la llama, el olor y el residuo revelan la naturaleza química de la fibra. Las fibras naturales (celulosa, proteína) tienen características distintas a las sintéticas (plásticos derivados del petróleo).',
52
+ },
53
+ {
54
+ type: 'title',
55
+ level: 2,
56
+ text: 'Herramientas para Tejedores y Costureros',
57
+ },
58
+ {
59
+ type: 'paragraph',
60
+ html: 'Si eres un aficionado a la confección, el punto o el ganchillo, contamos con calculadoras avanzadas: desde convertidores de agujas hasta cálculos de consumo de tela, escaladores de patrones que respetan proporciones y utilidades de tensión (gauge) que aseguran que tu proyecto final tenga exactamente las dimensiones deseadas.',
61
+ },
62
+ {
63
+ type: 'title',
64
+ level: 2,
65
+ text: 'Consumerismo Consciente y Moda Sostenible',
66
+ },
67
+ {
68
+ type: 'paragraph',
69
+ html: 'Cada compra de ropa es una decisión con impacto ambiental y social. Entender la composición textil es el primer paso hacia el consumerismo consciente. Las fibras naturales degradables (algodón, lino, lana) tienen un impacto ambiental muy diferente al de los sintéticos (poliéster, acrílico), que tardarán 200 años en descomponerse.',
70
+ },
71
+ {
72
+ type: 'paragraph',
73
+ html: 'Nuestras herramientas te capacitan para hacer compras más inteligentes, cuidar mejor tus prendas y alargar su vida útil - el acto más sostenible posible.',
74
+ },
75
+ ],
76
+ };
@@ -1,76 +1,76 @@
1
- import type { CategoryLocaleContent } from '../../types';
2
-
3
- export const content: CategoryLocaleContent = {
4
- slug: 'textiles',
5
- title: 'Outils Textiles',
6
- description: 'Calculatrices et utilitaires gratuits pour l\'analyse textile, l\'entretien des vêtements et la conception de tissus. Comprendre la composition réelle de vos vêtements.',
7
- seo: [
8
- {
9
- type: 'title',
10
- text: 'Science Textile: Analyse des Fibres et Composition des Vêtements',
11
- level: 2,
12
- },
13
- {
14
- type: 'paragraph',
15
- html: 'Le monde des textiles est une intersection fascinante entre la chimie, la physique et l\'ingénierie. Dans cette section, nous proposons des outils spécialisés pour vous aider à vraiment comprendre ce que vous portez. De l\'analyse de la composition aux calculs de consommation de tissu et à la mise à l\'échelle des motifs, ces utilitaires sont conçus pour les professionnels, les amateurs de bricolage et les consommateurs conscients qui souhaitent prendre des décisions éclairées concernant leurs vêtements.',
16
- },
17
- {
18
- type: 'title',
19
- level: 2,
20
- text: 'Vérité Textile: Détectez le Plastique Déguisé en Mode',
21
- },
22
- {
23
- type: 'paragraph',
24
- html: 'L\'industrie de la mode utilise des techniques de marketing sophistiquées pour vendre des vêtements médiocres à des prix premium. Notre outil Vérité Textile analyse la composition réelle des vêtements - les pourcentages de fibres listés sur l\'étiquette - pour vous révéler des vérités inconfortables: est-ce vraiment du coton ou du "plastique cher" ? Contient-il de la vraie soie ou seulement 3 % comme appât publicitaire ? Il utilise un algorithme basé sur les normes industrielles européennes et nord-américaines qui évalue la respirabilité, la durabilité et l\'efficacité thermique.',
25
- },
26
- {
27
- type: 'title',
28
- level: 2,
29
- text: 'Maîtrise Textile: Guide Scientifique du Lavage et de l\'Entretien',
30
- },
31
- {
32
- type: 'paragraph',
33
- html: 'Chaque fibre nécessite un protocole spécifique. Le coton tolère l\'eau chaude ; la soie est ruinée. La laine nécessite de l\'eau froide ; le polyester peut supporter le sèche-linge. Notre calculatrice d\'entretien textile vous fournit des instructions précises basées sur la composition réelle de votre vêtement, prolongeant considérablement sa durée de vie.',
34
- },
35
- {
36
- type: 'title',
37
- level: 2,
38
- text: 'Chimie des Taches: Protocoles par Type de Fibre',
39
- },
40
- {
41
- type: 'paragraph',
42
- html: 'Une tache de vin sur du lin nécessite un protocole différent de celui de la même tache sur de la soie. Les taches de graisse sur le polyester nécessitent des solvants ; sur la laine, elles nécessitent des méthodes plus délicates. Cet outil associe les taches, les types de fibres et les agents chimiques pour vous offrir la meilleure stratégie d\'élimination sans endommager le tissu.',
43
- },
44
- {
45
- type: 'title',
46
- level: 2,
47
- text: 'Test de Combustion: Identifiez les Fibres en les Brûlant',
48
- },
49
- {
50
- type: 'paragraph',
51
- html: 'Historiquement, les experts en textiles ont utilisé des tests de combustion pour identifier les fibres: le comportement de la flamme, l\'odeur et les résidus révèlent la nature chimique de la fibre. Les fibres naturelles (cellulose, protéine) ont des caractéristiques distinctes des fibres synthétiques (plastiques dérivés du pétrole).',
52
- },
53
- {
54
- type: 'title',
55
- level: 2,
56
- text: 'Outils pour Tisserands et Couturiers',
57
- },
58
- {
59
- type: 'paragraph',
60
- html: 'Si vous êtes un amateur de couture, de tricot ou de crochet, nous disposons de calculatrices avancées: des convertisseurs d\'aiguilles aux calculs de consommation de tissu, des changeurs d\'échelle de motif qui respectent les proportions et des utilitaires de tension (gauge) qui assurent que votre projet final a exactement les dimensions souhaitées.',
61
- },
62
- {
63
- type: 'title',
64
- level: 2,
65
- text: 'Consommation Consciente et Mode Durable',
66
- },
67
- {
68
- type: 'paragraph',
69
- html: 'Chaque achat de vêtements est une décision ayant un impact environnemental et social. Comprendre la composition textile est la première étape vers une consommation consciente. Les fibres naturelles dégradables (coton, lin, laine) ont un impact environnemental très différent de celui des fibres synthétiques (polyester, acrylique), qui mettront 200 ans à se décomposer.',
70
- },
71
- {
72
- type: 'paragraph',
73
- html: 'Nos outils vous permettent de faire des achats plus intelligents, de mieux entretenir vos vêtements et de prolonger leur durée de vie - l\'acte le plus durable possible.',
74
- },
75
- ],
76
- };
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'textiles',
5
+ title: 'Outils Textiles',
6
+ description: 'Calculatrices et utilitaires gratuits pour l\'analyse textile, l\'entretien des vêtements et la conception de tissus. Comprendre la composition réelle de vos vêtements.',
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: 'Science Textile: Analyse des Fibres et Composition des Vêtements',
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Le monde des textiles est une intersection fascinante entre la chimie, la physique et l\'ingénierie. Dans cette section, nous proposons des outils spécialisés pour vous aider à vraiment comprendre ce que vous portez. De l\'analyse de la composition aux calculs de consommation de tissu et à la mise à l\'échelle des motifs, ces utilitaires sont conçus pour les professionnels, les amateurs de bricolage et les consommateurs conscients qui souhaitent prendre des décisions éclairées concernant leurs vêtements.',
16
+ },
17
+ {
18
+ type: 'title',
19
+ level: 2,
20
+ text: 'Vérité Textile: Détectez le Plastique Déguisé en Mode',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'L\'industrie de la mode utilise des techniques de marketing sophistiquées pour vendre des vêtements médiocres à des prix premium. Notre outil Vérité Textile analyse la composition réelle des vêtements - les pourcentages de fibres listés sur l\'étiquette - pour vous révéler des vérités inconfortables: est-ce vraiment du coton ou du "plastique cher" ? Contient-il de la vraie soie ou seulement 3 % comme appât publicitaire ? Il utilise un algorithme basé sur les normes industrielles européennes et nord-américaines qui évalue la respirabilité, la durabilité et l\'efficacité thermique.',
25
+ },
26
+ {
27
+ type: 'title',
28
+ level: 2,
29
+ text: 'Maîtrise Textile: Guide Scientifique du Lavage et de l\'Entretien',
30
+ },
31
+ {
32
+ type: 'paragraph',
33
+ html: 'Chaque fibre nécessite un protocole spécifique. Le coton tolère l\'eau chaude ; la soie est ruinée. La laine nécessite de l\'eau froide ; le polyester peut supporter le sèche-linge. Notre calculatrice d\'entretien textile vous fournit des instructions précises basées sur la composition réelle de votre vêtement, prolongeant considérablement sa durée de vie.',
34
+ },
35
+ {
36
+ type: 'title',
37
+ level: 2,
38
+ text: 'Chimie des Taches: Protocoles par Type de Fibre',
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: 'Une tache de vin sur du lin nécessite un protocole différent de celui de la même tache sur de la soie. Les taches de graisse sur le polyester nécessitent des solvants ; sur la laine, elles nécessitent des méthodes plus délicates. Cet outil associe les taches, les types de fibres et les agents chimiques pour vous offrir la meilleure stratégie d\'élimination sans endommager le tissu.',
43
+ },
44
+ {
45
+ type: 'title',
46
+ level: 2,
47
+ text: 'Test de Combustion: Identifiez les Fibres en les Brûlant',
48
+ },
49
+ {
50
+ type: 'paragraph',
51
+ html: 'Historiquement, les experts en textiles ont utilisé des tests de combustion pour identifier les fibres: le comportement de la flamme, l\'odeur et les résidus révèlent la nature chimique de la fibre. Les fibres naturelles (cellulose, protéine) ont des caractéristiques distinctes des fibres synthétiques (plastiques dérivés du pétrole).',
52
+ },
53
+ {
54
+ type: 'title',
55
+ level: 2,
56
+ text: 'Outils pour Tisserands et Couturiers',
57
+ },
58
+ {
59
+ type: 'paragraph',
60
+ html: 'Si vous êtes un amateur de couture, de tricot ou de crochet, nous disposons de calculatrices avancées: des convertisseurs d\'aiguilles aux calculs de consommation de tissu, des changeurs d\'échelle de motif qui respectent les proportions et des utilitaires de tension (gauge) qui assurent que votre projet final a exactement les dimensions souhaitées.',
61
+ },
62
+ {
63
+ type: 'title',
64
+ level: 2,
65
+ text: 'Consommation Consciente et Mode Durable',
66
+ },
67
+ {
68
+ type: 'paragraph',
69
+ html: 'Chaque achat de vêtements est une décision ayant un impact environnemental et social. Comprendre la composition textile est la première étape vers une consommation consciente. Les fibres naturelles dégradables (coton, lin, laine) ont un impact environnemental très différent de celui des fibres synthétiques (polyester, acrylique), qui mettront 200 ans à se décomposer.',
70
+ },
71
+ {
72
+ type: 'paragraph',
73
+ html: 'Nos outils vous permettent de faire des achats plus intelligents, de mieux entretenir vos vêtements et de prolonger leur durée de vie - l\'acte le plus durable possible.',
74
+ },
75
+ ],
76
+ };