@nodaro/shared 1.4.2

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 (665) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +32 -0
  3. package/dist/index.cjs +12506 -0
  4. package/dist/index.cjs.map +1 -0
  5. package/dist/index.d.cts +12269 -0
  6. package/dist/index.d.ts +12269 -0
  7. package/dist/index.js +11831 -0
  8. package/dist/index.js.map +1 -0
  9. package/package.json +54 -0
  10. package/src/__tests__/__snapshots__/prompt-builder-segments.test.ts.snap +65 -0
  11. package/src/__tests__/ai-avatar-pricing.test.ts +321 -0
  12. package/src/__tests__/apply-video-negative-prompt.test.ts +76 -0
  13. package/src/__tests__/attach-columns.test.ts +28 -0
  14. package/src/__tests__/audio-crossfade-curves.test.ts +33 -0
  15. package/src/__tests__/build-model-menu.test.ts +58 -0
  16. package/src/__tests__/character-aspect-defaults.test.ts +142 -0
  17. package/src/__tests__/character-mention-slug.test.ts +199 -0
  18. package/src/__tests__/character-reference-photo-kinds.test.ts +32 -0
  19. package/src/__tests__/character-usage-mode.test.ts +147 -0
  20. package/src/__tests__/character-variant-assets.test.ts +142 -0
  21. package/src/__tests__/character-voice.test.ts +130 -0
  22. package/src/__tests__/cinematic-avatar-pricing.test.ts +119 -0
  23. package/src/__tests__/combine-transitions.test.ts +137 -0
  24. package/src/__tests__/component-types.test.ts +87 -0
  25. package/src/__tests__/condition-variables.test.ts +98 -0
  26. package/src/__tests__/credit-identifiers.test.ts +811 -0
  27. package/src/__tests__/default-video-provider.test.ts +63 -0
  28. package/src/__tests__/entity-image-handle.test.ts +43 -0
  29. package/src/__tests__/entity-variants.test.ts +33 -0
  30. package/src/__tests__/fal-lip-sync-sets.test.ts +31 -0
  31. package/src/__tests__/featured-entities.test.ts +33 -0
  32. package/src/__tests__/film-pricing.test.ts +64 -0
  33. package/src/__tests__/filter-condition.test.ts +285 -0
  34. package/src/__tests__/freecut-protocol.test.ts +35 -0
  35. package/src/__tests__/generate-text-items.test.ts +19 -0
  36. package/src/__tests__/generated-results.test.ts +50 -0
  37. package/src/__tests__/graph-utils.test.ts +618 -0
  38. package/src/__tests__/group-aggregation.test.ts +83 -0
  39. package/src/__tests__/i18n-locale-completeness.test.ts +156 -0
  40. package/src/__tests__/image-critic-node.test.ts +86 -0
  41. package/src/__tests__/image-mask-mode.test.ts +16 -0
  42. package/src/__tests__/image-ref-limit.test.ts +78 -0
  43. package/src/__tests__/inpaint-region.test.ts +24 -0
  44. package/src/__tests__/input-field-map-parity.test.ts +30 -0
  45. package/src/__tests__/json-evaluator.test.ts +289 -0
  46. package/src/__tests__/json-path.test.ts +64 -0
  47. package/src/__tests__/lip-sync-pricing.test.ts +142 -0
  48. package/src/__tests__/list-merge.test.ts +96 -0
  49. package/src/__tests__/list-sort.test.ts +134 -0
  50. package/src/__tests__/llm-models.test.ts +445 -0
  51. package/src/__tests__/location-mention-slug.test.ts +246 -0
  52. package/src/__tests__/locations-coverage-critic-schema.test.ts +92 -0
  53. package/src/__tests__/loop-delimiter.test.ts +39 -0
  54. package/src/__tests__/lottie-slots.test.ts +245 -0
  55. package/src/__tests__/model-catalog-flux2-resolutions.test.ts +21 -0
  56. package/src/__tests__/model-constants-location.test.ts +20 -0
  57. package/src/__tests__/model-constants.test.ts +122 -0
  58. package/src/__tests__/model-tree.test.ts +86 -0
  59. package/src/__tests__/no-internal-imports.test.ts +25 -0
  60. package/src/__tests__/node-default-mappings.test.ts +175 -0
  61. package/src/__tests__/node-mappable-fields.test.ts +7 -0
  62. package/src/__tests__/node-preset-export.test.ts +46 -0
  63. package/src/__tests__/node-preset-extract.test.ts +166 -0
  64. package/src/__tests__/node-refs-canonical.test.ts +54 -0
  65. package/src/__tests__/node-refs-combine.test.ts +54 -0
  66. package/src/__tests__/node-refs.test.ts +187 -0
  67. package/src/__tests__/node-runtime-keys.test.ts +99 -0
  68. package/src/__tests__/object-aspect-defaults.test.ts +59 -0
  69. package/src/__tests__/parameter-node-value.test.ts +137 -0
  70. package/src/__tests__/pinterest-url.test.ts +35 -0
  71. package/src/__tests__/pipeline-chat.test.ts +110 -0
  72. package/src/__tests__/pipeline-validation.test.ts +98 -0
  73. package/src/__tests__/presentation-utils.test.ts +1137 -0
  74. package/src/__tests__/producer-types.test.ts +47 -0
  75. package/src/__tests__/prompt-length-limits.test.ts +156 -0
  76. package/src/__tests__/provider-directive-defaults.test.ts +46 -0
  77. package/src/__tests__/reduce-strategy-registry.test.ts +43 -0
  78. package/src/__tests__/reference-board-templates.test.ts +33 -0
  79. package/src/__tests__/reference-roles.test.ts +36 -0
  80. package/src/__tests__/resolve-field-mappings.test.ts +110 -0
  81. package/src/__tests__/resolve-pipeline-model.test.ts +76 -0
  82. package/src/__tests__/scene-node-types.test.ts +80 -0
  83. package/src/__tests__/scraper-actors.test.ts +67 -0
  84. package/src/__tests__/seedance-2-catalog.test.ts +18 -0
  85. package/src/__tests__/seedance-2-credit-id.test.ts +23 -0
  86. package/src/__tests__/seedance-aspects.test.ts +52 -0
  87. package/src/__tests__/selector.test.ts +1151 -0
  88. package/src/__tests__/settled-with-limit.test.ts +214 -0
  89. package/src/__tests__/social-media-specs.test.ts +129 -0
  90. package/src/__tests__/sub-workflow-validation.test.ts +88 -0
  91. package/src/__tests__/switchx-pricing.test.ts +28 -0
  92. package/src/__tests__/to-connected-references.test.ts +153 -0
  93. package/src/__tests__/utilities.test.ts +541 -0
  94. package/src/__tests__/video-analysis-pricing.test.ts +58 -0
  95. package/src/__tests__/video-analysis.test.ts +63 -0
  96. package/src/__tests__/video-audio-capability.test.ts +204 -0
  97. package/src/__tests__/video-gen-providers.test.ts +28 -0
  98. package/src/__tests__/video-mode-aliases.test.ts +150 -0
  99. package/src/__tests__/video-ref-limits.test.ts +72 -0
  100. package/src/__tests__/video-utils.test.ts +303 -0
  101. package/src/__tests__/voice-changer-models.test.ts +33 -0
  102. package/src/__tests__/workflow-export-strip.test.ts +46 -0
  103. package/src/ai-avatar-pricing.ts +213 -0
  104. package/src/ancestor-refs.ts +48 -0
  105. package/src/animals.ts +231 -0
  106. package/src/audio-crossfade-curves.ts +73 -0
  107. package/src/audio-fx-presets.ts +64 -0
  108. package/src/avatar-payload-validators.ts +214 -0
  109. package/src/caption-styles.ts +31 -0
  110. package/src/character-aspect-defaults.ts +102 -0
  111. package/src/character-facets.ts +37 -0
  112. package/src/character-mention-slug.ts +166 -0
  113. package/src/character-usage-mode.ts +109 -0
  114. package/src/character-variant-assets.ts +121 -0
  115. package/src/character-voice.ts +151 -0
  116. package/src/cinematic-avatar-pricing.ts +111 -0
  117. package/src/clone-utils.ts +46 -0
  118. package/src/combine-transitions.ts +482 -0
  119. package/src/community.ts +112 -0
  120. package/src/component-types.ts +127 -0
  121. package/src/condition-variables.ts +65 -0
  122. package/src/credit-estimators/index.ts +15 -0
  123. package/src/credit-estimators/video-utils.ts +165 -0
  124. package/src/credit-identifiers.ts +304 -0
  125. package/src/entity-approval-types.ts +31 -0
  126. package/src/entity-aspect-defaults.ts +82 -0
  127. package/src/entity-asset-types.ts +296 -0
  128. package/src/entity-image-handle.ts +36 -0
  129. package/src/extra-refs.ts +139 -0
  130. package/src/featured-entities.ts +136 -0
  131. package/src/film-pricing.ts +117 -0
  132. package/src/filter-condition.ts +250 -0
  133. package/src/flux2-pricing.ts +18 -0
  134. package/src/freecut-protocol.ts +52 -0
  135. package/src/furniture.ts +167 -0
  136. package/src/generate-text-items.ts +15 -0
  137. package/src/generated-results.ts +63 -0
  138. package/src/group-aggregation.ts +75 -0
  139. package/src/hint-graph-types.ts +18 -0
  140. package/src/i18n/action-fx.ar.ts +89 -0
  141. package/src/i18n/action-fx.de.ts +89 -0
  142. package/src/i18n/action-fx.es.ts +89 -0
  143. package/src/i18n/action-fx.fr.ts +89 -0
  144. package/src/i18n/action-fx.he.ts +89 -0
  145. package/src/i18n/action-fx.hi.ts +89 -0
  146. package/src/i18n/action-fx.ja.ts +89 -0
  147. package/src/i18n/action-fx.ko.ts +89 -0
  148. package/src/i18n/action-fx.pt-BR.ts +89 -0
  149. package/src/i18n/action-fx.ru.ts +89 -0
  150. package/src/i18n/action-fx.zh-CN.ts +89 -0
  151. package/src/i18n/aesthetic.ar.ts +170 -0
  152. package/src/i18n/aesthetic.de.ts +48 -0
  153. package/src/i18n/aesthetic.es.ts +169 -0
  154. package/src/i18n/aesthetic.fr.ts +52 -0
  155. package/src/i18n/aesthetic.he.ts +169 -0
  156. package/src/i18n/aesthetic.hi.ts +55 -0
  157. package/src/i18n/aesthetic.ja.ts +165 -0
  158. package/src/i18n/aesthetic.ko.ts +169 -0
  159. package/src/i18n/aesthetic.pt-BR.ts +148 -0
  160. package/src/i18n/aesthetic.ru.ts +155 -0
  161. package/src/i18n/aesthetic.zh-CN.ts +172 -0
  162. package/src/i18n/animals.ar.ts +145 -0
  163. package/src/i18n/animals.de.ts +144 -0
  164. package/src/i18n/animals.es.ts +158 -0
  165. package/src/i18n/animals.fr.ts +144 -0
  166. package/src/i18n/animals.he.ts +155 -0
  167. package/src/i18n/animals.hi.ts +157 -0
  168. package/src/i18n/animals.ja.ts +159 -0
  169. package/src/i18n/animals.ko.ts +159 -0
  170. package/src/i18n/animals.pt-BR.ts +157 -0
  171. package/src/i18n/animals.ru.ts +155 -0
  172. package/src/i18n/animals.zh-CN.ts +155 -0
  173. package/src/i18n/atmosphere.ar.ts +49 -0
  174. package/src/i18n/atmosphere.de.ts +47 -0
  175. package/src/i18n/atmosphere.es.ts +50 -0
  176. package/src/i18n/atmosphere.fr.ts +47 -0
  177. package/src/i18n/atmosphere.he.ts +47 -0
  178. package/src/i18n/atmosphere.hi.ts +49 -0
  179. package/src/i18n/atmosphere.ja.ts +49 -0
  180. package/src/i18n/atmosphere.ko.ts +49 -0
  181. package/src/i18n/atmosphere.pt-BR.ts +49 -0
  182. package/src/i18n/atmosphere.ru.ts +47 -0
  183. package/src/i18n/atmosphere.zh-CN.ts +152 -0
  184. package/src/i18n/backdrop.ar.ts +53 -0
  185. package/src/i18n/backdrop.de.ts +46 -0
  186. package/src/i18n/backdrop.es.ts +54 -0
  187. package/src/i18n/backdrop.fr.ts +52 -0
  188. package/src/i18n/backdrop.he.ts +51 -0
  189. package/src/i18n/backdrop.hi.ts +59 -0
  190. package/src/i18n/backdrop.ja.ts +61 -0
  191. package/src/i18n/backdrop.ko.ts +59 -0
  192. package/src/i18n/backdrop.pt-BR.ts +59 -0
  193. package/src/i18n/backdrop.ru.ts +57 -0
  194. package/src/i18n/backdrop.zh-CN.ts +57 -0
  195. package/src/i18n/camera-format.ar.ts +40 -0
  196. package/src/i18n/camera-format.de.ts +37 -0
  197. package/src/i18n/camera-format.es.ts +41 -0
  198. package/src/i18n/camera-format.fr.ts +37 -0
  199. package/src/i18n/camera-format.he.ts +37 -0
  200. package/src/i18n/camera-format.hi.ts +42 -0
  201. package/src/i18n/camera-format.ja.ts +37 -0
  202. package/src/i18n/camera-format.ko.ts +37 -0
  203. package/src/i18n/camera-format.pt-BR.ts +46 -0
  204. package/src/i18n/camera-format.ru.ts +42 -0
  205. package/src/i18n/camera-format.zh-CN.ts +42 -0
  206. package/src/i18n/camera-motions.ar.ts +86 -0
  207. package/src/i18n/camera-motions.de.ts +74 -0
  208. package/src/i18n/camera-motions.es.ts +86 -0
  209. package/src/i18n/camera-motions.fr.ts +86 -0
  210. package/src/i18n/camera-motions.he.ts +86 -0
  211. package/src/i18n/camera-motions.hi.ts +99 -0
  212. package/src/i18n/camera-motions.ja.ts +99 -0
  213. package/src/i18n/camera-motions.ko.ts +99 -0
  214. package/src/i18n/camera-motions.pt-BR.ts +99 -0
  215. package/src/i18n/camera-motions.ru.ts +99 -0
  216. package/src/i18n/camera-motions.zh-CN.ts +99 -0
  217. package/src/i18n/character-fx.ar.ts +72 -0
  218. package/src/i18n/character-fx.de.ts +72 -0
  219. package/src/i18n/character-fx.es.ts +72 -0
  220. package/src/i18n/character-fx.fr.ts +72 -0
  221. package/src/i18n/character-fx.he.ts +72 -0
  222. package/src/i18n/character-fx.hi.ts +72 -0
  223. package/src/i18n/character-fx.ja.ts +72 -0
  224. package/src/i18n/character-fx.ko.ts +72 -0
  225. package/src/i18n/character-fx.pt-BR.ts +72 -0
  226. package/src/i18n/character-fx.ru.ts +72 -0
  227. package/src/i18n/character-fx.zh-CN.ts +72 -0
  228. package/src/i18n/color-look.ar.ts +50 -0
  229. package/src/i18n/color-look.de.ts +47 -0
  230. package/src/i18n/color-look.es.ts +50 -0
  231. package/src/i18n/color-look.fr.ts +50 -0
  232. package/src/i18n/color-look.he.ts +49 -0
  233. package/src/i18n/color-look.hi.ts +52 -0
  234. package/src/i18n/color-look.ja.ts +54 -0
  235. package/src/i18n/color-look.ko.ts +54 -0
  236. package/src/i18n/color-look.pt-BR.ts +54 -0
  237. package/src/i18n/color-look.ru.ts +52 -0
  238. package/src/i18n/color-look.zh-CN.ts +53 -0
  239. package/src/i18n/composition-effects.ar.ts +26 -0
  240. package/src/i18n/composition-effects.de.ts +25 -0
  241. package/src/i18n/composition-effects.es.ts +27 -0
  242. package/src/i18n/composition-effects.fr.ts +25 -0
  243. package/src/i18n/composition-effects.he.ts +25 -0
  244. package/src/i18n/composition-effects.hi.ts +27 -0
  245. package/src/i18n/composition-effects.ja.ts +27 -0
  246. package/src/i18n/composition-effects.ko.ts +27 -0
  247. package/src/i18n/composition-effects.pt-BR.ts +25 -0
  248. package/src/i18n/composition-effects.ru.ts +82 -0
  249. package/src/i18n/composition-effects.zh-CN.ts +25 -0
  250. package/src/i18n/era.ar.ts +37 -0
  251. package/src/i18n/era.de.ts +34 -0
  252. package/src/i18n/era.es.ts +37 -0
  253. package/src/i18n/era.fr.ts +37 -0
  254. package/src/i18n/era.he.ts +36 -0
  255. package/src/i18n/era.hi.ts +39 -0
  256. package/src/i18n/era.ja.ts +41 -0
  257. package/src/i18n/era.ko.ts +39 -0
  258. package/src/i18n/era.pt-BR.ts +41 -0
  259. package/src/i18n/era.ru.ts +121 -0
  260. package/src/i18n/era.zh-CN.ts +39 -0
  261. package/src/i18n/exposure-settings.ar.ts +28 -0
  262. package/src/i18n/exposure-settings.de.ts +26 -0
  263. package/src/i18n/exposure-settings.es.ts +28 -0
  264. package/src/i18n/exposure-settings.fr.ts +29 -0
  265. package/src/i18n/exposure-settings.he.ts +28 -0
  266. package/src/i18n/exposure-settings.hi.ts +31 -0
  267. package/src/i18n/exposure-settings.ja.ts +31 -0
  268. package/src/i18n/exposure-settings.ko.ts +31 -0
  269. package/src/i18n/exposure-settings.pt-BR.ts +31 -0
  270. package/src/i18n/exposure-settings.ru.ts +31 -0
  271. package/src/i18n/exposure-settings.zh-CN.ts +31 -0
  272. package/src/i18n/framing.ar.ts +78 -0
  273. package/src/i18n/framing.de.ts +73 -0
  274. package/src/i18n/framing.es.ts +78 -0
  275. package/src/i18n/framing.fr.ts +78 -0
  276. package/src/i18n/framing.he.ts +77 -0
  277. package/src/i18n/framing.hi.ts +82 -0
  278. package/src/i18n/framing.ja.ts +84 -0
  279. package/src/i18n/framing.ko.ts +82 -0
  280. package/src/i18n/framing.pt-BR.ts +84 -0
  281. package/src/i18n/framing.ru.ts +82 -0
  282. package/src/i18n/framing.zh-CN.ts +82 -0
  283. package/src/i18n/furniture.ar.ts +92 -0
  284. package/src/i18n/furniture.de.ts +93 -0
  285. package/src/i18n/furniture.es.ts +101 -0
  286. package/src/i18n/furniture.fr.ts +93 -0
  287. package/src/i18n/furniture.he.ts +101 -0
  288. package/src/i18n/furniture.hi.ts +101 -0
  289. package/src/i18n/furniture.ja.ts +101 -0
  290. package/src/i18n/furniture.ko.ts +101 -0
  291. package/src/i18n/furniture.pt-BR.ts +101 -0
  292. package/src/i18n/furniture.ru.ts +101 -0
  293. package/src/i18n/furniture.zh-CN.ts +101 -0
  294. package/src/i18n/held-prop.ar.ts +74 -0
  295. package/src/i18n/held-prop.de.ts +65 -0
  296. package/src/i18n/held-prop.es.ts +83 -0
  297. package/src/i18n/held-prop.fr.ts +74 -0
  298. package/src/i18n/held-prop.he.ts +73 -0
  299. package/src/i18n/held-prop.hi.ts +82 -0
  300. package/src/i18n/held-prop.ja.ts +84 -0
  301. package/src/i18n/held-prop.ko.ts +84 -0
  302. package/src/i18n/held-prop.pt-BR.ts +84 -0
  303. package/src/i18n/held-prop.ru.ts +82 -0
  304. package/src/i18n/held-prop.zh-CN.ts +82 -0
  305. package/src/i18n/index.ts +208 -0
  306. package/src/i18n/instrumentation.ar.ts +195 -0
  307. package/src/i18n/instrumentation.de.ts +195 -0
  308. package/src/i18n/instrumentation.es.ts +195 -0
  309. package/src/i18n/instrumentation.fr.ts +195 -0
  310. package/src/i18n/instrumentation.he.ts +195 -0
  311. package/src/i18n/instrumentation.hi.ts +195 -0
  312. package/src/i18n/instrumentation.ja.ts +195 -0
  313. package/src/i18n/instrumentation.ko.ts +195 -0
  314. package/src/i18n/instrumentation.pt-BR.ts +195 -0
  315. package/src/i18n/instrumentation.ru.ts +195 -0
  316. package/src/i18n/instrumentation.zh-CN.ts +195 -0
  317. package/src/i18n/lens.ar.ts +24 -0
  318. package/src/i18n/lens.de.ts +24 -0
  319. package/src/i18n/lens.es.ts +24 -0
  320. package/src/i18n/lens.fr.ts +24 -0
  321. package/src/i18n/lens.he.ts +24 -0
  322. package/src/i18n/lens.hi.ts +24 -0
  323. package/src/i18n/lens.ja.ts +24 -0
  324. package/src/i18n/lens.ko.ts +24 -0
  325. package/src/i18n/lens.pt-BR.ts +24 -0
  326. package/src/i18n/lens.ru.ts +25 -0
  327. package/src/i18n/lens.zh-CN.ts +24 -0
  328. package/src/i18n/lighting.ar.ts +86 -0
  329. package/src/i18n/lighting.de.ts +84 -0
  330. package/src/i18n/lighting.es.ts +89 -0
  331. package/src/i18n/lighting.fr.ts +84 -0
  332. package/src/i18n/lighting.he.ts +88 -0
  333. package/src/i18n/lighting.hi.ts +90 -0
  334. package/src/i18n/lighting.ja.ts +90 -0
  335. package/src/i18n/lighting.ko.ts +90 -0
  336. package/src/i18n/lighting.pt-BR.ts +90 -0
  337. package/src/i18n/lighting.ru.ts +88 -0
  338. package/src/i18n/lighting.zh-CN.ts +92 -0
  339. package/src/i18n/loop-subject.ar.ts +39 -0
  340. package/src/i18n/loop-subject.de.ts +39 -0
  341. package/src/i18n/loop-subject.es.ts +39 -0
  342. package/src/i18n/loop-subject.fr.ts +39 -0
  343. package/src/i18n/loop-subject.he.ts +39 -0
  344. package/src/i18n/loop-subject.hi.ts +39 -0
  345. package/src/i18n/loop-subject.ja.ts +39 -0
  346. package/src/i18n/loop-subject.ko.ts +39 -0
  347. package/src/i18n/loop-subject.pt-BR.ts +39 -0
  348. package/src/i18n/loop-subject.ru.ts +39 -0
  349. package/src/i18n/loop-subject.zh-CN.ts +39 -0
  350. package/src/i18n/materials.ar.ts +80 -0
  351. package/src/i18n/materials.de.ts +80 -0
  352. package/src/i18n/materials.es.ts +87 -0
  353. package/src/i18n/materials.fr.ts +80 -0
  354. package/src/i18n/materials.he.ts +86 -0
  355. package/src/i18n/materials.hi.ts +86 -0
  356. package/src/i18n/materials.ja.ts +88 -0
  357. package/src/i18n/materials.ko.ts +88 -0
  358. package/src/i18n/materials.pt-BR.ts +88 -0
  359. package/src/i18n/materials.ru.ts +86 -0
  360. package/src/i18n/materials.zh-CN.ts +86 -0
  361. package/src/i18n/mood.ar.ts +61 -0
  362. package/src/i18n/mood.de.ts +61 -0
  363. package/src/i18n/mood.es.ts +66 -0
  364. package/src/i18n/mood.fr.ts +61 -0
  365. package/src/i18n/mood.he.ts +64 -0
  366. package/src/i18n/mood.hi.ts +66 -0
  367. package/src/i18n/mood.ja.ts +66 -0
  368. package/src/i18n/mood.ko.ts +66 -0
  369. package/src/i18n/mood.pt-BR.ts +64 -0
  370. package/src/i18n/mood.ru.ts +64 -0
  371. package/src/i18n/mood.zh-CN.ts +64 -0
  372. package/src/i18n/music-genre.ar.ts +302 -0
  373. package/src/i18n/music-genre.de.ts +302 -0
  374. package/src/i18n/music-genre.es.ts +302 -0
  375. package/src/i18n/music-genre.fr.ts +302 -0
  376. package/src/i18n/music-genre.he.ts +302 -0
  377. package/src/i18n/music-genre.hi.ts +302 -0
  378. package/src/i18n/music-genre.ja.ts +302 -0
  379. package/src/i18n/music-genre.ko.ts +302 -0
  380. package/src/i18n/music-genre.pt-BR.ts +302 -0
  381. package/src/i18n/music-genre.ru.ts +302 -0
  382. package/src/i18n/music-genre.zh-CN.ts +302 -0
  383. package/src/i18n/music-mood.ar.ts +75 -0
  384. package/src/i18n/music-mood.de.ts +75 -0
  385. package/src/i18n/music-mood.es.ts +75 -0
  386. package/src/i18n/music-mood.fr.ts +75 -0
  387. package/src/i18n/music-mood.he.ts +75 -0
  388. package/src/i18n/music-mood.hi.ts +75 -0
  389. package/src/i18n/music-mood.ja.ts +75 -0
  390. package/src/i18n/music-mood.ko.ts +75 -0
  391. package/src/i18n/music-mood.pt-BR.ts +75 -0
  392. package/src/i18n/music-mood.ru.ts +75 -0
  393. package/src/i18n/music-mood.zh-CN.ts +75 -0
  394. package/src/i18n/person.ar.ts +638 -0
  395. package/src/i18n/person.de.ts +629 -0
  396. package/src/i18n/person.es.ts +645 -0
  397. package/src/i18n/person.fr.ts +621 -0
  398. package/src/i18n/person.he.ts +656 -0
  399. package/src/i18n/person.hi.ts +654 -0
  400. package/src/i18n/person.ja.ts +662 -0
  401. package/src/i18n/person.ko.ts +662 -0
  402. package/src/i18n/person.pt-BR.ts +656 -0
  403. package/src/i18n/person.ru.ts +656 -0
  404. package/src/i18n/person.zh-CN.ts +656 -0
  405. package/src/i18n/photo-genre.ar.ts +58 -0
  406. package/src/i18n/photo-genre.de.ts +52 -0
  407. package/src/i18n/photo-genre.es.ts +64 -0
  408. package/src/i18n/photo-genre.fr.ts +58 -0
  409. package/src/i18n/photo-genre.he.ts +62 -0
  410. package/src/i18n/photo-genre.hi.ts +63 -0
  411. package/src/i18n/photo-genre.ja.ts +65 -0
  412. package/src/i18n/photo-genre.ko.ts +63 -0
  413. package/src/i18n/photo-genre.pt-BR.ts +65 -0
  414. package/src/i18n/photo-genre.ru.ts +63 -0
  415. package/src/i18n/photo-genre.zh-CN.ts +63 -0
  416. package/src/i18n/photographer.ar.ts +75 -0
  417. package/src/i18n/photographer.de.ts +74 -0
  418. package/src/i18n/photographer.es.ts +77 -0
  419. package/src/i18n/photographer.fr.ts +77 -0
  420. package/src/i18n/photographer.he.ts +78 -0
  421. package/src/i18n/photographer.hi.ts +80 -0
  422. package/src/i18n/photographer.ja.ts +84 -0
  423. package/src/i18n/photographer.ko.ts +84 -0
  424. package/src/i18n/photographer.pt-BR.ts +83 -0
  425. package/src/i18n/photographer.ru.ts +78 -0
  426. package/src/i18n/photographer.zh-CN.ts +78 -0
  427. package/src/i18n/pose.ar.ts +95 -0
  428. package/src/i18n/pose.de.ts +96 -0
  429. package/src/i18n/pose.es.ts +104 -0
  430. package/src/i18n/pose.fr.ts +96 -0
  431. package/src/i18n/pose.he.ts +104 -0
  432. package/src/i18n/pose.hi.ts +104 -0
  433. package/src/i18n/pose.ja.ts +104 -0
  434. package/src/i18n/pose.ko.ts +104 -0
  435. package/src/i18n/pose.pt-BR.ts +104 -0
  436. package/src/i18n/pose.ru.ts +104 -0
  437. package/src/i18n/pose.zh-CN.ts +104 -0
  438. package/src/i18n/post-process-effects.ar.ts +25 -0
  439. package/src/i18n/post-process-effects.de.ts +24 -0
  440. package/src/i18n/post-process-effects.es.ts +26 -0
  441. package/src/i18n/post-process-effects.fr.ts +24 -0
  442. package/src/i18n/post-process-effects.he.ts +24 -0
  443. package/src/i18n/post-process-effects.hi.ts +26 -0
  444. package/src/i18n/post-process-effects.ja.ts +26 -0
  445. package/src/i18n/post-process-effects.ko.ts +26 -0
  446. package/src/i18n/post-process-effects.pt-BR.ts +24 -0
  447. package/src/i18n/post-process-effects.ru.ts +24 -0
  448. package/src/i18n/post-process-effects.zh-CN.ts +24 -0
  449. package/src/i18n/render-quality.ar.ts +34 -0
  450. package/src/i18n/render-quality.de.ts +30 -0
  451. package/src/i18n/render-quality.es.ts +35 -0
  452. package/src/i18n/render-quality.fr.ts +34 -0
  453. package/src/i18n/render-quality.he.ts +33 -0
  454. package/src/i18n/render-quality.hi.ts +39 -0
  455. package/src/i18n/render-quality.ja.ts +39 -0
  456. package/src/i18n/render-quality.ko.ts +39 -0
  457. package/src/i18n/render-quality.pt-BR.ts +37 -0
  458. package/src/i18n/render-quality.ru.ts +37 -0
  459. package/src/i18n/render-quality.zh-CN.ts +37 -0
  460. package/src/i18n/seasons.ar.ts +10 -0
  461. package/src/i18n/seasons.de.ts +10 -0
  462. package/src/i18n/seasons.es.ts +10 -0
  463. package/src/i18n/seasons.fr.ts +10 -0
  464. package/src/i18n/seasons.he.ts +10 -0
  465. package/src/i18n/seasons.hi.ts +10 -0
  466. package/src/i18n/seasons.ja.ts +10 -0
  467. package/src/i18n/seasons.ko.ts +10 -0
  468. package/src/i18n/seasons.pt-BR.ts +10 -0
  469. package/src/i18n/seasons.ru.ts +10 -0
  470. package/src/i18n/seasons.zh-CN.ts +10 -0
  471. package/src/i18n/setting.ar.ts +73 -0
  472. package/src/i18n/setting.de.ts +73 -0
  473. package/src/i18n/setting.es.ts +77 -0
  474. package/src/i18n/setting.fr.ts +73 -0
  475. package/src/i18n/setting.he.ts +76 -0
  476. package/src/i18n/setting.hi.ts +76 -0
  477. package/src/i18n/setting.ja.ts +78 -0
  478. package/src/i18n/setting.ko.ts +76 -0
  479. package/src/i18n/setting.pt-BR.ts +78 -0
  480. package/src/i18n/setting.ru.ts +76 -0
  481. package/src/i18n/setting.zh-CN.ts +76 -0
  482. package/src/i18n/style.ar.ts +55 -0
  483. package/src/i18n/style.de.ts +54 -0
  484. package/src/i18n/style.es.ts +54 -0
  485. package/src/i18n/style.fr.ts +54 -0
  486. package/src/i18n/style.he.ts +54 -0
  487. package/src/i18n/style.hi.ts +54 -0
  488. package/src/i18n/style.ja.ts +54 -0
  489. package/src/i18n/style.ko.ts +54 -0
  490. package/src/i18n/style.pt-BR.ts +56 -0
  491. package/src/i18n/style.ru.ts +54 -0
  492. package/src/i18n/style.zh-CN.ts +54 -0
  493. package/src/i18n/styling.ar.ts +295 -0
  494. package/src/i18n/styling.de.ts +285 -0
  495. package/src/i18n/styling.es.ts +317 -0
  496. package/src/i18n/styling.fr.ts +285 -0
  497. package/src/i18n/styling.he.ts +307 -0
  498. package/src/i18n/styling.hi.ts +323 -0
  499. package/src/i18n/styling.ja.ts +317 -0
  500. package/src/i18n/styling.ko.ts +311 -0
  501. package/src/i18n/styling.pt-BR.ts +301 -0
  502. package/src/i18n/styling.ru.ts +301 -0
  503. package/src/i18n/styling.zh-CN.ts +307 -0
  504. package/src/i18n/temporal.ar.ts +31 -0
  505. package/src/i18n/temporal.de.ts +24 -0
  506. package/src/i18n/temporal.es.ts +27 -0
  507. package/src/i18n/temporal.fr.ts +28 -0
  508. package/src/i18n/temporal.he.ts +31 -0
  509. package/src/i18n/temporal.hi.ts +31 -0
  510. package/src/i18n/temporal.ja.ts +31 -0
  511. package/src/i18n/temporal.ko.ts +31 -0
  512. package/src/i18n/temporal.pt-BR.ts +31 -0
  513. package/src/i18n/temporal.ru.ts +31 -0
  514. package/src/i18n/temporal.zh-CN.ts +31 -0
  515. package/src/i18n/transitions.ar.ts +97 -0
  516. package/src/i18n/transitions.de.ts +97 -0
  517. package/src/i18n/transitions.es.ts +97 -0
  518. package/src/i18n/transitions.fr.ts +97 -0
  519. package/src/i18n/transitions.he.ts +97 -0
  520. package/src/i18n/transitions.hi.ts +97 -0
  521. package/src/i18n/transitions.ja.ts +97 -0
  522. package/src/i18n/transitions.ko.ts +97 -0
  523. package/src/i18n/transitions.pt-BR.ts +97 -0
  524. package/src/i18n/transitions.ru.ts +97 -0
  525. package/src/i18n/transitions.zh-CN.ts +97 -0
  526. package/src/i18n/types.ts +158 -0
  527. package/src/i18n/vehicles.ar.ts +137 -0
  528. package/src/i18n/vehicles.de.ts +125 -0
  529. package/src/i18n/vehicles.es.ts +138 -0
  530. package/src/i18n/vehicles.fr.ts +125 -0
  531. package/src/i18n/vehicles.he.ts +136 -0
  532. package/src/i18n/vehicles.hi.ts +138 -0
  533. package/src/i18n/vehicles.ja.ts +138 -0
  534. package/src/i18n/vehicles.ko.ts +138 -0
  535. package/src/i18n/vehicles.pt-BR.ts +136 -0
  536. package/src/i18n/vehicles.ru.ts +136 -0
  537. package/src/i18n/vehicles.zh-CN.ts +136 -0
  538. package/src/i18n/voice-character.ar.ts +126 -0
  539. package/src/i18n/voice-character.de.ts +126 -0
  540. package/src/i18n/voice-character.es.ts +126 -0
  541. package/src/i18n/voice-character.fr.ts +126 -0
  542. package/src/i18n/voice-character.he.ts +126 -0
  543. package/src/i18n/voice-character.hi.ts +126 -0
  544. package/src/i18n/voice-character.ja.ts +126 -0
  545. package/src/i18n/voice-character.ko.ts +126 -0
  546. package/src/i18n/voice-character.pt-BR.ts +126 -0
  547. package/src/i18n/voice-character.ru.ts +126 -0
  548. package/src/i18n/voice-character.zh-CN.ts +126 -0
  549. package/src/i18n/voice-delivery.ar.ts +77 -0
  550. package/src/i18n/voice-delivery.de.ts +77 -0
  551. package/src/i18n/voice-delivery.es.ts +77 -0
  552. package/src/i18n/voice-delivery.fr.ts +77 -0
  553. package/src/i18n/voice-delivery.he.ts +77 -0
  554. package/src/i18n/voice-delivery.hi.ts +77 -0
  555. package/src/i18n/voice-delivery.ja.ts +77 -0
  556. package/src/i18n/voice-delivery.ko.ts +77 -0
  557. package/src/i18n/voice-delivery.pt-BR.ts +77 -0
  558. package/src/i18n/voice-delivery.ru.ts +77 -0
  559. package/src/i18n/voice-delivery.zh-CN.ts +77 -0
  560. package/src/i18n/weapons.ar.ts +115 -0
  561. package/src/i18n/weapons.de.ts +114 -0
  562. package/src/i18n/weapons.es.ts +116 -0
  563. package/src/i18n/weapons.fr.ts +103 -0
  564. package/src/i18n/weapons.he.ts +114 -0
  565. package/src/i18n/weapons.hi.ts +116 -0
  566. package/src/i18n/weapons.ja.ts +116 -0
  567. package/src/i18n/weapons.ko.ts +116 -0
  568. package/src/i18n/weapons.pt-BR.ts +114 -0
  569. package/src/i18n/weapons.ru.ts +114 -0
  570. package/src/i18n/weapons.zh-CN.ts +114 -0
  571. package/src/image-critic-node.ts +61 -0
  572. package/src/image-critic-types.ts +40 -0
  573. package/src/index.ts +866 -0
  574. package/src/inject-upstream.ts +15 -0
  575. package/src/inpaint-region.ts +51 -0
  576. package/src/json-evaluator.ts +732 -0
  577. package/src/json-path.ts +52 -0
  578. package/src/lip-sync-pricing.ts +90 -0
  579. package/src/list-merge.ts +40 -0
  580. package/src/list-sort.ts +122 -0
  581. package/src/list-source-resolver.ts +50 -0
  582. package/src/llm-models.ts +245 -0
  583. package/src/location-mention-slug.ts +291 -0
  584. package/src/location-preset-catalog-map.ts +128 -0
  585. package/src/loop-delimiter.ts +73 -0
  586. package/src/lora-routing.ts +95 -0
  587. package/src/lottie-overlay-catalog.ts +175 -0
  588. package/src/lottie-slots.ts +309 -0
  589. package/src/model-catalog.ts +2386 -0
  590. package/src/model-constants.ts +1910 -0
  591. package/src/model-tree.ts +120 -0
  592. package/src/monetization.ts +15 -0
  593. package/src/multi-pick.ts +42 -0
  594. package/src/node-default-mappings.ts +262 -0
  595. package/src/node-mappable-fields.ts +70 -0
  596. package/src/node-preset-export.ts +56 -0
  597. package/src/node-preset-extract.ts +147 -0
  598. package/src/node-refs.ts +253 -0
  599. package/src/node-runtime-keys.ts +117 -0
  600. package/src/object-aspect-defaults.ts +72 -0
  601. package/src/object-picker-types.ts +22 -0
  602. package/src/parameter-node-value.ts +284 -0
  603. package/src/pinterest-url.ts +28 -0
  604. package/src/pipeline-chat.ts +72 -0
  605. package/src/pipeline-defaults.ts +318 -0
  606. package/src/pipeline-events.ts +162 -0
  607. package/src/pipeline-state-types.ts +196 -0
  608. package/src/pipeline-types.ts +647 -0
  609. package/src/pipeline-validation.ts +87 -0
  610. package/src/presentation-types.ts +23 -0
  611. package/src/presentation-utils.ts +397 -0
  612. package/src/producer-types.ts +188 -0
  613. package/src/progress-curve.ts +99 -0
  614. package/src/provider-directive-defaults.ts +69 -0
  615. package/src/reduce-strategy-registry.ts +121 -0
  616. package/src/reference-board-templates.ts +81 -0
  617. package/src/reference-roles.ts +153 -0
  618. package/src/reference-sheet/__tests__/board-to-column.test.ts +20 -0
  619. package/src/reference-sheet/__tests__/catalog.test.ts +50 -0
  620. package/src/reference-sheet/__tests__/cost.test.ts +38 -0
  621. package/src/reference-sheet/__tests__/no-drift.test.ts +28 -0
  622. package/src/reference-sheet/__tests__/panel-plan.test.ts +61 -0
  623. package/src/reference-sheet/__tests__/panel-prompts.test.ts +17 -0
  624. package/src/reference-sheet/__tests__/plan-generation.test.ts +72 -0
  625. package/src/reference-sheet/__tests__/presets.test.ts +54 -0
  626. package/src/reference-sheet/__tests__/types.test.ts +24 -0
  627. package/src/reference-sheet/catalog.ts +144 -0
  628. package/src/reference-sheet/cost.ts +37 -0
  629. package/src/reference-sheet/credit-id.ts +7 -0
  630. package/src/reference-sheet/index.ts +8 -0
  631. package/src/reference-sheet/panel-plan.ts +65 -0
  632. package/src/reference-sheet/panel-prompts.ts +14 -0
  633. package/src/reference-sheet/plan-generation.ts +79 -0
  634. package/src/reference-sheet/presets.ts +77 -0
  635. package/src/reference-sheet/types.ts +92 -0
  636. package/src/repeat-types.ts +97 -0
  637. package/src/resolve-field-mappings.ts +119 -0
  638. package/src/route-filter.ts +80 -0
  639. package/src/scene-helper-types.ts +249 -0
  640. package/src/scene-node-types.ts +281 -0
  641. package/src/scraper-actors.ts +57 -0
  642. package/src/scraper-output-schemas.ts +25 -0
  643. package/src/seasons.ts +45 -0
  644. package/src/selector.ts +864 -0
  645. package/src/settled-with-limit.ts +42 -0
  646. package/src/shot-element.ts +43 -0
  647. package/src/social-media-specs.ts +121 -0
  648. package/src/social-post.ts +24 -0
  649. package/src/sub-workflow-validation.ts +78 -0
  650. package/src/supported-fonts.ts +40 -0
  651. package/src/surround.ts +113 -0
  652. package/src/switchx-pricing.ts +33 -0
  653. package/src/text-separators.ts +59 -0
  654. package/src/to-connected-references.ts +77 -0
  655. package/src/types.ts +272 -0
  656. package/src/variant-job-id.ts +17 -0
  657. package/src/vehicles.ts +213 -0
  658. package/src/video-analysis-pricing.ts +74 -0
  659. package/src/video-analysis.ts +127 -0
  660. package/src/video-duration.ts +25 -0
  661. package/src/voice-changer-models.ts +36 -0
  662. package/src/voice-matcher-types.ts +37 -0
  663. package/src/voices.ts +92 -0
  664. package/src/weapons.ts +190 -0
  665. package/src/workflow-export.ts +153 -0
@@ -0,0 +1,295 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ "makeup-natural": { label: "طبيعي", description: "مكياج بدون مكياج خفيف" },
5
+ "makeup-glamour": { label: "Glamour", description: "مظهر Glam كامل مصقول" },
6
+ "makeup-smoky": { label: "عين دخانية", description: "مكياج عيون داكن درامي" },
7
+ "makeup-bold-lips": { label: "شفاه جريئة", description: "أحمر شفاه أحمر أو داكن قوي" },
8
+ "makeup-editorial": { label: "تحريري", description: "مكياج أزياء طليعي" },
9
+ "makeup-goth": { label: "Goth", description: "جمالية Goth داكنة" },
10
+ "makeup-dewy": { label: "توهج Dewy", description: "تركيز على بشرة طازجة متوهجة" },
11
+
12
+ "eyewear-sunglasses": { label: "نظارات شمسية", description: "نظارات شمسية داكنة عامة" },
13
+ "eyewear-aviators": { label: "Aviators", description: "نظارات Aviator كلاسيكية" },
14
+ "eyewear-cat-eye": { label: "Cat-Eye", description: "إطارات Cat-Eye قديمة" },
15
+ "eyewear-round": { label: "مدورة / John Lennon", description: "نظارات بإطار سلكي مدور" },
16
+ "eyewear-fashion": { label: "نظارات أزياء", description: "إطارات مصممة جريئة" },
17
+ "eyewear-sport": { label: "نظارات رياضية", description: "نظارات رياضية ملتفة" },
18
+
19
+ "headwear-beanie": { label: "Beanie", description: "قبعة Beanie منسوجة" },
20
+ "headwear-baseball-cap": { label: "قبعة بيسبول", description: "قبعة بحافة منحنية" },
21
+ "headwear-fedora": { label: "Fedora", description: "Fedora بحافة" },
22
+ "headwear-sun-hat": { label: "قبعة شمس", description: "قبعة شمس عريضة الحافة" },
23
+ "headwear-headband": { label: "عصابة شعر", description: "عصابة شعر" },
24
+ "headwear-bandana": { label: "بندانة", description: "بندانة معقودة حول الرأس" },
25
+ "headwear-hood": { label: "غطاء رأس", description: "غطاء رأس Hoodie مرفوع" },
26
+ "headwear-crown": { label: "تاج", description: "تاج ملكي أو زخرفي" },
27
+ "headwear-helmet": { label: "خوذة", description: "خوذة واقية" },
28
+ "headwear-veil": { label: "حجاب", description: "حجاب متدل على الوجه/الشعر" },
29
+
30
+ "cut-pixie": { label: "Pixie", description: "قصة Pixie قصيرة" },
31
+ "cut-buzz-cut": { label: "Buzz Cut", description: "Buzz Cut قصير جدا" },
32
+ "cut-crew-cut": { label: "Crew Cut", description: "Crew Cut قصير كلاسيكي" },
33
+ "cut-shaved": { label: "محلوق", description: "محلوق بالكامل" },
34
+ "cut-undercut": { label: "Undercut", description: "جوانب قصيرة، أعلى أطول" },
35
+ "cut-faux-hawk": { label: "Faux Hawk", description: "شريط مركزي مرفوع، جوانب باهتة" },
36
+ "cut-mohawk": { label: "Mohawk", description: "جوانب محلوقة، شريط مركزي طويل" },
37
+ "cut-pompadour": { label: "Pompadour", description: "ممشط للأعلى وللخلف، حجم في الأمام" },
38
+ "cut-short": { label: "قصير", description: "قصة قصيرة عامة" },
39
+ "cut-short-curly": { label: "قصير مجعد", description: "شكل مجعد قصير بطبقات" },
40
+
41
+ "cut-micro-bob": { label: "Micro Bob", description: "Bob قصير جدا بطول الأذن" },
42
+ "cut-french-bob": { label: "French Bob", description: "Bob فرنسي بطول الفك بقصة Blunt، غالبا مع Bangs" },
43
+ "cut-bob": { label: "Bob", description: "قصة Bob بطول الذقن" },
44
+ "cut-lob": { label: "Lob", description: "Bob طويل بطول الترقوة" },
45
+
46
+ "cut-mullet": { label: "Mullet", description: "قصير من الأعلى والجوانب، طويل من الخلف" },
47
+ "cut-wolf-cut": { label: "Wolf Cut", description: "Mullet بطبقات أشعث مع Fringe" },
48
+
49
+ "cut-bangs": { label: "Bangs Blunt", description: "Bangs مستقيمة عبر الجبهة" },
50
+ "cut-curtain-bangs": { label: "Curtain Bangs", description: "Bangs مفترقة في المنتصف تؤطر الوجه" },
51
+ "cut-wispy-bangs": { label: "Wispy Bangs", description: "Fringe رفيع، متشظ، هوائي" },
52
+ "cut-side-swept": { label: "Side-Swept", description: "يقع عبر الوجه فوق عين واحدة" },
53
+
54
+ "cut-slicked-back": { label: "ممشط للخلف", description: "ممشط مباشرة للخلف، مصقول" },
55
+ "cut-bardot-tendrils": { label: "Bardot Tendrils", description: "ممشط للخلف مع خصلات تؤطر الوجه" },
56
+ "cut-ponytail": { label: "ذيل حصان (منخفض)", description: "ذيل حصان منخفض ممشط للخلف" },
57
+ "cut-high-ponytail": { label: "ذيل حصان عال", description: "ذيل حصان معقود عاليا على التاج" },
58
+ "cut-half-up": { label: "نصف لأعلى نصف لأسفل", description: "الأعلى ممشط للخلف، الباقي يتدفق للأسفل" },
59
+ "cut-bun": { label: "كعكة", description: "كعكة كلاسيكية منخفضة أو متوسطة" },
60
+ "cut-top-knot": { label: "عقدة علوية", description: "كعكة معقودة عاليا على التاج" },
61
+ "cut-space-buns": { label: "كعكات الفضاء", description: "كعكتان متماثلتان على كل جانب" },
62
+
63
+ "cut-braids": { label: "ضفائر", description: "ضفائر منسوجة فضفاضة متعددة" },
64
+ "cut-single-braid": { label: "ضفيرة واحدة", description: "ضفيرة واحدة طويلة على الظهر" },
65
+ "cut-two-braids": { label: "ضفيرتان", description: "ضفائر Pigtail على كل جانب" },
66
+ "cut-french-braid": { label: "ضفيرة فرنسية", description: "منسوجة مسطحة على فروة الرأس" },
67
+ "cut-dutch-braid": { label: "ضفيرة هولندية", description: "ضفيرة فرنسية مرفوعة معكوسة" },
68
+ "cut-fishtail-braid": { label: "ضفيرة ذيل سمكة", description: "نسج رفيع بخصلتين" },
69
+ "cut-box-braids": { label: "ضفائر Box", description: "ضفائر فردية مقسمة" },
70
+ "cut-crown-braid": { label: "ضفيرة تاج", description: "ضفيرة ملفوفة حول الرأس" },
71
+ "cut-cornrows": { label: "Cornrows", description: "نمط Cornrow مضفر" },
72
+
73
+ "cut-dreadlocks": { label: "Dreadlocks", description: "Locs متشابكة كالحبال" },
74
+ "cut-sisterlocks": { label: "Sisterlocks", description: "Micro-locs رفيعة مقسمة بدقة" },
75
+
76
+ "hair-wet": { label: "مبلل", description: "شعر مبلل ينقط الماء" },
77
+ "hair-damp": { label: "رطب", description: "شعر مغسول للتو رطب" },
78
+ "hair-messy": { label: "أشعث", description: "أشعث، فوضوي" },
79
+ "hair-tousled": { label: "متشعث", description: "متشعث قليلا، مرتدى" },
80
+ "hair-bedhead": { label: "Bedhead", description: "مسطح من جانب كأنه استيقظ للتو" },
81
+ "hair-windswept": { label: "تذروه الرياح", description: "تذروه الرياح، شعر في حركة" },
82
+ "hair-voluminous": { label: "حجم كبير", description: "حجم كبير، Blown-out" },
83
+ "hair-sleek": { label: "أملس", description: "مستقيم أملس كالزجاج" },
84
+ "hair-frizzy": { label: "متجعد متشابك", description: "هالة من التجعد" },
85
+ "hair-strands-on-face": { label: "خصلات على الوجه", description: "خصلات فضفاضة عبر الوجه" },
86
+ "hair-tucked-behind-ear": { label: "مدسوس خلف الأذن", description: "مدفوع خلف أذن واحدة" },
87
+ "hair-flowing": { label: "متدفق", description: "حركة طويلة متدفقة" },
88
+
89
+ "treatment-babylights": { label: "Babylights", description: "Highlights رقيقة جدا، فائقة الدقة" },
90
+ "treatment-balayage": { label: "Balayage", description: "Highlights مرسومة يدويا" },
91
+ "treatment-ombre": { label: "Ombré", description: "تدرج من جذور داكنة لأطراف فاتحة" },
92
+ "treatment-sombre": { label: "Sombré", description: "Ombré ناعم خفيف" },
93
+ "treatment-highlights": { label: "Highlights", description: "Highlights كلاسيكية بـ Foil" },
94
+ "treatment-lowlights": { label: "Lowlights", description: "خطوط بدرجة أغمق" },
95
+ "treatment-rooted": { label: "Rooted", description: "مظهر نمو جذور مرئي" },
96
+
97
+ "jewelry-subtle": { label: "خفيف", description: "مجوهرات خفيفة، رقيقة" },
98
+ "jewelry-statement": { label: "مميز", description: "قطعة مميزة جريئة" },
99
+ "jewelry-gold": { label: "ذهب", description: "قلادة ذهبية + أقراط" },
100
+ "jewelry-silver": { label: "فضة", description: "قلادة فضية + أقراط" },
101
+ "jewelry-layered": { label: "متراكب", description: "قلائد / سلاسل متراكبة" },
102
+ "jewelry-pearl": { label: "لؤلؤ", description: "قلادة / أقراط لؤلؤ" },
103
+ "jewelry-chunky": { label: "ضخم", description: "سلاسل ضخمة وخواتم" },
104
+ "jewelry-smart-watch": { label: "ساعة ذكية", description: "ساعة ذكية حديثة على المعصم" },
105
+ "jewelry-choker-leather": { label: "Choker جلدي", description: "Choker جلدي أسود قريب من الحلق" },
106
+ "jewelry-choker-velvet": { label: "Choker مخمل", description: "Choker شريط مخمل، أنيق وقديم" },
107
+ "jewelry-choker-chain": { label: "Choker بسلسلة", description: "Choker بسلسلة معدنية رفيعة" },
108
+ "jewelry-stud-earrings": { label: "أقراط Stud", description: "Studs بسيطة صغيرة" },
109
+ "jewelry-hoop-earrings": { label: "أقراط Hoop", description: "حلقات ذهب أو فضة" },
110
+ "jewelry-ear-cuff": { label: "Ear Cuff", description: "Cuff نحتي يصعد الغضروف" },
111
+ "jewelry-septum-ring": { label: "حلقة Septum", description: "حلقة أنف Septum" },
112
+ "jewelry-body-chain": { label: "سلسلة جسم", description: "سلسلة معدنية رفيعة عبر الجذع" },
113
+
114
+ "nails-polished": { label: "مصقول", description: "أظافر صافية أو نيود مصقولة" },
115
+ "nails-red": { label: "أحمر", description: "طلاء أظافر أحمر زاه" },
116
+ "nails-dark": { label: "داكن", description: "أظافر داكنة / سوداء" },
117
+ "nails-long-acrylic": { label: "Acrylic طويل", description: "أظافر Acrylic طويلة" },
118
+ "nails-french": { label: "أطراف فرنسية", description: "مانيكير فرنسي كلاسيكي" },
119
+
120
+ "face-paint-subtle": { label: "طلاء جسم خفيف", description: "لمسات طلاء جسم / وجه خفيفة" },
121
+ "face-paint-dramatic": { label: "طلاء وجه درامي", description: "طلاء وجه فني جريء" },
122
+ "face-paint-costume": { label: "طلاء أزياء", description: "طلاء Cosplay / مسرحي" },
123
+ "face-paint-tribal": { label: "علامات قبلية", description: "علامات وجه مستوحاة من القبائل" },
124
+ "face-paint-warpaint": { label: "طلاء حرب", description: "خطوط طلاء حرب محارب" },
125
+
126
+ "fabric-silk": { label: "حرير", description: "ملابس حرير ناعمة لامعة" },
127
+ "fabric-cotton": { label: "قطن", description: "قطن مطفي ناعم" },
128
+ "fabric-denim": { label: "Denim", description: "Denim نيلي ثقيل" },
129
+ "fabric-leather": { label: "جلد", description: "جلد ناعم غني" },
130
+ "fabric-velvet": { label: "مخمل", description: "مخمل وثير" },
131
+ "fabric-satin": { label: "ساتان", description: "ساتان لامع" },
132
+ "fabric-lace": { label: "دانتيل", description: "دانتيل بنمط رقيق" },
133
+ "fabric-wool": { label: "صوف", description: "صوف منسوج دافئ" },
134
+ "fabric-linen": { label: "كتان", description: "كتان طبيعي بنسيج" },
135
+ "fabric-tweed": { label: "Tweed", description: "Tweed منسوج ريفي" },
136
+ "fabric-cashmere": { label: "Cashmere", description: "Cashmere ناعم فاخر" },
137
+ "fabric-chiffon": { label: "Chiffon", description: "Chiffon شفاف متدفق" },
138
+ "fabric-fur": { label: "فرو", description: "فرو وثير سميك" },
139
+ "fabric-sequins": { label: "Sequins", description: "قماش Sequin متلألئ" },
140
+ "fabric-latex": { label: "Latex", description: "Latex لامع" },
141
+
142
+ "outfit-school-uniform": { label: "زي مدرسي", description: "طقم زي مدرسي كلاسيكي" },
143
+ "outfit-business-suit": { label: "بدلة عمل", description: "بدلة عمل قطعتين مفصلة" },
144
+ "outfit-tuxedo": { label: "Tuxedo", description: "Tuxedo Black-Tie" },
145
+ "outfit-evening-gown": { label: "فستان سهرة", description: "فستان رسمي بطول الأرض" },
146
+ "outfit-wedding-dress": { label: "فستان زفاف", description: "فستان زفاف أبيض" },
147
+ "outfit-cocktail-dress": { label: "فستان كوكتيل", description: "فستان كوكتيل بطول الركبة" },
148
+ "outfit-lab-coat": { label: "معطف مختبر", description: "معطف مختبر طبي أبيض" },
149
+ "outfit-scrubs": { label: "Scrubs طبية", description: "Scrubs طبية بلون موحد" },
150
+ "outfit-military": { label: "بدلة عسكرية", description: "بدلة عسكرية بلون زيتي" },
151
+ "outfit-lifeguard": { label: "زي منقذ", description: "أعلى وشورت منقذ أحمر" },
152
+ "outfit-athleisure": { label: "طقم Athleisure", description: "أعلى وأسفل Athleisure متطابقان" },
153
+ "outfit-tracksuit": { label: "Tracksuit", description: "Tracksuit قطعتين بسحاب أمامي" },
154
+ "outfit-bikini": { label: "بيكيني", description: "ملابس سباحة قطعتين" },
155
+ "outfit-one-piece-swim": { label: "ملابس سباحة قطعة واحدة", description: "ملابس سباحة قطعة واحدة مفصلة" },
156
+ "outfit-lingerie": { label: "طقم Lingerie", description: "طقم Lingerie متطابق" },
157
+ "outfit-pajamas": { label: "بيجاما", description: "طقم بيجاما قطنية ناعمة" },
158
+ "outfit-bathrobe": { label: "روب حمام", description: "روب Terrycloth وثير" },
159
+ "outfit-kimono": { label: "كيمونو", description: "كيمونو ياباني تقليدي" },
160
+ "outfit-ballerina": { label: "Ballerina", description: "زي راقصة باليه كلاسيكي" },
161
+ "outfit-flapper": { label: "Flapper العشرينيات", description: "فستان Flapper مرصع بالخرز" },
162
+
163
+ "top-tshirt": { label: "تي شيرت", description: "تي شيرت Crewneck عادي" },
164
+ "top-tank": { label: "Tank Top", description: "Tank Top بياقة Scoop" },
165
+ "top-crop-top": { label: "Crop Top", description: "مقصوص فوق الوسط" },
166
+ "top-hoodie": { label: "Hoodie", description: "Hoodie Pullover" },
167
+ "top-sweater": { label: "Sweater", description: "Sweater منسوج Pullover" },
168
+ "top-turtleneck": { label: "Turtleneck", description: "Turtleneck بياقة عالية" },
169
+ "top-blouse": { label: "بلوزة", description: "بلوزة أنيقة متدفقة" },
170
+ "top-button-down": { label: "Button-Down", description: "قميص Button-Down مفصل" },
171
+ "top-polo": { label: "قميص Polo", description: "Polo بأكمام قصيرة" },
172
+ "top-tube-top": { label: "Tube Top", description: "Tube Top بدون حمالات" },
173
+ "top-camisole": { label: "Camisole", description: "Cami ساتان رفيع" },
174
+ "top-corset": { label: "Corset", description: "Corset بهيكل أعلى" },
175
+ "top-bra-top": { label: "Bra Top", description: "أعلى بأسلوب Bra يكشف الوسط" },
176
+ "top-sports-bra": { label: "Sports Bra", description: "Sports Bra رياضية" },
177
+ "top-bikini-top": { label: "أعلى بيكيني", description: "أعلى بيكيني مثلث" },
178
+
179
+ "bottom-jeans": { label: "Jeans", description: "Jeans أزرق كلاسيكي" },
180
+ "bottom-skinny-jeans": { label: "Jeans ضيق", description: "Jeans Skinny-cut" },
181
+ "bottom-wide-leg-jeans": { label: "Jeans واسع الساق", description: "Jeans Wide-leg فضفاض" },
182
+ "bottom-mom-jeans": { label: "Mom Jeans", description: "Mom Jeans عالي الخصر" },
183
+ "bottom-low-rise-jeans": { label: "Jeans منخفض الخصر", description: "Jeans منخفض الخصر" },
184
+ "bottom-chinos": { label: "Chinos", description: "بنطلون Chino مفصل" },
185
+ "bottom-trousers": { label: "بنطلون رسمي", description: "بنطلون رسمي مكوي" },
186
+ "bottom-cargo": { label: "بنطلون Cargo", description: "بنطلون Cargo بجيوب جانبية" },
187
+ "bottom-leggings": { label: "Leggings", description: "Leggings مفصلة" },
188
+ "bottom-sweatpants": { label: "Sweatpants", description: "Sweatpants مرتاحة" },
189
+ "bottom-shorts": { label: "Shorts", description: "Shorts بطول منتصف الفخذ" },
190
+ "bottom-denim-shorts": { label: "Shorts Denim", description: "Shorts Denim مقطوعة" },
191
+ "bottom-mini-skirt": { label: "تنورة قصيرة", description: "تنورة قصيرة فوق الركبة" },
192
+ "bottom-pleated-skirt": { label: "تنورة مطوية", description: "تنورة مطوية بطول منتصف الفخذ" },
193
+ "bottom-midi-skirt": { label: "تنورة Midi", description: "تنورة Midi بطول الساق" },
194
+ "bottom-maxi-skirt": { label: "تنورة Maxi", description: "تنورة Maxi بطول الأرض" },
195
+
196
+ "outerwear-leather-jacket": { label: "جاكيت جلدي", description: "جاكيت جلدي ضيق" },
197
+ "outerwear-denim-jacket": { label: "جاكيت Denim", description: "جاكيت Denim كلاسيكي" },
198
+ "outerwear-bomber": { label: "جاكيت Bomber", description: "جاكيت Bomber ساتان" },
199
+ "outerwear-blazer": { label: "Blazer", description: "Blazer مفصل" },
200
+ "outerwear-trench": { label: "معطف Trench", description: "معطف Trench بحزام" },
201
+ "outerwear-overcoat": { label: "معطف صوف", description: "معطف صوف طويل" },
202
+ "outerwear-puffer": { label: "جاكيت Puffer", description: "جاكيت Puffer مبطن" },
203
+ "outerwear-parka": { label: "Parka", description: "Parka بفرو وغطاء" },
204
+ "outerwear-cardigan": { label: "Cardigan", description: "Cardigan منسوج مفتوح من الأمام" },
205
+ "outerwear-vest": { label: "Vest", description: "Vest مفصل" },
206
+ "outerwear-kimono-robe": { label: "روب كيمونو", description: "روب كيمونو متدفق" },
207
+ "outerwear-varsity": { label: "جاكيت Varsity", description: "جاكيت Varsity بأحرف" },
208
+ "outerwear-fur-coat": { label: "معطف فرو", description: "معطف فرو وثير" },
209
+
210
+ "legwear-bare": { label: "أرجل عارية", description: "أرجل عارية، بدون جوارب" },
211
+ "legwear-sheer-tights": { label: "Tights شفاف", description: "Pantyhose شفافة نيود" },
212
+ "legwear-opaque-tights": { label: "Tights معتم", description: "Tights معتمة صلبة" },
213
+ "legwear-fishnets": { label: "Fishnets", description: "Fishnets شبكية ماسية" },
214
+ "legwear-thigh-highs": { label: "جوارب Thigh-High", description: "جوارب Thigh-High" },
215
+ "legwear-lace-top-stockings": { label: "جوارب بأعلى دانتيل", description: "Thigh-Highs بحافة دانتيل" },
216
+ "legwear-knee-highs": { label: "جوارب Knee-High", description: "جوارب Knee-High" },
217
+ "legwear-crew-socks": { label: "جوارب Crew", description: "جوارب Crew بطول منتصف الساق" },
218
+ "legwear-ankle-socks": { label: "جوارب كاحل", description: "جوارب كاحل قصيرة" },
219
+ "legwear-leg-warmers": { label: "Leg Warmers", description: "Leg Warmers منسوجة" },
220
+
221
+ "footwear-sneakers": { label: "أحذية رياضية", description: "أحذية رياضية Low-top" },
222
+ "footwear-high-tops": { label: "أحذية رياضية High-Top", description: "أحذية رياضية قماشية High-top" },
223
+ "footwear-running-shoes": { label: "أحذية ركض", description: "أحذية ركض رياضية" },
224
+ "footwear-stilettos": { label: "كعب Stiletto", description: "كعب Stiletto مدبب" },
225
+ "footwear-block-heels": { label: "كعب Block", description: "أحذية Pumps بكعب Block ضخم" },
226
+ "footwear-platforms": { label: "أحذية Platform", description: "نعال Platform طويلة" },
227
+ "footwear-ankle-boots": { label: "أحذية Ankle", description: "أحذية Ankle مفصلة" },
228
+ "footwear-knee-boots": { label: "أحذية Knee-High", description: "أحذية Knee-High طويلة" },
229
+ "footwear-thigh-high-boots": { label: "أحذية Thigh-High", description: "أحذية Thigh-High" },
230
+ "footwear-combat-boots": { label: "أحذية Combat", description: "أحذية Combat برباط" },
231
+ "footwear-chelsea-boots": { label: "أحذية Chelsea", description: "أحذية Chelsea Slip-on" },
232
+ "footwear-cowboy-boots": { label: "أحذية رعاة بقر", description: "أحذية رعاة بقر مدببة" },
233
+ "footwear-loafers": { label: "Loafers", description: "Loafers Penny مصقولة" },
234
+ "footwear-oxfords": { label: "Oxfords", description: "Oxfords جلدية برباط" },
235
+ "footwear-sandals": { label: "صنادل", description: "صنادل مسطحة بأشرطة" },
236
+ "footwear-mules": { label: "Mules", description: "Mules Slip-on بدون ظهر" },
237
+ "footwear-flip-flops": { label: "Flip-Flops", description: "Flip-Flops مطاطية كاجوال" },
238
+ "footwear-ballet-flats": { label: "Ballet Flats", description: "Ballet Flats Slip-on" },
239
+ "footwear-barefoot": { label: "حاف", description: "بدون أحذية — حاف" },
240
+
241
+ "state-oversized": { label: "Oversized", description: "تناسب Oversized فضفاض" },
242
+ "state-fitted": { label: "محكم", description: "صورة ظلية محكمة الشكل" },
243
+ "state-cropped": { label: "مقصوص", description: "أعلى مقصوص عند الوسط" },
244
+ "state-sheer": { label: "شفاف", description: "قماش شفاف" },
245
+ "state-wet": { label: "مبلل", description: "مبلل، يلتصق بالماء" },
246
+ "state-ripped": { label: "ممزق", description: "ممزق ومهترئ" },
247
+ "state-distressed": { label: "بال", description: "مرتدى، باهت، متضرر" },
248
+ "state-vintage": { label: "قديم", description: "مرتدى، طابع ريترو" },
249
+ "state-tucked-in": { label: "مدسوس", description: "أعلى مدسوس في الأسفل" },
250
+ "state-half-tucked": { label: "نصف مدسوس", description: "مدسوس من الأمام، فضفاض من الخلف" },
251
+ "state-off-shoulder": { label: "خارج الكتف", description: "منزلق عن كتف واحد" },
252
+ "state-unbuttoned": { label: "غير مزرر", description: "مفتوح / غير مزرر" },
253
+ "state-rolled-sleeves": { label: "أكمام مطوية", description: "أكمام مطوية للساعد" },
254
+ "state-layered": { label: "متعدد الطبقات", description: "طبقات متعددة متراكمة" },
255
+
256
+ "outfit-goth": { label: "Goth", description: "Goth داكن كامل: دانتيل أسود، جلد، مكياج داكن، سلاسل" },
257
+ "outfit-emo": { label: "Emo", description: "Emo بأسلوب أوائل الألفية: Jeans ضيق، تي شيرت فرقة، شعر مصبوغ، Eyeliner" },
258
+ "outfit-streetwear": { label: "Streetwear", description: "Streetwear حديث: Hoodie، بنطلون فضفاض، أحذية رياضية، قبعة دلو" },
259
+ "outfit-cyberpunk": { label: "Cyberpunk", description: "Cyberpunk مضاء بالنيون: ملابس تقنية، لمسات LED، طبقات شبكية" },
260
+ "outfit-cottagecore": { label: "Cottagecore", description: "جمالية Cottage باستورالية: فستان Prairie، مريلة، سلة" },
261
+ "outfit-dark-academia": { label: "Dark Academia", description: "عالم Oxford-Tweed: Blazer، Vest، أحذية Oxford" },
262
+ "outfit-anime-cosplay": { label: "Cosplay أنيمي", description: "زي مصمم على شخصية أنيمي معروفة" },
263
+ "outfit-nurse": { label: "ممرضة", description: "Scrubs طبية، سماعة طبيب، بطاقة Lanyard" },
264
+ "outfit-pirate": { label: "قرصان", description: "زي قرصان: قبعة Tricorn، حزام، قميص بكشكشة، أحذية" },
265
+ "outfit-fairy": { label: "جنية", description: "جنية فانتازيا: أجنحة شفافة، تاج زهور، فستان أثيري" },
266
+ "outfit-mermaid": { label: "حورية البحر", description: "حورية بحر فانتازيا: ذيل/تنورة بحراشف، أعلى من صدفة" },
267
+
268
+ "headwear-bucket-hat": { label: "قبعة دلو", description: "قبعة دلو كاجوال بحافة ناعمة" },
269
+ "headwear-beret": { label: "Beret", description: "Beret فرنسي مدور ناعم" },
270
+ "headwear-turban": { label: "عمامة", description: "عمامة ملفوفة على الرأس، ثقافية / موضة" },
271
+ "headwear-fascinator": { label: "Fascinator", description: "قطعة رأس صغيرة مزخرفة بأسلوب الزفاف الملكي" },
272
+ "headwear-bowler": { label: "قبعة Bowler", description: "قبعة Derby/Bowler بتاج مدور" },
273
+ "headwear-cowboy-hat": { label: "قبعة رعاة بقر", description: "قبعة رعاة بقر غربية عريضة الحافة" },
274
+
275
+ "footwear-crocs": { label: "Crocs", description: "Clogs ملونة من الراتنج، كاجوال" },
276
+ "footwear-birkenstocks": { label: "Birkenstocks", description: "صنادل بنعل من الفلين" },
277
+ "footwear-doc-martens": { label: "Doc Martens", description: "أحذية Combat جلدية ضخمة" },
278
+ "footwear-converse": { label: "Converse", description: "أحذية رياضية قماشية High-Top، كلاسيكية Chuck Taylor" },
279
+ "footwear-vans": { label: "Vans", description: "أحذية Skater رياضية Slip-on أو Low-Top" },
280
+ "footwear-espadrilles": { label: "Espadrilles", description: "حذاء صيفي قماشي بنعل من الجوت المنسوج" },
281
+
282
+ "bottom-overalls": { label: "Overalls", description: "Overalls / Dungarees من Denim" },
283
+ "bottom-culottes": { label: "Culottes", description: "بنطلون مقصوص واسع الساق، بطول منتصف الساق" },
284
+ "bottom-palazzo-pants": { label: "بنطلون Palazzo", description: "بنطلون متدفق واسع الساق" },
285
+ "bottom-harem-pants": { label: "بنطلون Harem", description: "بنطلون فضفاض بمؤخرة منخفضة" },
286
+ "bottom-bike-shorts": { label: "Shorts دراجة", description: "Shorts Lycra محكمة بطول منتصف الفخذ" },
287
+
288
+ "top-bodysuit": { label: "Bodysuit", description: "ملابس قطعة واحدة محكمة للجذع" },
289
+ "top-leotard": { label: "Leotard", description: "أعلى محكم بأكمام بأسلوب الرقص" },
290
+ "top-mesh-top": { label: "أعلى شبكي", description: "أعلى من قماش شبكي شفاف" },
291
+ "top-sheer-top": { label: "أعلى شفاف", description: "أعلى من قماش شفاف" },
292
+ "top-bandeau": { label: "Bandeau", description: "أعلى أنبوبي بدون حمالات" },
293
+ }
294
+
295
+ export default map
@@ -0,0 +1,285 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // Makeup
5
+ "makeup-natural": { label: "Natürlich", description: "Subtiles, kein-Make-up-Make-up" },
6
+ "makeup-glamour": { label: "Glamour", description: "Voller polierter Glam-Look" },
7
+ "makeup-smoky": { label: "Smoky-Eye-Look", description: "Dunkles dramatisches Augen-Make-up" },
8
+ "makeup-bold-lips": { label: "Knallige Lippen", description: "Starker roter oder dunkler Lippenstift" },
9
+ "makeup-editorial": { label: "Editorial", description: "Avantgardistisches Mode-Make-up" },
10
+ "makeup-goth": { label: "Goth", description: "Dunkle Goth-Ästhetik" },
11
+ "makeup-dewy": { label: "Tau-Glanz", description: "Strahlender frischer Hautfokus" },
12
+ // Eyewear
13
+ "eyewear-sunglasses": { label: "Sonnenbrille", description: "Generische dunkle Sonnenbrille" },
14
+ "eyewear-aviators": { label: "Pilotenbrille", description: "Klassische Pilotenbrille" },
15
+ "eyewear-cat-eye": { label: "Cat-Eye", description: "Vintage Cat-Eye-Fassungen" },
16
+ "eyewear-round": { label: "Rund / John Lennon", description: "Runde Drahtgestellbrille" },
17
+ "eyewear-fashion": { label: "Modebrille", description: "Auffällige Designerfassungen" },
18
+ "eyewear-sport": { label: "Sportbrille", description: "Wraparound-Sportbrille" },
19
+ // Headwear
20
+ "headwear-beanie": { label: "Mütze", description: "Strickmütze" },
21
+ "headwear-baseball-cap": { label: "Baseballkappe", description: "Cap mit gebogenem Schirm" },
22
+ "headwear-fedora": { label: "Fedora", description: "Fedora-Hut mit Krempe" },
23
+ "headwear-sun-hat": { label: "Sonnenhut", description: "Breitkrempiger Sonnenhut" },
24
+ "headwear-headband": { label: "Stirnband", description: "Haar-Stirnband" },
25
+ "headwear-bandana": { label: "Bandana", description: "Bandana um den Kopf gebunden" },
26
+ "headwear-hood": { label: "Kapuze", description: "Kapuzenpullover hochgezogen" },
27
+ "headwear-crown": { label: "Krone", description: "Königliche oder dekorative Krone" },
28
+ "headwear-helmet": { label: "Helm", description: "Schutzhelm" },
29
+ "headwear-veil": { label: "Schleier", description: "Schleier über Gesicht/Haar drapiert" },
30
+ "headwear-bucket-hat": { label: "Eimerhut", description: "Lässiger Eimerhut mit weicher Krempe" },
31
+ "headwear-beret": { label: "Baskenmütze", description: "Weiche runde französische Baskenmütze" },
32
+ "headwear-turban": { label: "Turban", description: "Gewickelter Kopfturban, kulturell / modisch" },
33
+ "headwear-fascinator": { label: "Fascinator", description: "Kleines dekoratives Kopfstück, Royal-Wedding-Stil" },
34
+ "headwear-bowler": { label: "Melone", description: "Melone mit runder Krone" },
35
+ "headwear-cowboy-hat": { label: "Cowboyhut", description: "Breitkrempiger Western-Cowboyhut" },
36
+ // Hair Cut
37
+ "cut-pixie": { label: "Pixie", description: "Kurzer, gestutzter Pixie-Cut" },
38
+ "cut-buzz-cut": { label: "Buzz Cut", description: "Sehr kurzer Buzz Cut" },
39
+ "cut-crew-cut": { label: "Crew Cut", description: "Kurzer abgestufter klassischer Crew Cut" },
40
+ "cut-shaved": { label: "Rasiert", description: "Vollständig rasiert" },
41
+ "cut-undercut": { label: "Undercut", description: "Kurze Seiten, längere Oberseite" },
42
+ "cut-faux-hawk": { label: "Faux Hawk", description: "Mittlerer Streifen erhoben, Seiten ausgedünnt" },
43
+ "cut-mohawk": { label: "Mohawk", description: "Rasierte Seiten, hoher Mittelstreifen" },
44
+ "cut-pompadour": { description: "Nach oben und hinten gekämmt, Volumen vorne" },
45
+ "cut-short": { label: "Kurz", description: "Generischer Kurzhaarschnitt" },
46
+ "cut-short-curly": { label: "Kurz Lockig", description: "Kurze stufige lockige Form" },
47
+ "cut-micro-bob": { label: "Micro-Bob", description: "Sehr kurzer ohrlanger Bob" },
48
+ "cut-french-bob": { label: "French Bob", description: "Kinnlanger blunt Bob, oft mit Pony" },
49
+ "cut-bob": { label: "Bob", description: "Kinnlanger Bob-Schnitt" },
50
+ "cut-lob": { label: "Long Bob", description: "Langer Bob, schlüsselbeinlang" },
51
+ "cut-mullet": { label: "Vokuhila", description: "Kurz oben und seitlich, lang hinten" },
52
+ "cut-wolf-cut": { label: "Wolf Cut", description: "Stufiger Vokuhila mit Pony" },
53
+ "cut-bangs": { label: "Blunt Pony", description: "Gerader Pony über die Stirn" },
54
+ "cut-curtain-bangs": { label: "Vorhangpony", description: "Mittelgescheitelter gesichtsumrahmender Pony" },
55
+ "cut-wispy-bangs": { label: "Wispy-Pony", description: "Dünner, fransiger, luftiger Pony" },
56
+ "cut-side-swept": { label: "Seitlich gekämmt", description: "Fällt über das Gesicht über ein Auge" },
57
+ "cut-slicked-back": { label: "Zurückgegelt", description: "Gerade nach hinten gegelt, poliert" },
58
+ "cut-bardot-tendrils": { label: "Bardot-Strähnen", description: "Zurückgesteckt mit gesichtsumrahmenden Strähnen" },
59
+ "cut-ponytail": { label: "Pferdeschwanz (tief)", description: "Tiefer zurückgebundener Pferdeschwanz" },
60
+ "cut-high-ponytail": { label: "Hoher Pferdeschwanz", description: "Pferdeschwanz hoch am Hinterkopf gebunden" },
61
+ "cut-half-up": { label: "Halb hoch halb runter", description: "Oberseite zurückgezogen, der Rest fällt herunter" },
62
+ "cut-bun": { label: "Dutt", description: "Klassischer tiefer oder mittlerer Dutt" },
63
+ "cut-top-knot": { label: "Top Knot", description: "Hoch am Hinterkopf gebundener Dutt" },
64
+ "cut-space-buns": { label: "Space Buns", description: "Zwei symmetrische Dutts seitlich" },
65
+ "cut-braids": { label: "Zöpfe", description: "Mehrere lose geflochtene Zöpfe" },
66
+ "cut-single-braid": { label: "Einzelner Zopf", description: "Ein langer Zopf den Rücken hinunter" },
67
+ "cut-two-braids": { label: "Zwei Zöpfe", description: "Geflochtene Zöpfe seitlich" },
68
+ "cut-french-braid": { label: "Französischer Zopf", description: "Flach an der Kopfhaut geflochten" },
69
+ "cut-dutch-braid": { label: "Holländischer Zopf", description: "Erhabener umgekehrter französischer Zopf" },
70
+ "cut-fishtail-braid": { label: "Fischgrätenzopf", description: "Feines Zwei-Strang-Geflecht" },
71
+ "cut-box-braids": { label: "Box Braids", description: "Einzeln abgeteilte Zöpfe" },
72
+ "cut-crown-braid": { label: "Kronenzopf", description: "Um den Kopf gewickelter Zopf" },
73
+ "cut-cornrows": { label: "Cornrows", description: "Eng geflochtenes Cornrow-Muster" },
74
+ "cut-dreadlocks": { label: "Dreadlocks", description: "Verfilzte seilartige Locs" },
75
+ "cut-sisterlocks": { label: "Sisterlocks", description: "Dünne, ordentlich abgeteilte Mikro-Locs" },
76
+ // Hair State
77
+ "hair-wet": { label: "Nass", description: "Durchnässtes, am Wasser haftendes Haar" },
78
+ "hair-damp": { label: "Feucht", description: "Frisch gewaschenes feuchtes Haar" },
79
+ "hair-messy": { label: "Wirr", description: "Zerzaust, ungekämmt" },
80
+ "hair-tousled": { label: "Verwuschelt", description: "Leicht zerzaust, eingelebt" },
81
+ "hair-bedhead": { label: "Bedhead", description: "Frisch aufgewachte plattgedrückte Seite" },
82
+ "hair-windswept": { label: "Windzerzaust", description: "Vom Wind zerzaust, Haar in Bewegung" },
83
+ "hair-voluminous": { label: "Voluminös", description: "Großes, geföhntes Volumen" },
84
+ "hair-sleek": { label: "Glatt", description: "Glasartig glatt" },
85
+ "hair-frizzy": { label: "Kraus", description: "Halo aus Kraushaar" },
86
+ "hair-strands-on-face": { label: "Strähnen im Gesicht", description: "Lose Strähnen über das Gesicht" },
87
+ "hair-tucked-behind-ear": { label: "Hinter das Ohr gestrichen", description: "Hinter ein Ohr geschoben" },
88
+ "hair-flowing": { label: "Fließend", description: "Lange fließende Bewegung" },
89
+ // Hair Treatment
90
+ "treatment-babylights": { label: "Babylights", description: "Ultrafeine, zarte Strähnchen" },
91
+ "treatment-balayage": { label: "Balayage", description: "Handgemalte Strähnchen" },
92
+ "treatment-ombre": { label: "Ombré", description: "Verlauf von dunklen Wurzeln zu hellen Spitzen" },
93
+ "treatment-sombre": { label: "Sombré", description: "Dezentes weiches Ombré" },
94
+ "treatment-highlights": { label: "Highlights", description: "Klassische Folien-Highlights" },
95
+ "treatment-lowlights": { label: "Lowlights", description: "Strähnchen in dunkleren Tönen" },
96
+ "treatment-rooted": { label: "Wurzelansatz", description: "Sichtbarer Wurzelansatz-Look" },
97
+ // Jewelry
98
+ "jewelry-subtle": { label: "Dezent", description: "Minimaler, zarter Schmuck" },
99
+ "jewelry-statement": { label: "Statement", description: "Markantes Statement-Schmuckstück" },
100
+ "jewelry-gold": { label: "Gold", description: "Goldkette + Ohrringe" },
101
+ "jewelry-silver": { label: "Silber", description: "Silberkette + Ohrringe" },
102
+ "jewelry-layered": { label: "Geschichtet", description: "Geschichtete Ketten" },
103
+ "jewelry-pearl": { label: "Perle", description: "Perlenkette / Perlenohrringe" },
104
+ "jewelry-chunky": { label: "Wuchtig", description: "Wuchtige Ketten und Ringe" },
105
+ "jewelry-smart-watch": { label: "Smartwatch", description: "Moderne Smartwatch am Handgelenk" },
106
+ "jewelry-choker-leather": { label: "Leder-Choker", description: "Schwarzer Lederchoker eng am Hals" },
107
+ "jewelry-choker-velvet": { label: "Samt-Choker", description: "Samtband-Choker, elegant und vintage" },
108
+ "jewelry-choker-chain": { label: "Ketten-Choker", description: "Dünner Metallketten-Choker" },
109
+ "jewelry-stud-earrings": { label: "Ohrstecker", description: "Kleine einfache Stecker" },
110
+ "jewelry-hoop-earrings": { label: "Creolen", description: "Goldene oder silberne Creolen" },
111
+ "jewelry-ear-cuff": { label: "Ohrmanschette", description: "Skulpturale Manschette, die den Knorpel hochklettert" },
112
+ "jewelry-septum-ring": { label: "Septum-Ring", description: "Septum-Nasenring" },
113
+ "jewelry-body-chain": { label: "Körperkette", description: "Dünne metallische Kette über den Torso" },
114
+ // Nails
115
+ "nails-polished": { label: "Lackiert", description: "Klar oder nude lackierte Nägel" },
116
+ "nails-red": { label: "Rot", description: "Knallroter Nagellack" },
117
+ "nails-dark": { label: "Dunkel", description: "Dunkle / schwarze Nägel" },
118
+ "nails-long-acrylic": { label: "Lange Acryl", description: "Lange Acrylnägel" },
119
+ "nails-french": { label: "French Tips", description: "Klassische French Manicure" },
120
+ // Face Paint
121
+ "face-paint-subtle": { label: "Dezente Bodypaint", description: "Subtile Body-/Face-Paint-Akzente" },
122
+ "face-paint-dramatic": { label: "Dramatische Gesichtsbemalung", description: "Kräftige künstlerische Gesichtsbemalung" },
123
+ "face-paint-costume": { label: "Kostümbemalung", description: "Cosplay-/Theaterfarbe" },
124
+ "face-paint-tribal": { label: "Tribal-Markierungen", description: "Tribal-inspirierte Gesichtsmarkierungen" },
125
+ "face-paint-warpaint": { label: "Kriegsbemalung", description: "Krieger-Kriegsbemalung-Streifen" },
126
+ // Fabric
127
+ "fabric-silk": { label: "Seide", description: "Glatte glänzende Seidenkleidung" },
128
+ "fabric-cotton": { label: "Baumwolle", description: "Weiche matte Baumwolle" },
129
+ "fabric-denim": { label: "Denim", description: "Schwerer Indigo-Denim" },
130
+ "fabric-leather": { label: "Leder", description: "Reichhaltiges geschmeidiges Leder" },
131
+ "fabric-velvet": { label: "Samt", description: "Plüschiger Samt" },
132
+ "fabric-satin": { label: "Satin", description: "Glänzender Satin" },
133
+ "fabric-lace": { label: "Spitze", description: "Zarte gemusterte Spitze" },
134
+ "fabric-wool": { label: "Wolle", description: "Warme gewebte Wolle" },
135
+ "fabric-linen": { label: "Leinen", description: "Natürliches strukturiertes Leinen" },
136
+ "fabric-tweed": { label: "Tweed", description: "Rustikaler gewebter Tweed" },
137
+ "fabric-cashmere": { label: "Kaschmir", description: "Luxuriöses weiches Kaschmir" },
138
+ "fabric-chiffon": { label: "Chiffon", description: "Durchscheinender fließender Chiffon" },
139
+ "fabric-fur": { label: "Pelz", description: "Dichter plüschiger Pelz" },
140
+ "fabric-sequins": { label: "Pailletten", description: "Funkelnder Paillettenstoff" },
141
+ "fabric-latex": { label: "Latex", description: "Glänzendes Latex" },
142
+ // Outfit
143
+ "outfit-school-uniform": { label: "Schuluniform", description: "Klassische Schuluniform" },
144
+ "outfit-business-suit": { label: "Business-Anzug", description: "Maßgeschneiderter zweiteiliger Business-Anzug" },
145
+ "outfit-tuxedo": { label: "Smoking", description: "Black-Tie-Smoking" },
146
+ "outfit-evening-gown": { label: "Abendkleid", description: "Bodenlanges formelles Abendkleid" },
147
+ "outfit-wedding-dress": { label: "Hochzeitskleid", description: "Weißes Hochzeitskleid" },
148
+ "outfit-cocktail-dress": { label: "Cocktailkleid", description: "Knielanges Cocktailkleid" },
149
+ "outfit-lab-coat": { label: "Laborkittel", description: "Weißer medizinischer Laborkittel" },
150
+ "outfit-scrubs": { label: "OP-Kleidung", description: "Einfarbige medizinische OP-Kleidung" },
151
+ "outfit-military": { label: "Militäruniform", description: "Olivgrüne Militäruniform" },
152
+ "outfit-lifeguard": { label: "Rettungsschwimmer-Outfit", description: "Rotes Rettungsschwimmer-Top und Shorts" },
153
+ "outfit-athleisure": { label: "Athleisure-Set", description: "Passendes Athleisure-Top und -Bottom" },
154
+ "outfit-tracksuit": { label: "Trainingsanzug", description: "Zweiteiliger Trainingsanzug mit Reißverschluss" },
155
+ "outfit-bikini": { label: "Bikini", description: "Zweiteiliger Badeanzug" },
156
+ "outfit-one-piece-swim": { label: "Einteiliger Badeanzug", description: "Figurnaher einteiliger Badeanzug" },
157
+ "outfit-lingerie": { label: "Dessous-Set", description: "Passendes Dessous-Set" },
158
+ "outfit-pajamas": { label: "Pyjama", description: "Weiches Baumwoll-Pyjama-Set" },
159
+ "outfit-bathrobe": { label: "Bademantel", description: "Plüschiger Frottee-Bademantel" },
160
+ "outfit-kimono": { label: "Kimono", description: "Traditioneller japanischer Kimono" },
161
+ "outfit-ballerina": { label: "Ballerina", description: "Klassisches Ballerina-Kostüm" },
162
+ "outfit-flapper": { label: "1920er Flapper", description: "Perlenbesetztes Flapper-Kleid" },
163
+ "outfit-goth": { label: "Goth", description: "Voller dunkler Goth-Look: schwarze Spitze, Leder, dunkles Make-up, Ketten" },
164
+ "outfit-emo": { label: "Emo", description: "Emo der frühen 2000er: Skinny Jeans, Band-T-Shirt, gefärbtes Haar, Eyeliner" },
165
+ "outfit-streetwear": { label: "Streetwear", description: "Moderne Streetwear: Hoodie, weite Hose, Sneaker, Bucket Hat" },
166
+ "outfit-cyberpunk": { label: "Cyberpunk", description: "Neonbeleuchtetes Cyberpunk: Tech-Wear, LED-Akzente, Mesh-Schichten" },
167
+ "outfit-cottagecore": { label: "Cottagecore", description: "Pastorale Cottage-Ästhetik: Prärie-Kleid, Schürze, Korb" },
168
+ "outfit-dark-academia": { label: "Dark Academia", description: "Oxford-Tweed-Gelehrter: Blazer, Weste, Oxford-Schuhe" },
169
+ "outfit-anime-cosplay": { label: "Anime-Cosplay", description: "Kostüm nach einer wiedererkennbaren Anime-Figur" },
170
+ "outfit-nurse": { label: "Krankenschwester", description: "Medizinische OP-Kleidung, Stethoskop, Schlüsselband-Ausweis" },
171
+ "outfit-pirate": { label: "Pirat", description: "Piratenkostüm: Dreispitzhut, Schärpe, Rüschenhemd, Stiefel" },
172
+ "outfit-fairy": { label: "Fee", description: "Fantasy-Fee: hauchdünne Flügel, Blumenkrone, ätherisches Kleid" },
173
+ "outfit-mermaid": { label: "Meerjungfrau", description: "Fantasy-Meerjungfrau: schuppiger Schwanz/Rock, Muschel-Top" },
174
+ // Top
175
+ "top-tshirt": { label: "T-Shirt", description: "Schlichtes Rundhals-T-Shirt" },
176
+ "top-tank": { label: "Tanktop", description: "U-Boot-Ausschnitt-Tanktop" },
177
+ "top-crop-top": { label: "Crop Top", description: "Bauchfreies Top" },
178
+ "top-hoodie": { label: "Hoodie", description: "Kapuzenpullover" },
179
+ "top-sweater": { label: "Pullover", description: "Strick-Pullover" },
180
+ "top-turtleneck": { label: "Rollkragen", description: "Hochgeschlossener Rollkragen" },
181
+ "top-blouse": { label: "Bluse", description: "Fließende elegante Bluse" },
182
+ "top-button-down": { label: "Knopfhemd", description: "Maßgeschneidertes Knopfhemd" },
183
+ "top-polo": { label: "Polohemd", description: "Kurzärmeliges Polohemd" },
184
+ "top-tube-top": { label: "Bandeau-Top", description: "Trägerloses Bandeau-Top" },
185
+ "top-camisole": { label: "Camisole", description: "Dünnes Satin-Camisole" },
186
+ "top-corset": { label: "Korsett", description: "Strukturiertes Korsetttop" },
187
+ "top-bra-top": { label: "BH-Top", description: "BH-Top mit freigelegter Mitte" },
188
+ "top-sports-bra": { label: "Sport-BH", description: "Athletischer Sport-BH" },
189
+ "top-bikini-top": { label: "Bikini-Oberteil", description: "Triangel-Bikini-Oberteil" },
190
+ "top-bodysuit": { label: "Body", description: "Eng anliegender einteiliger Oberkörper-Body" },
191
+ "top-leotard": { label: "Trikot", description: "Eng anliegendes Trikot im Tanzstil mit Ärmeln" },
192
+ "top-mesh-top": { label: "Netz-Top", description: "Top aus durchscheinendem Netzstoff" },
193
+ "top-sheer-top": { label: "Durchsichtiges Top", description: "Top aus durchscheinendem Stoff" },
194
+ "top-bandeau": { label: "Bandeau", description: "Trägerloses Bandeau-Top" },
195
+ // Bottom
196
+ "bottom-jeans": { label: "Jeans", description: "Klassische blaue Jeans" },
197
+ "bottom-skinny-jeans": { label: "Skinny Jeans", description: "Eng anliegende Skinny Jeans" },
198
+ "bottom-wide-leg-jeans": { label: "Wide-Leg-Jeans", description: "Weit geschnittene lockere Jeans" },
199
+ "bottom-mom-jeans": { label: "Mom Jeans", description: "Hochtaillierte Mom Jeans" },
200
+ "bottom-low-rise-jeans": { label: "Low-Rise-Jeans", description: "Tief sitzende Jeans" },
201
+ "bottom-chinos": { label: "Chinos", description: "Maßgeschneiderte Chinohose" },
202
+ "bottom-trousers": { label: "Anzughose", description: "Gebügelte Anzughose" },
203
+ "bottom-cargo": { label: "Cargohose", description: "Cargohose mit Seitentaschen" },
204
+ "bottom-leggings": { label: "Leggings", description: "Eng anliegende Leggings" },
205
+ "bottom-sweatpants": { label: "Jogginghose", description: "Lockere Jogginghose" },
206
+ "bottom-shorts": { label: "Shorts", description: "Mid-Thigh-Shorts" },
207
+ "bottom-denim-shorts": { label: "Jeansshorts", description: "Cut-Off-Jeansshorts" },
208
+ "bottom-mini-skirt": { label: "Minirock", description: "Minirock über dem Knie" },
209
+ "bottom-pleated-skirt": { label: "Faltenrock", description: "Faltenrock bis zur Mitte des Oberschenkels" },
210
+ "bottom-midi-skirt": { label: "Midirock", description: "Wadenlanger Midirock" },
211
+ "bottom-maxi-skirt": { label: "Maxirock", description: "Bodenlanger Maxirock" },
212
+ "bottom-overalls": { label: "Latzhose", description: "Latzhose / Dungarees aus Denim" },
213
+ "bottom-culottes": { label: "Culottes", description: "Weit geschnittene wadenlange Hose" },
214
+ "bottom-palazzo-pants": { label: "Palazzo-Hose", description: "Fließende weit geschnittene Hose" },
215
+ "bottom-harem-pants": { label: "Haremshose", description: "Lockere Hose mit Tiefschritt" },
216
+ "bottom-bike-shorts": { label: "Bike-Shorts", description: "Eng anliegende Lycra-Shorts bis Mitte Oberschenkel" },
217
+ // Outerwear
218
+ "outerwear-leather-jacket": { label: "Lederjacke", description: "Schmal geschnittene Lederjacke" },
219
+ "outerwear-denim-jacket": { label: "Jeansjacke", description: "Klassische Jeansjacke" },
220
+ "outerwear-bomber": { label: "Bomberjacke", description: "Satin-Bomberjacke" },
221
+ "outerwear-blazer": { label: "Blazer", description: "Maßgeschneiderter Blazer" },
222
+ "outerwear-trench": { label: "Trenchcoat", description: "Trenchcoat mit Gürtel" },
223
+ "outerwear-overcoat": { label: "Wollmantel", description: "Langer Wollmantel" },
224
+ "outerwear-puffer": { label: "Pufferjacke", description: "Gesteppte Pufferjacke" },
225
+ "outerwear-parka": { label: "Parka", description: "Kapuzenparka mit Pelzbesatz" },
226
+ "outerwear-cardigan": { label: "Cardigan", description: "Strick-Cardigan mit offener Front" },
227
+ "outerwear-vest": { label: "Weste", description: "Maßgeschneiderte Weste" },
228
+ "outerwear-kimono-robe": { label: "Kimono-Robe", description: "Fließende Kimono-Robe" },
229
+ "outerwear-varsity": { label: "College-Jacke", description: "Letterman-College-Jacke" },
230
+ "outerwear-fur-coat": { label: "Pelzmantel", description: "Plüschiger Pelzmantel" },
231
+ // Legwear
232
+ "legwear-bare": { label: "Nackte Beine", description: "Nackte Beine, keine Strümpfe" },
233
+ "legwear-sheer-tights": { label: "Feinstrumpfhose", description: "Hauchdünne nude Feinstrumpfhose" },
234
+ "legwear-opaque-tights": { label: "Blickdichte Strumpfhose", description: "Volle blickdichte Strumpfhose" },
235
+ "legwear-fishnets": { label: "Netzstrümpfe", description: "Netzstrümpfe mit Diamantmuster" },
236
+ "legwear-thigh-highs": { label: "Halterlose Strümpfe", description: "Halterlose Strümpfe" },
237
+ "legwear-lace-top-stockings": { label: "Spitzen-Halterlose", description: "Halterlose mit Spitzenabschluss" },
238
+ "legwear-knee-highs": { label: "Kniestrümpfe", description: "Kniestrümpfe" },
239
+ "legwear-crew-socks": { label: "Crew-Socken", description: "Wadenlange Crew-Socken" },
240
+ "legwear-ankle-socks": { label: "Sneakersocken", description: "Niedrige Sneakersocken" },
241
+ "legwear-leg-warmers": { label: "Stulpen", description: "Strickstulpen" },
242
+ // Footwear
243
+ "footwear-sneakers": { label: "Sneaker", description: "Niedrige Sneaker" },
244
+ "footwear-high-tops": { label: "High-Top-Sneaker", description: "High-Top-Canvas-Sneaker" },
245
+ "footwear-running-shoes": { label: "Laufschuhe", description: "Athletische Laufschuhe" },
246
+ "footwear-stilettos": { label: "Stiletto-Pumps", description: "Spitze Stiletto-Pumps" },
247
+ "footwear-block-heels": { label: "Blockabsätze", description: "Wuchtige Pumps mit Blockabsatz" },
248
+ "footwear-platforms": { label: "Plateau-Schuhe", description: "Hohe Plateausohlen" },
249
+ "footwear-ankle-boots": { label: "Stiefeletten", description: "Schmal geschnittene Stiefeletten" },
250
+ "footwear-knee-boots": { label: "Kniehohe Stiefel", description: "Hohe kniehohe Stiefel" },
251
+ "footwear-thigh-high-boots": { label: "Overknee-Stiefel", description: "Overknee-Stiefel" },
252
+ "footwear-combat-boots": { label: "Combat Boots", description: "Geschnürte Combat Boots" },
253
+ "footwear-chelsea-boots": { label: "Chelsea Boots", description: "Slip-on Chelsea Boots" },
254
+ "footwear-cowboy-boots": { label: "Cowboystiefel", description: "Spitze Cowboystiefel" },
255
+ "footwear-loafers": { label: "Loafer", description: "Polierte Penny-Loafer" },
256
+ "footwear-oxfords": { label: "Oxfords", description: "Geschnürte Leder-Oxfords" },
257
+ "footwear-sandals": { label: "Sandalen", description: "Flache Riemchensandalen" },
258
+ "footwear-mules": { label: "Mules", description: "Hinten offene Slip-on-Mules" },
259
+ "footwear-flip-flops": { label: "Flip-Flops", description: "Lässige Gummi-Flip-Flops" },
260
+ "footwear-ballet-flats": { label: "Ballerinas", description: "Slip-on-Ballerinas" },
261
+ "footwear-barefoot": { label: "Barfuß", description: "Keine Schuhe — barfuß" },
262
+ "footwear-crocs": { label: "Crocs", description: "Bunte Harz-Clogs, lässig" },
263
+ "footwear-birkenstocks": { label: "Birkenstocks", description: "Sandalen mit Korkfußbett" },
264
+ "footwear-doc-martens": { label: "Doc Martens", description: "Wuchtige Lederstiefel im Combat-Stil" },
265
+ "footwear-converse": { label: "Converse", description: "Canvas-High-Top-Sneaker, klassische Chuck Taylor" },
266
+ "footwear-vans": { label: "Vans", description: "Slip-on- oder Low-Top-Skater-Sneaker" },
267
+ "footwear-espadrilles": { label: "Espadrilles", description: "Sommerschuhe aus Canvas mit gewebter Jutesohle" },
268
+ // Wardrobe State
269
+ "state-oversized": { label: "Oversized", description: "Locker, oversized geschnitten" },
270
+ "state-fitted": { label: "Eng anliegend", description: "Figurbetonte Silhouette" },
271
+ "state-cropped": { label: "Bauchfrei", description: "Top oberhalb der Mitte abgeschnitten" },
272
+ "state-sheer": { label: "Durchscheinend", description: "Durchsichtiger Stoff" },
273
+ "state-wet": { label: "Nass", description: "Durchnässt, am Wasser haftend" },
274
+ "state-ripped": { label: "Zerrissen", description: "Zerrissen und ausgefranst" },
275
+ "state-distressed": { label: "Distressed", description: "Getragen, verblasst, verwittert" },
276
+ "state-vintage": { label: "Vintage", description: "Getragener Retro-Charakter" },
277
+ "state-tucked-in": { label: "Eingesteckt", description: "Top in den Bottom gesteckt" },
278
+ "state-half-tucked": { label: "Halb eingesteckt", description: "Vorne eingesteckt, hinten lose" },
279
+ "state-off-shoulder": { label: "Schulterfrei", description: "Über eine Schulter gerutscht" },
280
+ "state-unbuttoned": { label: "Aufgeknöpft", description: "Offen / aufgeknöpft" },
281
+ "state-rolled-sleeves": { label: "Hochgekrempelte Ärmel", description: "Ärmel zum Unterarm hochgerollt" },
282
+ "state-layered": { label: "Geschichtet", description: "Mehrere gestapelte Schichten" },
283
+ }
284
+
285
+ export default map