@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.
- package/LICENSE +202 -0
- package/README.md +32 -0
- package/dist/index.cjs +12506 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +12269 -0
- package/dist/index.d.ts +12269 -0
- package/dist/index.js +11831 -0
- package/dist/index.js.map +1 -0
- package/package.json +54 -0
- package/src/__tests__/__snapshots__/prompt-builder-segments.test.ts.snap +65 -0
- package/src/__tests__/ai-avatar-pricing.test.ts +321 -0
- package/src/__tests__/apply-video-negative-prompt.test.ts +76 -0
- package/src/__tests__/attach-columns.test.ts +28 -0
- package/src/__tests__/audio-crossfade-curves.test.ts +33 -0
- package/src/__tests__/build-model-menu.test.ts +58 -0
- package/src/__tests__/character-aspect-defaults.test.ts +142 -0
- package/src/__tests__/character-mention-slug.test.ts +199 -0
- package/src/__tests__/character-reference-photo-kinds.test.ts +32 -0
- package/src/__tests__/character-usage-mode.test.ts +147 -0
- package/src/__tests__/character-variant-assets.test.ts +142 -0
- package/src/__tests__/character-voice.test.ts +130 -0
- package/src/__tests__/cinematic-avatar-pricing.test.ts +119 -0
- package/src/__tests__/combine-transitions.test.ts +137 -0
- package/src/__tests__/component-types.test.ts +87 -0
- package/src/__tests__/condition-variables.test.ts +98 -0
- package/src/__tests__/credit-identifiers.test.ts +811 -0
- package/src/__tests__/default-video-provider.test.ts +63 -0
- package/src/__tests__/entity-image-handle.test.ts +43 -0
- package/src/__tests__/entity-variants.test.ts +33 -0
- package/src/__tests__/fal-lip-sync-sets.test.ts +31 -0
- package/src/__tests__/featured-entities.test.ts +33 -0
- package/src/__tests__/film-pricing.test.ts +64 -0
- package/src/__tests__/filter-condition.test.ts +285 -0
- package/src/__tests__/freecut-protocol.test.ts +35 -0
- package/src/__tests__/generate-text-items.test.ts +19 -0
- package/src/__tests__/generated-results.test.ts +50 -0
- package/src/__tests__/graph-utils.test.ts +618 -0
- package/src/__tests__/group-aggregation.test.ts +83 -0
- package/src/__tests__/i18n-locale-completeness.test.ts +156 -0
- package/src/__tests__/image-critic-node.test.ts +86 -0
- package/src/__tests__/image-mask-mode.test.ts +16 -0
- package/src/__tests__/image-ref-limit.test.ts +78 -0
- package/src/__tests__/inpaint-region.test.ts +24 -0
- package/src/__tests__/input-field-map-parity.test.ts +30 -0
- package/src/__tests__/json-evaluator.test.ts +289 -0
- package/src/__tests__/json-path.test.ts +64 -0
- package/src/__tests__/lip-sync-pricing.test.ts +142 -0
- package/src/__tests__/list-merge.test.ts +96 -0
- package/src/__tests__/list-sort.test.ts +134 -0
- package/src/__tests__/llm-models.test.ts +445 -0
- package/src/__tests__/location-mention-slug.test.ts +246 -0
- package/src/__tests__/locations-coverage-critic-schema.test.ts +92 -0
- package/src/__tests__/loop-delimiter.test.ts +39 -0
- package/src/__tests__/lottie-slots.test.ts +245 -0
- package/src/__tests__/model-catalog-flux2-resolutions.test.ts +21 -0
- package/src/__tests__/model-constants-location.test.ts +20 -0
- package/src/__tests__/model-constants.test.ts +122 -0
- package/src/__tests__/model-tree.test.ts +86 -0
- package/src/__tests__/no-internal-imports.test.ts +25 -0
- package/src/__tests__/node-default-mappings.test.ts +175 -0
- package/src/__tests__/node-mappable-fields.test.ts +7 -0
- package/src/__tests__/node-preset-export.test.ts +46 -0
- package/src/__tests__/node-preset-extract.test.ts +166 -0
- package/src/__tests__/node-refs-canonical.test.ts +54 -0
- package/src/__tests__/node-refs-combine.test.ts +54 -0
- package/src/__tests__/node-refs.test.ts +187 -0
- package/src/__tests__/node-runtime-keys.test.ts +99 -0
- package/src/__tests__/object-aspect-defaults.test.ts +59 -0
- package/src/__tests__/parameter-node-value.test.ts +137 -0
- package/src/__tests__/pinterest-url.test.ts +35 -0
- package/src/__tests__/pipeline-chat.test.ts +110 -0
- package/src/__tests__/pipeline-validation.test.ts +98 -0
- package/src/__tests__/presentation-utils.test.ts +1137 -0
- package/src/__tests__/producer-types.test.ts +47 -0
- package/src/__tests__/prompt-length-limits.test.ts +156 -0
- package/src/__tests__/provider-directive-defaults.test.ts +46 -0
- package/src/__tests__/reduce-strategy-registry.test.ts +43 -0
- package/src/__tests__/reference-board-templates.test.ts +33 -0
- package/src/__tests__/reference-roles.test.ts +36 -0
- package/src/__tests__/resolve-field-mappings.test.ts +110 -0
- package/src/__tests__/resolve-pipeline-model.test.ts +76 -0
- package/src/__tests__/scene-node-types.test.ts +80 -0
- package/src/__tests__/scraper-actors.test.ts +67 -0
- package/src/__tests__/seedance-2-catalog.test.ts +18 -0
- package/src/__tests__/seedance-2-credit-id.test.ts +23 -0
- package/src/__tests__/seedance-aspects.test.ts +52 -0
- package/src/__tests__/selector.test.ts +1151 -0
- package/src/__tests__/settled-with-limit.test.ts +214 -0
- package/src/__tests__/social-media-specs.test.ts +129 -0
- package/src/__tests__/sub-workflow-validation.test.ts +88 -0
- package/src/__tests__/switchx-pricing.test.ts +28 -0
- package/src/__tests__/to-connected-references.test.ts +153 -0
- package/src/__tests__/utilities.test.ts +541 -0
- package/src/__tests__/video-analysis-pricing.test.ts +58 -0
- package/src/__tests__/video-analysis.test.ts +63 -0
- package/src/__tests__/video-audio-capability.test.ts +204 -0
- package/src/__tests__/video-gen-providers.test.ts +28 -0
- package/src/__tests__/video-mode-aliases.test.ts +150 -0
- package/src/__tests__/video-ref-limits.test.ts +72 -0
- package/src/__tests__/video-utils.test.ts +303 -0
- package/src/__tests__/voice-changer-models.test.ts +33 -0
- package/src/__tests__/workflow-export-strip.test.ts +46 -0
- package/src/ai-avatar-pricing.ts +213 -0
- package/src/ancestor-refs.ts +48 -0
- package/src/animals.ts +231 -0
- package/src/audio-crossfade-curves.ts +73 -0
- package/src/audio-fx-presets.ts +64 -0
- package/src/avatar-payload-validators.ts +214 -0
- package/src/caption-styles.ts +31 -0
- package/src/character-aspect-defaults.ts +102 -0
- package/src/character-facets.ts +37 -0
- package/src/character-mention-slug.ts +166 -0
- package/src/character-usage-mode.ts +109 -0
- package/src/character-variant-assets.ts +121 -0
- package/src/character-voice.ts +151 -0
- package/src/cinematic-avatar-pricing.ts +111 -0
- package/src/clone-utils.ts +46 -0
- package/src/combine-transitions.ts +482 -0
- package/src/community.ts +112 -0
- package/src/component-types.ts +127 -0
- package/src/condition-variables.ts +65 -0
- package/src/credit-estimators/index.ts +15 -0
- package/src/credit-estimators/video-utils.ts +165 -0
- package/src/credit-identifiers.ts +304 -0
- package/src/entity-approval-types.ts +31 -0
- package/src/entity-aspect-defaults.ts +82 -0
- package/src/entity-asset-types.ts +296 -0
- package/src/entity-image-handle.ts +36 -0
- package/src/extra-refs.ts +139 -0
- package/src/featured-entities.ts +136 -0
- package/src/film-pricing.ts +117 -0
- package/src/filter-condition.ts +250 -0
- package/src/flux2-pricing.ts +18 -0
- package/src/freecut-protocol.ts +52 -0
- package/src/furniture.ts +167 -0
- package/src/generate-text-items.ts +15 -0
- package/src/generated-results.ts +63 -0
- package/src/group-aggregation.ts +75 -0
- package/src/hint-graph-types.ts +18 -0
- package/src/i18n/action-fx.ar.ts +89 -0
- package/src/i18n/action-fx.de.ts +89 -0
- package/src/i18n/action-fx.es.ts +89 -0
- package/src/i18n/action-fx.fr.ts +89 -0
- package/src/i18n/action-fx.he.ts +89 -0
- package/src/i18n/action-fx.hi.ts +89 -0
- package/src/i18n/action-fx.ja.ts +89 -0
- package/src/i18n/action-fx.ko.ts +89 -0
- package/src/i18n/action-fx.pt-BR.ts +89 -0
- package/src/i18n/action-fx.ru.ts +89 -0
- package/src/i18n/action-fx.zh-CN.ts +89 -0
- package/src/i18n/aesthetic.ar.ts +170 -0
- package/src/i18n/aesthetic.de.ts +48 -0
- package/src/i18n/aesthetic.es.ts +169 -0
- package/src/i18n/aesthetic.fr.ts +52 -0
- package/src/i18n/aesthetic.he.ts +169 -0
- package/src/i18n/aesthetic.hi.ts +55 -0
- package/src/i18n/aesthetic.ja.ts +165 -0
- package/src/i18n/aesthetic.ko.ts +169 -0
- package/src/i18n/aesthetic.pt-BR.ts +148 -0
- package/src/i18n/aesthetic.ru.ts +155 -0
- package/src/i18n/aesthetic.zh-CN.ts +172 -0
- package/src/i18n/animals.ar.ts +145 -0
- package/src/i18n/animals.de.ts +144 -0
- package/src/i18n/animals.es.ts +158 -0
- package/src/i18n/animals.fr.ts +144 -0
- package/src/i18n/animals.he.ts +155 -0
- package/src/i18n/animals.hi.ts +157 -0
- package/src/i18n/animals.ja.ts +159 -0
- package/src/i18n/animals.ko.ts +159 -0
- package/src/i18n/animals.pt-BR.ts +157 -0
- package/src/i18n/animals.ru.ts +155 -0
- package/src/i18n/animals.zh-CN.ts +155 -0
- package/src/i18n/atmosphere.ar.ts +49 -0
- package/src/i18n/atmosphere.de.ts +47 -0
- package/src/i18n/atmosphere.es.ts +50 -0
- package/src/i18n/atmosphere.fr.ts +47 -0
- package/src/i18n/atmosphere.he.ts +47 -0
- package/src/i18n/atmosphere.hi.ts +49 -0
- package/src/i18n/atmosphere.ja.ts +49 -0
- package/src/i18n/atmosphere.ko.ts +49 -0
- package/src/i18n/atmosphere.pt-BR.ts +49 -0
- package/src/i18n/atmosphere.ru.ts +47 -0
- package/src/i18n/atmosphere.zh-CN.ts +152 -0
- package/src/i18n/backdrop.ar.ts +53 -0
- package/src/i18n/backdrop.de.ts +46 -0
- package/src/i18n/backdrop.es.ts +54 -0
- package/src/i18n/backdrop.fr.ts +52 -0
- package/src/i18n/backdrop.he.ts +51 -0
- package/src/i18n/backdrop.hi.ts +59 -0
- package/src/i18n/backdrop.ja.ts +61 -0
- package/src/i18n/backdrop.ko.ts +59 -0
- package/src/i18n/backdrop.pt-BR.ts +59 -0
- package/src/i18n/backdrop.ru.ts +57 -0
- package/src/i18n/backdrop.zh-CN.ts +57 -0
- package/src/i18n/camera-format.ar.ts +40 -0
- package/src/i18n/camera-format.de.ts +37 -0
- package/src/i18n/camera-format.es.ts +41 -0
- package/src/i18n/camera-format.fr.ts +37 -0
- package/src/i18n/camera-format.he.ts +37 -0
- package/src/i18n/camera-format.hi.ts +42 -0
- package/src/i18n/camera-format.ja.ts +37 -0
- package/src/i18n/camera-format.ko.ts +37 -0
- package/src/i18n/camera-format.pt-BR.ts +46 -0
- package/src/i18n/camera-format.ru.ts +42 -0
- package/src/i18n/camera-format.zh-CN.ts +42 -0
- package/src/i18n/camera-motions.ar.ts +86 -0
- package/src/i18n/camera-motions.de.ts +74 -0
- package/src/i18n/camera-motions.es.ts +86 -0
- package/src/i18n/camera-motions.fr.ts +86 -0
- package/src/i18n/camera-motions.he.ts +86 -0
- package/src/i18n/camera-motions.hi.ts +99 -0
- package/src/i18n/camera-motions.ja.ts +99 -0
- package/src/i18n/camera-motions.ko.ts +99 -0
- package/src/i18n/camera-motions.pt-BR.ts +99 -0
- package/src/i18n/camera-motions.ru.ts +99 -0
- package/src/i18n/camera-motions.zh-CN.ts +99 -0
- package/src/i18n/character-fx.ar.ts +72 -0
- package/src/i18n/character-fx.de.ts +72 -0
- package/src/i18n/character-fx.es.ts +72 -0
- package/src/i18n/character-fx.fr.ts +72 -0
- package/src/i18n/character-fx.he.ts +72 -0
- package/src/i18n/character-fx.hi.ts +72 -0
- package/src/i18n/character-fx.ja.ts +72 -0
- package/src/i18n/character-fx.ko.ts +72 -0
- package/src/i18n/character-fx.pt-BR.ts +72 -0
- package/src/i18n/character-fx.ru.ts +72 -0
- package/src/i18n/character-fx.zh-CN.ts +72 -0
- package/src/i18n/color-look.ar.ts +50 -0
- package/src/i18n/color-look.de.ts +47 -0
- package/src/i18n/color-look.es.ts +50 -0
- package/src/i18n/color-look.fr.ts +50 -0
- package/src/i18n/color-look.he.ts +49 -0
- package/src/i18n/color-look.hi.ts +52 -0
- package/src/i18n/color-look.ja.ts +54 -0
- package/src/i18n/color-look.ko.ts +54 -0
- package/src/i18n/color-look.pt-BR.ts +54 -0
- package/src/i18n/color-look.ru.ts +52 -0
- package/src/i18n/color-look.zh-CN.ts +53 -0
- package/src/i18n/composition-effects.ar.ts +26 -0
- package/src/i18n/composition-effects.de.ts +25 -0
- package/src/i18n/composition-effects.es.ts +27 -0
- package/src/i18n/composition-effects.fr.ts +25 -0
- package/src/i18n/composition-effects.he.ts +25 -0
- package/src/i18n/composition-effects.hi.ts +27 -0
- package/src/i18n/composition-effects.ja.ts +27 -0
- package/src/i18n/composition-effects.ko.ts +27 -0
- package/src/i18n/composition-effects.pt-BR.ts +25 -0
- package/src/i18n/composition-effects.ru.ts +82 -0
- package/src/i18n/composition-effects.zh-CN.ts +25 -0
- package/src/i18n/era.ar.ts +37 -0
- package/src/i18n/era.de.ts +34 -0
- package/src/i18n/era.es.ts +37 -0
- package/src/i18n/era.fr.ts +37 -0
- package/src/i18n/era.he.ts +36 -0
- package/src/i18n/era.hi.ts +39 -0
- package/src/i18n/era.ja.ts +41 -0
- package/src/i18n/era.ko.ts +39 -0
- package/src/i18n/era.pt-BR.ts +41 -0
- package/src/i18n/era.ru.ts +121 -0
- package/src/i18n/era.zh-CN.ts +39 -0
- package/src/i18n/exposure-settings.ar.ts +28 -0
- package/src/i18n/exposure-settings.de.ts +26 -0
- package/src/i18n/exposure-settings.es.ts +28 -0
- package/src/i18n/exposure-settings.fr.ts +29 -0
- package/src/i18n/exposure-settings.he.ts +28 -0
- package/src/i18n/exposure-settings.hi.ts +31 -0
- package/src/i18n/exposure-settings.ja.ts +31 -0
- package/src/i18n/exposure-settings.ko.ts +31 -0
- package/src/i18n/exposure-settings.pt-BR.ts +31 -0
- package/src/i18n/exposure-settings.ru.ts +31 -0
- package/src/i18n/exposure-settings.zh-CN.ts +31 -0
- package/src/i18n/framing.ar.ts +78 -0
- package/src/i18n/framing.de.ts +73 -0
- package/src/i18n/framing.es.ts +78 -0
- package/src/i18n/framing.fr.ts +78 -0
- package/src/i18n/framing.he.ts +77 -0
- package/src/i18n/framing.hi.ts +82 -0
- package/src/i18n/framing.ja.ts +84 -0
- package/src/i18n/framing.ko.ts +82 -0
- package/src/i18n/framing.pt-BR.ts +84 -0
- package/src/i18n/framing.ru.ts +82 -0
- package/src/i18n/framing.zh-CN.ts +82 -0
- package/src/i18n/furniture.ar.ts +92 -0
- package/src/i18n/furniture.de.ts +93 -0
- package/src/i18n/furniture.es.ts +101 -0
- package/src/i18n/furniture.fr.ts +93 -0
- package/src/i18n/furniture.he.ts +101 -0
- package/src/i18n/furniture.hi.ts +101 -0
- package/src/i18n/furniture.ja.ts +101 -0
- package/src/i18n/furniture.ko.ts +101 -0
- package/src/i18n/furniture.pt-BR.ts +101 -0
- package/src/i18n/furniture.ru.ts +101 -0
- package/src/i18n/furniture.zh-CN.ts +101 -0
- package/src/i18n/held-prop.ar.ts +74 -0
- package/src/i18n/held-prop.de.ts +65 -0
- package/src/i18n/held-prop.es.ts +83 -0
- package/src/i18n/held-prop.fr.ts +74 -0
- package/src/i18n/held-prop.he.ts +73 -0
- package/src/i18n/held-prop.hi.ts +82 -0
- package/src/i18n/held-prop.ja.ts +84 -0
- package/src/i18n/held-prop.ko.ts +84 -0
- package/src/i18n/held-prop.pt-BR.ts +84 -0
- package/src/i18n/held-prop.ru.ts +82 -0
- package/src/i18n/held-prop.zh-CN.ts +82 -0
- package/src/i18n/index.ts +208 -0
- package/src/i18n/instrumentation.ar.ts +195 -0
- package/src/i18n/instrumentation.de.ts +195 -0
- package/src/i18n/instrumentation.es.ts +195 -0
- package/src/i18n/instrumentation.fr.ts +195 -0
- package/src/i18n/instrumentation.he.ts +195 -0
- package/src/i18n/instrumentation.hi.ts +195 -0
- package/src/i18n/instrumentation.ja.ts +195 -0
- package/src/i18n/instrumentation.ko.ts +195 -0
- package/src/i18n/instrumentation.pt-BR.ts +195 -0
- package/src/i18n/instrumentation.ru.ts +195 -0
- package/src/i18n/instrumentation.zh-CN.ts +195 -0
- package/src/i18n/lens.ar.ts +24 -0
- package/src/i18n/lens.de.ts +24 -0
- package/src/i18n/lens.es.ts +24 -0
- package/src/i18n/lens.fr.ts +24 -0
- package/src/i18n/lens.he.ts +24 -0
- package/src/i18n/lens.hi.ts +24 -0
- package/src/i18n/lens.ja.ts +24 -0
- package/src/i18n/lens.ko.ts +24 -0
- package/src/i18n/lens.pt-BR.ts +24 -0
- package/src/i18n/lens.ru.ts +25 -0
- package/src/i18n/lens.zh-CN.ts +24 -0
- package/src/i18n/lighting.ar.ts +86 -0
- package/src/i18n/lighting.de.ts +84 -0
- package/src/i18n/lighting.es.ts +89 -0
- package/src/i18n/lighting.fr.ts +84 -0
- package/src/i18n/lighting.he.ts +88 -0
- package/src/i18n/lighting.hi.ts +90 -0
- package/src/i18n/lighting.ja.ts +90 -0
- package/src/i18n/lighting.ko.ts +90 -0
- package/src/i18n/lighting.pt-BR.ts +90 -0
- package/src/i18n/lighting.ru.ts +88 -0
- package/src/i18n/lighting.zh-CN.ts +92 -0
- package/src/i18n/loop-subject.ar.ts +39 -0
- package/src/i18n/loop-subject.de.ts +39 -0
- package/src/i18n/loop-subject.es.ts +39 -0
- package/src/i18n/loop-subject.fr.ts +39 -0
- package/src/i18n/loop-subject.he.ts +39 -0
- package/src/i18n/loop-subject.hi.ts +39 -0
- package/src/i18n/loop-subject.ja.ts +39 -0
- package/src/i18n/loop-subject.ko.ts +39 -0
- package/src/i18n/loop-subject.pt-BR.ts +39 -0
- package/src/i18n/loop-subject.ru.ts +39 -0
- package/src/i18n/loop-subject.zh-CN.ts +39 -0
- package/src/i18n/materials.ar.ts +80 -0
- package/src/i18n/materials.de.ts +80 -0
- package/src/i18n/materials.es.ts +87 -0
- package/src/i18n/materials.fr.ts +80 -0
- package/src/i18n/materials.he.ts +86 -0
- package/src/i18n/materials.hi.ts +86 -0
- package/src/i18n/materials.ja.ts +88 -0
- package/src/i18n/materials.ko.ts +88 -0
- package/src/i18n/materials.pt-BR.ts +88 -0
- package/src/i18n/materials.ru.ts +86 -0
- package/src/i18n/materials.zh-CN.ts +86 -0
- package/src/i18n/mood.ar.ts +61 -0
- package/src/i18n/mood.de.ts +61 -0
- package/src/i18n/mood.es.ts +66 -0
- package/src/i18n/mood.fr.ts +61 -0
- package/src/i18n/mood.he.ts +64 -0
- package/src/i18n/mood.hi.ts +66 -0
- package/src/i18n/mood.ja.ts +66 -0
- package/src/i18n/mood.ko.ts +66 -0
- package/src/i18n/mood.pt-BR.ts +64 -0
- package/src/i18n/mood.ru.ts +64 -0
- package/src/i18n/mood.zh-CN.ts +64 -0
- package/src/i18n/music-genre.ar.ts +302 -0
- package/src/i18n/music-genre.de.ts +302 -0
- package/src/i18n/music-genre.es.ts +302 -0
- package/src/i18n/music-genre.fr.ts +302 -0
- package/src/i18n/music-genre.he.ts +302 -0
- package/src/i18n/music-genre.hi.ts +302 -0
- package/src/i18n/music-genre.ja.ts +302 -0
- package/src/i18n/music-genre.ko.ts +302 -0
- package/src/i18n/music-genre.pt-BR.ts +302 -0
- package/src/i18n/music-genre.ru.ts +302 -0
- package/src/i18n/music-genre.zh-CN.ts +302 -0
- package/src/i18n/music-mood.ar.ts +75 -0
- package/src/i18n/music-mood.de.ts +75 -0
- package/src/i18n/music-mood.es.ts +75 -0
- package/src/i18n/music-mood.fr.ts +75 -0
- package/src/i18n/music-mood.he.ts +75 -0
- package/src/i18n/music-mood.hi.ts +75 -0
- package/src/i18n/music-mood.ja.ts +75 -0
- package/src/i18n/music-mood.ko.ts +75 -0
- package/src/i18n/music-mood.pt-BR.ts +75 -0
- package/src/i18n/music-mood.ru.ts +75 -0
- package/src/i18n/music-mood.zh-CN.ts +75 -0
- package/src/i18n/person.ar.ts +638 -0
- package/src/i18n/person.de.ts +629 -0
- package/src/i18n/person.es.ts +645 -0
- package/src/i18n/person.fr.ts +621 -0
- package/src/i18n/person.he.ts +656 -0
- package/src/i18n/person.hi.ts +654 -0
- package/src/i18n/person.ja.ts +662 -0
- package/src/i18n/person.ko.ts +662 -0
- package/src/i18n/person.pt-BR.ts +656 -0
- package/src/i18n/person.ru.ts +656 -0
- package/src/i18n/person.zh-CN.ts +656 -0
- package/src/i18n/photo-genre.ar.ts +58 -0
- package/src/i18n/photo-genre.de.ts +52 -0
- package/src/i18n/photo-genre.es.ts +64 -0
- package/src/i18n/photo-genre.fr.ts +58 -0
- package/src/i18n/photo-genre.he.ts +62 -0
- package/src/i18n/photo-genre.hi.ts +63 -0
- package/src/i18n/photo-genre.ja.ts +65 -0
- package/src/i18n/photo-genre.ko.ts +63 -0
- package/src/i18n/photo-genre.pt-BR.ts +65 -0
- package/src/i18n/photo-genre.ru.ts +63 -0
- package/src/i18n/photo-genre.zh-CN.ts +63 -0
- package/src/i18n/photographer.ar.ts +75 -0
- package/src/i18n/photographer.de.ts +74 -0
- package/src/i18n/photographer.es.ts +77 -0
- package/src/i18n/photographer.fr.ts +77 -0
- package/src/i18n/photographer.he.ts +78 -0
- package/src/i18n/photographer.hi.ts +80 -0
- package/src/i18n/photographer.ja.ts +84 -0
- package/src/i18n/photographer.ko.ts +84 -0
- package/src/i18n/photographer.pt-BR.ts +83 -0
- package/src/i18n/photographer.ru.ts +78 -0
- package/src/i18n/photographer.zh-CN.ts +78 -0
- package/src/i18n/pose.ar.ts +95 -0
- package/src/i18n/pose.de.ts +96 -0
- package/src/i18n/pose.es.ts +104 -0
- package/src/i18n/pose.fr.ts +96 -0
- package/src/i18n/pose.he.ts +104 -0
- package/src/i18n/pose.hi.ts +104 -0
- package/src/i18n/pose.ja.ts +104 -0
- package/src/i18n/pose.ko.ts +104 -0
- package/src/i18n/pose.pt-BR.ts +104 -0
- package/src/i18n/pose.ru.ts +104 -0
- package/src/i18n/pose.zh-CN.ts +104 -0
- package/src/i18n/post-process-effects.ar.ts +25 -0
- package/src/i18n/post-process-effects.de.ts +24 -0
- package/src/i18n/post-process-effects.es.ts +26 -0
- package/src/i18n/post-process-effects.fr.ts +24 -0
- package/src/i18n/post-process-effects.he.ts +24 -0
- package/src/i18n/post-process-effects.hi.ts +26 -0
- package/src/i18n/post-process-effects.ja.ts +26 -0
- package/src/i18n/post-process-effects.ko.ts +26 -0
- package/src/i18n/post-process-effects.pt-BR.ts +24 -0
- package/src/i18n/post-process-effects.ru.ts +24 -0
- package/src/i18n/post-process-effects.zh-CN.ts +24 -0
- package/src/i18n/render-quality.ar.ts +34 -0
- package/src/i18n/render-quality.de.ts +30 -0
- package/src/i18n/render-quality.es.ts +35 -0
- package/src/i18n/render-quality.fr.ts +34 -0
- package/src/i18n/render-quality.he.ts +33 -0
- package/src/i18n/render-quality.hi.ts +39 -0
- package/src/i18n/render-quality.ja.ts +39 -0
- package/src/i18n/render-quality.ko.ts +39 -0
- package/src/i18n/render-quality.pt-BR.ts +37 -0
- package/src/i18n/render-quality.ru.ts +37 -0
- package/src/i18n/render-quality.zh-CN.ts +37 -0
- package/src/i18n/seasons.ar.ts +10 -0
- package/src/i18n/seasons.de.ts +10 -0
- package/src/i18n/seasons.es.ts +10 -0
- package/src/i18n/seasons.fr.ts +10 -0
- package/src/i18n/seasons.he.ts +10 -0
- package/src/i18n/seasons.hi.ts +10 -0
- package/src/i18n/seasons.ja.ts +10 -0
- package/src/i18n/seasons.ko.ts +10 -0
- package/src/i18n/seasons.pt-BR.ts +10 -0
- package/src/i18n/seasons.ru.ts +10 -0
- package/src/i18n/seasons.zh-CN.ts +10 -0
- package/src/i18n/setting.ar.ts +73 -0
- package/src/i18n/setting.de.ts +73 -0
- package/src/i18n/setting.es.ts +77 -0
- package/src/i18n/setting.fr.ts +73 -0
- package/src/i18n/setting.he.ts +76 -0
- package/src/i18n/setting.hi.ts +76 -0
- package/src/i18n/setting.ja.ts +78 -0
- package/src/i18n/setting.ko.ts +76 -0
- package/src/i18n/setting.pt-BR.ts +78 -0
- package/src/i18n/setting.ru.ts +76 -0
- package/src/i18n/setting.zh-CN.ts +76 -0
- package/src/i18n/style.ar.ts +55 -0
- package/src/i18n/style.de.ts +54 -0
- package/src/i18n/style.es.ts +54 -0
- package/src/i18n/style.fr.ts +54 -0
- package/src/i18n/style.he.ts +54 -0
- package/src/i18n/style.hi.ts +54 -0
- package/src/i18n/style.ja.ts +54 -0
- package/src/i18n/style.ko.ts +54 -0
- package/src/i18n/style.pt-BR.ts +56 -0
- package/src/i18n/style.ru.ts +54 -0
- package/src/i18n/style.zh-CN.ts +54 -0
- package/src/i18n/styling.ar.ts +295 -0
- package/src/i18n/styling.de.ts +285 -0
- package/src/i18n/styling.es.ts +317 -0
- package/src/i18n/styling.fr.ts +285 -0
- package/src/i18n/styling.he.ts +307 -0
- package/src/i18n/styling.hi.ts +323 -0
- package/src/i18n/styling.ja.ts +317 -0
- package/src/i18n/styling.ko.ts +311 -0
- package/src/i18n/styling.pt-BR.ts +301 -0
- package/src/i18n/styling.ru.ts +301 -0
- package/src/i18n/styling.zh-CN.ts +307 -0
- package/src/i18n/temporal.ar.ts +31 -0
- package/src/i18n/temporal.de.ts +24 -0
- package/src/i18n/temporal.es.ts +27 -0
- package/src/i18n/temporal.fr.ts +28 -0
- package/src/i18n/temporal.he.ts +31 -0
- package/src/i18n/temporal.hi.ts +31 -0
- package/src/i18n/temporal.ja.ts +31 -0
- package/src/i18n/temporal.ko.ts +31 -0
- package/src/i18n/temporal.pt-BR.ts +31 -0
- package/src/i18n/temporal.ru.ts +31 -0
- package/src/i18n/temporal.zh-CN.ts +31 -0
- package/src/i18n/transitions.ar.ts +97 -0
- package/src/i18n/transitions.de.ts +97 -0
- package/src/i18n/transitions.es.ts +97 -0
- package/src/i18n/transitions.fr.ts +97 -0
- package/src/i18n/transitions.he.ts +97 -0
- package/src/i18n/transitions.hi.ts +97 -0
- package/src/i18n/transitions.ja.ts +97 -0
- package/src/i18n/transitions.ko.ts +97 -0
- package/src/i18n/transitions.pt-BR.ts +97 -0
- package/src/i18n/transitions.ru.ts +97 -0
- package/src/i18n/transitions.zh-CN.ts +97 -0
- package/src/i18n/types.ts +158 -0
- package/src/i18n/vehicles.ar.ts +137 -0
- package/src/i18n/vehicles.de.ts +125 -0
- package/src/i18n/vehicles.es.ts +138 -0
- package/src/i18n/vehicles.fr.ts +125 -0
- package/src/i18n/vehicles.he.ts +136 -0
- package/src/i18n/vehicles.hi.ts +138 -0
- package/src/i18n/vehicles.ja.ts +138 -0
- package/src/i18n/vehicles.ko.ts +138 -0
- package/src/i18n/vehicles.pt-BR.ts +136 -0
- package/src/i18n/vehicles.ru.ts +136 -0
- package/src/i18n/vehicles.zh-CN.ts +136 -0
- package/src/i18n/voice-character.ar.ts +126 -0
- package/src/i18n/voice-character.de.ts +126 -0
- package/src/i18n/voice-character.es.ts +126 -0
- package/src/i18n/voice-character.fr.ts +126 -0
- package/src/i18n/voice-character.he.ts +126 -0
- package/src/i18n/voice-character.hi.ts +126 -0
- package/src/i18n/voice-character.ja.ts +126 -0
- package/src/i18n/voice-character.ko.ts +126 -0
- package/src/i18n/voice-character.pt-BR.ts +126 -0
- package/src/i18n/voice-character.ru.ts +126 -0
- package/src/i18n/voice-character.zh-CN.ts +126 -0
- package/src/i18n/voice-delivery.ar.ts +77 -0
- package/src/i18n/voice-delivery.de.ts +77 -0
- package/src/i18n/voice-delivery.es.ts +77 -0
- package/src/i18n/voice-delivery.fr.ts +77 -0
- package/src/i18n/voice-delivery.he.ts +77 -0
- package/src/i18n/voice-delivery.hi.ts +77 -0
- package/src/i18n/voice-delivery.ja.ts +77 -0
- package/src/i18n/voice-delivery.ko.ts +77 -0
- package/src/i18n/voice-delivery.pt-BR.ts +77 -0
- package/src/i18n/voice-delivery.ru.ts +77 -0
- package/src/i18n/voice-delivery.zh-CN.ts +77 -0
- package/src/i18n/weapons.ar.ts +115 -0
- package/src/i18n/weapons.de.ts +114 -0
- package/src/i18n/weapons.es.ts +116 -0
- package/src/i18n/weapons.fr.ts +103 -0
- package/src/i18n/weapons.he.ts +114 -0
- package/src/i18n/weapons.hi.ts +116 -0
- package/src/i18n/weapons.ja.ts +116 -0
- package/src/i18n/weapons.ko.ts +116 -0
- package/src/i18n/weapons.pt-BR.ts +114 -0
- package/src/i18n/weapons.ru.ts +114 -0
- package/src/i18n/weapons.zh-CN.ts +114 -0
- package/src/image-critic-node.ts +61 -0
- package/src/image-critic-types.ts +40 -0
- package/src/index.ts +866 -0
- package/src/inject-upstream.ts +15 -0
- package/src/inpaint-region.ts +51 -0
- package/src/json-evaluator.ts +732 -0
- package/src/json-path.ts +52 -0
- package/src/lip-sync-pricing.ts +90 -0
- package/src/list-merge.ts +40 -0
- package/src/list-sort.ts +122 -0
- package/src/list-source-resolver.ts +50 -0
- package/src/llm-models.ts +245 -0
- package/src/location-mention-slug.ts +291 -0
- package/src/location-preset-catalog-map.ts +128 -0
- package/src/loop-delimiter.ts +73 -0
- package/src/lora-routing.ts +95 -0
- package/src/lottie-overlay-catalog.ts +175 -0
- package/src/lottie-slots.ts +309 -0
- package/src/model-catalog.ts +2386 -0
- package/src/model-constants.ts +1910 -0
- package/src/model-tree.ts +120 -0
- package/src/monetization.ts +15 -0
- package/src/multi-pick.ts +42 -0
- package/src/node-default-mappings.ts +262 -0
- package/src/node-mappable-fields.ts +70 -0
- package/src/node-preset-export.ts +56 -0
- package/src/node-preset-extract.ts +147 -0
- package/src/node-refs.ts +253 -0
- package/src/node-runtime-keys.ts +117 -0
- package/src/object-aspect-defaults.ts +72 -0
- package/src/object-picker-types.ts +22 -0
- package/src/parameter-node-value.ts +284 -0
- package/src/pinterest-url.ts +28 -0
- package/src/pipeline-chat.ts +72 -0
- package/src/pipeline-defaults.ts +318 -0
- package/src/pipeline-events.ts +162 -0
- package/src/pipeline-state-types.ts +196 -0
- package/src/pipeline-types.ts +647 -0
- package/src/pipeline-validation.ts +87 -0
- package/src/presentation-types.ts +23 -0
- package/src/presentation-utils.ts +397 -0
- package/src/producer-types.ts +188 -0
- package/src/progress-curve.ts +99 -0
- package/src/provider-directive-defaults.ts +69 -0
- package/src/reduce-strategy-registry.ts +121 -0
- package/src/reference-board-templates.ts +81 -0
- package/src/reference-roles.ts +153 -0
- package/src/reference-sheet/__tests__/board-to-column.test.ts +20 -0
- package/src/reference-sheet/__tests__/catalog.test.ts +50 -0
- package/src/reference-sheet/__tests__/cost.test.ts +38 -0
- package/src/reference-sheet/__tests__/no-drift.test.ts +28 -0
- package/src/reference-sheet/__tests__/panel-plan.test.ts +61 -0
- package/src/reference-sheet/__tests__/panel-prompts.test.ts +17 -0
- package/src/reference-sheet/__tests__/plan-generation.test.ts +72 -0
- package/src/reference-sheet/__tests__/presets.test.ts +54 -0
- package/src/reference-sheet/__tests__/types.test.ts +24 -0
- package/src/reference-sheet/catalog.ts +144 -0
- package/src/reference-sheet/cost.ts +37 -0
- package/src/reference-sheet/credit-id.ts +7 -0
- package/src/reference-sheet/index.ts +8 -0
- package/src/reference-sheet/panel-plan.ts +65 -0
- package/src/reference-sheet/panel-prompts.ts +14 -0
- package/src/reference-sheet/plan-generation.ts +79 -0
- package/src/reference-sheet/presets.ts +77 -0
- package/src/reference-sheet/types.ts +92 -0
- package/src/repeat-types.ts +97 -0
- package/src/resolve-field-mappings.ts +119 -0
- package/src/route-filter.ts +80 -0
- package/src/scene-helper-types.ts +249 -0
- package/src/scene-node-types.ts +281 -0
- package/src/scraper-actors.ts +57 -0
- package/src/scraper-output-schemas.ts +25 -0
- package/src/seasons.ts +45 -0
- package/src/selector.ts +864 -0
- package/src/settled-with-limit.ts +42 -0
- package/src/shot-element.ts +43 -0
- package/src/social-media-specs.ts +121 -0
- package/src/social-post.ts +24 -0
- package/src/sub-workflow-validation.ts +78 -0
- package/src/supported-fonts.ts +40 -0
- package/src/surround.ts +113 -0
- package/src/switchx-pricing.ts +33 -0
- package/src/text-separators.ts +59 -0
- package/src/to-connected-references.ts +77 -0
- package/src/types.ts +272 -0
- package/src/variant-job-id.ts +17 -0
- package/src/vehicles.ts +213 -0
- package/src/video-analysis-pricing.ts +74 -0
- package/src/video-analysis.ts +127 -0
- package/src/video-duration.ts +25 -0
- package/src/voice-changer-models.ts +36 -0
- package/src/voice-matcher-types.ts +37 -0
- package/src/voices.ts +92 -0
- package/src/weapons.ts +190 -0
- package/src/workflow-export.ts +153 -0
|
@@ -0,0 +1,654 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Type --------------------
|
|
5
|
+
"man": { label: "पुरुष", description: "वयस्क पुरुष" },
|
|
6
|
+
"woman": { label: "महिला", description: "वयस्क महिला" },
|
|
7
|
+
"not-defined": { label: "अनिर्दिष्ट", description: "लिंग अनिर्दिष्ट — खुला छोड़ा गया" },
|
|
8
|
+
"beautiful-woman": { label: "सुंदर महिला", description: "क्लासिक रूप से सुंदर महिला" },
|
|
9
|
+
"girl-next-door": { label: "Girl Next Door", description: "मित्रवत, सुलभ, स्वस्थ" },
|
|
10
|
+
"handsome-man": { label: "सुदर्शन पुरुष", description: "क्लासिक रूप से सुदर्शन पुरुष" },
|
|
11
|
+
"boy-next-door": { label: "Boy Next Door", description: "मित्रवत, सुलभ, स्वस्थ" },
|
|
12
|
+
"gentleman": { label: "सज्जन", description: "परिष्कृत, क्लासिक, polished पुरुष" },
|
|
13
|
+
"elegant-woman": { label: "लालित्यपूर्ण महिला", description: "Poised, परिष्कृत महिला" },
|
|
14
|
+
"rugged-man": { label: "Rugged पुरुष", description: "मौसम-पका, rugged पुरुष" },
|
|
15
|
+
"bad-boy": { label: "Bad Boy", description: "विद्रोही, edgy पुरुष" },
|
|
16
|
+
"graceful-woman": { label: "ग्रेसफुल महिला", description: "कोमल, ग्रेसफुल महिला" },
|
|
17
|
+
"baddie": { label: "Baddie", description: "आत्मविश्वासी, trendy, styled महिला" },
|
|
18
|
+
"stylish-influencer": { label: "Stylish Influencer", description: "पॉलिश्ड सोशल मीडिया टेस्टमेकर, ट्रेंड का संदर्भ" },
|
|
19
|
+
"stunning-model": { label: "Stunning Model", description: "Fashion-model aesthetic" },
|
|
20
|
+
"supermodel": { label: "Supermodel", description: "रनवे और पत्रिका कवर की शीर्ष स्तरीय आइकॉनिक स्टार" },
|
|
21
|
+
"femme-fatale": { label: "Femme Fatale", description: "आकर्षक, ख़तरनाक noir seductress" },
|
|
22
|
+
"tough-guy": { label: "कठोर पुरुष", description: "Hardened, कठोर पुरुष" },
|
|
23
|
+
"wise-elder": { label: "बुद्धिमान बुज़ुर्ग", description: "वृद्ध, ज्ञानी बुज़ुर्ग" },
|
|
24
|
+
"silver-fox": { label: "Silver Fox", description: "विशिष्ट आकर्षक उम्रदराज़ पुरुष" },
|
|
25
|
+
"mysterious-figure": { label: "रहस्यमय आकृति", description: "Enigmatic आकृति" },
|
|
26
|
+
|
|
27
|
+
// -------------------- Age --------------------
|
|
28
|
+
"age-baby": { label: "शिशु", description: "2 साल से कम" },
|
|
29
|
+
"age-child": { label: "बच्चा", description: "लगभग 5-12 साल" },
|
|
30
|
+
"age-teen": { label: "किशोर", description: "13-19 साल" },
|
|
31
|
+
"age-20s": { label: "20 के दशक में", description: "बीस के दशक में" },
|
|
32
|
+
"age-30s": { label: "30 के दशक में", description: "तीस के दशक में" },
|
|
33
|
+
"age-40s": { label: "40 के दशक में", description: "चालीस के दशक में" },
|
|
34
|
+
"age-50s": { label: "50 के दशक में", description: "पचास के दशक में" },
|
|
35
|
+
"age-60s": { label: "60 के दशक में", description: "साठ के दशक में" },
|
|
36
|
+
"age-elderly": { label: "बुज़ुर्ग", description: "70 और उससे ऊपर" },
|
|
37
|
+
|
|
38
|
+
// -------------------- Ethnicity --------------------
|
|
39
|
+
"asian-any": { label: "एशियाई (कोई भी)", description: "कोई भी एशियाई — अनिर्दिष्ट क्षेत्र" },
|
|
40
|
+
"east-asian": { label: "पूर्वी एशियाई (कोई भी)", description: "पूर्वी एशियाई features (व्यापक)" },
|
|
41
|
+
"chinese": { label: "चीनी", description: "Han चीनी features" },
|
|
42
|
+
"japanese": { label: "जापानी", description: "जापानी features" },
|
|
43
|
+
"korean": { label: "कोरियाई", description: "कोरियाई features" },
|
|
44
|
+
"mongolian-tibetan": { label: "मंगोलियाई / तिब्बती", description: "मंगोलियाई / तिब्बती features" },
|
|
45
|
+
"south-asian": { label: "दक्षिण एशियाई / भारतीय", description: "भारतीय / पाकिस्तानी / बांग्लादेशी / श्रीलंकाई" },
|
|
46
|
+
"southeast-asian": { label: "दक्षिण-पूर्वी एशियाई (कोई भी)", description: "दक्षिण-पूर्वी एशियाई (व्यापक)" },
|
|
47
|
+
"thai": { label: "थाई", description: "थाई features" },
|
|
48
|
+
"vietnamese": { label: "वियतनामी", description: "वियतनामी features" },
|
|
49
|
+
"indonesian-malay": { label: "इंडोनेशियाई / मलय", description: "इंडोनेशियाई / मलय features" },
|
|
50
|
+
"khmer": { label: "Khmer / कंबोडियाई", description: "Khmer / कंबोडियाई features" },
|
|
51
|
+
"filipino": { label: "Filipino", description: "Filipino features (एशियाई + स्पैनिश विरासत)" },
|
|
52
|
+
"mena-any": { label: "मध्य पूर्वी / उत्तरी अफ़्रीकी (कोई भी)", description: "कोई भी MENA — अनिर्दिष्ट" },
|
|
53
|
+
"middle-eastern": { label: "मध्य पूर्वी (अरब)", description: "अरब / लेवांती / Gulf features" },
|
|
54
|
+
"turkish": { label: "तुर्की", description: "Anatolian तुर्की features" },
|
|
55
|
+
"persian": { label: "Persian / ईरानी", description: "Indo-ईरानी features" },
|
|
56
|
+
"israeli": { label: "इज़राइली", description: "इज़राइली features (मेडिटेरेनियन लेवांटाइन, व्यापक)" },
|
|
57
|
+
"african": { label: "अफ़्रीकी (कोई भी)", description: "कोई भी Sub-Saharan अफ़्रीकी — अनिर्दिष्ट क्षेत्र" },
|
|
58
|
+
"west-african": { label: "पश्चिम अफ़्रीकी", description: "Yoruba / Igbo / Akan / Wolof" },
|
|
59
|
+
"east-african": { label: "पूर्वी अफ़्रीकी", description: "Somali / Ethiopian / Swahili" },
|
|
60
|
+
"central-african": { label: "मध्य अफ़्रीकी", description: "Bantu / Congolese / Angolan" },
|
|
61
|
+
"southern-african": { label: "दक्षिणी अफ़्रीकी", description: "Zulu / Xhosa / Sotho" },
|
|
62
|
+
"afro-caribbean": { label: "Afro-Caribbean", description: "Anglophone Caribbean (Jamaica / Trinidad / Barbados)" },
|
|
63
|
+
"european-any": { label: "यूरोपीय (कोई भी)", description: "कोई भी यूरोपीय — अनिर्दिष्ट क्षेत्र" },
|
|
64
|
+
"nordic": { label: "Nordic (कोई भी)", description: "कोई भी स्कैंडिनेवियाई / उत्तरी यूरोपीय — क्षेत्र निर्दिष्ट नहीं" },
|
|
65
|
+
"swedish": { label: "Swedish", description: "स्वीडन — लंबा, अक्सर सुनहरे बाल, बारीक नैन-नक्श" },
|
|
66
|
+
"norwegian": { label: "Norwegian", description: "नॉर्वे — गोरी त्वचा, अक्सर हल्की आँखें" },
|
|
67
|
+
"danish": { label: "Danish", description: "डेनमार्क — कोमल नैन-नक्श, राख-सुनहरे बाल आम" },
|
|
68
|
+
"finnish": { label: "Finnish", description: "फ़िनलैंड — यूरालिक नैन-नक्श, ऊँचे गाल" },
|
|
69
|
+
"icelandic": { label: "Icelandic", description: "आइसलैंड — नॉर्स + सेल्टिक मिश्रण, तीखे कोणीय नैन-नक्श" },
|
|
70
|
+
"celtic": { label: "Celtic", description: "ब्रिटिश / आयरिश features" },
|
|
71
|
+
"mediterranean": { label: "Mediterranean", description: "दक्षिणी यूरोपीय (व्यापक)" },
|
|
72
|
+
"slavic": { label: "Slavic", description: "पूर्वी यूरोपीय features" },
|
|
73
|
+
"czech": { label: "चेक", description: "चेक features (पश्चिमी स्लाव, मध्य यूरोपीय)" },
|
|
74
|
+
"russian": { label: "रूसी", description: "रूसी features (पूर्वी स्लाव)" },
|
|
75
|
+
"ukrainian": { label: "यूक्रेनी", description: "यूक्रेनी features (पूर्वी स्लाव)" },
|
|
76
|
+
"italian": { label: "इतालवी", description: "इतालवी features" },
|
|
77
|
+
"iberian": { label: "Iberian (स्पैनिश / पुर्तगाली)", description: "Celtiberian + Moorish विरासत के साथ स्पैनिश / पुर्तगाली" },
|
|
78
|
+
"french": { label: "फ़्रेंच", description: "फ़्रेंच features (उत्तर से दक्षिण भिन्न)" },
|
|
79
|
+
"germanic": { label: "Germanic", description: "जर्मन / ऑस्ट्रियाई / डच / स्विस-जर्मन" },
|
|
80
|
+
"greek": { label: "ग्रीक", description: "ग्रीक features" },
|
|
81
|
+
"baltic": { label: "Baltic", description: "लिथुआनियाई / लातवियाई / एस्टोनियाई" },
|
|
82
|
+
"latin-american": { label: "Latin American (कोई भी)", description: "कोई भी Latin American — अनिर्दिष्ट क्षेत्र" },
|
|
83
|
+
"mexican-mesoamerican": { label: "मैक्सिकन / Mesoamerican", description: "मैक्सिकन / Guatemalan / Central American Mestizo" },
|
|
84
|
+
"caribbean-latino": { label: "Caribbean Latin", description: "क्यूबन / Dominican / Puerto Rican" },
|
|
85
|
+
"brazilian": { label: "ब्राज़ीलियाई", description: "ब्राज़ीलियाई (पुर्तगाली + अफ़्रीकी + Indigenous)" },
|
|
86
|
+
"andean-indigenous": { label: "Andean / Indigenous Latin", description: "Quechua / Aymara / Maya / Nahua" },
|
|
87
|
+
"southern-cone": { label: "Southern Cone European", description: "अर्जेंटीनी / उरुग्वायन / चिलियन (मुख्यतः यूरोपीय वंश)" },
|
|
88
|
+
"indigenous-any": { label: "Indigenous (कोई भी)", description: "कोई भी Indigenous — अनिर्दिष्ट समूह" },
|
|
89
|
+
"native-american": { label: "Native American", description: "Native American / First Nations" },
|
|
90
|
+
"aboriginal-australian": { label: "Aboriginal Australian", description: "Aboriginal Australian / Torres Strait" },
|
|
91
|
+
"pacific-islander": { label: "Pacific Islander", description: "Polynesian / Maori / Samoan / Hawaiian" },
|
|
92
|
+
"inuit": { label: "Inuit / Arctic", description: "Inuit / Yupik / Aleut" },
|
|
93
|
+
"mixed": { label: "मिश्रित", description: "मिश्रित विरासत" },
|
|
94
|
+
|
|
95
|
+
// Body (frame / body-mass / bust / waist / hips / silhouette)
|
|
96
|
+
"frame-petite": { label: "Petite", description: "छोटा, कम कद वाला frame" },
|
|
97
|
+
"frame-slim": { label: "पतला", description: "संकरा, छरहरा frame" },
|
|
98
|
+
"frame-average": { label: "औसत", description: "औसत frame" },
|
|
99
|
+
"frame-broad": { label: "Broad", description: "चौड़ा, broad-shouldered frame" },
|
|
100
|
+
"mass-lean": { label: "Lean", description: "दुबला, कम body mass" },
|
|
101
|
+
"mass-average": { label: "औसत", description: "औसत body mass" },
|
|
102
|
+
"mass-full": { label: "भरा", description: "भरे-पूरे शरीर वाला" },
|
|
103
|
+
"mass-heavy": { label: "भारी", description: "भारी, बड़े बदन वाला" },
|
|
104
|
+
"bust-small": { label: "छोटा", description: "छोटा bust" },
|
|
105
|
+
"bust-average": { label: "औसत", description: "औसत bust" },
|
|
106
|
+
"bust-full": { label: "भरा", description: "भरा bust" },
|
|
107
|
+
"bust-very-full": { label: "बहुत भरा", description: "बहुत भरा bust" },
|
|
108
|
+
"waist-defined": { label: "परिभाषित", description: "परिभाषित, संकरी कमर" },
|
|
109
|
+
"waist-average": { label: "औसत", description: "औसत कमर" },
|
|
110
|
+
"waist-straight": { label: "सीधी", description: "सीधी, अपरिभाषित कमर" },
|
|
111
|
+
"hips-narrow": { label: "संकरे", description: "संकरे कूल्हे" },
|
|
112
|
+
"hips-balanced": { label: "संतुलित", description: "संतुलित कूल्हे" },
|
|
113
|
+
"hips-wide": { label: "चौड़े", description: "चौड़े कूल्हे" },
|
|
114
|
+
"silhouette-hourglass": { label: "Hourglass", description: "संतुलित bust और कूल्हे, परिभाषित कमर" },
|
|
115
|
+
"silhouette-rectangular": { label: "Rectangular", description: "सीधा up-and-down silhouette" },
|
|
116
|
+
"silhouette-pear": { label: "Pear", description: "कंधों से चौड़े कूल्हे" },
|
|
117
|
+
"silhouette-inverted": { label: "Inverted Triangle", description: "चौड़े कंधे, संकरे कूल्हे" },
|
|
118
|
+
"silhouette-athletic": { label: "Athletic", description: "दुबला, toned, V-taper" },
|
|
119
|
+
|
|
120
|
+
// -------------------- Face Shape --------------------
|
|
121
|
+
"face-oval": { label: "अंडाकार", description: "चौड़ाई से थोड़ा लंबा, मुलायम curves" },
|
|
122
|
+
"face-round": { label: "गोल", description: "मुलायम वृत्ताकार चेहरा" },
|
|
123
|
+
"face-square": { label: "चौकोर", description: "मज़बूत जबड़ा, माथे और जबड़े की बराबर चौड़ाई" },
|
|
124
|
+
"face-heart": { label: "दिल", description: "चौड़ा माथा, नुकीली ठुड्डी" },
|
|
125
|
+
"face-diamond": { label: "हीरा", description: "संकरा माथा और ठुड्डी, चौड़े गाल की हड्डियाँ" },
|
|
126
|
+
"face-oblong": { label: "Oblong", description: "लंबा और संकरा" },
|
|
127
|
+
"face-triangular": { label: "त्रिकोणीय", description: "संकरा माथा, चौड़ा जबड़ा" },
|
|
128
|
+
|
|
129
|
+
// -------------------- Jawline --------------------
|
|
130
|
+
"jaw-strong": { label: "मज़बूत", description: "तीखा, परिभाषित jawline" },
|
|
131
|
+
"jaw-soft": { label: "मुलायम", description: "मुलायम, गोल जबड़ा" },
|
|
132
|
+
"jaw-pointed": { label: "नुकीला", description: "नुकीली ठुड्डी, संकरा जबड़ा" },
|
|
133
|
+
"jaw-wide": { label: "चौड़ा", description: "चौड़ा, broad जबड़ा" },
|
|
134
|
+
"jaw-double": { label: "दोहरी ठुड्डी", description: "दिखाई देती दोहरी ठुड्डी" },
|
|
135
|
+
|
|
136
|
+
// -------------------- Eye Shape --------------------
|
|
137
|
+
"eye-almond": { label: "बादाम", description: "बादाम-आकार की, थोड़ी ऊपर उठी" },
|
|
138
|
+
"eye-round": { label: "गोल", description: "चौड़ी, गोल आँखें" },
|
|
139
|
+
"eye-hooded": { label: "Hooded", description: "ऊपरी पलक crease को आंशिक रूप से ढकती है" },
|
|
140
|
+
"eye-monolid": { label: "Monolid", description: "कोई दिखाई देती crease नहीं, चिकनी पलक" },
|
|
141
|
+
"eye-deep-set": { label: "Deep-set", description: "Socket में गहरी सेट" },
|
|
142
|
+
"eye-downturned": { label: "Downturned", description: "बाहरी कोने नीचे की ओर" },
|
|
143
|
+
"eye-upturned": { label: "Upturned", description: "बाहरी कोने ऊपर उठे" },
|
|
144
|
+
"eye-wide-set": { label: "चौड़ी-सेट", description: "आँखें चौड़ी दूरी पर सेट" },
|
|
145
|
+
"eye-close-set": { label: "क़रीबी-सेट", description: "आँखें पास सेट" },
|
|
146
|
+
|
|
147
|
+
// -------------------- Nose --------------------
|
|
148
|
+
"nose-straight": { label: "सीधी", description: "सीधा bridge" },
|
|
149
|
+
"nose-aquiline": { label: "Aquiline", description: "घुमावदार hooked bridge" },
|
|
150
|
+
"nose-roman": { label: "Roman", description: "उभरा हुआ bridge हल्के bump के साथ" },
|
|
151
|
+
"nose-snub": { label: "Snub", description: "छोटी, थोड़ी ऊपर उठी" },
|
|
152
|
+
"nose-button": { label: "बटन", description: "छोटी, गोल नोक" },
|
|
153
|
+
"nose-broad": { label: "चौड़ी", description: "चौड़े नथुने, चौड़ा bridge" },
|
|
154
|
+
"nose-narrow": { label: "संकरी", description: "पतली, संकरी" },
|
|
155
|
+
"nose-hooked": { label: "Hooked", description: "मज़बूती से घुमावदार hooked नोक" },
|
|
156
|
+
|
|
157
|
+
// -------------------- Lips --------------------
|
|
158
|
+
"lips-thin": { label: "पतले", description: "पतले होंठ" },
|
|
159
|
+
"lips-medium": { label: "मध्यम", description: "औसत भरापन" },
|
|
160
|
+
"lips-full": { label: "भरे", description: "भरे, plump होंठ" },
|
|
161
|
+
"lips-wide": { label: "चौड़े", description: "चौड़ा मुँह आकार" },
|
|
162
|
+
"lips-cupids-bow": { label: "Cupid's Bow", description: "ऊपरी होंठ पर उभरा हुआ cupid's bow" },
|
|
163
|
+
"lips-small": { label: "छोटे", description: "छोटा petite मुँह" },
|
|
164
|
+
|
|
165
|
+
// -------------------- Lip State --------------------
|
|
166
|
+
"lip-state-chapped": { label: "फटे हुए", description: "Cracked, सूखे, मौसम-पके होंठ" },
|
|
167
|
+
"lip-state-glossy": { label: "Glossy", description: "High-shine, wet-look होंठ" },
|
|
168
|
+
"lip-state-bare": { label: "Bare", description: "स्वाभाविक, untreated, makeup नहीं" },
|
|
169
|
+
"lip-state-bold-red": { label: "Bold Red", description: "संतृप्त लाल lipstick statement" },
|
|
170
|
+
"lip-state-bitten": { label: "Bitten", description: "हल्का चंचल lip-bite, निचला होंठ पकड़ा हुआ" },
|
|
171
|
+
"lip-state-parted": { label: "Parted", description: "होंठ थोड़ा खुले, हवा का breath" },
|
|
172
|
+
"lip-state-pursed": { label: "Pursed", description: "होंठ दबे और आगे धकेले हुए" },
|
|
173
|
+
"lip-state-pouting": { label: "Pouting", description: "पूरा pouting" },
|
|
174
|
+
|
|
175
|
+
// -------------------- Hair Color --------------------
|
|
176
|
+
"hair-platinum": { label: "Platinum", description: "बहुत हल्के, icy platinum" },
|
|
177
|
+
"hair-creamy": { label: "Creamy", description: "गर्म creamy / vanilla blonde" },
|
|
178
|
+
"hair-blonde": { label: "Blonde", description: "क्लासिक blonde बाल" },
|
|
179
|
+
"hair-honey": { label: "Honey", description: "गर्म honey-सुनहरा blonde" },
|
|
180
|
+
"hair-strawberry": { label: "Strawberry Blonde", description: "गुलाबी-लाल tone के साथ blonde" },
|
|
181
|
+
"hair-ash-blonde": { label: "Ash Blonde", description: "ठंडा, ashy blonde" },
|
|
182
|
+
"hair-ginger": { label: "Ginger", description: "चमकीला ginger (लाल-नारंगी)" },
|
|
183
|
+
"hair-copper": { label: "Copper", description: "जीवंत तांबा नारंगी-लाल" },
|
|
184
|
+
"hair-red": { label: "लाल", description: "क्लासिक लाल बाल" },
|
|
185
|
+
"hair-auburn": { label: "Auburn", description: "समृद्ध लाल-भूरा" },
|
|
186
|
+
"hair-burgundy": { label: "Burgundy", description: "गहरा wine-लाल" },
|
|
187
|
+
"hair-light-brown": { label: "हल्का भूरा", description: "हल्के भूरे बाल" },
|
|
188
|
+
"hair-caramel": { label: "Caramel", description: "गर्म caramel भूरा" },
|
|
189
|
+
"hair-brown": { label: "भूरा", description: "मध्यम भूरे बाल" },
|
|
190
|
+
"hair-chestnut": { label: "Chestnut", description: "गर्म लाल-भूरा chestnut" },
|
|
191
|
+
"hair-chocolate": { label: "Chocolate", description: "समृद्ध गहरा chocolate भूरा" },
|
|
192
|
+
"hair-dark-brown": { label: "गहरा भूरा", description: "गहरे भूरे बाल" },
|
|
193
|
+
"hair-black": { label: "काला", description: "क्लासिक काले बाल" },
|
|
194
|
+
"hair-jet-black": { label: "Jet Black", description: "नीले undertones के साथ गहरा काला" },
|
|
195
|
+
"hair-gray": { label: "धूसर", description: "धूसर बाल" },
|
|
196
|
+
"hair-salt-pepper": { label: "Salt & Pepper", description: "मिश्रित काले और धूसर बाल" },
|
|
197
|
+
"hair-white": { label: "सफ़ेद", description: "सफ़ेद बाल" },
|
|
198
|
+
"hair-silver": { label: "Silver", description: "चमकदार धात्विक चांदी" },
|
|
199
|
+
"hair-rose-gold": { label: "Rose Gold", description: "नर्म गुलाबी-सुनहरा धात्विक" },
|
|
200
|
+
"hair-dyed": { label: "Colorful (कोई भी)", description: "जीवंत रंगों में रंगे — अनिर्दिष्ट" },
|
|
201
|
+
"hair-blue": { label: "Blue", description: "गहरे नीले रंगे बाल" },
|
|
202
|
+
"hair-pastel-blue": { label: "Pastel Blue", description: "नर्म पस्तेल आसमानी-नीला" },
|
|
203
|
+
"hair-teal": { label: "Teal", description: "गहरा नीला-हरा संतृप्त" },
|
|
204
|
+
"hair-mint": { label: "Mint", description: "हल्का पुदीना हरा" },
|
|
205
|
+
"hair-green": { label: "Green", description: "गहरे हरे रंगे बाल" },
|
|
206
|
+
"hair-lavender": { label: "Lavender", description: "नर्म लैवेंडर बैंगनी" },
|
|
207
|
+
"hair-purple": { label: "Purple", description: "गहरा बैंगनी" },
|
|
208
|
+
"hair-magenta": { label: "Magenta", description: "जीवंत मजेंटा गुलाबी-बैंगनी" },
|
|
209
|
+
"hair-pink": { label: "Pink", description: "गहरे गुलाबी रंगे बाल" },
|
|
210
|
+
"hair-pastel-pink": { label: "Pastel Pink", description: "नर्म पस्तेल कॉटन-कैंडी गुलाबी" },
|
|
211
|
+
"hair-peach": { label: "Peach", description: "गर्म आड़ू सुनहरा-गुलाबी" },
|
|
212
|
+
"hair-mermaid": { label: "Mermaid", description: "नीला-हरा-बैंगनी समुद्री मिश्रण" },
|
|
213
|
+
"hair-rainbow": { label: "Rainbow", description: "बहुरंगी इंद्रधनुष किस्में" },
|
|
214
|
+
|
|
215
|
+
// -------------------- Hair Base --------------------
|
|
216
|
+
"base-bald": { label: "गंजा / Shaved", description: "गंजा या पूरी तरह shaved सिर" },
|
|
217
|
+
"base-buzz": { label: "Buzz", description: "बहुत छोटे cropped बाल" },
|
|
218
|
+
"base-short-straight": { label: "छोटे सीधे", description: "छोटे, सीधी texture" },
|
|
219
|
+
"base-short-wavy": { label: "छोटे लहरदार", description: "छोटे, लहरदार texture" },
|
|
220
|
+
"base-short-curly": { label: "छोटे घुँघराले", description: "छोटे, घुँघराले texture" },
|
|
221
|
+
"base-short-coily": { label: "छोटे coily", description: "छोटे, कसकर coiled texture" },
|
|
222
|
+
"base-medium-straight": { label: "मध्यम सीधे", description: "कंधे की लंबाई के, सीधे" },
|
|
223
|
+
"base-medium-wavy": { label: "मध्यम लहरदार", description: "कंधे की लंबाई के, लहरदार" },
|
|
224
|
+
"base-medium-curly": { label: "मध्यम घुँघराले", description: "कंधे की लंबाई के, घुँघराले" },
|
|
225
|
+
"base-medium-coily": { label: "मध्यम coily", description: "कंधे की लंबाई के, कसकर coiled" },
|
|
226
|
+
"base-long-straight": { label: "लंबे सीधे", description: "Mid-back, सीधे" },
|
|
227
|
+
"base-long-wavy": { label: "लंबे लहरदार", description: "Mid-back, लहरदार" },
|
|
228
|
+
"base-long-curly": { label: "लंबे घुँघराले", description: "Mid-back, घुँघराले" },
|
|
229
|
+
"base-long-coily": { label: "लंबे coily", description: "Mid-back, कसकर coiled" },
|
|
230
|
+
"base-very-long-straight": { label: "बहुत लंबे सीधे", description: "कमर तक की लंबाई, सीधे" },
|
|
231
|
+
"base-very-long-wavy": { label: "बहुत लंबे लहरदार", description: "कमर तक की लंबाई, लहरदार" },
|
|
232
|
+
"base-very-long-curly": { label: "बहुत लंबे घुँघराले", description: "कमर तक की लंबाई, घुँघराले" },
|
|
233
|
+
"base-afro": { label: "Afro", description: "भरपूर गोल afro" },
|
|
234
|
+
"base-thinning": { label: "पतले हो रहे / पीछे हटते", description: "स्पष्ट रूप से पतले हो रहे या पीछे हटते बाल" },
|
|
235
|
+
"base-wet": { label: "गीले", description: "गीले, चिकने बाल" },
|
|
236
|
+
|
|
237
|
+
// -------------------- Eyebrows --------------------
|
|
238
|
+
"brows-natural": { label: "स्वाभाविक", description: "स्वाभाविक, untouched भौंहें" },
|
|
239
|
+
"brows-thick": { label: "मोटी / Bushy", description: "मोटी, bushy भौंहें" },
|
|
240
|
+
"brows-thin": { label: "पतली / Pencil", description: "पतली, pencil-आकार की भौंहें" },
|
|
241
|
+
"brows-arched": { label: "Arched", description: "मज़बूती से arched, dramatic curve" },
|
|
242
|
+
"brows-straight": { label: "सीधी", description: "सपाट, क्षैतिज भौंहें" },
|
|
243
|
+
"brows-bold": { label: "Bold", description: "परिभाषित, गहरी, भरी भौंहें" },
|
|
244
|
+
"brows-soft": { label: "Soft / Faded", description: "मुलायम, हल्की, faded भौंहें" },
|
|
245
|
+
"brows-microbladed": { label: "Microbladed", description: "Drawn / microbladed crisp आकार" },
|
|
246
|
+
"brows-tinted": { label: "Tinted", description: "बालों से अलग रंग में tinted" },
|
|
247
|
+
"brows-unibrow": { label: "Unibrow", description: "जुड़ी हुई unibrow" },
|
|
248
|
+
|
|
249
|
+
// -------------------- Skin Tone --------------------
|
|
250
|
+
"skin-very-fair": { label: "बहुत गोरी", description: "बहुत गोरी / पीली त्वचा" },
|
|
251
|
+
"skin-fair": { label: "गोरी", description: "गोरी त्वचा" },
|
|
252
|
+
"skin-medium": { label: "मध्यम", description: "मध्यम त्वचा का tone" },
|
|
253
|
+
"skin-olive": { label: "Olive", description: "Olive त्वचा" },
|
|
254
|
+
"skin-tan": { label: "Tan", description: "Tan त्वचा" },
|
|
255
|
+
"skin-brown": { label: "भूरी", description: "भूरी त्वचा" },
|
|
256
|
+
"skin-dark": { label: "गहरी", description: "गहरी त्वचा" },
|
|
257
|
+
|
|
258
|
+
// -------------------- Eye Color --------------------
|
|
259
|
+
"eyes-brown": { label: "भूरी", description: "भूरी आँखें" },
|
|
260
|
+
"eyes-blue": { label: "नीली", description: "नीली आँखें" },
|
|
261
|
+
"eyes-green": { label: "हरी", description: "हरी आँखें" },
|
|
262
|
+
"eyes-hazel": { label: "Hazel", description: "Hazel आँखें" },
|
|
263
|
+
"eyes-gray": { label: "धूसर", description: "धूसर आँखें" },
|
|
264
|
+
"eyes-amber": { label: "Amber", description: "Amber आँखें" },
|
|
265
|
+
"eyes-violet": { label: "Violet", description: "दुर्लभ बैंगनी आँखें (Liz Taylor)" },
|
|
266
|
+
"eyes-gold": { label: "Gold", description: "चमकदार सुनहरी पुतली" },
|
|
267
|
+
"eyes-silver": { label: "Silver", description: "हल्की चांदी-धूसर पुतली" },
|
|
268
|
+
"eyes-red": { label: "Red", description: "लाल पुतली (एल्बिनिज़म / फैंटेसी)" },
|
|
269
|
+
"eyes-pink": { label: "Pink", description: "नर्म गुलाबी पुतली (एल्बिनो / फैंटेसी)" },
|
|
270
|
+
"eyes-turquoise": { label: "Turquoise", description: "जीवंत फ़िरोज़ी नीला-हरा पुतली" },
|
|
271
|
+
|
|
272
|
+
// -------------------- Eye State --------------------
|
|
273
|
+
"eye-state-closed": { label: "बंद", description: "आँखें पूरी तरह बंद, peaceful" },
|
|
274
|
+
"eye-state-half-lidded": { label: "Half-lidded", description: "भारी पलकों वाली नींद भरी नज़र" },
|
|
275
|
+
"eye-state-wide-eyed": { label: "चौड़ी आँखें", description: "आँखें खुली, सतर्क / चौंकी हुई" },
|
|
276
|
+
"eye-state-staring-camera": { label: "Camera की ओर देखते हुए", description: "Lens से सीधा अटूट eye contact" },
|
|
277
|
+
"eye-state-gazing-away": { label: "दूर देखते हुए", description: "Off-camera देखते हुए, contemplative" },
|
|
278
|
+
"eye-state-gazing-up": { label: "ऊपर देखते हुए", description: "ऊपर किसी चीज़ की ओर उठी आँखें" },
|
|
279
|
+
"eye-state-gazing-down": { label: "नीचे देखते हुए", description: "आँखें झुकी हुई" },
|
|
280
|
+
"eye-state-glassy": { label: "Glassy", description: "गीली आँखें / आँसू-glazed" },
|
|
281
|
+
|
|
282
|
+
// -------------------- Facial Hair --------------------
|
|
283
|
+
"face-clean-shaven": { label: "Clean-shaven", description: "Clean-shaven चेहरा" },
|
|
284
|
+
"face-stubble": { label: "Stubble", description: "हल्की stubble" },
|
|
285
|
+
"face-mustache": { label: "मूँछ", description: "मूँछ" },
|
|
286
|
+
"face-goatee": { label: "Goatee", description: "Goatee" },
|
|
287
|
+
"face-short-beard": { label: "छोटी दाढ़ी", description: "छोटी trimmed दाढ़ी" },
|
|
288
|
+
"face-full-beard": { label: "पूरी दाढ़ी", description: "मोटी पूरी दाढ़ी" },
|
|
289
|
+
|
|
290
|
+
// -------------------- Skin Texture --------------------
|
|
291
|
+
"texture-smooth": { label: "चिकनी", description: "Flawless, रेशमी चिकनी त्वचा" },
|
|
292
|
+
"texture-wrinkled": { label: "झुर्रीदार", description: "वृद्ध, गहरी lined त्वचा" },
|
|
293
|
+
"texture-goosebumps": { label: "Goosebumps", description: "त्वचा पर उठे हुए goosebumps" },
|
|
294
|
+
"texture-dewy": { label: "Dewy", description: "चमकती, dewy ताज़ा त्वचा" },
|
|
295
|
+
"texture-glistening": { label: "Glistening", description: "पसीने या तेल की चमक" },
|
|
296
|
+
"texture-weathered": { label: "Weathered", description: "Sun-aged खुरदुरी त्वचा" },
|
|
297
|
+
"texture-porcelain": { label: "Porcelain", description: "Flawless लगभग पारभासी porcelain" },
|
|
298
|
+
"texture-sun-kissed": { label: "Sun-kissed", description: "Healthy glow के साथ गर्म tan" },
|
|
299
|
+
"texture-tanned": { label: "Tanned", description: "गहरी, समान रूप से tan त्वचा" },
|
|
300
|
+
"texture-tan-lines": { label: "Tan Lines", description: "Swimwear से दिखाई देती tan lines" },
|
|
301
|
+
"texture-freckled": { label: "Freckled", description: "गाल और नाक पर freckles" },
|
|
302
|
+
"texture-ruddy": { label: "Ruddy", description: "गुलाबी-flushed गाल और नाक" },
|
|
303
|
+
"texture-ashen": { label: "Ashen / पीली", description: "ठंडी पीली, लगभग रक्तहीन undertone" },
|
|
304
|
+
"texture-oily": { label: "Oily / Shiny", description: "T-zone पर हल्की तेल की चमक" },
|
|
305
|
+
"texture-matte": { label: "Matte", description: "Poreless matte finish" },
|
|
306
|
+
"texture-blemished": { label: "Blemished", description: "दिखाई देते blemishes, real-skin imperfections" },
|
|
307
|
+
"texture-baby-soft": { label: "Baby-soft", description: "चिकनी, fine-pored युवा त्वचा" },
|
|
308
|
+
"texture-shower-fresh-wet": { label: "Shower-Fresh गीली", description: "Just-out-of-shower गीली त्वचा पानी की बूँदों के साथ" },
|
|
309
|
+
|
|
310
|
+
// -------------------- Distinctive Features --------------------
|
|
311
|
+
"feature-glasses": { label: "चश्मा", description: "चश्मा पहनती है" },
|
|
312
|
+
"feature-freckles": { label: "Freckles", description: "दिखाई देते freckles" },
|
|
313
|
+
"feature-tattoos": { label: "Tattoos", description: "दिखाई देते tattoos" },
|
|
314
|
+
"feature-scar": { label: "Scar", description: "Facial scar" },
|
|
315
|
+
"feature-dimples": { label: "Dimples", description: "Dimpled गाल" },
|
|
316
|
+
"feature-piercing": { label: "Piercing", description: "दिखाई देता piercing" },
|
|
317
|
+
"feature-birthmark": { label: "Birthmark", description: "चेहरे या कंधे पर दिखाई देता birthmark" },
|
|
318
|
+
"feature-mole": { label: "तिल / Beauty Mark", description: "एक प्रमुख तिल, अक्सर ऊपरी होंठ के पास" },
|
|
319
|
+
"feature-gap-teeth": { label: "Gap Teeth", description: "आगे के दाँतों के बीच gap" },
|
|
320
|
+
"feature-aegyo-sal": { label: "Aegyo Sal", description: "K-beauty में सराहा जाने वाला under-eye fold" },
|
|
321
|
+
"feature-eye-bags": { label: "Eye Bags", description: "हल्के गहरे under-eye circles" },
|
|
322
|
+
"feature-dimpled-chin": { label: "Dimpled ठुड्डी", description: "ठुड्डी में मुलायम dimple" },
|
|
323
|
+
"feature-cleft-chin": { label: "Cleft ठुड्डी", description: "परिभाषित लंबवत ठुड्डी cleft" },
|
|
324
|
+
"feature-heterochromia": { label: "Heterochromia", description: "हर iris अलग रंग का" },
|
|
325
|
+
"feature-vitiligo": { label: "Vitiligo", description: "Depigmented त्वचा के patches" },
|
|
326
|
+
"feature-sleeve-tattoo": { label: "Sleeve Tattoo", description: "एक बाँह पर पूरा tattoo sleeve" },
|
|
327
|
+
"feature-face-tattoo": { label: "Face Tattoo", description: "आँख या गाल की हड्डी के पास छोटा face tattoo" },
|
|
328
|
+
"feature-hand-tattoos": { label: "Hand Tattoos", description: "Knuckle / उँगली के tattoos" },
|
|
329
|
+
"feature-visible-piercings": { label: "दिखाई देते Piercings", description: "कई दिखाई देते piercings (septum, नाक, होंठ, multi-ear)" },
|
|
330
|
+
"feature-bare-shoulders": { label: "Bare कंधे", description: "खुले कंधे उजागर" },
|
|
331
|
+
"feature-collarbone-visible": { label: "Collarbone दिखाई देता", description: "रोशनी पकड़ता उभरा collarbone" },
|
|
332
|
+
"feature-midriff-visible": { label: "Midriff दिखाई देता", description: "Top और bottom के बीच खुला midriff" },
|
|
333
|
+
"feature-navel-visible": { label: "Navel दिखाई देता", description: "खुले पेट पर दिखाई देती नाभि" },
|
|
334
|
+
"feature-elongated-neck": { label: "लंबी गर्दन", description: "लंबी हंस-जैसी गर्दन" },
|
|
335
|
+
|
|
336
|
+
// -------------------- Type (Round 2) --------------------
|
|
337
|
+
"femboy": { label: "Femboy", description: "नर्म स्त्रैण मर्दाना type, gender-fluid styling" },
|
|
338
|
+
"twink": { label: "Twink", description: "पतला, चिकना, युवा gay-male type" },
|
|
339
|
+
"soft-butch": { label: "Soft Butch", description: "कोमल मर्दाना-of-center महिला" },
|
|
340
|
+
"tomboy": { label: "Tomboy", description: "स्त्रैण बदन पर लड़कों जैसी styling और ऊर्जा" },
|
|
341
|
+
"thick": { label: "Thick", description: "Voluptuous body-positive figure curves के साथ" },
|
|
342
|
+
"bear": { label: "Bear", description: "बड़ा, दाढ़ी वाला, बालों भरा मर्दाना type" },
|
|
343
|
+
|
|
344
|
+
// -------------------- Distinctive Features (Round 2) --------------------
|
|
345
|
+
"feature-back-tattoo": { label: "Back Tattoo", description: "पीठ पर बड़ा piece" },
|
|
346
|
+
"feature-chest-tattoo": { label: "Chest Tattoo", description: "छाती / décolletage पर tattoo" },
|
|
347
|
+
"feature-leg-tattoo": { label: "Leg Tattoo", description: "टाँग / पिंडली / जाँघ पर दिखाई देता tattoo" },
|
|
348
|
+
"feature-forearm-tattoo": { label: "Forearm Tattoo", description: "अंदरूनी या बाहरी forearm पर tattoo" },
|
|
349
|
+
"feature-ear-piercings": { label: "Ear Piercings", description: "कई stacked कान के piercings (cartilage, helix, conch)" },
|
|
350
|
+
"feature-lip-piercing": { label: "Lip Piercing", description: "होंठ की रिंग / labret stud" },
|
|
351
|
+
"feature-nostril-piercing": { label: "Nostril Piercing", description: "एकल nostril stud या रिंग" },
|
|
352
|
+
|
|
353
|
+
// -------------------- Eye Shape (Round 2) --------------------
|
|
354
|
+
"eye-double-eyelid": { label: "Double Eyelid", description: "परिभाषित ऊपरी पलक crease" },
|
|
355
|
+
|
|
356
|
+
// ----- New age entries -----
|
|
357
|
+
"age-toddler": { label: "नन्हा बच्चा", description: "लगभग 2-3 वर्ष" },
|
|
358
|
+
"age-young-child": { label: "छोटा बच्चा", description: "लगभग 4-6 वर्ष" },
|
|
359
|
+
"age-pre-teen": { label: "Pre-Teen", description: "लगभग 10-12 वर्ष" },
|
|
360
|
+
"age-early-teen": { label: "नवयुवा किशोर", description: "लगभग 13-15 वर्ष" },
|
|
361
|
+
"age-late-teen": { label: "वरिष्ठ किशोर", description: "लगभग 16-19 वर्ष" },
|
|
362
|
+
"age-early-20s": { label: "20 के शुरुआती वर्ष", description: "लगभग 20-23 वर्ष" },
|
|
363
|
+
"age-late-20s": { label: "20 के अंतिम वर्ष", description: "लगभग 24-29 वर्ष" },
|
|
364
|
+
"age-custom": { label: "कस्टम आयु...", description: "वर्षों में सटीक आयु निर्दिष्ट करें" },
|
|
365
|
+
|
|
366
|
+
// ----- Primitive / Wild -----
|
|
367
|
+
"caveman": { label: "Caveman", description: "पाषाण युग का आदिम पुरुष" },
|
|
368
|
+
"cavewoman": { label: "Cavewoman", description: "पाषाण युग की आदिम महिला" },
|
|
369
|
+
"apeman": { label: "Apeman", description: "आधा-मानव आधा-वानर hybrid" },
|
|
370
|
+
"feral-wildman": { label: "Feral Wild-Human", description: "प्रचंड आदिम वन्य मानव" },
|
|
371
|
+
"neanderthal": { label: "Neanderthal", description: "पूर्व-आधुनिक मानव प्रजाति" },
|
|
372
|
+
|
|
373
|
+
// ----- Fantasy -----
|
|
374
|
+
"elf-man": { label: "Elf (पुरुष)", description: "नुकीले कानों वाला पुरुष humanoid" },
|
|
375
|
+
"elf-woman": { label: "Elf (स्त्री)", description: "नुकीले कानों वाली स्त्री humanoid" },
|
|
376
|
+
"elf": { label: "Elf", description: "नुकीले कानों वाला पतला humanoid" },
|
|
377
|
+
"half-elf": { label: "Half-Elf", description: "मानव-elf hybrid" },
|
|
378
|
+
"dwarf": { label: "Dwarf", description: "मोटा दाढ़ी वाला humanoid" },
|
|
379
|
+
"orc": { label: "Orc", description: "दाँत वाला विशाल humanoid" },
|
|
380
|
+
"goblin": { label: "Goblin", description: "छोटा शरारती humanoid" },
|
|
381
|
+
"tiefling": { label: "Tiefling", description: "सींगों वाला नारकीय humanoid" },
|
|
382
|
+
"faun": { label: "Faun / Satyr", description: "बकरी पैरों और सींगों वाला humanoid" },
|
|
383
|
+
"centaur": { label: "Centaur", description: "घोड़े के शरीर पर मानव torso" },
|
|
384
|
+
"vampire-man": { label: "Vampire (पुरुष)", description: "नुकीले दाँतों वाला पीला पुरुष अमर" },
|
|
385
|
+
"vampire-woman": { label: "Vampire (स्त्री)", description: "नुकीले दाँतों वाली पीली स्त्री अमर" },
|
|
386
|
+
"vampire": { label: "Vampire", description: "नुकीले दाँतों वाला पीला अमर" },
|
|
387
|
+
"werewolf": { label: "Werewolf", description: "आंशिक रूप से बदला हुआ lycanthrope" },
|
|
388
|
+
"mermaid": { label: "Mermaid", description: "मछली पूँछ वाली स्त्री humanoid" },
|
|
389
|
+
"merman": { label: "Merman", description: "मछली पूँछ वाला पुरुष humanoid" },
|
|
390
|
+
"dragonkin": { label: "Dragonkin", description: "शल्की draconian humanoid" },
|
|
391
|
+
"wizard": { label: "जादूगर (पुरुष)", description: "वस्त्रधारी पुरुष मंत्र-जाप करने वाला" },
|
|
392
|
+
"witch": { label: "जादूगरनी / डायन", description: "वस्त्रधारी स्त्री मंत्र-जाप करने वाली" },
|
|
393
|
+
"sorcerer": { label: "Sorcerer", description: "बहती वस्त्रों में जादुई पुरुष" },
|
|
394
|
+
"sorceress": { label: "Sorceress", description: "बहती वस्त्रों में जादुई स्त्री" },
|
|
395
|
+
"knight-man": { label: "Knight (पुरुष)", description: "Plate armour में पुरुष योद्धा" },
|
|
396
|
+
"knight-woman": { label: "Knight (स्त्री)", description: "Plate armour में स्त्री योद्धा" },
|
|
397
|
+
"knight": { label: "Knight (शूरवीर)", description: "Plate armour में योद्धा" },
|
|
398
|
+
"barbarian-man": { label: "Barbarian (पुरुष)", description: "खाल पहना हुआ हृष्ट-पुष्ट पुरुष योद्धा" },
|
|
399
|
+
"barbarian-woman": { label: "Barbarian (स्त्री)", description: "खाल पहनी हुई हृष्ट-पुष्ट स्त्री योद्धा" },
|
|
400
|
+
"barbarian": { label: "Barbarian", description: "खाल पहना हुआ हृष्ट-पुष्ट योद्धा" },
|
|
401
|
+
"druid": { label: "Druid", description: "प्रकृति से जुड़ा वस्त्रधारी रहस्यवादी" },
|
|
402
|
+
"ranger": { label: "Ranger", description: "लबादा-पहना तीरंदाज / जंगली स्काउट" },
|
|
403
|
+
"necromancer": { label: "Necromancer", description: "पीला dark-arts spellcaster" },
|
|
404
|
+
"prince": { label: "राजकुमार", description: "राजसी युवक" },
|
|
405
|
+
"princess": { label: "राजकुमारी", description: "राजसी युवती" },
|
|
406
|
+
|
|
407
|
+
// ----- Mythic / Divine -----
|
|
408
|
+
"angel": { label: "देवदूत", description: "पंखों वाला दिव्य humanoid" },
|
|
409
|
+
"demon": { label: "राक्षस / दैत्य", description: "सींगों वाला नारकीय humanoid" },
|
|
410
|
+
"ghost": { label: "भूत / आत्मा", description: "पारभासी spectral आकृति" },
|
|
411
|
+
"valkyrie": { label: "Valkyrie", description: "नॉर्स योद्धा-आत्मा स्त्री" },
|
|
412
|
+
"god": { label: "देवता", description: "पुरुष देवता" },
|
|
413
|
+
"goddess": { label: "देवी", description: "स्त्री देवी" },
|
|
414
|
+
|
|
415
|
+
// ----- Sci-Fi -----
|
|
416
|
+
"android-man": { label: "Android (पुरुष)", description: "पुरुष humanoid robot" },
|
|
417
|
+
"android-woman": { label: "Android (स्त्री)", description: "स्त्री humanoid robot" },
|
|
418
|
+
"android-neutral": { label: "Android", description: "humanoid robot, लिंग अनिर्दिष्ट" },
|
|
419
|
+
"cyborg-man": { label: "Cyborg (पुरुष)", description: "पुरुष मानव-मशीन hybrid" },
|
|
420
|
+
"cyborg-woman": { label: "Cyborg (स्त्री)", description: "स्त्री मानव-मशीन hybrid" },
|
|
421
|
+
"cyborg": { label: "Cyborg", description: "मानव-मशीन hybrid" },
|
|
422
|
+
"robot": { label: "Robot", description: "पूर्ण रूप से मशीनी humanoid" },
|
|
423
|
+
"alien": { label: "Alien", description: "गैर-मानव humanoid" },
|
|
424
|
+
"astronaut": { label: "Astronaut", description: "Suit पहना अंतरिक्ष यात्री" },
|
|
425
|
+
"space-marine": { label: "Space Marine", description: "Power armour में सैनिक" },
|
|
426
|
+
"ai-hologram": { label: "AI Hologram", description: "Volumetric प्रकाश आकृति" },
|
|
427
|
+
|
|
428
|
+
// ----- Heroes & Villains -----
|
|
429
|
+
"superhero": { label: "Superhero", description: "मास्क और कैप वाला नायक" },
|
|
430
|
+
"superheroine": { label: "Superheroine", description: "मास्क और कैप वाली नायिका" },
|
|
431
|
+
"masked-vigilante": { label: "Masked Vigilante", description: "गहरे suit में नायक" },
|
|
432
|
+
"supervillain": { label: "Supervillain", description: "नाटकीय खलनायक archetype" },
|
|
433
|
+
"caped-crusader-man": { label: "Caped Crusader (पुरुष)", description: "कवच और cowl में अंधेरा पुरुष नायक" },
|
|
434
|
+
"caped-crusader-woman": { label: "Caped Crusader (स्त्री)", description: "कवच और cowl में अंधेरी स्त्री नायिका" },
|
|
435
|
+
"caped-crusader": { label: "Caped Crusader", description: "कवच और cowl में अंधेरा नायक" },
|
|
436
|
+
"super-soldier": { label: "Super-Soldier", description: "देशभक्त exo-armour में योद्धा" },
|
|
437
|
+
"mutant": { label: "Mutant", description: "दृश्य mutations वाला मानव" },
|
|
438
|
+
"magical-girl": { label: "मैजिकल गर्ल", description: "रूपांतर होने वाली नायिका मूलरूप" },
|
|
439
|
+
// ----- Anime / Anthro -----
|
|
440
|
+
"catgirl": { label: "कैटगर्ल", description: "बिल्ली के कान और पूंछ वाली महिला" },
|
|
441
|
+
"catboy": { label: "कैटबॉय", description: "बिल्ली के कान और पूंछ वाला पुरुष" },
|
|
442
|
+
"anthro": { label: "Anthropomorphic", description: "द्विपाद पशु-headed humanoid" },
|
|
443
|
+
|
|
444
|
+
// ----- Iconic / Public Domain -----
|
|
445
|
+
"sherlock-holmes": { label: "Sherlock Holmes", description: "Victorian consulting detective" },
|
|
446
|
+
"dracula": { label: "Count Dracula", description: "Stoker का gothic vampire count" },
|
|
447
|
+
"frankenstein-monster": { label: "Frankenstein's Monster", description: "Shelley का पुनर्जीवित प्राणी" },
|
|
448
|
+
"phantom-opera": { label: "Phantom of the Opera", description: "Leroux का masked operatic recluse" },
|
|
449
|
+
"mr-hyde": { label: "Mr Hyde", description: "Stevenson का राक्षसी alter ego" },
|
|
450
|
+
"king-arthur": { label: "King Arthur", description: "लीजेंडरी मध्यकालीन राजा" },
|
|
451
|
+
"merlin": { label: "Merlin", description: "Arthurian wizard सलाहकार" },
|
|
452
|
+
"robin-hood": { label: "Robin Hood", description: "जंगल का outlaw archer" },
|
|
453
|
+
"joan-of-arc": { label: "Joan of Arc", description: "कवच में मध्यकालीन योद्धा युवती" },
|
|
454
|
+
"cleopatra": { label: "Cleopatra", description: "मिस्र की अंतिम महारानी" },
|
|
455
|
+
"captain-nemo": { label: "Captain Nemo", description: "Verne का submarine captain" },
|
|
456
|
+
"alice-wonderland": { label: "Alice (Wonderland)", description: "Carroll की Wonderland की लड़की" },
|
|
457
|
+
"peter-pan": { label: "Peter Pan", description: "वह लड़का जो कभी बड़ा नहीं हुआ" },
|
|
458
|
+
"dorothy-oz": { label: "Dorothy (Oz)", description: "Blue gingham में Oz की लड़की" },
|
|
459
|
+
"tin-man": { label: "Tin Man", description: "Oz का tin woodsman" },
|
|
460
|
+
"scarecrow-oz": { label: "Scarecrow (Oz)", description: "Oz का straw scarecrow" },
|
|
461
|
+
"cowardly-lion": { label: "Cowardly Lion", description: "Oz का anthropomorphic शेर" },
|
|
462
|
+
"santa-claus": { label: "Santa Claus", description: "क्रिसमस उपहार-दाता" },
|
|
463
|
+
"grim-reaper": { label: "Grim Reaper", description: "मृत्यु का व्यक्तित्व" },
|
|
464
|
+
// ----- New Type — Warriors / Martial -----
|
|
465
|
+
"ninja": { label: "निंजा", description: "गुप्त शिनोबी हत्यारा" },
|
|
466
|
+
"kunoichi": { label: "कुनोइची", description: "महिला निंजा" },
|
|
467
|
+
"samurai-man": { label: "समुराई (पुरुष)", description: "जापानी कवचधारी योद्धा" },
|
|
468
|
+
"samurai-woman": { label: "समुराई (महिला)", description: "महिला समुराई (ओन्ना-मुशा)" },
|
|
469
|
+
"samurai": { label: "समुराई", description: "जापानी कवचधारी योद्धा" },
|
|
470
|
+
"karate-fighter": { label: "कराटे लड़ाका", description: "गी पहने कराटे साधक" },
|
|
471
|
+
"kung-fu-master": { label: "कुंग फू मास्टर", description: "चीनी मार्शल आर्ट का जानकार" },
|
|
472
|
+
"shaolin-monk": { label: "शाओलिन भिक्षु", description: "बौद्ध योद्धा भिक्षु" },
|
|
473
|
+
"sumo-wrestler": { label: "सूमो पहलवान", description: "जापानी सूमो पहलवान" },
|
|
474
|
+
"gladiator": { label: "ग्लैडिएटर", description: "रोमन अखाड़े का योद्धा" },
|
|
475
|
+
"spartan-warrior": { label: "स्पार्टन योद्धा", description: "प्राचीन ग्रीक होपलाइट" },
|
|
476
|
+
"viking-warrior": { label: "वाइकिंग योद्धा", description: "नॉर्डिक हमलावर" },
|
|
477
|
+
"mongol-warrior": { label: "मंगोल योद्धा", description: "घुड़सवार धनुर्धर" },
|
|
478
|
+
"centurion": { label: "सेंचुरियन", description: "रोमन सेना अधिकारी" },
|
|
479
|
+
"crusader": { label: "क्रूसेडर शूरवीर", description: "मध्यकालीन क्रूसेडर" },
|
|
480
|
+
"pirate": { label: "समुद्री डाकू", description: "स्वर्ण युग का समुद्री डाकू" },
|
|
481
|
+
"musketeer": { label: "मस्केटियर", description: "17वीं सदी का फ्रेंच तलवारबाज़" },
|
|
482
|
+
|
|
483
|
+
// ----- New Type — Professions / Roles -----
|
|
484
|
+
"police-officer": { label: "पुलिस अधिकारी", description: "वर्दी में पुलिस अधिकारी" },
|
|
485
|
+
"policeman": { label: "पुलिसवाला", description: "पुरुष पुलिसकर्मी" },
|
|
486
|
+
"policewoman": { label: "महिला पुलिसकर्मी", description: "महिला पुलिसकर्मी" },
|
|
487
|
+
"firefighter": { label: "अग्निशामक", description: "सुरक्षा गियर में अग्निशामक" },
|
|
488
|
+
"doctor": { label: "डॉक्टर", description: "सफेद कोट में चिकित्सक" },
|
|
489
|
+
"surgeon": { label: "सर्जन", description: "ऑपरेशन थिएटर का सर्जन" },
|
|
490
|
+
"nurse": { label: "नर्स", description: "अस्पताल की नर्स" },
|
|
491
|
+
"chef": { label: "शेफ", description: "वर्दी में रसोइया" },
|
|
492
|
+
"teacher": { label: "शिक्षक/शिक्षिका", description: "कक्षा का शिक्षक" },
|
|
493
|
+
"priest": { label: "पादरी", description: "कैथोलिक पादरी" },
|
|
494
|
+
"nun": { label: "नन", description: "कैथोलिक नन" },
|
|
495
|
+
"soldier": { label: "सैनिक", description: "आधुनिक सैन्यकर्मी" },
|
|
496
|
+
"lawyer": { label: "वकील", description: "सूट में वकील" },
|
|
497
|
+
"judge": { label: "न्यायाधीश", description: "वस्त्र में न्यायाधीश" },
|
|
498
|
+
"scientist": { label: "वैज्ञानिक", description: "लैब कोट में शोधकर्ता" },
|
|
499
|
+
"pilot": { label: "पायलट", description: "वाणिज्यिक एयरलाइन पायलट" },
|
|
500
|
+
"flight-attendant": { label: "विमान परिचारक/परिचारिका", description: "केबिन क्रू सदस्य" },
|
|
501
|
+
"construction-worker": { label: "निर्माण मज़दूर", description: "हेलमेट पहने निर्माण मज़दूर" },
|
|
502
|
+
"businessman": { label: "व्यवसायी", description: "सूट में पुरुष" },
|
|
503
|
+
"businesswoman": { label: "महिला व्यवसायी", description: "सूट में महिला" },
|
|
504
|
+
"farmer": { label: "किसान", description: "कृषि कर्मी" },
|
|
505
|
+
"mechanic": { label: "मिस्त्री", description: "ऑटो/औद्योगिक मिस्त्री" },
|
|
506
|
+
"artist": { label: "कलाकार", description: "चित्रकार / दृश्य कलाकार" },
|
|
507
|
+
"musician": { label: "संगीतकार", description: "वाद्य के साथ कलाकार" },
|
|
508
|
+
"athlete": { label: "खिलाड़ी", description: "पेशेवर खिलाड़ी" },
|
|
509
|
+
"detective": { label: "जासूस", description: "सादे कपड़ों में जांचकर्ता" },
|
|
510
|
+
"journalist": { label: "पत्रकार", description: "नोटबुक के साथ रिपोर्टर" },
|
|
511
|
+
"barista": { label: "बरिस्ता", description: "कॉफ़ी शॉप का सर्वर" },
|
|
512
|
+
|
|
513
|
+
// Regional Aesthetic
|
|
514
|
+
// USA — Mainstream
|
|
515
|
+
"cali-beach": { label: "कैलिफ़ोर्निया बीच", description: "लैड-बैक कैलिफ़ोर्निया बीच-टाउन सौंदर्य" },
|
|
516
|
+
"valley-girl": { label: "Valley Girl", description: "दक्षिणी कैलिफ़ोर्निया वैली सौंदर्य (स्त्री)" },
|
|
517
|
+
"norcal-hippie": { label: "NorCal Hippie", description: "उत्तरी कैलिफ़ोर्निया Berkeley / Bay-Area हिप्पी सौंदर्य" },
|
|
518
|
+
"boho-la": { label: "Boho LA", description: "लॉस एंजेलेस कैन्यन-बोहेमियन सौंदर्य (स्त्री)" },
|
|
519
|
+
"texas-cowgirl": { label: "Texas Cowgirl", description: "टेक्सास वेस्टर्न रैंच-कंट्री सौंदर्य (स्त्री)" },
|
|
520
|
+
"texas-cowboy": { label: "Texas Cowboy", description: "टेक्सास वेस्टर्न रैंच-कंट्री सौंदर्य (पुरुष)" },
|
|
521
|
+
"southern-belle": { label: "Southern Belle", description: "Charleston / Savannah antebellum-शिष्टता सौंदर्य (स्त्री)" },
|
|
522
|
+
"southern-gentleman": { label: "Southern Gentleman", description: "Old-South शिष्टता सौंदर्य (पुरुष)" },
|
|
523
|
+
"miami-latina": { label: "Miami Latina", description: "South Beach कैरिबियन-लैटिन सौंदर्य (स्त्री)" },
|
|
524
|
+
"miami-latino": { label: "Miami Latino", description: "South Beach कैरिबियन-लैटिन सौंदर्य (पुरुष)" },
|
|
525
|
+
"hawaii-island": { label: "Hawaii Island", description: "Polynesian-Pacific हवाईयन सौंदर्य" },
|
|
526
|
+
"nyc-fashion": { label: "NYC Fashion", description: "मैनहट्टन editorial-फ़ैशन सौंदर्य (स्त्री)" },
|
|
527
|
+
"nyc-sharp": { label: "NYC Sharp", description: "मैनहट्टन power-tailored सौंदर्य (पुरुष)" },
|
|
528
|
+
"brooklyn-hipster": { label: "Brooklyn Hipster", description: "Williamsburg creative-class सौंदर्य" },
|
|
529
|
+
"new-england-prep": { label: "New England Prep", description: "Cape Cod / Nantucket old-money preppy सौंदर्य" },
|
|
530
|
+
"pnw-granola": { label: "PNW Granola", description: "Portland / Seattle outdoorsy सौंदर्य" },
|
|
531
|
+
"nashville-country": { label: "Nashville Country", description: "Music-City आधुनिक country-pop सौंदर्य (स्त्री)" },
|
|
532
|
+
"nashville-cowboy": { label: "Nashville Cowboy", description: "Music-City आधुनिक-cowboy सौंदर्य (पुरुष)" },
|
|
533
|
+
"vegas-glam": { label: "Vegas Glam", description: "Las Vegas Strip-glamour सौंदर्य (स्त्री)" },
|
|
534
|
+
"vegas-suit": { label: "Vegas Suit", description: "Las Vegas Strip suited सौंदर्य (पुरुष)" },
|
|
535
|
+
// USA — African-American
|
|
536
|
+
"harlem-classic": { label: "Harlem Classic", description: "Black-New-York विरासत सौंदर्य, jazz-age लालित्य" },
|
|
537
|
+
"atl-southern": { label: "ATL Southern", description: "अटलांटा Black-South hip-hop / R&B सौंदर्य" },
|
|
538
|
+
"nola-creole": { label: "NOLA Creole", description: "New Orleans Louisiana French-Caribbean-African सौंदर्य" },
|
|
539
|
+
"dmv-go-go": { label: "DMV Go-Go", description: "DC / Maryland / Virginia Black-DMV go-go सौंदर्य" },
|
|
540
|
+
"west-coast-hip-hop": { label: "West Coast", description: "South Central / Compton West Coast hip-hop सौंदर्य" },
|
|
541
|
+
"chicago-south-side": { label: "Chicago South Side", description: "Midwest Black-urban शिकागो सौंदर्य" },
|
|
542
|
+
// Europe
|
|
543
|
+
"parisienne": { label: "पेरिसियन", description: "Left-Bank पेरिस French-chic सौंदर्य (स्त्री)" },
|
|
544
|
+
"parisian-flaneur": { label: "Parisian Flâneur", description: "Left-Bank पेरिस French-chic सौंदर्य (पुरुष)" },
|
|
545
|
+
"milanese-fashion": { label: "Milanese Fashion", description: "इतालवी मिलानीज़ high-fashion सौंदर्य" },
|
|
546
|
+
"sicilian-beach": { label: "Sicilian Beach", description: "Mediterranean दक्षिणी-इतालवी बीच सौंदर्य" },
|
|
547
|
+
"madrileña": { label: "Madrileña", description: "मैड्रिड स्पैनिश सौंदर्य (स्त्री)" },
|
|
548
|
+
"madrileño": { label: "Madrileño", description: "मैड्रिड स्पैनिश सौंदर्य (पुरुष)" },
|
|
549
|
+
"catalan-modern": { label: "Catalan Modern", description: "बार्सिलोना Mediterranean-design सौंदर्य" },
|
|
550
|
+
"greek-mediterranean": { label: "Greek Mediterranean", description: "Aegean island ग्रीक सौंदर्य" },
|
|
551
|
+
"scandi-minimal": { label: "Scandi Minimal", description: "Nordic clean-line minimal सौंदर्य" },
|
|
552
|
+
"english-rose": { label: "English Rose", description: "ग्रामीण अंग्रेज़ी सौंदर्य (स्त्री)" },
|
|
553
|
+
"london-prep": { label: "London Prep", description: "Mayfair / Chelsea परिष्कृत ब्रिटिश सौंदर्य (पुरुष)" },
|
|
554
|
+
"manchester-indie": { label: "Manchester Indie", description: "उत्तर-इंग्लैंड gig-and-rain working-class-cool सौंदर्य" },
|
|
555
|
+
"berlin-alt": { label: "Berlin Alt", description: "Kreuzberg techno-and-art counterculture सौंदर्य" },
|
|
556
|
+
"munich-traditional": { label: "Munich Traditional", description: "Bavarian Oktoberfest-पारंपरिक सौंदर्य" },
|
|
557
|
+
"eastern-european-glam": { label: "Eastern European Glam", description: "मॉस्को / कीव winter-glamour सौंदर्य (स्त्री)" },
|
|
558
|
+
"eastern-european-stoic": { label: "Eastern European Stoic", description: "मॉस्को / कीव weathered-confidence सौंदर्य (पुरुष)" },
|
|
559
|
+
// Asia
|
|
560
|
+
"tokyo-harajuku": { label: "Tokyo Harajuku", description: "टोक्यो खिलंदड़ अभिव्यंजक जापानी street सौंदर्य" },
|
|
561
|
+
"ginza-office": { label: "Ginza Office", description: "टोक्यो Ginza जापानी corporate-elegant सौंदर्य" },
|
|
562
|
+
"shibuya-streetwear": { label: "Shibuya Streetwear", description: "टोक्यो Shibuya street-fashion सौंदर्य" },
|
|
563
|
+
"osaka-everyday": { label: "Osaka Everyday", description: "ओसाका गर्म आरामदायक Kansai सौंदर्य" },
|
|
564
|
+
"seoul-k-pop": { label: "Seoul K-Pop", description: "सियोल कोरियाई-पॉप polished सौंदर्य" },
|
|
565
|
+
"gangnam-glam": { label: "Gangnam Glam", description: "सियोल Gangnam कोरियाई luxury-district सौंदर्य" },
|
|
566
|
+
"shanghai-modern": { label: "Shanghai Modern", description: "शंघाई चीनी metropolitan सौंदर्य" },
|
|
567
|
+
"beijing-hutong": { label: "Beijing Hutong", description: "बीजिंग old-courtyard पारंपरिक-meets-आधुनिक सौंदर्य" },
|
|
568
|
+
"hong-kong-cinematic": { label: "Hong Kong Cinematic", description: "हांगकांग neon-noir Wong-Kar-Wai सौंदर्य" },
|
|
569
|
+
"mumbai-bollywood": { label: "मुंबई बॉलीवुड", description: "मुंबई भारतीय फ़िल्म-इंडस्ट्री सौंदर्य" },
|
|
570
|
+
"south-india-traditional": { label: "दक्षिण भारतीय पारंपरिक", description: "तमिल / केरल मंदिर-नगर शास्त्रीय सौंदर्य" },
|
|
571
|
+
"bangkok-street": { label: "Bangkok Street", description: "बैंकॉक थाई night-market neon-urban सौंदर्य" },
|
|
572
|
+
// Latin America
|
|
573
|
+
"carioca-rio": { label: "Carioca (Rio)", description: "Rio de Janeiro beach-and-favela-music ब्राज़ीलियाई सौंदर्य" },
|
|
574
|
+
"paulista": { label: "Paulista (São Paulo)", description: "São Paulo metropolitan ब्राज़ीलियाई creative-class सौंदर्य" },
|
|
575
|
+
"buenos-aires-tango": { label: "Buenos Aires Tango", description: "Buenos Aires Recoleta / San Telmo tango सौंदर्य (स्त्री)" },
|
|
576
|
+
"porteño": { label: "Porteño", description: "Buenos Aires परिष्कृत milonguero सौंदर्य (पुरुष)" },
|
|
577
|
+
"mexico-city-chic": { label: "Mexico City Chic", description: "CDMX Roma / Polanco आधुनिक-मैक्सिकन सौंदर्य" },
|
|
578
|
+
"chilango-traditional": { label: "Chilango Traditional", description: "मेक्सिको सिटी गर्म folk-and-feast सौंदर्य" },
|
|
579
|
+
"bogota-cosmopolitan": { label: "Bogotá Cosmopolitan", description: "Bogotá कोलंबियाई राजधानी परिष्कृत Andean सौंदर्य" },
|
|
580
|
+
// Middle East
|
|
581
|
+
"beirut-riviera": { label: "Beirut Riviera", description: "लेबनानी Mediterranean cosmopolitan सौंदर्य" },
|
|
582
|
+
"tel-aviv-beach": { label: "Tel Aviv Beach", description: "तेल अवीव Mediterranean coastal-city startup-energy सौंदर्य" },
|
|
583
|
+
"jerusalem-stone": { label: "Jerusalem Stone", description: "येरुशलम old-city limestone-heritage सौंदर्य" },
|
|
584
|
+
"sabra": { label: "साबरा", description: "Native-इज़राइली direct-and-warm साबरा सौंदर्य" },
|
|
585
|
+
"dubai-modern": { label: "Dubai Modern", description: "Gulf-luxury दुबई cosmopolitan-emirate सौंदर्य" },
|
|
586
|
+
"persian-glam": { label: "Persian Glam", description: "ईरानी heritage-and-glamour Persian सौंदर्य" },
|
|
587
|
+
"istanbul-bosphorus": { label: "Istanbul Bosphorus", description: "इस्तांबुल east-meets-west Bosphorus Ottoman-and-आधुनिक सौंदर्य" },
|
|
588
|
+
// North Africa
|
|
589
|
+
"cairene-cosmopolitan": { label: "Cairene Cosmopolitan", description: "काहिरा मिस्री-अरब metropolitan सौंदर्य" },
|
|
590
|
+
"maghreb-coastal": { label: "Maghreb Coastal", description: "Tunis / Algiers French-Mediterranean-North-African colonial-port सौंदर्य" },
|
|
591
|
+
"marrakech-bohemian": { label: "Marrakech Bohemian", description: "Marrakech मोरक्कन medina warm-spice सौंदर्य" },
|
|
592
|
+
// Sub-Saharan Africa
|
|
593
|
+
"lagos-afro-glam": { label: "Lagos Afro-Glam", description: "🇬🇧 लैगोस नाइजीरियाई Anglophone-West-African metropolitan सौंदर्य" },
|
|
594
|
+
"accra-afro-fashion": { label: "Accra Afro-Fashion", description: "🇬🇧 अक्करा घानाई Anglophone-West-African kente-meets-आधुनिक सौंदर्य" },
|
|
595
|
+
"dakar-francophone": { label: "Dakar Francophone", description: "🇫🇷 डकार सेनेगाली Francophone-West-African coastal-cosmopolitan सौंदर्य" },
|
|
596
|
+
"abidjan-cosmopolitan": { label: "Abidjan Cosmopolitan", description: "🇫🇷 अबीजान आइवोरियन Francophone-West-African urban सौंदर्य" },
|
|
597
|
+
"kinshasa-sape": { label: "Kinshasa SAPE", description: "🇫🇷 किंशासा कांगोली Francophone-Central-African SAPE dandy सौंदर्य" },
|
|
598
|
+
"nairobi-cosmopolitan": { label: "Nairobi Cosmopolitan", description: "🇬🇧 नैरोबी केन्याई Anglophone-East-African modern-urban सौंदर्य" },
|
|
599
|
+
"addis-habesha": { label: "Addis Habesha", description: "अदीस अबाबा इथियोपियाई हबेशा highland-heritage सौंदर्य (इथियोपिया कभी उपनिवेश नहीं था)" },
|
|
600
|
+
"swahili-coast": { label: "Swahili Coast", description: "🇬🇧 ज़ंज़ीबार / मोम्बासा Anglophone-East-African coastal-Swahili सौंदर्य" },
|
|
601
|
+
"johannesburg-urban": { label: "Johannesburg Urban", description: "🇬🇧 जोहान्सबर्ग दक्षिण-अफ़्रीकी Anglophone-Southern-African Black-metropolitan सौंदर्य" },
|
|
602
|
+
"cape-town-cosmopolitan": { label: "Cape Town Cosmopolitan", description: "🇬🇧 केप टाउन दक्षिण-अफ़्रीकी Anglophone-Southern-African coastal-city सौंदर्य" },
|
|
603
|
+
"luanda-lusophone": { label: "Luanda Lusophone", description: "🇵🇹 लुआंडा अंगोलाई Lusophone-Southern-African kizomba-and-Atlantic-coast सौंदर्य" },
|
|
604
|
+
// Oceania
|
|
605
|
+
"bondi-beach": { label: "Bondi Beach", description: "Bondi ऑस्ट्रेलियाई coastal salt-and-sun सौंदर्य" },
|
|
606
|
+
"australian-outback": { label: "Outback", description: "ग्रामीण ऑस्ट्रेलियाई Outback सौंदर्य (स्त्री)" },
|
|
607
|
+
"outback-stockman": { label: "Outback Stockman", description: "ग्रामीण ऑस्ट्रेलियाई Outback सौंदर्य (पुरुष)" },
|
|
608
|
+
"auckland-coastal": { label: "Auckland Coastal", description: "Auckland न्यूज़ीलैंड harbor-city Pacific सौंदर्य" },
|
|
609
|
+
|
|
610
|
+
// Audit follow-up gaps (2026-05-06)
|
|
611
|
+
"androgynous": { label: "Androgynous", description: "जानबूझकर मिश्रित मर्दाना और स्त्रैण cues" },
|
|
612
|
+
"goth": { label: "Goth", description: "Goth उपसंस्कृति सौंदर्य — गहरा, रोमांटिक, नाटकीय" },
|
|
613
|
+
"eye-droopy": { label: "Droopy", description: "पलकें नीचे झुकी हुई — मुलायम, नींदभरी / उदास नज़र" },
|
|
614
|
+
"lip-state-bold-black": { label: "Bold Black", description: "संतृप्त काली lipstick statement (goth / avant-garde)" },
|
|
615
|
+
"lip-state-burgundy": { label: "Burgundy", description: "गहरी wine-red lipstick" },
|
|
616
|
+
"lip-state-plum": { label: "Plum", description: "गहरी बैंगनी-toned lipstick" },
|
|
617
|
+
"lip-state-mauve": { label: "Mauve", description: "हल्की mauve / dusty-pink lipstick" },
|
|
618
|
+
"eyes-black": { label: "काली", description: "सच में काली पुतली (भूरी से भी गहरी)" },
|
|
619
|
+
"skin-very-dark": { label: "बहुत गहरी / Ebony", description: "बहुत गहरी, ebony त्वचा का tone (पैमाने का सबसे गहरा छोर)" },
|
|
620
|
+
"texture-acne-scarred": { label: "Acne-scarred", description: "दिखाई देते acne scars (blemished से अलग — भरे हुए scar pattern)" },
|
|
621
|
+
"face-five-oclock-shadow": { label: "Five-O'Clock Shadow", description: "भारी दैनिक growth — हल्की stubble से घनी" },
|
|
622
|
+
"feature-under-eye-circles": { label: "Under-Eye Circles", description: "आँखों के नीचे हल्के काले घेरे (puffy eye-bags से अलग)" },
|
|
623
|
+
"feature-fangs": { label: "Fangs", description: "दिखाई देते fangs (vampire / character archetype)" },
|
|
624
|
+
|
|
625
|
+
// ----- चेहरे की ज्यामिति: गाल की हड्डियाँ / भराव / आँखें / नाक की नोक / होंठ -----
|
|
626
|
+
"cheekbones-average": { label: "औसत", description: "औसत गाल की हड्डी का उभार (कोई ज़ोर नहीं)" },
|
|
627
|
+
"cheekbones-low": { label: "नीची", description: "नीची, सपाट गाल की हड्डियाँ" },
|
|
628
|
+
"cheekbones-high-defined": { label: "ऊँची और परिभाषित", description: "ऊँची, स्पष्ट रूप से परिभाषित गाल की हड्डियाँ" },
|
|
629
|
+
"cheekbones-sculpted": { label: "ऊँची तराशी हुई", description: "तीखे ढंग से तराशी हुई ऊँची गाल की हड्डियाँ" },
|
|
630
|
+
"cheekbones-wide": { label: "चौड़ी", description: "चौड़ी, प्रमुख गाल की हड्डियाँ" },
|
|
631
|
+
"facial-fullness-average": { label: "औसत", description: "औसत चेहरे का भराव" },
|
|
632
|
+
"facial-fullness-gaunt": { label: "दुबला", description: "धँसे हुए गाल, बहुत कम चेहरे की चर्बी" },
|
|
633
|
+
"facial-fullness-lean": { label: "छरहरा", description: "कम चेहरे की चर्बी, गाल की हड्डियाँ के नीचे हल्की धँसाव" },
|
|
634
|
+
"facial-fullness-full": { label: "भरा", description: "नरम, भरे-भरे गाल" },
|
|
635
|
+
"facial-fullness-round": { label: "गोल", description: "गोल चेहरा, नरम गोल गाल" },
|
|
636
|
+
"eye-wide": { label: "चौड़ी", description: "चौड़ी, बड़ी आँखें" },
|
|
637
|
+
"eye-narrow": { label: "संकरी", description: "संकरी, लंबी आँखें" },
|
|
638
|
+
"eyelid-standard": { label: "मानक", description: "मानक ऊपरी पलक" },
|
|
639
|
+
"canthal-neutral": { label: "तटस्थ", description: "तटस्थ आँख के कोण का झुकाव" },
|
|
640
|
+
"eye-spacing-average": { label: "औसत", description: "औसत आँखों के बीच की दूरी" },
|
|
641
|
+
"eyeset-average": { label: "औसत", description: "औसत भौंह-से-आँख की दूरी" },
|
|
642
|
+
"eyeset-low": { label: "नीची सेट", description: "कम भौंह-से-आँख की दूरी (hunter eyes)" },
|
|
643
|
+
"eyeset-high": { label: "ऊँची सेट", description: "अधिक भौंह-से-आँख की दूरी (doe eyes)" },
|
|
644
|
+
"nose-tip-natural": { label: "प्राकृतिक", description: "प्राकृतिक नाक की नोक (कोई ज़ोर नहीं)" },
|
|
645
|
+
"nose-tip-refined": { label: "परिष्कृत", description: "परिष्कृत, संकरी नोक" },
|
|
646
|
+
"nose-tip-upturned": { label: "ऊपर उठी", description: "थोड़ी ऊपर उठी नोक" },
|
|
647
|
+
"nose-tip-rounded": { label: "गोल", description: "नरम, गोल नोक" },
|
|
648
|
+
"nose-tip-drooping": { label: "झुकी", description: "थोड़ी झुकी, नीचे की ओर नोक" },
|
|
649
|
+
"lips-full-lower": { label: "भरा निचला होंठ", description: "भरे होंठ जिनमें निचला होंठ अधिक भरा" },
|
|
650
|
+
"lips-natural": { label: "प्राकृतिक", description: "प्राकृतिक होंठों का आकार" },
|
|
651
|
+
"lips-heart": { label: "दिल", description: "दिल-आकार के होंठ जिनमें परिभाषित cupid's bow" },
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
export default map
|