@nodaro/shared 1.4.1
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,88 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Fabric
|
|
5
|
+
"silk": { label: "실크", description: "매끄럽고 광택 있는 실크입니다" },
|
|
6
|
+
"cotton": { label: "코튼", description: "부드럽고 매트한 코튼입니다" },
|
|
7
|
+
"denim": { label: "데님", description: "묵직한 인디고 데님입니다" },
|
|
8
|
+
"leather": { label: "가죽", description: "풍부하고 부드러운 가죽입니다" },
|
|
9
|
+
"velvet": { label: "벨벳", description: "풍성한 벨벳입니다" },
|
|
10
|
+
"satin": { label: "새틴", description: "광택이 흐르는 새틴입니다" },
|
|
11
|
+
"lace": { label: "레이스", description: "섬세한 패턴의 레이스입니다" },
|
|
12
|
+
"wool": { label: "울", description: "따뜻하게 짠 울입니다" },
|
|
13
|
+
"linen": { label: "린넨", description: "자연스러운 텍스처의 린넨입니다" },
|
|
14
|
+
"tweed": { label: "트위드", description: "투박하게 짠 트위드입니다" },
|
|
15
|
+
"cashmere": { label: "캐시미어", description: "고급스러운 부드러운 캐시미어입니다" },
|
|
16
|
+
"chiffon": { label: "시폰", description: "투명하게 흐르는 시폰입니다" },
|
|
17
|
+
"fur": { label: "퍼", description: "두껍고 풍성한 모피입니다" },
|
|
18
|
+
|
|
19
|
+
// Metal
|
|
20
|
+
"gold": { label: "금", description: "광택 있는 금입니다" },
|
|
21
|
+
"silver": { label: "은", description: "광택 있는 은입니다" },
|
|
22
|
+
"bronze": { label: "청동", description: "녹청이 낀 주조 청동입니다" },
|
|
23
|
+
"chrome": { label: "크롬", description: "강하게 반사되는 크롬입니다" },
|
|
24
|
+
"copper": { label: "구리", description: "녹청이 있는 따뜻한 구리입니다" },
|
|
25
|
+
"brass": { label: "황동", description: "앤티크 황동입니다" },
|
|
26
|
+
"steel": { label: "스틸", description: "헤어라인 스테인리스 스틸입니다" },
|
|
27
|
+
"iron": { label: "철", description: "거친 단철입니다" },
|
|
28
|
+
"platinum": { label: "백금", description: "광택 있는 백금입니다" },
|
|
29
|
+
"titanium": { label: "티타늄", description: "매트한 산업용 티타늄입니다" },
|
|
30
|
+
|
|
31
|
+
// Stone
|
|
32
|
+
"marble": { label: "대리석", description: "결이 있는 흰 대리석입니다" },
|
|
33
|
+
"granite": { label: "화강암", description: "얼룩덜룩한 광택 화강암입니다" },
|
|
34
|
+
"obsidian": { label: "흑요석", description: "광택 있는 검은 흑요석입니다" },
|
|
35
|
+
"sandstone": { label: "사암", description: "층이 있는 따뜻한 사암입니다" },
|
|
36
|
+
"slate": { label: "슬레이트", description: "어둡고 평평한 슬레이트입니다" },
|
|
37
|
+
"jade": { label: "옥", description: "반투명한 녹색 옥입니다" },
|
|
38
|
+
"onyx": { label: "오닉스", description: "줄무늬가 있는 광택 오닉스입니다" },
|
|
39
|
+
"concrete": { label: "콘크리트", description: "주조된 산업용 콘크리트입니다" },
|
|
40
|
+
|
|
41
|
+
// Wood
|
|
42
|
+
"oak": { label: "오크", description: "결이 풍부한 오크입니다" },
|
|
43
|
+
"mahogany": { label: "마호가니", description: "진한 붉은 마호가니입니다" },
|
|
44
|
+
"walnut": { label: "월넛", description: "어두운 월넛입니다" },
|
|
45
|
+
"bamboo": { label: "대나무", description: "마디가 있는 가벼운 대나무입니다" },
|
|
46
|
+
"birch": { label: "자작나무", description: "옅고 매끄러운 자작나무입니다" },
|
|
47
|
+
"driftwood": { label: "유목", description: "풍화된 유목입니다" },
|
|
48
|
+
|
|
49
|
+
// Glass / Ceramic
|
|
50
|
+
"glass": { label: "유리", description: "맑고 투명한 유리입니다" },
|
|
51
|
+
"stained-glass": { label: "스테인드 글라스", description: "보석 톤의 스테인드 글라스입니다" },
|
|
52
|
+
"crystal": { label: "크리스털", description: "다면 컷의 맑은 크리스털입니다" },
|
|
53
|
+
"porcelain": { label: "도자기", description: "매끄러운 흰 도자기입니다" },
|
|
54
|
+
"ceramic-glazed": { label: "유약 도자기", description: "흙빛의 유약 도자기입니다" },
|
|
55
|
+
"terracotta": { label: "테라코타", description: "따뜻한 무유약 테라코타입니다" },
|
|
56
|
+
|
|
57
|
+
// Natural
|
|
58
|
+
"water": { label: "물", description: "흐르는 반투명한 물입니다" },
|
|
59
|
+
"fire": { label: "불", description: "살아 있는 불꽃입니다" },
|
|
60
|
+
"ice": { label: "얼음", description: "반투명한 결정 얼음입니다" },
|
|
61
|
+
"smoke": { label: "연기", description: "표류하는 환상적 연기입니다" },
|
|
62
|
+
"sand": { label: "모래", description: "고운 알갱이의 모래입니다" },
|
|
63
|
+
"moss": { label: "이끼", description: "무성하게 살아 있는 이끼입니다" },
|
|
64
|
+
"leaves": { label: "잎", description: "겹겹이 쌓인 식물 잎입니다" },
|
|
65
|
+
|
|
66
|
+
// Exotic
|
|
67
|
+
"holographic": { label: "홀로그래픽", description: "무지갯빛 홀로그램입니다" },
|
|
68
|
+
"liquid-metal": { label: "리퀴드 메탈", description: "반사되는 액체 크롬입니다" },
|
|
69
|
+
"neon": { label: "네온 글로우", description: "빛나는 네온 튜빙입니다" },
|
|
70
|
+
"translucent": { label: "트랜스루센트 레진", description: "빛나는 프로스트 레진입니다" },
|
|
71
|
+
"mirror": { label: "미러", description: "완벽한 거울 표면입니다" },
|
|
72
|
+
"plasma": { label: "플라즈마", description: "빛나는 전기 플라즈마입니다" },
|
|
73
|
+
"crystal-shard": { label: "크리스털 샤드", description: "산산조각난 빛나는 크리스털입니다" },
|
|
74
|
+
"obsidian-glass": { label: "옵시디언 글라스", description: "어두운 화산 유리입니다" },
|
|
75
|
+
|
|
76
|
+
// Newly added
|
|
77
|
+
"suede": { label: "스웨이드", description: "부드럽게 기모를 살린 가죽, 매트하고 벨벳 같은 표면입니다" },
|
|
78
|
+
"mesh": { label: "메쉬", description: "비치는 그물망 원단, 운동복 / 시스루 톱에 사용됩니다" },
|
|
79
|
+
"patent-leather": { label: "패턴트 레더", description: "강한 광택을 가진 반사성 가죽입니다" },
|
|
80
|
+
"terrazzo": { label: "테라조", description: "대리석 / 유리 조각이 박힌 복합 석재입니다" },
|
|
81
|
+
"iridescent": { label: "이리데센트", description: "각도에 따라 색이 변하는 무지갯빛 표면입니다" },
|
|
82
|
+
"mother-of-pearl": { label: "자개", description: "조개 안쪽의 진주층, 무지갯빛 크림색입니다" },
|
|
83
|
+
"carbon-fiber": { label: "카본 파이버", description: "직조된 검은 카본 파이버 복합재입니다" },
|
|
84
|
+
"holographic-film": { label: "홀로그래픽 필름", description: "빛을 굴절시켜 무지갯빛 광채를 내는 홀로그램 필름입니다" },
|
|
85
|
+
"subsurface": { label: "서브서피스 글로우", description: "표면 아래에서 빛나는 광채" },
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export default map
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Fabric
|
|
5
|
+
"silk": { label: "Seda", description: "Seda lisa e brilhante" },
|
|
6
|
+
"cotton": { label: "Algodão", description: "Algodão macio e fosco" },
|
|
7
|
+
"denim": { description: "Jeans índigo pesado" },
|
|
8
|
+
"leather": { label: "Couro", description: "Couro rico e macio" },
|
|
9
|
+
"velvet": { label: "Veludo", description: "Veludo aveludado" },
|
|
10
|
+
"satin": { label: "Cetim", description: "Cetim brilhante" },
|
|
11
|
+
"lace": { label: "Renda", description: "Renda delicada estampada" },
|
|
12
|
+
"wool": { label: "Lã", description: "Lã quente trançada" },
|
|
13
|
+
"linen": { label: "Linho", description: "Linho natural texturizado" },
|
|
14
|
+
"tweed": { description: "Tweed rústico trançado" },
|
|
15
|
+
"cashmere": { description: "Cashmere luxuoso e macio" },
|
|
16
|
+
"chiffon": { description: "Chiffon transparente e fluido" },
|
|
17
|
+
"fur": { label: "Pelagem", description: "Pelagem espessa e fofa" },
|
|
18
|
+
|
|
19
|
+
// Metal
|
|
20
|
+
"gold": { label: "Ouro", description: "Ouro polido" },
|
|
21
|
+
"silver": { label: "Prata", description: "Prata polida" },
|
|
22
|
+
"bronze": { description: "Bronze fundido com pátina" },
|
|
23
|
+
"chrome": { description: "Cromo hiper-reflexivo" },
|
|
24
|
+
"copper": { label: "Cobre", description: "Cobre quente com pátina" },
|
|
25
|
+
"brass": { label: "Latão", description: "Latão envelhecido" },
|
|
26
|
+
"steel": { label: "Aço", description: "Aço inoxidável escovado" },
|
|
27
|
+
"iron": { label: "Ferro", description: "Ferro forjado bruto" },
|
|
28
|
+
"platinum": { label: "Platina", description: "Platina lustrosa" },
|
|
29
|
+
"titanium": { label: "Titânio", description: "Titânio industrial fosco" },
|
|
30
|
+
|
|
31
|
+
// Stone
|
|
32
|
+
"marble": { label: "Mármore", description: "Mármore branco com veios" },
|
|
33
|
+
"granite": { label: "Granito", description: "Granito polido pintalgado" },
|
|
34
|
+
"obsidian": { description: "Obsidiana negra brilhante" },
|
|
35
|
+
"sandstone": { label: "Arenito", description: "Arenito quente em camadas" },
|
|
36
|
+
"slate": { label: "Ardósia", description: "Ardósia escura e lisa" },
|
|
37
|
+
"jade": { description: "Jade verde translúcido" },
|
|
38
|
+
"onyx": { description: "Ônix polido com bandas" },
|
|
39
|
+
"concrete": { label: "Concreto", description: "Concreto industrial moldado" },
|
|
40
|
+
|
|
41
|
+
// Wood
|
|
42
|
+
"oak": { label: "Carvalho", description: "Carvalho rico com veios" },
|
|
43
|
+
"mahogany": { label: "Mogno", description: "Mogno vermelho profundo" },
|
|
44
|
+
"walnut": { label: "Nogueira", description: "Nogueira escura" },
|
|
45
|
+
"bamboo": { label: "Bambu", description: "Bambu claro segmentado" },
|
|
46
|
+
"birch": { label: "Bétula", description: "Bétula clara e lisa" },
|
|
47
|
+
"driftwood": { label: "Madeira de Deriva", description: "Madeira de deriva envelhecida" },
|
|
48
|
+
|
|
49
|
+
// Glass / Ceramic
|
|
50
|
+
"glass": { label: "Vidro", description: "Vidro transparente e claro" },
|
|
51
|
+
"stained-glass": { label: "Vitral", description: "Vitral com tons joia" },
|
|
52
|
+
"crystal": { label: "Cristal", description: "Cristal claro facetado" },
|
|
53
|
+
"porcelain": { label: "Porcelana", description: "Porcelana branca e lisa" },
|
|
54
|
+
"ceramic-glazed": { label: "Cerâmica Esmaltada", description: "Cerâmica esmaltada terrosa" },
|
|
55
|
+
"terracotta": { description: "Terracota quente sem esmalte" },
|
|
56
|
+
|
|
57
|
+
// Natural / Elemental
|
|
58
|
+
"water": { label: "Água", description: "Água translúcida fluindo" },
|
|
59
|
+
"fire": { label: "Fogo", description: "Chama viva" },
|
|
60
|
+
"ice": { label: "Gelo", description: "Gelo cristalino e translúcido" },
|
|
61
|
+
"smoke": { label: "Fumaça", description: "Fumaça etérea à deriva" },
|
|
62
|
+
"sand": { label: "Areia", description: "Areia fina e granulada" },
|
|
63
|
+
"moss": { label: "Musgo", description: "Musgo vivo e exuberante" },
|
|
64
|
+
"leaves": { label: "Folhas", description: "Folhas em camadas" },
|
|
65
|
+
|
|
66
|
+
// Exotic / Futuristic
|
|
67
|
+
"holographic": { label: "Holográfico", description: "Holograma iridescente" },
|
|
68
|
+
"liquid-metal": { label: "Metal Líquido", description: "Cromo líquido reflexivo" },
|
|
69
|
+
"neon": { label: "Neon", description: "Tubo de neon brilhante" },
|
|
70
|
+
"translucent": { label: "Resina Translúcida", description: "Resina fosca brilhando" },
|
|
71
|
+
"mirror": { label: "Espelho", description: "Superfície espelhada perfeita" },
|
|
72
|
+
"plasma": { label: "Plasma", description: "Plasma elétrico brilhando" },
|
|
73
|
+
"crystal-shard": { label: "Estilhaços de Cristal", description: "Cristal estilhaçado e brilhante" },
|
|
74
|
+
"obsidian-glass": { description: "Vidro vulcânico escuro" },
|
|
75
|
+
|
|
76
|
+
// Additional materials
|
|
77
|
+
"suede": { label: "Camurça", description: "Couro raspado macio, superfície aveludada e fosca" },
|
|
78
|
+
"mesh": { label: "Tela", description: "Tecido de rede transparente, atlético ou top transparente" },
|
|
79
|
+
"patent-leather": { label: "Couro Envernizado", description: "Couro envernizado de alto brilho e reflexivo" },
|
|
80
|
+
"terrazzo": { label: "Granilite", description: "Pedra composta com lascas de mármore e vidro embutidas" },
|
|
81
|
+
"iridescent": { label: "Iridescente", description: "Superfície arco-íris que muda de cor" },
|
|
82
|
+
"mother-of-pearl": { label: "Madrepérola", description: "Interior de concha perolado, creme iridescente" },
|
|
83
|
+
"carbon-fiber": { label: "Fibra de Carbono", description: "Compósito de fibra de carbono preta trançada" },
|
|
84
|
+
"holographic-film": { label: "Filme Holográfico", description: "Holograma que refrata luz com brilho arco-íris" },
|
|
85
|
+
"subsurface": { label: "Brilho subsuperficial", description: "Luz brilhando sob a superfície" },
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export default map
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Fabric --------------------
|
|
5
|
+
"silk": { label: "Шёлк", description: "Гладкий глянцевый шёлк" },
|
|
6
|
+
"cotton": { label: "Хлопок", description: "Мягкий матовый хлопок" },
|
|
7
|
+
"denim": { label: "Деним", description: "Плотный индиго-деним" },
|
|
8
|
+
"leather": { label: "Кожа", description: "Богатая мягкая кожа" },
|
|
9
|
+
"velvet": { label: "Бархат", description: "Плюшевый бархат" },
|
|
10
|
+
"satin": { label: "Атлас", description: "Глянцевый атлас" },
|
|
11
|
+
"lace": { label: "Кружево", description: "Изящное узорчатое кружево" },
|
|
12
|
+
"wool": { label: "Шерсть", description: "Тёплая тканая шерсть" },
|
|
13
|
+
"linen": { label: "Лён", description: "Натуральный текстурный лён" },
|
|
14
|
+
"tweed": { label: "Твид", description: "Деревенский тканый твид" },
|
|
15
|
+
"cashmere": { label: "Кашемир", description: "Роскошный мягкий кашемир" },
|
|
16
|
+
"chiffon": { label: "Шифон", description: "Прозрачный струящийся шифон" },
|
|
17
|
+
"fur": { label: "Мех", description: "Густой плюшевый мех" },
|
|
18
|
+
|
|
19
|
+
// -------------------- Metal --------------------
|
|
20
|
+
"gold": { label: "Золото", description: "Полированное золото" },
|
|
21
|
+
"silver": { label: "Серебро", description: "Полированное серебро" },
|
|
22
|
+
"bronze": { label: "Бронза", description: "Литая бронза с патиной" },
|
|
23
|
+
"chrome": { label: "Хром", description: "Сверхотражающий хром" },
|
|
24
|
+
"copper": { label: "Медь", description: "Тёплая медь с патиной" },
|
|
25
|
+
"brass": { label: "Латунь", description: "Старинная латунь" },
|
|
26
|
+
"steel": { label: "Сталь", description: "Шлифованная нержавеющая сталь" },
|
|
27
|
+
"iron": { label: "Железо", description: "Грубое кованое железо" },
|
|
28
|
+
"platinum": { label: "Платина", description: "Сияющая платина" },
|
|
29
|
+
"titanium": { label: "Титан", description: "Матовый промышленный титан" },
|
|
30
|
+
|
|
31
|
+
// -------------------- Stone --------------------
|
|
32
|
+
"marble": { label: "Мрамор", description: "Белый мрамор с прожилками" },
|
|
33
|
+
"granite": { label: "Гранит", description: "Полированный гранит с крапинками" },
|
|
34
|
+
"obsidian": { label: "Обсидиан", description: "Глянцевый чёрный обсидиан" },
|
|
35
|
+
"sandstone": { label: "Песчаник", description: "Тёплый слоистый песчаник" },
|
|
36
|
+
"slate": { label: "Сланец", description: "Тёмный плоский сланец" },
|
|
37
|
+
"jade": { label: "Нефрит", description: "Полупрозрачный зелёный нефрит" },
|
|
38
|
+
"onyx": { label: "Оникс", description: "Полированный оникс с полосами" },
|
|
39
|
+
"concrete": { label: "Бетон", description: "Литой промышленный бетон" },
|
|
40
|
+
|
|
41
|
+
// -------------------- Wood --------------------
|
|
42
|
+
"oak": { label: "Дуб", description: "Богатый текстурный дуб" },
|
|
43
|
+
"mahogany": { label: "Махагон", description: "Тёмно-красный махагон" },
|
|
44
|
+
"walnut": { label: "Орех", description: "Тёмный орех" },
|
|
45
|
+
"bamboo": { label: "Бамбук", description: "Светлый сегментированный бамбук" },
|
|
46
|
+
"birch": { label: "Берёза", description: "Бледная гладкая берёза" },
|
|
47
|
+
"driftwood": { label: "Сплавная древесина", description: "Обветренная сплавная древесина" },
|
|
48
|
+
|
|
49
|
+
// -------------------- Glass / Ceramic --------------------
|
|
50
|
+
"glass": { label: "Стекло", description: "Прозрачное стекло" },
|
|
51
|
+
"stained-glass": { label: "Витражное стекло", description: "Драгоценное витражное стекло" },
|
|
52
|
+
"crystal": { label: "Хрусталь", description: "Гранёный прозрачный хрусталь" },
|
|
53
|
+
"porcelain": { label: "Фарфор", description: "Гладкий белый фарфор" },
|
|
54
|
+
"ceramic-glazed": { label: "Глазурованная керамика", description: "Земляная глазурованная керамика" },
|
|
55
|
+
"terracotta": { label: "Терракота", description: "Тёплая неглазурованная терракота" },
|
|
56
|
+
|
|
57
|
+
// -------------------- Natural / Elemental --------------------
|
|
58
|
+
"water": { label: "Вода", description: "Текучая полупрозрачная вода" },
|
|
59
|
+
"fire": { label: "Огонь", description: "Живое пламя" },
|
|
60
|
+
"ice": { label: "Лёд", description: "Полупрозрачный кристаллический лёд" },
|
|
61
|
+
"smoke": { label: "Дым", description: "Эфирный дрейфующий дым" },
|
|
62
|
+
"sand": { label: "Песок", description: "Мелкозернистый песок" },
|
|
63
|
+
"moss": { label: "Мох", description: "Пышный живой мох" },
|
|
64
|
+
"leaves": { label: "Листья", description: "Слои растительных листьев" },
|
|
65
|
+
|
|
66
|
+
// -------------------- Exotic / Futuristic --------------------
|
|
67
|
+
"holographic": { label: "Голографический", description: "Переливающаяся голограмма" },
|
|
68
|
+
"liquid-metal": { label: "Жидкий металл", description: "Отражающий жидкий хром" },
|
|
69
|
+
"neon": { label: "Неоновое свечение", description: "Светящиеся неоновые трубки" },
|
|
70
|
+
"translucent": { label: "Полупрозрачная смола", description: "Матовая светящаяся смола" },
|
|
71
|
+
"mirror": { label: "Зеркало", description: "Идеальная зеркальная поверхность" },
|
|
72
|
+
"plasma": { label: "Плазма", description: "Светящаяся электрическая плазма" },
|
|
73
|
+
"crystal-shard": { label: "Хрустальные осколки", description: "Расколотый светящийся хрусталь" },
|
|
74
|
+
"obsidian-glass": { label: "Обсидиановое стекло", description: "Тёмное вулканическое стекло" },
|
|
75
|
+
"suede": { label: "Замша", description: "Мягкая ворсистая кожа, матовая бархатистая поверхность" },
|
|
76
|
+
"mesh": { label: "Сетка", description: "Прозрачная сетчатая ткань, спортивная или прозрачный топ" },
|
|
77
|
+
"patent-leather": { label: "Лаковая кожа", description: "Высокоглянцевая отражающая кожа" },
|
|
78
|
+
"terrazzo": { label: "Терраццо", description: "Композитный камень с вкраплениями мрамора и стекла" },
|
|
79
|
+
"iridescent": { label: "Радужный", description: "Поверхность с радужным переливом" },
|
|
80
|
+
"mother-of-pearl": { label: "Перламутр", description: "Перламутровая внутренняя сторона раковины, переливчатый кремовый" },
|
|
81
|
+
"carbon-fiber": { label: "Карбон", description: "Тканый чёрный карбоновый композит" },
|
|
82
|
+
"holographic-film": { label: "Голографическая плёнка", description: "Светопреломляющая голограмма с радужным мерцанием" },
|
|
83
|
+
"subsurface": { label: "Подповерхностное свечение", description: "Свет светится под поверхностью" },
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export default map
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Fabric --------------------
|
|
5
|
+
"silk": { label: "丝绸", description: "光滑闪亮的丝绸" },
|
|
6
|
+
"cotton": { label: "棉", description: "柔软哑光的棉布" },
|
|
7
|
+
"denim": { label: "牛仔布", description: "厚实靛蓝色牛仔布" },
|
|
8
|
+
"leather": { label: "皮革", description: "丰润柔软的皮革" },
|
|
9
|
+
"velvet": { label: "天鹅绒", description: "柔软厚实的天鹅绒" },
|
|
10
|
+
"satin": { label: "缎面", description: "光泽顺滑的缎面" },
|
|
11
|
+
"lace": { label: "蕾丝", description: "精致花纹的蕾丝" },
|
|
12
|
+
"wool": { label: "羊毛", description: "温暖编织的羊毛" },
|
|
13
|
+
"linen": { label: "亚麻", description: "天然带质感的亚麻" },
|
|
14
|
+
"tweed": { label: "粗花呢", description: "粗犷编织的粗花呢" },
|
|
15
|
+
"cashmere": { label: "羊绒", description: "奢华柔软的羊绒" },
|
|
16
|
+
"chiffon": { label: "雪纺", description: "薄透飘逸的雪纺" },
|
|
17
|
+
"fur": { label: "毛皮", description: "厚实蓬松的毛皮" },
|
|
18
|
+
"suede": { label: "麂皮", description: "柔软起绒的皮革,哑光丝绒般的表面" },
|
|
19
|
+
"mesh": { label: "网眼布", description: "透视的网状面料,运动 / 透视上衣感" },
|
|
20
|
+
"patent-leather": { label: "漆皮", description: "高光泽反射的皮革" },
|
|
21
|
+
|
|
22
|
+
// -------------------- Metal --------------------
|
|
23
|
+
"gold": { label: "黄金", description: "抛光黄金" },
|
|
24
|
+
"silver": { label: "白银", description: "抛光白银" },
|
|
25
|
+
"bronze": { label: "青铜", description: "带铜锈的铸青铜" },
|
|
26
|
+
"chrome": { label: "镀铬", description: "超反射的镀铬面" },
|
|
27
|
+
"copper": { label: "紫铜", description: "暖色带氧化的紫铜" },
|
|
28
|
+
"brass": { label: "黄铜", description: "古旧黄铜" },
|
|
29
|
+
"steel": { label: "钢", description: "拉丝不锈钢" },
|
|
30
|
+
"iron": { label: "铁", description: "粗糙锻铁" },
|
|
31
|
+
"platinum": { label: "铂金", description: "光泽铂金" },
|
|
32
|
+
"titanium": { label: "钛", description: "哑光工业感钛" },
|
|
33
|
+
|
|
34
|
+
// -------------------- Stone --------------------
|
|
35
|
+
"marble": { label: "大理石", description: "带纹理的白色大理石" },
|
|
36
|
+
"granite": { label: "花岗岩", description: "斑点抛光的花岗岩" },
|
|
37
|
+
"obsidian": { label: "黑曜石", description: "光泽黑色黑曜石" },
|
|
38
|
+
"sandstone": { label: "砂岩", description: "暖色层理的砂岩" },
|
|
39
|
+
"slate": { label: "板岩", description: "深色平整的板岩" },
|
|
40
|
+
"jade": { label: "玉", description: "半透明的绿色玉石" },
|
|
41
|
+
"onyx": { label: "玛瑙", description: "条带抛光的玛瑙" },
|
|
42
|
+
"concrete": { label: "混凝土", description: "工业感浇筑混凝土" },
|
|
43
|
+
"terrazzo": { label: "水磨石", description: "嵌入大理石 / 玻璃碎片的复合石材" },
|
|
44
|
+
|
|
45
|
+
// -------------------- Wood --------------------
|
|
46
|
+
"oak": { label: "橡木", description: "纹理丰富的橡木" },
|
|
47
|
+
"mahogany": { label: "桃花心木", description: "深红色桃花心木" },
|
|
48
|
+
"walnut": { label: "胡桃木", description: "深色胡桃木" },
|
|
49
|
+
"bamboo": { label: "竹", description: "浅色分节的竹" },
|
|
50
|
+
"birch": { label: "桦木", description: "浅色光滑的桦木" },
|
|
51
|
+
"driftwood": { label: "漂流木", description: "经风化的漂流木" },
|
|
52
|
+
|
|
53
|
+
// -------------------- Glass / Ceramic --------------------
|
|
54
|
+
"glass": { label: "玻璃", description: "透明清晰的玻璃" },
|
|
55
|
+
"stained-glass": { label: "彩色玻璃", description: "宝石色调的彩色玻璃" },
|
|
56
|
+
"crystal": { label: "水晶", description: "切割的透明水晶" },
|
|
57
|
+
"porcelain": { label: "瓷", description: "光滑的白色瓷" },
|
|
58
|
+
"ceramic-glazed": { label: "上釉陶瓷", description: "土系上釉陶瓷" },
|
|
59
|
+
"terracotta": { label: "陶土", description: "暖色未釉的陶土" },
|
|
60
|
+
|
|
61
|
+
// -------------------- Natural / Elemental --------------------
|
|
62
|
+
"water": { label: "水", description: "流动半透明的水" },
|
|
63
|
+
"fire": { label: "火", description: "鲜活的火焰" },
|
|
64
|
+
"ice": { label: "冰", description: "半透明的结晶冰" },
|
|
65
|
+
"smoke": { label: "烟", description: "飘逸的烟雾" },
|
|
66
|
+
"sand": { label: "沙", description: "细颗粒的沙" },
|
|
67
|
+
"moss": { label: "苔藓", description: "茂盛鲜活的苔藓" },
|
|
68
|
+
"leaves": { label: "叶子", description: "层叠的植物叶片" },
|
|
69
|
+
|
|
70
|
+
// -------------------- Exotic / Futuristic --------------------
|
|
71
|
+
"holographic": { label: "全息", description: "虹彩全息" },
|
|
72
|
+
"liquid-metal": { label: "液态金属", description: "反射液态铬" },
|
|
73
|
+
"neon": { label: "霓虹光", description: "发光的霓虹管" },
|
|
74
|
+
"translucent": { label: "半透明树脂", description: "磨砂发光的树脂" },
|
|
75
|
+
"mirror": { label: "镜面", description: "完美的镜面" },
|
|
76
|
+
"plasma": { label: "等离子", description: "电光闪烁的等离子" },
|
|
77
|
+
"crystal-shard": { label: "水晶碎片", description: "破碎发光的水晶" },
|
|
78
|
+
"obsidian-glass":{ label: "黑曜玻璃", description: "暗色火山玻璃" },
|
|
79
|
+
"iridescent": { label: "虹彩", description: "随角度变化的彩虹光泽表面" },
|
|
80
|
+
"mother-of-pearl":{ label: "珍珠母", description: "贝壳内壁的珠光面,虹彩奶白" },
|
|
81
|
+
"carbon-fiber": { label: "碳纤维", description: "编织的黑色碳纤维复合材料" },
|
|
82
|
+
"holographic-film":{ label: "全息膜", description: "折射光线的全息膜,带彩虹闪光" },
|
|
83
|
+
"subsurface": { label: "次表面散射光", description: "光从表面之下透出" },
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export default map
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"happy": { label: "سعيد", description: "سعادة دافئة مبتسمة" },
|
|
5
|
+
"joyful": { label: "مفعم بالفرح", description: "فرح متألق غير مقيد" },
|
|
6
|
+
"serene": { label: "هادئ", description: "رضا هادئ مسالم" },
|
|
7
|
+
"playful": { label: "مرح", description: "طاقة مرحة شقية" },
|
|
8
|
+
"confident": { label: "واثق", description: "واثق بالنفس" },
|
|
9
|
+
"loving": { label: "محب", description: "حنون مودود" },
|
|
10
|
+
"amused": { label: "مستمتع", description: "مستمتع بهدوء، ابتسامة جانبية" },
|
|
11
|
+
"smirking": { label: "ابتسامة جانبية", description: "متعجرف، ابتسامة جانبية متغطرسة" },
|
|
12
|
+
"eccentric": { label: "غريب الأطوار", description: "غير تقليدي، شاذ" },
|
|
13
|
+
"hopeful": { label: "متفائل", description: "عيون متلألئة، متفائل" },
|
|
14
|
+
|
|
15
|
+
"sad": { label: "حزين", description: "حزين بهدوء، خافض البصر" },
|
|
16
|
+
"angry": { label: "غاضب", description: "غضب واضح، توتر" },
|
|
17
|
+
"afraid": { label: "خائف", description: "خائف، عيون متسعة" },
|
|
18
|
+
"anxious": { label: "قلق", description: "متوتر، مشغول البال" },
|
|
19
|
+
"melancholy": { label: "كآبة", description: "حزن حالم" },
|
|
20
|
+
"devastated": { label: "محطم", description: "حزن منكسر القلب" },
|
|
21
|
+
"grieving": { label: "حزين بشدة", description: "حزن عميق، خسارة" },
|
|
22
|
+
"caught-off-guard": { label: "مفاجأ", description: "مذهول في وسط رد فعل" },
|
|
23
|
+
"aloof": { label: "متحفظ", description: "منعزل، غير مهتم" },
|
|
24
|
+
"vulnerable": { label: "ضعيف", description: "مكشوف، بلا دفاع" },
|
|
25
|
+
"coy": { label: "خجول", description: "خجول، خافض البصر" },
|
|
26
|
+
"bored": { label: "ضجر", description: "غير مهتم، بلا تعبير" },
|
|
27
|
+
"embarrassed": { label: "محرج", description: "خداه يحمران، عيون مبتعدة" },
|
|
28
|
+
"disgusted": { label: "مشمئز", description: "كارها، متراجعا" },
|
|
29
|
+
"bewildered": { label: "حيران", description: "محتار، تائه" },
|
|
30
|
+
|
|
31
|
+
"thoughtful": { label: "مفكر", description: "غارق في التفكير" },
|
|
32
|
+
"stoic": { label: "رواقي", description: "غير منفعل، غير قابل للقراءة" },
|
|
33
|
+
"calm": { label: "هادئ", description: "متمركز، غير متفاعل" },
|
|
34
|
+
"curious": { label: "فضولي", description: "متشوق، يقظ" },
|
|
35
|
+
"mysterious": { label: "غامض", description: "غير قابل للفهم، لغز" },
|
|
36
|
+
"dazed": { label: "مذهول", description: "حالم، نصف حاضر" },
|
|
37
|
+
"sleepy": { label: "نعسان", description: "نعسان، جفون ثقيلة" },
|
|
38
|
+
"unbothered": { label: "غير مكترث", description: "هدوء يملك ذاته" },
|
|
39
|
+
|
|
40
|
+
"fierce": { label: "شرس", description: "شرس، آمر" },
|
|
41
|
+
"determined": { label: "مصمم", description: "إرادة عازمة مركزة" },
|
|
42
|
+
"passionate": { label: "متحمس", description: "شغف ملتهب" },
|
|
43
|
+
"brooding": { label: "متجهم", description: "كآبة داكنة متجهمة" },
|
|
44
|
+
"seductive": { label: "مغو", description: "آسر، مغو" },
|
|
45
|
+
"defiant": { label: "متحد", description: "متحد، لا يلين" },
|
|
46
|
+
"sultry": { label: "حار مثير", description: "ملتهب، جفون ثقيلة" },
|
|
47
|
+
"smoldering": { label: "متقد", description: "كثافة بطيئة الاحتراق ملتفة" },
|
|
48
|
+
"sinister": { label: "شرير", description: "داكن، خبيث، مهدد" },
|
|
49
|
+
"wiccan-mystical": { label: "Wiccan / صوفي", description: "خارق هادئ، باطني" },
|
|
50
|
+
"lazy-shy": { label: "كسول خجول", description: "نعسان، ناعم، نصف خجول" },
|
|
51
|
+
"awe": { label: "رهبة", description: "دهشة، خشوع" },
|
|
52
|
+
"shocked": { label: "مصدوم", description: "مفاجأ، فمه مفتوح" },
|
|
53
|
+
|
|
54
|
+
"flirty": { label: "مغازل", description: "مغازلة مرحة، ابتسامة طويلة، تواصل عيني مستمر" },
|
|
55
|
+
"suspicious": { label: "مرتاب", description: "ارتياب حذر، عيون ضيقة، نظرة جانبية" },
|
|
56
|
+
"resigned": { label: "مستسلم", description: "قبول هادئ لوضع غير سار" },
|
|
57
|
+
"conflicted": { label: "متناقض", description: "صراع داخلي مرئي، حاجبان مقطبان" },
|
|
58
|
+
"relieved": { label: "مرتاح", description: "التوتر يذوب إلى هدوء" },
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export default map
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Positive
|
|
5
|
+
"happy": { label: "Glücklich", description: "Warmes, lächelndes Glück" },
|
|
6
|
+
"joyful": { label: "Freudig", description: "Strahlende, ungezügelte Freude" },
|
|
7
|
+
"serene": { label: "Heiter", description: "Ruhige, friedliche Zufriedenheit" },
|
|
8
|
+
"playful": { label: "Verspielt", description: "Schelmische, verspielte Energie" },
|
|
9
|
+
"confident": { label: "Selbstbewusst", description: "Selbstsicher, selbstbewusst" },
|
|
10
|
+
"loving": { label: "Liebevoll", description: "Zärtlich, liebevoll" },
|
|
11
|
+
"amused": { label: "Amüsiert", description: "Subtil amüsiert, schmunzelnd" },
|
|
12
|
+
"smirking": { label: "Schmunzelnd", description: "Süffisante, arrogante Belustigung" },
|
|
13
|
+
"eccentric": { label: "Exzentrisch", description: "Schräg, unkonventionell" },
|
|
14
|
+
"hopeful": { label: "Hoffnungsvoll", description: "Strahlende Augen, optimistisch" },
|
|
15
|
+
// Negative
|
|
16
|
+
"sad": { label: "Traurig", description: "Leise traurig, niedergeschlagen" },
|
|
17
|
+
"angry": { label: "Wütend", description: "Klare Wut, Spannung" },
|
|
18
|
+
"afraid": { label: "Verängstigt", description: "Erschrocken, mit weit aufgerissenen Augen" },
|
|
19
|
+
"anxious": { label: "Ängstlich", description: "Nervös, besorgt" },
|
|
20
|
+
"melancholy": { label: "Melancholisch", description: "Wehmütige Traurigkeit" },
|
|
21
|
+
"devastated": { label: "Verzweifelt", description: "Herzzerbrechende Trauer" },
|
|
22
|
+
"grieving": { label: "Trauernd", description: "Tiefe Trauer, Verlust" },
|
|
23
|
+
"caught-off-guard": { label: "Überrascht erwischt", description: "Mitten in der Reaktion erschrocken" },
|
|
24
|
+
"aloof": { label: "Distanziert", description: "Zurückgezogen, desinteressiert" },
|
|
25
|
+
"vulnerable": { label: "Verletzlich", description: "Bloßgestellt, schutzlos" },
|
|
26
|
+
"coy": { label: "Schüchtern-kokett", description: "Schüchtern, gesenkter Blick" },
|
|
27
|
+
"bored": { label: "Gelangweilt", description: "Desinteressiert, ausdruckslos" },
|
|
28
|
+
"embarrassed": { label: "Beschämt", description: "Errötend, abgewandte Augen" },
|
|
29
|
+
"disgusted": { label: "Angewidert", description: "Abgestoßen, zurückweichend" },
|
|
30
|
+
"bewildered": { label: "Verwirrt", description: "Verwirrt, ratlos" },
|
|
31
|
+
// Neutral
|
|
32
|
+
"thoughtful": { label: "Nachdenklich", description: "Tief in Gedanken" },
|
|
33
|
+
"stoic": { label: "Stoisch", description: "Teilnahmslos, undurchschaubar" },
|
|
34
|
+
"calm": { label: "Ruhig", description: "Zentriert, nicht reagierend" },
|
|
35
|
+
"curious": { label: "Neugierig", description: "Interessiert, wachsam" },
|
|
36
|
+
"mysterious": { label: "Geheimnisvoll", description: "Unergründlich, rätselhaft" },
|
|
37
|
+
"dazed": { label: "Benommen", description: "Verträumt, halb anwesend" },
|
|
38
|
+
"sleepy": { label: "Schläfrig", description: "Schläfrig, mit schweren Lidern" },
|
|
39
|
+
"unbothered": { label: "Unbeeindruckt", description: "Ruhige Selbstbeherrschung" },
|
|
40
|
+
// Intense
|
|
41
|
+
"fierce": { label: "Fierce", description: "Wild, gebieterisch" },
|
|
42
|
+
"determined": { label: "Entschlossen", description: "Resolut, fokussierter Wille" },
|
|
43
|
+
"passionate": { label: "Leidenschaftlich", description: "Brennende Leidenschaft" },
|
|
44
|
+
"brooding": { label: "Grübelnd", description: "Düstere, brütende Melancholie" },
|
|
45
|
+
"seductive": { label: "Verführerisch", description: "Anziehend, verführerisch" },
|
|
46
|
+
"defiant": { label: "Trotzig", description: "Trotzig, unbeugsam" },
|
|
47
|
+
"sultry": { label: "Schwül-verführerisch", description: "Schwelend, schwerlidig" },
|
|
48
|
+
"smoldering": { label: "Schwelend", description: "Aufgewickelt, langsam brennende Intensität" },
|
|
49
|
+
"sinister": { label: "Finster", description: "Dunkel, böswillig, bedrohlich" },
|
|
50
|
+
"wiccan-mystical": { label: "Wiccan / Mystisch", description: "Leise jenseitig, okkult" },
|
|
51
|
+
"lazy-shy": { label: "Träg-Schüchtern", description: "Schläfrig, weich, halb-schüchtern" },
|
|
52
|
+
"awe": { label: "Ehrfurcht", description: "Staunen, ehrfürchtig" },
|
|
53
|
+
"shocked": { label: "Schockiert", description: "Überrascht, Mund offen" },
|
|
54
|
+
"flirty": { label: "Kokett", description: "Verspieltes Flirten, anhaltendes Lächeln, gehaltener Blickkontakt" },
|
|
55
|
+
"suspicious": { label: "Misstrauisch", description: "Wachsames Misstrauen, zusammengekniffene Augen, Seitenblick" },
|
|
56
|
+
"resigned": { label: "Resigniert", description: "Stille Hinnahme einer unangenehmen Situation" },
|
|
57
|
+
"conflicted": { label: "Innerlich zerrissen", description: "Sichtbarer innerer Kampf, gerunzelte Stirn" },
|
|
58
|
+
"relieved": { label: "Erleichtert", description: "Anspannung löst sich in Ruhe" },
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export default map
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Positive --------------------
|
|
5
|
+
"happy": { label: "Feliz", description: "Felicidad cálida y sonriente" },
|
|
6
|
+
"joyful": { label: "Alegre", description: "Alegría radiante y desinhibida" },
|
|
7
|
+
"serene": { label: "Sereno", description: "Satisfacción tranquila y pacífica" },
|
|
8
|
+
"playful": { label: "Juguetón", description: "Energía juguetona y traviesa" },
|
|
9
|
+
"confident": { label: "Seguro", description: "Confiado y seguro de sí mismo" },
|
|
10
|
+
"loving": { label: "Amoroso", description: "Tierno y afectuoso" },
|
|
11
|
+
"amused": { label: "Divertido", description: "Sutilmente divertido, con sonrisa pícara" },
|
|
12
|
+
"smirking": { label: "Sonriendo Pícaramente", description: "Diversión arrogante y presumida" },
|
|
13
|
+
"eccentric": { label: "Excéntrico", description: "Peculiar, poco convencional" },
|
|
14
|
+
"hopeful": { label: "Esperanzado", description: "Con ojos brillantes, optimista" },
|
|
15
|
+
|
|
16
|
+
// -------------------- Negative --------------------
|
|
17
|
+
"sad": { label: "Triste", description: "Tristeza silenciosa, mirada baja" },
|
|
18
|
+
"angry": { label: "Enojado", description: "Enojo claro, tensión" },
|
|
19
|
+
"afraid": { label: "Asustado", description: "Asustado, con ojos muy abiertos" },
|
|
20
|
+
"anxious": { label: "Ansioso", description: "Nervioso, preocupado" },
|
|
21
|
+
"melancholy": { label: "Melancólico", description: "Tristeza nostálgica" },
|
|
22
|
+
"devastated": { label: "Devastado", description: "Dolor con corazón roto" },
|
|
23
|
+
"grieving": { label: "Afligido", description: "Dolor profundo, pérdida" },
|
|
24
|
+
"caught-off-guard": { label: "Desprevenido", description: "Sobresaltado a media reacción" },
|
|
25
|
+
"aloof": { label: "Distante", description: "Retraído, sin interés" },
|
|
26
|
+
"vulnerable": { label: "Vulnerable", description: "Expuesto, indefenso" },
|
|
27
|
+
"coy": { label: "Tímido Coqueto", description: "Tímido, con mirada baja" },
|
|
28
|
+
"bored": { label: "Aburrido", description: "Desinteresado, inexpresivo" },
|
|
29
|
+
"embarrassed": { label: "Avergonzado", description: "Sonrojado, ojos esquivos" },
|
|
30
|
+
"disgusted": { label: "Asqueado", description: "Repugnado, retrocediendo" },
|
|
31
|
+
"bewildered": { label: "Desconcertado", description: "Confundido, perdido" },
|
|
32
|
+
|
|
33
|
+
// -------------------- Neutral / Contemplative --------------------
|
|
34
|
+
"thoughtful": { label: "Pensativo", description: "Sumido en pensamientos" },
|
|
35
|
+
"stoic": { label: "Estoico", description: "Impasible, indescifrable" },
|
|
36
|
+
"calm": { label: "Calmado", description: "Centrado, sin reacciones" },
|
|
37
|
+
"curious": { label: "Curioso", description: "Intrigado, alerta" },
|
|
38
|
+
"mysterious": { label: "Misterioso", description: "Inescrutable, enigmático" },
|
|
39
|
+
"dazed": { label: "Aturdido", description: "Soñador, medio presente" },
|
|
40
|
+
"sleepy": { label: "Soñoliento", description: "Adormilado, con párpados pesados" },
|
|
41
|
+
"unbothered": { label: "Imperturbable", description: "Calma autosuficiente" },
|
|
42
|
+
|
|
43
|
+
// -------------------- Intense / Dramatic --------------------
|
|
44
|
+
"fierce": { label: "Feroz", description: "Feroz, imponente" },
|
|
45
|
+
"determined": { label: "Determinado", description: "Resuelto, voluntad enfocada" },
|
|
46
|
+
"passionate": { label: "Apasionado", description: "Pasión ardiente" },
|
|
47
|
+
"brooding": { label: "Sombrío", description: "Melancolía oscura y reflexiva" },
|
|
48
|
+
"seductive": { label: "Seductor", description: "Atractivo, seductor" },
|
|
49
|
+
"defiant": { label: "Desafiante", description: "Desafiante, inflexible" },
|
|
50
|
+
"sultry": { label: "Sensual", description: "Ardiente, con párpados pesados" },
|
|
51
|
+
"smoldering": { label: "Ardiente Lento", description: "Intensidad contenida y lenta" },
|
|
52
|
+
"sinister": { label: "Siniestro", description: "Oscuro, malicioso, amenazante" },
|
|
53
|
+
"wiccan-mystical": { label: "Wicca / Místico", description: "Tranquilamente sobrenatural, oculto" },
|
|
54
|
+
"lazy-shy": { label: "Tímido Perezoso", description: "Adormilado, suave, medio tímido" },
|
|
55
|
+
"awe": { label: "Asombro", description: "Maravilla, reverente" },
|
|
56
|
+
"shocked": { label: "Conmocionado", description: "Sorprendido, boca abierta" },
|
|
57
|
+
|
|
58
|
+
// -------------------- Round 2 --------------------
|
|
59
|
+
"flirty": { label: "Coqueto", description: "Coqueteo juguetón, sonrisa prolongada, contacto visual sostenido" },
|
|
60
|
+
"suspicious": { label: "Suspicaz", description: "Desconfianza recelosa, ojos entrecerrados, mirada de reojo" },
|
|
61
|
+
"resigned": { label: "Resignado", description: "Aceptación silenciosa de una situación desagradable" },
|
|
62
|
+
"conflicted": { label: "Conflictuado", description: "Lucha interna visible, ceño fruncido" },
|
|
63
|
+
"relieved": { label: "Aliviado", description: "La tensión se disuelve en calma" },
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export default map
|