@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,96 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // Standing
5
+ "standing-upright": { label: "Aufrecht stehend", description: "Entspannte stehende Haltung" },
6
+ "confident-stance": { label: "Selbstbewusste Haltung", description: "Füße auseinander, Schultern zurück" },
7
+ "hands-on-hips": { label: "Hände in die Hüften", description: "Hände an den Hüften" },
8
+ "arms-crossed": { label: "Verschränkte Arme", description: "Arme vor der Brust verschränkt" },
9
+ "leaning": { label: "Anlehnend", description: "An etwas angelehnt" },
10
+ "hero-pose": { label: "Helden-Pose", description: "Dramatische heroische Haltung" },
11
+ "contrapposto": { description: "Hüfte geneigt, Gewicht auf einem Bein" },
12
+ "leaning-against-wall": { label: "An Wand angelehnt", description: "Lässig an eine Wand gelehnt" },
13
+ "hands-behind-head": { label: "Hände hinter dem Kopf", description: "Beide Hände hinter dem Kopf gefaltet" },
14
+ "hands-behind-back": { label: "Hände hinter dem Rücken", description: "Hände hinter dem Rücken gefaltet" },
15
+ // Seated
16
+ "sitting": { label: "Sitzend", description: "Natürlich sitzend" },
17
+ "cross-legged": { label: "Im Schneidersitz", description: "Im Schneidersitz auf dem Boden" },
18
+ "kneeling": { label: "Kniend", description: "Auf dem Boden kniend" },
19
+ "crouching": { label: "Hockend", description: "Tief hockend" },
20
+ "lounging": { label: "Lümmelnd", description: "Zurückgelehnt, entspannt sitzend" },
21
+ "sitting-edge-of-bed": { label: "Auf der Bettkante sitzend", description: "Auf der Bettkante hockend" },
22
+ "chair-arm-drape": { label: "Beine über die Stuhllehne", description: "Beine über die Stuhllehne drapiert" },
23
+ "elbow-propped": { label: "Wange auf gestütztem Ellbogen", description: "Wange auf gestütztem Ellbogen ruhend" },
24
+ "lying-on-stomach-reading": { label: "Bäuchlings lesend", description: "Bäuchlings, auf Ellbogen gestützt lesend" },
25
+ // Movement
26
+ "walking": { label: "Gehend", description: "Gehend, mitten im Schritt" },
27
+ "running": { label: "Rennend", description: "Rennend, in Bewegung" },
28
+ "jumping": { label: "Springend", description: "In der Luft, mitten im Sprung" },
29
+ "dancing": { label: "Tanzend", description: "Mitten im Tanz" },
30
+ "climbing": { label: "Kletternd", description: "Kletternd, nach oben greifend" },
31
+ "mid-fall": { label: "Im Fall", description: "Mitten im Fall durch die Luft" },
32
+ "mid-spin": { label: "In Drehung", description: "Wirbelnd, in Rotation" },
33
+ "stretching": { label: "Sich streckend", description: "Ganzkörperstreckung, Arme über Kopf" },
34
+ "reaching-up": { label: "Nach oben greifend", description: "Arme nach oben gestreckt" },
35
+ "kissing": { label: "Küssend", description: "In einen Kuss verschlungen" },
36
+ "riding": { label: "Reitend", description: "Auf einem Fahrrad, Pferd oder Motorrad" },
37
+ "driving": { label: "Fahrend", description: "Hinter dem Steuer eines Fahrzeugs" },
38
+ // Action
39
+ "fighting-stance": { label: "Kampfposition", description: "Kampfbereite Haltung" },
40
+ "reaching": { label: "Greifend", description: "Nach außen greifend" },
41
+ "throwing": { label: "Werfend", description: "Mitten in der Wurfbewegung" },
42
+ "leaping": { label: "Springend", description: "Dynamisch nach vorne springend" },
43
+ "dramatic-action": { label: "Dramatische Aktion", description: "Übertriebene Action-Pose" },
44
+ "biting-lip": { label: "Auf die Lippe beißend", description: "Leichter verspielter Lippenbiss" },
45
+ "mid-laugh": { label: "Mitten im Lachen", description: "Mitten im Lachen, Kopf zurückgeworfen" },
46
+ "pointing-at-camera": { label: "Auf die Kamera zeigend", description: "Direkt auf die Kamera zeigend" },
47
+ "tongue-out": { label: "Zunge raus", description: "Verspielter Zunge-raus-Ausdruck" },
48
+ "thinking": { label: "Nachdenkend", description: "Hand am Kinn, kontemplativ" },
49
+ // Resting
50
+ "lying-down": { label: "Liegend", description: "Flach liegend" },
51
+ "sleeping": { label: "Schlafend", description: "Augen geschlossen, schlafend" },
52
+ "hugging": { label: "Umarmend", description: "Eine andere Person umarmend" },
53
+ "looking-away": { label: "Wegblickend", description: "Kopf abgewandt, in die Ferne blickend" },
54
+ "looking-up": { label: "Aufblickend", description: "In den Himmel blickend" },
55
+ "looking-down": { label: "Hinabblickend", description: "Augen niedergeschlagen" },
56
+ "head-over-shoulder": { label: "Kopf über die Schulter", description: "Über die Schulter zurückblickend" },
57
+ "wading-in-water": { label: "Im Wasser watend", description: "Bis Mitte Oberschenkel im Wasser watend" },
58
+ // Hand Position
59
+ "hands-in-pockets": { label: "Hände in den Taschen", description: "Beide Hände in die Taschen gesteckt" },
60
+ "hand-on-hip": { label: "Hand auf der Hüfte", description: "Eine Hand auf der Hüfte" },
61
+ "hand-position-hands-on-hips": { label: "Beide Hände in die Hüften", description: "Beide Hände an den Hüften" },
62
+ "hand-on-chin": { label: "Hand am Kinn", description: "Hand unter dem Kinn ruhend" },
63
+ "hand-on-collarbone": { label: "Hand auf dem Schlüsselbein", description: "Hand auf dem Schlüsselbein ruhend" },
64
+ "hand-brushing-hair": { label: "Hand durchs Haar", description: "Hand durchs Haar fahrend" },
65
+ "finger-to-lip": { label: "Finger an der Lippe", description: "Fingerspitze an die Unterlippe gepresst" },
66
+ "arms-wrapped-around-self": { label: "Selbstumarmung", description: "Selbst-Umarmung, Arme um den Torso" },
67
+ "hands-clasped": { label: "Hände gefaltet", description: "Beide Hände vorne gefaltet" },
68
+ // Body Lean
69
+ "leaning-back": { label: "Nach hinten gelehnt", description: "Torso leicht nach hinten gelehnt" },
70
+ "leaning-forward": { label: "Nach vorne gelehnt", description: "Torso zur Kamera geneigt" },
71
+ "body-lean-contrapposto": { description: "Gewicht auf einem Bein, Hüfte herausgeschoben" },
72
+ "arched-back": { label: "Durchgedrückter Rücken", description: "Rücken sanft gebogen, Brust nach vorn" },
73
+ "shoulder-rolled-forward": { label: "Schulter nach vorne gerollt", description: "Eine Schulter nach vorne gerollt" },
74
+ // Head Tilt
75
+ "tilted-up": { label: "Nach oben geneigt", description: "Kopf leicht nach oben gerichtet" },
76
+ "tilted-down": { label: "Nach unten geneigt", description: "Kopf leicht nach unten gerichtet" },
77
+ "tilted-side": { label: "Zur Seite geneigt", description: "Kopf zur Schulter geneigt" },
78
+ "tilted-back": { label: "Nach hinten geneigt", description: "Kopf vollständig zurück, Kehle freigelegt" },
79
+ "chin-up": { label: "Kinn hoch", description: "Kinn angehoben, herabblickend" },
80
+ "chin-tucked": { label: "Kinn eingezogen", description: "Kinn zur Brust gezogen" },
81
+ // Activity
82
+ "activity-smoking": { label: "Rauchend", description: "Eine Zigarette haltend und rauchend" },
83
+ "activity-drinking": { label: "Trinkend", description: "Aus einem Glas oder einer Tasse trinkend" },
84
+ "activity-eating": { label: "Essend", description: "Mitten im Bissen" },
85
+ "activity-talking-on-phone": { label: "Am Telefon sprechend", description: "Telefon ans Ohr gehalten, sprechend" },
86
+ "activity-texting": { label: "Tippend", description: "Auf das Telefon hinabblickend, Daumen tippen" },
87
+ "activity-typing-laptop": { label: "Am Laptop tippend", description: "Hände auf der Tastatur, fokussiert auf den Bildschirm" },
88
+ "activity-reading": { label: "Lesend", description: "Ein Buch oder eine Zeitschrift offen haltend" },
89
+ "activity-writing": { label: "Schreibend", description: "In ein Notizbuch schreibend mit einem Stift" },
90
+ "activity-painting": { label: "Malend", description: "Mit einem Pinsel auf einer Leinwand malend" },
91
+ "activity-playing-instrument": { label: "Instrument spielend", description: "Ein Musikinstrument spielend" },
92
+ "activity-cooking": { label: "Kochend", description: "An einer Küchentheke oder einem Herd kochend" },
93
+ "activity-driving": { label: "Fahrend", description: "Hinter dem Steuer, Hände greifend" },
94
+ }
95
+
96
+ export default map
@@ -0,0 +1,104 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // -------------------- Standing --------------------
5
+ "standing-upright": { label: "De Pie Erguido", description: "Postura relajada de pie" },
6
+ "confident-stance": { label: "Postura Segura", description: "Pies separados, hombros hacia atrás" },
7
+ "hands-on-hips": { label: "Manos en las Caderas", description: "Manos en las caderas" },
8
+ "arms-crossed": { label: "Brazos Cruzados", description: "Brazos cruzados sobre el pecho" },
9
+ "leaning": { label: "Apoyado", description: "Apoyado contra algo" },
10
+ "hero-pose": { label: "Pose de Héroe", description: "Postura heroica dramática" },
11
+ "contrapposto": { description: "Cadera inclinada, peso en una pierna" },
12
+ "leaning-against-wall": { label: "Apoyado en la Pared", description: "Casualmente apoyado en una pared" },
13
+ "hands-behind-head": { label: "Manos Detrás de la Cabeza", description: "Ambas manos entrelazadas detrás de la cabeza" },
14
+ "hands-behind-back": { label: "Manos Detrás de la Espalda", description: "Manos entrelazadas detrás de la espalda" },
15
+
16
+ // -------------------- Seated --------------------
17
+ "sitting": { label: "Sentado", description: "Sentado naturalmente" },
18
+ "cross-legged": { label: "Con las Piernas Cruzadas", description: "Sentado con las piernas cruzadas en el suelo" },
19
+ "kneeling": { label: "Arrodillado", description: "Arrodillado en el suelo" },
20
+ "crouching": { label: "Agachado", description: "Agachado bajo" },
21
+ "lounging": { label: "Recostado", description: "Sentado reclinado y relajado" },
22
+ "sitting-edge-of-bed": { label: "Sentado al Borde de la Cama", description: "Posado al borde de una cama" },
23
+ "chair-arm-drape": { label: "Piernas Sobre el Brazo de la Silla", description: "Piernas colgando del brazo de la silla" },
24
+ "elbow-propped": { label: "Mejilla en el Codo Apoyado", description: "Mejilla apoyada en un codo levantado" },
25
+ "lying-on-stomach-reading": { label: "Acostado Boca Abajo Leyendo", description: "Acostado boca abajo, apoyado en codos leyendo" },
26
+
27
+ // -------------------- Movement --------------------
28
+ "walking": { label: "Caminando", description: "Caminando a media zancada" },
29
+ "running": { label: "Corriendo", description: "A media carrera, en movimiento" },
30
+ "jumping": { label: "Saltando", description: "En el aire, a medio salto" },
31
+ "dancing": { label: "Bailando", description: "Captado a media danza" },
32
+ "climbing": { label: "Escalando", description: "Escalando, agarrándose hacia arriba" },
33
+ "mid-fall": { label: "Cayendo", description: "Captado a media caída por el aire" },
34
+ "mid-spin": { label: "Girando", description: "Girando, a media rotación" },
35
+ "stretching": { label: "Estirándose", description: "Estiramiento de cuerpo entero, brazos por encima de la cabeza" },
36
+ "reaching-up": { label: "Alcanzando hacia Arriba", description: "Brazos extendidos por encima de la cabeza" },
37
+ "kissing": { label: "Besando", description: "Atrapados en un beso" },
38
+ "riding": { label: "Cabalgando", description: "Montando bicicleta, caballo o motocicleta" },
39
+ "driving": { label: "Conduciendo", description: "Detrás del volante de un vehículo" },
40
+
41
+ // -------------------- Action --------------------
42
+ "fighting-stance": { label: "Postura de Lucha", description: "Postura lista para combate" },
43
+ "reaching": { label: "Alcanzando", description: "Alcanzando hacia afuera" },
44
+ "throwing": { label: "Lanzando", description: "Movimiento a medio lanzamiento" },
45
+ "leaping": { label: "Brincando", description: "Brincando hacia adelante dinámicamente" },
46
+ "dramatic-action": { label: "Acción Dramática", description: "Pose de acción exagerada" },
47
+ "biting-lip": { label: "Mordiéndose el Labio", description: "Ligero mordisco juguetón al labio" },
48
+ "mid-laugh": { label: "Riendo", description: "A media risa, cabeza hacia atrás" },
49
+ "pointing-at-camera": { label: "Apuntando a la Cámara", description: "Apuntando directamente a la cámara" },
50
+ "tongue-out": { label: "Sacando la Lengua", description: "Expresión juguetona con la lengua afuera" },
51
+ "thinking": { label: "Pensando", description: "Mano en el mentón, contemplativo" },
52
+
53
+ // -------------------- Resting --------------------
54
+ "lying-down": { label: "Acostado", description: "Acostado plano" },
55
+ "sleeping": { label: "Durmiendo", description: "Ojos cerrados, durmiendo" },
56
+ "hugging": { label: "Abrazando", description: "Abrazando a otro" },
57
+ "looking-away": { label: "Mirando Hacia Otro Lado", description: "Cabeza girada, mirando hacia otro lado" },
58
+ "looking-up": { label: "Mirando hacia Arriba", description: "Mirando hacia el cielo" },
59
+ "looking-down": { label: "Mirando hacia Abajo", description: "Ojos hacia abajo" },
60
+ "head-over-shoulder": { label: "Cabeza Sobre el Hombro", description: "Mirando hacia atrás sobre el hombro" },
61
+ "wading-in-water": { label: "Vadeando en el Agua", description: "Vadeando en agua hasta la mitad del muslo" },
62
+
63
+ // -------------------- Hand Position --------------------
64
+ "hands-in-pockets": { label: "Manos en los Bolsillos", description: "Ambas manos metidas en los bolsillos" },
65
+ "hand-on-hip": { label: "Mano en la Cadera", description: "Una mano en la cadera" },
66
+ "hand-position-hands-on-hips": { label: "Manos en las Caderas", description: "Ambas manos en las caderas" },
67
+ "hand-on-chin": { label: "Mano en el Mentón", description: "Mano descansando bajo el mentón" },
68
+ "hand-on-collarbone": { label: "Mano en la Clavícula", description: "Mano descansando sobre la clavícula" },
69
+ "hand-brushing-hair": { label: "Mano Rozando el Cabello", description: "Mano pasando por el cabello" },
70
+ "finger-to-lip": { label: "Dedo en el Labio", description: "Punta del dedo presionada contra el labio inferior" },
71
+ "arms-wrapped-around-self": { label: "Brazos Envueltos Alrededor de Sí Mismo", description: "Auto-abrazo, brazos alrededor del torso" },
72
+ "hands-clasped": { label: "Manos Entrelazadas", description: "Ambas manos entrelazadas al frente" },
73
+
74
+ // -------------------- Body Lean --------------------
75
+ "leaning-back": { label: "Inclinado Hacia Atrás", description: "Torso inclinado ligeramente hacia atrás" },
76
+ "leaning-forward": { label: "Inclinado Hacia Adelante", description: "Torso inclinado hacia la cámara" },
77
+ "body-lean-contrapposto": { description: "Peso en una pierna, cadera empujada hacia afuera" },
78
+ "arched-back": { label: "Espalda Arqueada", description: "Espalda suavemente arqueada, pecho hacia adelante" },
79
+ "shoulder-rolled-forward": { label: "Hombro Rodado Hacia Adelante", description: "Un hombro rodado hacia adelante" },
80
+
81
+ // -------------------- Head Tilt --------------------
82
+ "tilted-up": { label: "Inclinada hacia Arriba", description: "Cabeza ligeramente inclinada hacia arriba" },
83
+ "tilted-down": { label: "Inclinada hacia Abajo", description: "Cabeza ligeramente inclinada hacia abajo" },
84
+ "tilted-side": { label: "Inclinada Lateralmente", description: "Cabeza inclinada hacia el hombro" },
85
+ "tilted-back": { label: "Inclinada Atrás", description: "Cabeza completamente atrás, garganta expuesta" },
86
+ "chin-up": { label: "Mentón Arriba", description: "Mentón levantado, mirando por encima de la nariz" },
87
+ "chin-tucked": { label: "Mentón Metido", description: "Mentón metido hacia el pecho" },
88
+
89
+ // -------------------- Activity --------------------
90
+ "activity-smoking": { label: "Fumando", description: "Sosteniendo y fumando un cigarrillo" },
91
+ "activity-drinking": { label: "Bebiendo", description: "Bebiendo de un vaso o taza" },
92
+ "activity-eating": { label: "Comiendo", description: "Captado a medio bocado" },
93
+ "activity-talking-on-phone": { label: "Hablando por Teléfono", description: "Teléfono en el oído, hablando" },
94
+ "activity-texting": { label: "Mandando Mensajes", description: "Mirando hacia abajo al teléfono, pulgares escribiendo" },
95
+ "activity-typing-laptop": { label: "Escribiendo en Laptop", description: "Manos en el teclado, enfocado en la pantalla" },
96
+ "activity-reading": { label: "Leyendo", description: "Sosteniendo abierto un libro o revista" },
97
+ "activity-writing": { label: "Escribiendo", description: "Escribiendo en un cuaderno con pluma" },
98
+ "activity-painting": { label: "Pintando", description: "Pintando sobre un lienzo con pincel" },
99
+ "activity-playing-instrument": { label: "Tocando Instrumento", description: "Tocando un instrumento musical" },
100
+ "activity-cooking": { label: "Cocinando", description: "Cocinando en una encimera o estufa" },
101
+ "activity-driving": { label: "Conduciendo", description: "Detrás del volante, manos agarrando" },
102
+ }
103
+
104
+ export default map
@@ -0,0 +1,96 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // Standing
5
+ "standing-upright": { label: "Debout droit", description: "Posture debout détendue" },
6
+ "confident-stance": { label: "Posture assurée", description: "Pieds écartés, épaules en arrière" },
7
+ "hands-on-hips": { label: "Mains sur les hanches", description: "Mains sur les hanches" },
8
+ "arms-crossed": { label: "Bras croisés", description: "Bras croisés sur la poitrine" },
9
+ "leaning": { label: "Accoudé", description: "Accoudé contre quelque chose" },
10
+ "hero-pose": { label: "Pose héroïque", description: "Posture héroïque dramatique" },
11
+ "contrapposto": { description: "Hanche inclinée, poids sur une jambe" },
12
+ "leaning-against-wall": { label: "Adossé à un mur", description: "Décontracté, adossé à un mur" },
13
+ "hands-behind-head": { label: "Mains derrière la tête", description: "Les deux mains croisées derrière la tête" },
14
+ "hands-behind-back": { label: "Mains derrière le dos", description: "Mains croisées derrière le dos" },
15
+ // Seated
16
+ "sitting": { label: "Assis", description: "Assis naturellement" },
17
+ "cross-legged": { label: "Jambes croisées", description: "Assis jambes croisées au sol" },
18
+ "kneeling": { label: "Agenouillé", description: "Agenouillé au sol" },
19
+ "crouching": { label: "Accroupi", description: "Accroupi bas" },
20
+ "lounging": { label: "Allongé", description: "Assis incliné, détendu" },
21
+ "sitting-edge-of-bed": { label: "Assis au bord du lit", description: "Perché au bord d'un lit" },
22
+ "chair-arm-drape": { label: "Jambes drapées sur l'accoudoir", description: "Jambes drapées sur l'accoudoir d'une chaise" },
23
+ "elbow-propped": { label: "Joue sur le coude appuyé", description: "Joue posée sur un coude appuyé" },
24
+ "lying-on-stomach-reading": { label: "Allongé sur le ventre lisant", description: "Allongé sur le ventre, sur les coudes en train de lire" },
25
+ // Movement
26
+ "walking": { label: "Marche", description: "En pleine foulée de marche" },
27
+ "running": { label: "Course", description: "En pleine course, en mouvement" },
28
+ "jumping": { label: "Saut", description: "En l'air, en plein saut" },
29
+ "dancing": { label: "Danse", description: "Saisi en pleine danse" },
30
+ "climbing": { label: "Escalade", description: "Escaladant, agrippant vers le haut" },
31
+ "mid-fall": { label: "En pleine chute", description: "Saisi en pleine chute dans les airs" },
32
+ "mid-spin": { label: "En pleine pirouette", description: "Tournoyant, en pleine rotation" },
33
+ "stretching": { label: "Étirement", description: "Étirement complet, bras au-dessus de la tête" },
34
+ "reaching-up": { label: "Tendant les bras vers le haut", description: "Bras étendus au-dessus de la tête" },
35
+ "kissing": { label: "Baiser", description: "Bouche contre bouche" },
36
+ "riding": { label: "Chevauchant", description: "Chevauchant un vélo, un cheval ou une moto" },
37
+ "driving": { label: "Conduite", description: "Au volant d'un véhicule" },
38
+ // Action
39
+ "fighting-stance": { label: "Posture de combat", description: "Posture prête au combat" },
40
+ "reaching": { label: "Tendant la main", description: "Tendant la main" },
41
+ "throwing": { label: "Lancer", description: "Mouvement de lancer en cours" },
42
+ "leaping": { label: "Bondissant", description: "Bondissant dynamiquement vers l'avant" },
43
+ "dramatic-action": { label: "Action dramatique", description: "Pose d'action exagérée" },
44
+ "biting-lip": { label: "Mordillant la lèvre", description: "Légère morsure ludique de la lèvre" },
45
+ "mid-laugh": { label: "En plein rire", description: "Saisi en plein rire, tête en arrière" },
46
+ "pointing-at-camera": { label: "Pointant la caméra", description: "Pointant directement la caméra" },
47
+ "tongue-out": { label: "Langue sortie", description: "Expression espiègle langue sortie" },
48
+ "thinking": { label: "Pensif", description: "Main au menton, contemplatif" },
49
+ // Resting
50
+ "lying-down": { label: "Allongé", description: "Allongé à plat" },
51
+ "sleeping": { label: "Endormi", description: "Yeux fermés, endormi" },
52
+ "hugging": { label: "Étreinte", description: "Embrassant un autre" },
53
+ "looking-away": { label: "Regard détourné", description: "Tête tournée, regardant ailleurs" },
54
+ "looking-up": { label: "Regard levé", description: "Regard tourné vers le ciel" },
55
+ "looking-down": { label: "Regard baissé", description: "Yeux baissés" },
56
+ "head-over-shoulder": { label: "Tête par-dessus l'épaule", description: "Regardant en arrière par-dessus l'épaule" },
57
+ "wading-in-water": { label: "Pataugeant dans l'eau", description: "Pataugeant à mi-cuisse dans l'eau" },
58
+ // Hand position
59
+ "hands-in-pockets": { label: "Mains dans les poches", description: "Les deux mains dans les poches" },
60
+ "hand-on-hip": { label: "Main sur la hanche", description: "Une main sur la hanche" },
61
+ "hand-position-hands-on-hips": { label: "Mains sur les hanches", description: "Les deux mains sur les hanches" },
62
+ "hand-on-chin": { label: "Main au menton", description: "Main posée sous le menton" },
63
+ "hand-on-collarbone": { label: "Main sur la clavicule", description: "Main posée sur la clavicule" },
64
+ "hand-brushing-hair": { label: "Main caressant les cheveux", description: "Main passant dans les cheveux" },
65
+ "finger-to-lip": { label: "Doigt à la lèvre", description: "Doigt pressé contre la lèvre inférieure" },
66
+ "arms-wrapped-around-self": { label: "Bras enveloppant le torse", description: "Auto-étreinte, bras autour du torse" },
67
+ "hands-clasped": { label: "Mains jointes", description: "Les deux mains jointes devant" },
68
+ // Body lean
69
+ "leaning-back": { label: "Penché en arrière", description: "Torse légèrement penché en arrière" },
70
+ "leaning-forward": { label: "Penché en avant", description: "Torse penché vers la caméra" },
71
+ "body-lean-contrapposto": { description: "Poids sur une jambe, hanche poussée" },
72
+ "arched-back": { label: "Dos cambré", description: "Dos doucement cambré, poitrine en avant" },
73
+ "shoulder-rolled-forward": { label: "Épaule roulée en avant", description: "Une épaule roulée vers l'avant" },
74
+ // Head tilt
75
+ "tilted-up": { label: "Inclinée vers le haut", description: "Tête légèrement inclinée vers le haut" },
76
+ "tilted-down": { label: "Inclinée vers le bas", description: "Tête légèrement inclinée vers le bas" },
77
+ "tilted-side": { label: "Inclinée sur le côté", description: "Tête penchée vers une épaule" },
78
+ "tilted-back": { label: "Renversée en arrière", description: "Tête entièrement renversée, gorge exposée" },
79
+ "chin-up": { label: "Menton levé", description: "Menton levé, regardant de haut" },
80
+ "chin-tucked": { label: "Menton rentré", description: "Menton rentré contre la poitrine" },
81
+ // Activity
82
+ "activity-smoking": { label: "Fumant", description: "Tenant et fumant une cigarette" },
83
+ "activity-drinking": { label: "Buvant", description: "Buvant à un verre ou une tasse" },
84
+ "activity-eating": { label: "Mangeant", description: "Saisi en pleine bouchée" },
85
+ "activity-talking-on-phone": { label: "Au téléphone", description: "Téléphone à l'oreille, parlant" },
86
+ "activity-texting": { label: "Envoyant un SMS", description: "Regardant son téléphone, pouces tapant" },
87
+ "activity-typing-laptop": { label: "Tapant sur un ordinateur portable", description: "Mains sur le clavier, concentré sur l'écran" },
88
+ "activity-reading": { label: "Lisant", description: "Tenant un livre ou un magazine ouvert" },
89
+ "activity-writing": { label: "Écrivant", description: "Écrivant dans un carnet avec un stylo" },
90
+ "activity-painting": { label: "Peignant", description: "Peignant sur une toile avec un pinceau" },
91
+ "activity-playing-instrument": { label: "Jouant d'un instrument", description: "Jouant d'un instrument de musique" },
92
+ "activity-cooking": { label: "Cuisinant", description: "Cuisinant à un comptoir ou sur une cuisinière" },
93
+ "activity-driving": { label: "Conduisant", description: "Au volant, mains agrippées" },
94
+ }
95
+
96
+ export default map
@@ -0,0 +1,104 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // Standing
5
+ "standing-upright": { label: "עומד זקוף", description: "תנוחת עמידה רגועה" },
6
+ "confident-stance": { label: "עמידה בטוחה", description: "רגליים מרוחקות, כתפיים אחורה" },
7
+ "hands-on-hips": { label: "ידיים על המותניים", description: "ידיים על המותניים" },
8
+ "arms-crossed": { label: "ידיים שלובות", description: "ידיים שלובות על החזה" },
9
+ "leaning": { label: "נשען", description: "נשען על משהו" },
10
+ "hero-pose": { label: "תנוחת גיבור", description: "עמדת גיבור דרמטית" },
11
+ "contrapposto": { label: "Contrapposto", description: "מותן מוטה, משקל על רגל אחת" },
12
+ "leaning-against-wall": { label: "נשען על קיר", description: "נשען בקז'ואליות על קיר" },
13
+ "hands-behind-head": { label: "ידיים מאחורי הראש", description: "שתי הידיים שלובות מאחורי הראש" },
14
+ "hands-behind-back": { label: "ידיים מאחורי הגב", description: "ידיים שלובות מאחורי הגב" },
15
+
16
+ // Seated
17
+ "sitting": { label: "יושב", description: "יושב באופן טבעי" },
18
+ "cross-legged": { label: "ברגליים שלובות", description: "יושב ברגליים שלובות על הרצפה" },
19
+ "kneeling": { label: "כורע", description: "כורע על הרצפה" },
20
+ "crouching": { label: "כפוף", description: "כפוף נמוך" },
21
+ "lounging": { label: "מתפנק", description: "ישיבה רגועה ומורכנת" },
22
+ "sitting-edge-of-bed": { label: "יושב על קצה המיטה", description: "מטופס על קצה המיטה" },
23
+ "chair-arm-drape": { label: "רגליים על ידית הכיסא", description: "רגליים תלויות מעל ידית הכיסא" },
24
+ "elbow-propped": { label: "לחי על מרפק", description: "לחי נשענת על מרפק תומך" },
25
+ "lying-on-stomach-reading": { label: "שוכב על הבטן וקורא", description: "שוכב על הבטן, נשען על המרפקים בקריאה" },
26
+
27
+ // Movement
28
+ "walking": { label: "הולך", description: "הליכה באמצע צעד" },
29
+ "running": { label: "רץ", description: "באמצע ריצה, בתנועה" },
30
+ "jumping": { label: "קופץ", description: "באוויר, באמצע קפיצה" },
31
+ "dancing": { label: "רוקד", description: "נתפס באמצע ריקוד" },
32
+ "climbing": { label: "מטפס", description: "מטפס, אוחז כלפי מעלה" },
33
+ "mid-fall": { label: "באמצע נפילה", description: "נתפס באמצע נפילה באוויר" },
34
+ "mid-spin": { label: "באמצע סיבוב", description: "מסתובב, באמצע סיבוב" },
35
+ "stretching": { label: "מתמתח", description: "מתיחת גוף מלא, ידיים מעל הראש" },
36
+ "reaching-up": { label: "מושיט מעלה", description: "ידיים מורמות מעל הראש" },
37
+ "kissing": { label: "מתנשק", description: "נעול בנשיקה" },
38
+ "riding": { label: "רוכב", description: "רוכב על אופניים, סוס או אופנוע" },
39
+ "driving": { label: "נוהג", description: "מאחורי ההגה של רכב" },
40
+
41
+ // Action
42
+ "fighting-stance": { label: "עמדת לחימה", description: "עמדה מוכנה לקרב" },
43
+ "reaching": { label: "מושיט יד", description: "מושיט יד החוצה" },
44
+ "throwing": { label: "זורק", description: "באמצע תנועת זריקה" },
45
+ "leaping": { label: "מזנק", description: "מזנק קדימה באופן דינמי" },
46
+ "dramatic-action": { label: "אקשן דרמטי", description: "תנוחת אקשן מוגזמת" },
47
+ "biting-lip": { label: "נושך שפה", description: "נשיכת שפה שובבה קלה" },
48
+ "mid-laugh": { label: "באמצע צחוק", description: "נתפס באמצע צחוק, ראש לאחור" },
49
+ "pointing-at-camera": { label: "מצביע למצלמה", description: "מצביע ישירות למצלמה" },
50
+ "tongue-out": { label: "לשון בחוץ", description: "הוצאת לשון שובבה" },
51
+ "thinking": { label: "חושב", description: "יד על הסנטר, מהורהר" },
52
+
53
+ // Resting
54
+ "lying-down": { label: "שוכב", description: "שוכב שטוח" },
55
+ "sleeping": { label: "ישן", description: "עיניים עצומות, ישן" },
56
+ "hugging": { label: "מחבק", description: "מחבק אחר" },
57
+ "looking-away": { label: "מסתכל הצידה", description: "ראש מופנה, מסתכל הצידה" },
58
+ "looking-up": { label: "מסתכל למעלה", description: "מביט בשמיים" },
59
+ "looking-down": { label: "מסתכל למטה", description: "עיניים מורדות" },
60
+ "head-over-shoulder": { label: "ראש מעל הכתף", description: "מסתכל לאחור מעל הכתף" },
61
+ "wading-in-water": { label: "צועד במים", description: "צועד בעומק אמצע ירך במים" },
62
+
63
+ // Hand Position
64
+ "hands-in-pockets": { label: "ידיים בכיסים", description: "שתי הידיים מוטמנות בכיסים" },
65
+ "hand-on-hip": { label: "יד על המותן", description: "יד אחת על המותן" },
66
+ "hand-position-hands-on-hips": { label: "ידיים על המותניים", description: "שתי הידיים על המותניים" },
67
+ "hand-on-chin": { label: "יד על הסנטר", description: "יד נשענת על הסנטר" },
68
+ "hand-on-collarbone": { label: "יד על עצם הבריח", description: "יד נשענת על עצם הבריח" },
69
+ "hand-brushing-hair": { label: "יד מסרקת שיער", description: "יד עוברת בשיער" },
70
+ "finger-to-lip": { label: "אצבע על השפה", description: "קצה אצבע נלחץ על השפה התחתונה" },
71
+ "arms-wrapped-around-self": { label: "ידיים סביב עצמך", description: "חיבוק עצמי, ידיים סביב הגוף" },
72
+ "hands-clasped": { label: "ידיים שלובות", description: "שתי הידיים שלובות בחזית" },
73
+
74
+ // Body Lean
75
+ "leaning-back": { label: "נשען לאחור", description: "גוף נשען מעט לאחור" },
76
+ "leaning-forward": { label: "נשען קדימה", description: "גוף נשען לעבר המצלמה" },
77
+ "body-lean-contrapposto": { label: "Contrapposto", description: "משקל על רגל אחת, מותן דחוף החוצה" },
78
+ "arched-back": { label: "גב מקושת", description: "גב מקושת בעדינות, חזה קדימה" },
79
+ "shoulder-rolled-forward": { label: "כתף מגולגלת קדימה", description: "כתף אחת מגולגלת קדימה" },
80
+
81
+ // Head Tilt
82
+ "tilted-up": { label: "מוטה למעלה", description: "ראש מוטה מעט מעלה" },
83
+ "tilted-down": { label: "מוטה למטה", description: "ראש מוטה מעט מטה" },
84
+ "tilted-side": { label: "מוטה הצידה", description: "ראש מוטה לעבר הכתף" },
85
+ "tilted-back": { label: "מוטה לאחור", description: "ראש מלא לאחור, גרון חשוף" },
86
+ "chin-up": { label: "סנטר למעלה", description: "סנטר מורם, מסתכל מטה במורד האף" },
87
+ "chin-tucked": { label: "סנטר למטה", description: "סנטר מקופל לעבר החזה" },
88
+
89
+ // Activity
90
+ "activity-smoking": { label: "מעשן", description: "מחזיק ומעשן סיגריה" },
91
+ "activity-drinking": { label: "שותה", description: "שותה מכוס או מספל" },
92
+ "activity-eating": { label: "אוכל", description: "נתפס באמצע נגיסה" },
93
+ "activity-talking-on-phone": { label: "מדבר בטלפון", description: "טלפון צמוד לאוזן, מדבר" },
94
+ "activity-texting": { label: "מסמס", description: "מסתכל למטה בטלפון, אגודלים מקלידים" },
95
+ "activity-typing-laptop": { label: "מקליד על לפטופ", description: "ידיים על מקלדת, מתמקד במסך" },
96
+ "activity-reading": { label: "קורא", description: "מחזיק ספר או מגזין פתוח" },
97
+ "activity-writing": { label: "כותב", description: "כותב במחברת עם עט" },
98
+ "activity-painting": { label: "מצייר", description: "מצייר על קנבס עם מכחול" },
99
+ "activity-playing-instrument": { label: "מנגן בכלי", description: "מנגן בכלי נגינה" },
100
+ "activity-cooking": { label: "מבשל", description: "מבשל על דלפק או כיריים במטבח" },
101
+ "activity-driving": { label: "נוהג", description: "מאחורי ההגה, ידיים אוחזות" },
102
+ }
103
+
104
+ export default map
@@ -0,0 +1,104 @@
1
+ import type { LocaleCatalogMap } from "./types.js"
2
+
3
+ const map: LocaleCatalogMap = {
4
+ // -------------------- Standing --------------------
5
+ "standing-upright": { label: "सीधे खड़ा", description: "आरामदायक खड़ी मुद्रा" },
6
+ "confident-stance": { label: "आत्मविश्वासी मुद्रा", description: "पैर अलग, कंधे पीछे" },
7
+ "hands-on-hips": { label: "कमर पर हाथ", description: "कमर पर हाथ" },
8
+ "arms-crossed": { label: "बाँहें cross की हुई", description: "छाती पर मुड़ी हुई बाँहें" },
9
+ "leaning": { label: "टेक लगाकर", description: "किसी चीज़ के सहारे टेक लगाकर" },
10
+ "hero-pose": { label: "Hero Pose", description: "Dramatic वीर मुद्रा" },
11
+ "contrapposto": { label: "Contrapposto", description: "कूल्हा झुका हुआ, एक टाँग पर भार" },
12
+ "leaning-against-wall": { label: "दीवार से टेक", description: "दीवार से सहज टेक लगाकर" },
13
+ "hands-behind-head": { label: "सिर के पीछे हाथ", description: "दोनों हाथ सिर के पीछे clasped" },
14
+ "hands-behind-back": { label: "पीठ के पीछे हाथ", description: "हाथ पीठ के पीछे clasped" },
15
+
16
+ // -------------------- Seated --------------------
17
+ "sitting": { label: "बैठा हुआ", description: "स्वाभाविक रूप से बैठा हुआ" },
18
+ "cross-legged": { label: "Cross-legged", description: "फ़र्श पर पालथी मारकर" },
19
+ "kneeling": { label: "घुटनों के बल", description: "ज़मीन पर घुटनों के बल" },
20
+ "crouching": { label: "उकड़ूँ", description: "नीचे उकड़ूँ" },
21
+ "lounging": { label: "Lounging", description: "झुका हुआ, आरामदायक बैठना" },
22
+ "sitting-edge-of-bed": { label: "बिस्तर के किनारे बैठा", description: "बिस्तर के किनारे बैठा हुआ" },
23
+ "chair-arm-drape": { label: "कुर्सी पर टाँगें draped", description: "कुर्सी की arm पर टाँगें draped" },
24
+ "elbow-propped": { label: "Propped कोहनी पर गाल", description: "Propped कोहनी पर गाल टिका हुआ" },
25
+ "lying-on-stomach-reading": { label: "पेट के बल पढ़ते हुए", description: "पेट के बल लेटकर, कोहनियों पर propped होकर पढ़ते हुए" },
26
+
27
+ // -------------------- Movement --------------------
28
+ "walking": { label: "चलते हुए", description: "Mid-stride चलते हुए" },
29
+ "running": { label: "दौड़ते हुए", description: "Mid-run, गति में" },
30
+ "jumping": { label: "कूदते हुए", description: "हवा में, mid-jump" },
31
+ "dancing": { label: "नाचते हुए", description: "Mid-dance में पकड़ा हुआ" },
32
+ "climbing": { label: "चढ़ते हुए", description: "चढ़ते हुए, ऊपर की ओर पकड़ते हुए" },
33
+ "mid-fall": { label: "Mid-Fall", description: "हवा में mid-fall पकड़ा हुआ" },
34
+ "mid-spin": { label: "Mid-Spin", description: "घूमते हुए, mid-rotation" },
35
+ "stretching": { label: "Stretching", description: "बाँहें ऊपर पूरा-बदन stretch" },
36
+ "reaching-up": { label: "ऊपर पहुँचना", description: "बाँहें ऊपर बढ़ी हुई" },
37
+ "kissing": { label: "चूमते हुए", description: "Kiss में बंद" },
38
+ "riding": { label: "सवारी", description: "साइकिल, घोड़े या motorcycle की सवारी" },
39
+ "driving": { label: "गाड़ी चलाते हुए", description: "वाहन का steering wheel पकड़े हुए" },
40
+
41
+ // -------------------- Action --------------------
42
+ "fighting-stance": { label: "Fighting Stance", description: "Combat-ready मुद्रा" },
43
+ "reaching": { label: "पहुँचते हुए", description: "बाहर की ओर पहुँचते हुए" },
44
+ "throwing": { label: "फेंकते हुए", description: "Mid-throw motion" },
45
+ "leaping": { label: "उछलते हुए", description: "गतिशील रूप से आगे उछलते हुए" },
46
+ "dramatic-action": { label: "Dramatic Action", description: "Exaggerated action pose" },
47
+ "biting-lip": { label: "होंठ काटते हुए", description: "हल्का चंचल lip-bite" },
48
+ "mid-laugh": { label: "Mid-Laugh", description: "Mid-laugh में पकड़ा हुआ, सिर पीछे" },
49
+ "pointing-at-camera": { label: "Camera की ओर इशारा", description: "Camera की ओर सीधा इशारा करते हुए" },
50
+ "tongue-out": { label: "जीभ निकाली हुई", description: "चंचल जीभ-out अभिव्यक्ति" },
51
+ "thinking": { label: "सोचते हुए", description: "ठुड्डी पर हाथ, contemplative" },
52
+
53
+ // -------------------- Resting --------------------
54
+ "lying-down": { label: "लेटा हुआ", description: "सपाट लेटा हुआ" },
55
+ "sleeping": { label: "सोता हुआ", description: "आँखें बंद, सोता हुआ" },
56
+ "hugging": { label: "गले लगाते हुए", description: "किसी और को गले लगाते हुए" },
57
+ "looking-away": { label: "दूर देखते हुए", description: "सिर मुड़ा हुआ, दूर देखते हुए" },
58
+ "looking-up": { label: "ऊपर देखते हुए", description: "आसमान की ओर देखते हुए" },
59
+ "looking-down": { label: "नीचे देखते हुए", description: "आँखें झुकी हुई" },
60
+ "head-over-shoulder": { label: "कंधे पर सिर", description: "कंधे पर देखते हुए पीछे की ओर" },
61
+ "wading-in-water": { label: "पानी में चलते हुए", description: "पानी में जाँघ-गहराई तक चलते हुए" },
62
+
63
+ // -------------------- Hand Position --------------------
64
+ "hands-in-pockets": { label: "जेबों में हाथ", description: "दोनों हाथ जेबों में डाले हुए" },
65
+ "hand-on-hip": { label: "कूल्हे पर हाथ", description: "एक हाथ कूल्हे पर" },
66
+ "hand-position-hands-on-hips": { label: "कमर पर हाथ", description: "दोनों हाथ कमर पर" },
67
+ "hand-on-chin": { label: "ठुड्डी पर हाथ", description: "ठुड्डी के नीचे टिका हुआ हाथ" },
68
+ "hand-on-collarbone": { label: "Collarbone पर हाथ", description: "Collarbone पर टिका हुआ हाथ" },
69
+ "hand-brushing-hair": { label: "बालों में हाथ", description: "बालों में चलता हाथ" },
70
+ "finger-to-lip": { label: "होंठ पर उँगली", description: "निचले होंठ पर उँगली का सिरा दबा हुआ" },
71
+ "arms-wrapped-around-self": { label: "ख़ुद को गले लगाए", description: "Self-hug, धड़ के चारों ओर बाँहें" },
72
+ "hands-clasped": { label: "हाथ clasped", description: "दोनों हाथ सामने clasped" },
73
+
74
+ // -------------------- Body Lean --------------------
75
+ "leaning-back": { label: "पीछे झुका", description: "धड़ हल्के से पीछे झुका हुआ" },
76
+ "leaning-forward": { label: "आगे झुका", description: "धड़ camera की ओर झुका हुआ" },
77
+ "body-lean-contrapposto": { label: "Contrapposto", description: "एक टाँग पर भार, कूल्हा बाहर धकेला" },
78
+ "arched-back": { label: "Arched पीठ", description: "पीठ हल्के से arched, छाती आगे" },
79
+ "shoulder-rolled-forward": { label: "कंधा आगे rolled", description: "एक कंधा आगे rolled" },
80
+
81
+ // -------------------- Head Tilt --------------------
82
+ "tilted-up": { label: "ऊपर tilted", description: "सिर हल्का ऊपर tipped" },
83
+ "tilted-down": { label: "नीचे tilted", description: "सिर हल्का नीचे tipped" },
84
+ "tilted-side": { label: "Side पर tilted", description: "सिर कंधे की ओर tilted" },
85
+ "tilted-back": { label: "पीछे tilted", description: "सिर पूरी तरह पीछे, गला दिखाई देता" },
86
+ "chin-up": { label: "ठुड्डी ऊपर", description: "ठुड्डी उठी हुई, नाक से नीचे देखते हुए" },
87
+ "chin-tucked": { label: "ठुड्डी छाती में", description: "ठुड्डी छाती में tucked" },
88
+
89
+ // -------------------- Activity --------------------
90
+ "activity-smoking": { label: "Smoking", description: "Cigarette पकड़ते और पीते हुए" },
91
+ "activity-drinking": { label: "पीते हुए", description: "गिलास या cup से पीते हुए" },
92
+ "activity-eating": { label: "खाते हुए", description: "Mid-bite में पकड़ा हुआ" },
93
+ "activity-talking-on-phone": { label: "फ़ोन पर बात करते हुए", description: "Phone कान से लगाए, बोलते हुए" },
94
+ "activity-texting": { label: "Texting", description: "Phone पर नीचे देखते हुए, अंगूठे type करते हुए" },
95
+ "activity-typing-laptop": { label: "Laptop पर Typing", description: "Keyboard पर हाथ, screen पर ध्यान" },
96
+ "activity-reading": { label: "पढ़ते हुए", description: "किताब या magazine खोले हुए" },
97
+ "activity-writing": { label: "लिखते हुए", description: "Pen से notebook में लिखते हुए" },
98
+ "activity-painting": { label: "पेंटिंग करते हुए", description: "Brush से canvas पर painting करते हुए" },
99
+ "activity-playing-instrument": { label: "वाद्य बजाते हुए", description: "संगीत वाद्य बजाते हुए" },
100
+ "activity-cooking": { label: "खाना बनाते हुए", description: "Kitchen counter या stove पर खाना बनाते हुए" },
101
+ "activity-driving": { label: "गाड़ी चलाते हुए", description: "Wheel के पीछे, हाथ पकड़े हुए" },
102
+ }
103
+
104
+ export default map