@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,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "נמוכה", description: "רגועה, איטית" },
|
|
6
|
+
"mellow": { label: "רכה", description: "נינוחה, משוחררת" },
|
|
7
|
+
"gentle": { label: "עדינה", description: "רכה, מלטפת" },
|
|
8
|
+
"moderate": { label: "מתונה", description: "מאוזנת, יציבה" },
|
|
9
|
+
"building": { label: "מתעצמת", description: "מתחזקת לאט" },
|
|
10
|
+
"upbeat": { label: "מתלהבת", description: "תוססת, אופטימית" },
|
|
11
|
+
"driving": { label: "דוחפת", description: "תאוצה קדימה" },
|
|
12
|
+
"high": { label: "גבוהה", description: "אנרגטית, עזה" },
|
|
13
|
+
"explosive": { label: "נפיצה", description: "פורצת, פראית" },
|
|
14
|
+
"frenetic": { label: "קדחתנית", description: "עזה, מהירה" },
|
|
15
|
+
"pulsing": { label: "פועמת", description: "קצבית, מובלת מקצב" },
|
|
16
|
+
"throbbing": { label: "הולמת", description: "כבדה, היפנוטית" },
|
|
17
|
+
"simmering": { label: "רוחשת", description: "דרוכה, מאופקת" },
|
|
18
|
+
"ferocious": { label: "פראית", description: "תוקפנית, חסרת רחם" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "שמחה", description: "עליזה, בהירה" },
|
|
22
|
+
"joyful": { label: "שמחת לב", description: "סוערת, חגיגית" },
|
|
23
|
+
"euphoric": { label: "אופורית", description: "אקסטטית, נשגבת" },
|
|
24
|
+
"melancholic": { label: "מלנכולית", description: "געגועית, מתוקה־מרה" },
|
|
25
|
+
"sad": { label: "עצובה", description: "קודרת, מוכת יגון" },
|
|
26
|
+
"longing": { label: "מתגעגעת", description: "כמהה, כואבת" },
|
|
27
|
+
"lonely": { label: "בודדה", description: "מבודדת, מרוחקת" },
|
|
28
|
+
"angry": { label: "כועסת", description: "תוקפנית, עוינת" },
|
|
29
|
+
"defiant": { label: "מתריסה", description: "מורדת, מתנגדת" },
|
|
30
|
+
"triumphant": { label: "מנצחת", description: "הרואית, מנצחת" },
|
|
31
|
+
"victorious": { label: "ניצחון", description: "כובשת, המנונית" },
|
|
32
|
+
"tender": { label: "ענוגה", description: "רכה, חיבה" },
|
|
33
|
+
"romantic": { label: "רומנטית", description: "אוהבת, חושנית" },
|
|
34
|
+
"haunting": { label: "רודפת", description: "מאיימת, נצחית" },
|
|
35
|
+
"mysterious": { label: "מסתורית", description: "חידתית, חשאית" },
|
|
36
|
+
"menacing": { label: "מאיימת", description: "מאיימת, מבשרת רע" },
|
|
37
|
+
"playful": { label: "שובבה", description: "מצחיקה, כיפית" },
|
|
38
|
+
"mischievous": { label: "שובבית", description: "ערמומית, קונדסית" },
|
|
39
|
+
"anxious": { label: "חרדה", description: "דרוכה, חוששת" },
|
|
40
|
+
"fearful": { label: "מפוחדת", description: "פוחדת, מבוהלת" },
|
|
41
|
+
"hopeful": { label: "מלאת תקווה", description: "מרוממת, שואפת" },
|
|
42
|
+
"inspirational": { label: "מעוררת השראה", description: "מניעה, מרוממת" },
|
|
43
|
+
"nostalgic": { label: "נוסטלגית", description: "מבט לאחור, געגועית" },
|
|
44
|
+
"bittersweet": { label: "מתוקה־מרה", description: "צער מתוק, מעורבת" },
|
|
45
|
+
"peaceful": { label: "שלווה", description: "רוגעת, נינוחה" },
|
|
46
|
+
"contemplative": { label: "הגותית", description: "מהורהרת, מתבוננת" },
|
|
47
|
+
"ethereal": { label: "אתרית", description: "לא מן העולם הזה, מרחפת" },
|
|
48
|
+
"awe": { label: "יראה", description: "פלא, רוממות" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "קולנועית", description: "כמו פסקול, מעוררת" },
|
|
52
|
+
"intimate": { label: "אינטימית", description: "אישית, קרובה" },
|
|
53
|
+
"epic": { label: "אפית", description: "מרהיבה, סוחפת" },
|
|
54
|
+
"anthemic": { label: "המנונית", description: "גדולה לשירה משותפת" },
|
|
55
|
+
"lo-fi": { description: "חמה, לא מושלמת" },
|
|
56
|
+
"polished": { label: "מלוטשת", description: "מושלמת, מיינסטרים" },
|
|
57
|
+
"raw": { label: "גולמית", description: "ללא סינון, מחוספסת" },
|
|
58
|
+
"dreamy": { label: "חלומית", description: "מעורפלת, סוריאליסטית" },
|
|
59
|
+
"hypnotic": { label: "היפנוטית", description: "בלולאה, כמו טראנס" },
|
|
60
|
+
"dark": { label: "אפלה", description: "קודרת, מצללת" },
|
|
61
|
+
"gritty": { label: "מחוספסת", description: "גסה, עירונית" },
|
|
62
|
+
"uplifting": { label: "מרוממת", description: "בהירה, מעודדת" },
|
|
63
|
+
"tense": { label: "מתוחה", description: "מותחת" },
|
|
64
|
+
"spacey": { label: "חללית", description: "קוסמית, נרחבת" },
|
|
65
|
+
"psychedelic": { label: "פסיכדלית", description: "מטלטלת תודעה, מערבולתית" },
|
|
66
|
+
"noir": { label: "נואר", description: "עשנה, קשוחה" },
|
|
67
|
+
"vintage": { label: "וינטג'", description: "רטרו, מיושנת" },
|
|
68
|
+
"futuristic": { label: "עתידנית", description: "מדע בדיוני, צופה פני עתיד" },
|
|
69
|
+
"suspenseful": { label: "מתח", description: "אימה, על קצה הבלימה" },
|
|
70
|
+
"espionage": { label: "ריגול", description: "סרטי ריגול, פעולות חשאיות" },
|
|
71
|
+
"cold": { label: "קרירה", description: "קפואה, מנותקת, חדה" },
|
|
72
|
+
"clandestine": { label: "חשאית", description: "סודית, צוללנית, מוסתרת" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "धीमी", description: "शांत, धीमी" },
|
|
6
|
+
"mellow": { label: "मधुर", description: "आरामदायक, लापरवाह" },
|
|
7
|
+
"gentle": { label: "कोमल", description: "मुलायम, स्नेहल" },
|
|
8
|
+
"moderate": { label: "मध्यम", description: "संतुलित, स्थिर" },
|
|
9
|
+
"building": { label: "बढ़ती हुई", description: "धीरे-धीरे तीव्र होती" },
|
|
10
|
+
"upbeat": { label: "उल्लासपूर्ण", description: "जीवंत, आशावादी" },
|
|
11
|
+
"driving": { label: "प्रेरक", description: "आगे बढ़ने वाली गति" },
|
|
12
|
+
"high": { label: "उच्च", description: "ऊर्जावान, तीव्र" },
|
|
13
|
+
"explosive": { label: "विस्फोटक", description: "फूटती, जंगली" },
|
|
14
|
+
"frenetic": { label: "उन्मत्त", description: "तीव्र, तेज़" },
|
|
15
|
+
"pulsing": { label: "स्पंदित", description: "लयबद्ध, बीट-संचालित" },
|
|
16
|
+
"throbbing": { label: "धड़कती", description: "भारी, सम्मोहक" },
|
|
17
|
+
"simmering": { label: "उबलती", description: "तनावपूर्ण, संयमित" },
|
|
18
|
+
"ferocious": { label: "उग्र", description: "आक्रामक, अनवरत" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "प्रसन्न", description: "आनंदमय, उज्ज्वल" },
|
|
22
|
+
"joyful": { label: "हर्षित", description: "उत्साही, उत्सवपूर्ण" },
|
|
23
|
+
"euphoric": { label: "उन्मादी", description: "परमानंद, अतिक्रमणकारी" },
|
|
24
|
+
"melancholic": { label: "उदास", description: "विचारमग्न, खट्टी-मीठी" },
|
|
25
|
+
"sad": { label: "दुखी", description: "गमगीन, शोकाकुल" },
|
|
26
|
+
"longing": { label: "तरसती", description: "व्याकुल, पीड़ादायक" },
|
|
27
|
+
"lonely": { label: "अकेली", description: "अलग-थलग, दूर" },
|
|
28
|
+
"angry": { label: "क्रोधित", description: "आक्रामक, शत्रुतापूर्ण" },
|
|
29
|
+
"defiant": { label: "विद्रोही", description: "बागी, प्रतिरोधी" },
|
|
30
|
+
"triumphant": { label: "विजयी", description: "वीरतापूर्ण, विजयी" },
|
|
31
|
+
"victorious": { label: "विजेता", description: "विजयी, गीतात्मक" },
|
|
32
|
+
"tender": { label: "कोमल", description: "नरम, स्नेहपूर्ण" },
|
|
33
|
+
"romantic": { label: "रोमांटिक", description: "प्रेमपूर्ण, कामुक" },
|
|
34
|
+
"haunting": { label: "व्यथित करने वाली", description: "रहस्यमयी, स्थायी" },
|
|
35
|
+
"mysterious": { label: "रहस्यमय", description: "गूढ़, गुप्त" },
|
|
36
|
+
"menacing": { label: "धमकी भरी", description: "खतरनाक, आशंकित" },
|
|
37
|
+
"playful": { label: "चंचल", description: "मनमौजी, मज़ेदार" },
|
|
38
|
+
"mischievous": { label: "शरारती", description: "धूर्त, उपद्रवी" },
|
|
39
|
+
"anxious": { label: "चिंतित", description: "तनावपूर्ण, आशंकित" },
|
|
40
|
+
"fearful": { label: "भयभीत", description: "डरा हुआ, घबराया" },
|
|
41
|
+
"hopeful": { label: "आशावादी", description: "उत्थानकारी, आकांक्षी" },
|
|
42
|
+
"inspirational": { label: "प्रेरणादायक", description: "प्रेरक, उत्थान" },
|
|
43
|
+
"nostalgic": { label: "पुरानी यादों भरी", description: "पीछे देखती, उदास" },
|
|
44
|
+
"bittersweet": { label: "खट्टी-मीठी", description: "मीठा दुख, मिश्रित" },
|
|
45
|
+
"peaceful": { label: "शांतिपूर्ण", description: "शांत, विश्रामपूर्ण" },
|
|
46
|
+
"contemplative": { label: "चिंतनशील", description: "विचारशील, सोचनेवाली" },
|
|
47
|
+
"ethereal": { label: "स्वर्गिक", description: "अलौकिक, तैरती" },
|
|
48
|
+
"awe": { label: "विस्मय", description: "अद्भुत, विशालता" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "सिनेमाई", description: "स्कोर जैसी, उद्बोधक" },
|
|
52
|
+
"intimate": { label: "घनिष्ठ", description: "व्यक्तिगत, करीबी" },
|
|
53
|
+
"epic": { label: "महाकाव्य", description: "भव्य, विस्तृत" },
|
|
54
|
+
"anthemic": { label: "गान-समान", description: "भीड़ के गाने योग्य बड़ा" },
|
|
55
|
+
"lo-fi": { description: "गर्मजोश, अपूर्ण" },
|
|
56
|
+
"polished": { label: "परिष्कृत", description: "बेदाग, मुख्यधारा" },
|
|
57
|
+
"raw": { label: "कच्ची", description: "अनफ़िल्टर्ड, खुरदरी" },
|
|
58
|
+
"dreamy": { label: "स्वप्निल", description: "धुंधली, अतियथार्थ" },
|
|
59
|
+
"hypnotic": { label: "सम्मोहक", description: "लूप वाली, समाधि जैसी" },
|
|
60
|
+
"dark": { label: "अंधकारमय", description: "गूढ़, छायामय" },
|
|
61
|
+
"gritty": { label: "खुरदरी", description: "मोटी, शहरी" },
|
|
62
|
+
"uplifting": { label: "उत्थानकारी", description: "उज्ज्वल, प्रोत्साहक" },
|
|
63
|
+
"tense": { label: "तनावपूर्ण", description: "रहस्यमय" },
|
|
64
|
+
"spacey": { label: "अंतरिक्षीय", description: "ब्रह्मांडीय, विशाल" },
|
|
65
|
+
"psychedelic": { label: "साइकेडेलिक", description: "मन-झुकाने वाली, घुमावदार" },
|
|
66
|
+
"noir": { label: "नॉयर", description: "धुँआदार, कठोर" },
|
|
67
|
+
"vintage": { label: "विंटेज", description: "रेट्रो, पुरानी" },
|
|
68
|
+
"futuristic": { label: "भविष्यवादी", description: "साइंस-फ़िक्शन, आगे देखती" },
|
|
69
|
+
"suspenseful": { label: "रोमांचक", description: "भय, कगार पर" },
|
|
70
|
+
"espionage": { label: "जासूसी", description: "जासूसी थ्रिलर, गुप्त अभियान" },
|
|
71
|
+
"cold": { label: "ठंडा", description: "बर्फीला, विरक्त, तीखा" },
|
|
72
|
+
"clandestine": { label: "गुप्त", description: "रहस्यमय, छिपा हुआ, ढका-छुपा" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "低い", description: "穏やか、ゆっくり" },
|
|
6
|
+
"mellow": { label: "まろやか", description: "リラックス、のんびり" },
|
|
7
|
+
"gentle": { label: "優しい", description: "柔らかく、繊細" },
|
|
8
|
+
"moderate": { label: "中庸", description: "バランスが取れた、安定" },
|
|
9
|
+
"building": { label: "高まる", description: "徐々に強まる" },
|
|
10
|
+
"upbeat": { label: "アップビート", description: "活気あふれる、楽観的" },
|
|
11
|
+
"driving": { label: "駆動感", description: "前進する勢い" },
|
|
12
|
+
"high": { label: "高い", description: "エネルギッシュ、強烈" },
|
|
13
|
+
"explosive": { label: "爆発的", description: "弾けるような、ワイルド" },
|
|
14
|
+
"frenetic": { label: "熱狂的", description: "強烈、急速" },
|
|
15
|
+
"pulsing": { label: "脈打つ", description: "リズミカル、ビート主体" },
|
|
16
|
+
"throbbing": { label: "鼓動", description: "重く、催眠的" },
|
|
17
|
+
"simmering": { label: "くすぶる", description: "張り詰めた、抑制された" },
|
|
18
|
+
"ferocious": { label: "獰猛", description: "攻撃的、容赦ない" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "ハッピー", description: "喜ばしい、明るい" },
|
|
22
|
+
"joyful": { label: "歓喜", description: "陽気、祝祭的" },
|
|
23
|
+
"euphoric": { label: "陶酔", description: "恍惚、超越的" },
|
|
24
|
+
"melancholic": { label: "メランコリック", description: "もの悲しい、ほろ苦い" },
|
|
25
|
+
"sad": { label: "悲しい", description: "陰鬱、悲嘆" },
|
|
26
|
+
"longing": { label: "切望", description: "焦がれる、痛む" },
|
|
27
|
+
"lonely": { label: "孤独", description: "孤立、遠い" },
|
|
28
|
+
"angry": { label: "怒り", description: "攻撃的、敵対的" },
|
|
29
|
+
"defiant": { label: "反抗的", description: "反逆、抵抗的" },
|
|
30
|
+
"triumphant": { label: "勝ち誇る", description: "英雄的、勝利の" },
|
|
31
|
+
"victorious": { label: "勝利", description: "征服、賛歌的" },
|
|
32
|
+
"tender": { label: "優しさ", description: "柔らかく、愛情深い" },
|
|
33
|
+
"romantic": { label: "ロマンティック", description: "愛情あふれる、官能的" },
|
|
34
|
+
"haunting": { label: "心に残る", description: "不気味、長く残る" },
|
|
35
|
+
"mysterious": { label: "神秘的", description: "謎めいた、秘密めいた" },
|
|
36
|
+
"menacing": { label: "脅威的", description: "脅迫的、不吉な" },
|
|
37
|
+
"playful": { label: "遊び心", description: "気まぐれ、楽しい" },
|
|
38
|
+
"mischievous": { label: "いたずらっぽい", description: "ずる賢い、悪戯好き" },
|
|
39
|
+
"anxious": { label: "不安", description: "緊張、心配" },
|
|
40
|
+
"fearful": { label: "恐怖", description: "怯えた、パニック" },
|
|
41
|
+
"hopeful": { label: "希望", description: "高揚させる、抱負ある" },
|
|
42
|
+
"inspirational": { label: "感動的", description: "やる気を起こさせる、舞い上がる" },
|
|
43
|
+
"nostalgic": { label: "ノスタルジック", description: "過去を見つめる、もの悲しい" },
|
|
44
|
+
"bittersweet": { label: "ほろ苦い", description: "甘い悲しみ、入り混じった" },
|
|
45
|
+
"peaceful": { label: "穏やか", description: "静謐、安らか" },
|
|
46
|
+
"contemplative": { label: "瞑想的", description: "内省的、思慮深い" },
|
|
47
|
+
"ethereal": { label: "幽玄", description: "この世のものでない、漂う" },
|
|
48
|
+
"awe": { label: "畏敬", description: "驚異、広大さ" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "シネマティック", description: "スコア風、喚起的" },
|
|
52
|
+
"intimate": { label: "親密", description: "個人的、近い" },
|
|
53
|
+
"epic": { label: "壮大", description: "壮麗、雄大" },
|
|
54
|
+
"anthemic": { label: "アンセム", description: "観衆が合唱できる大きさ" },
|
|
55
|
+
"lo-fi": { description: "温かく、不完全" },
|
|
56
|
+
"polished": { label: "洗練", description: "美しい、メインストリーム" },
|
|
57
|
+
"raw": { label: "生々しい", description: "未加工、ざらざら" },
|
|
58
|
+
"dreamy": { label: "夢見心地", description: "ぼんやり、シュール" },
|
|
59
|
+
"hypnotic": { label: "催眠的", description: "ループする、トランス状態" },
|
|
60
|
+
"dark": { label: "ダーク", description: "陰鬱、影のある" },
|
|
61
|
+
"gritty": { label: "ザラついた", description: "粗い、都会的" },
|
|
62
|
+
"uplifting": { label: "高揚させる", description: "明るく、励ます" },
|
|
63
|
+
"tense": { label: "緊張", description: "サスペンスフル" },
|
|
64
|
+
"spacey": { label: "宇宙的", description: "コズミック、広大" },
|
|
65
|
+
"psychedelic": { label: "サイケデリック", description: "意識を変える、渦巻く" },
|
|
66
|
+
"noir": { label: "ノワール", description: "煙たい、ハードボイルド" },
|
|
67
|
+
"vintage": { label: "ヴィンテージ", description: "レトロ、年代物" },
|
|
68
|
+
"futuristic": { label: "未来的", description: "SF、先進的" },
|
|
69
|
+
"suspenseful": { label: "サスペンス", description: "恐怖、崖っぷち" },
|
|
70
|
+
"espionage": { label: "スパイ", description: "スパイスリラー、秘密工作" },
|
|
71
|
+
"cold": { label: "クール", description: "氷のような、冷淡、鋭い" },
|
|
72
|
+
"clandestine": { label: "秘密", description: "隠秘、影の中、潜伏" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "낮음", description: "차분하고 느림" },
|
|
6
|
+
"mellow": { label: "부드러움", description: "편안하고 여유로움" },
|
|
7
|
+
"gentle": { label: "부드러운", description: "부드럽고 다정한" },
|
|
8
|
+
"moderate": { label: "보통", description: "균형 잡히고 안정적" },
|
|
9
|
+
"building": { label: "고조되는", description: "서서히 강해지는" },
|
|
10
|
+
"upbeat": { label: "경쾌한", description: "활기차고 낙관적" },
|
|
11
|
+
"driving": { label: "추진력 있는", description: "앞으로 미는 추진력" },
|
|
12
|
+
"high": { label: "높음", description: "에너지 넘치고 강렬" },
|
|
13
|
+
"explosive": { label: "폭발적", description: "터지고 거친" },
|
|
14
|
+
"frenetic": { label: "광적인", description: "강렬하고 빠른" },
|
|
15
|
+
"pulsing": { label: "맥동하는", description: "리듬감 있고 비트 위주" },
|
|
16
|
+
"throbbing": { label: "고동치는", description: "묵직하고 최면적" },
|
|
17
|
+
"simmering": { label: "끓어오르는", description: "긴장되고 절제된" },
|
|
18
|
+
"ferocious": { label: "맹렬한", description: "공격적이고 가차없는" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "행복한", description: "즐겁고 밝은" },
|
|
22
|
+
"joyful": { label: "기쁨에 찬", description: "넘치는, 축제 분위기" },
|
|
23
|
+
"euphoric": { label: "황홀한", description: "엑스터시, 초월적" },
|
|
24
|
+
"melancholic": { label: "우울한", description: "쓸쓸하고 씁쓸달콤한" },
|
|
25
|
+
"sad": { label: "슬픈", description: "침울하고 비통한" },
|
|
26
|
+
"longing": { label: "갈망하는", description: "그리워하고 아픈" },
|
|
27
|
+
"lonely": { label: "외로운", description: "고립되고 멀어진" },
|
|
28
|
+
"angry": { label: "분노한", description: "공격적이고 적대적" },
|
|
29
|
+
"defiant": { label: "도전적", description: "반항적이고 저항적" },
|
|
30
|
+
"triumphant": { label: "승리에 찬", description: "영웅적이고 승리감" },
|
|
31
|
+
"victorious": { label: "승리한", description: "정복적, 송가적" },
|
|
32
|
+
"tender": { label: "다정한", description: "부드럽고 애정 어린" },
|
|
33
|
+
"romantic": { label: "로맨틱", description: "사랑스럽고 관능적" },
|
|
34
|
+
"haunting": { label: "여운 있는", description: "기괴하고 잔잔히 남는" },
|
|
35
|
+
"mysterious": { label: "신비로운", description: "수수께끼 같고 비밀스러운" },
|
|
36
|
+
"menacing": { label: "위협적인", description: "위협적이고 불길한" },
|
|
37
|
+
"playful": { label: "장난스러운", description: "기발하고 재미있는" },
|
|
38
|
+
"mischievous": { label: "짓궂은", description: "교활하고 말썽꾸러기" },
|
|
39
|
+
"anxious": { label: "불안한", description: "긴장되고 우려되는" },
|
|
40
|
+
"fearful": { label: "두려운", description: "겁먹고 공황 상태" },
|
|
41
|
+
"hopeful": { label: "희망찬", description: "고무적이고 야심찬" },
|
|
42
|
+
"inspirational": { label: "감동적인", description: "동기부여, 비상" },
|
|
43
|
+
"nostalgic": { label: "향수 어린", description: "과거를 돌아보고 쓸쓸한" },
|
|
44
|
+
"bittersweet": { label: "씁쓸달콤한", description: "달콤한 슬픔, 뒤섞인" },
|
|
45
|
+
"peaceful": { label: "평화로운", description: "고요하고 편안한" },
|
|
46
|
+
"contemplative": { label: "사색적인", description: "성찰적이고 사려깊은" },
|
|
47
|
+
"ethereal": { label: "공허한", description: "이세계적이고 떠다니는" },
|
|
48
|
+
"awe": { label: "경외", description: "경이, 광활함" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "시네마틱", description: "스코어 같은, 환기적" },
|
|
52
|
+
"intimate": { label: "친밀한", description: "개인적이고 가까운" },
|
|
53
|
+
"epic": { label: "장대한", description: "웅장하고 휩쓸리는" },
|
|
54
|
+
"anthemic": { label: "찬가풍", description: "관중이 따라부를 만큼 큰" },
|
|
55
|
+
"lo-fi": { description: "따뜻하고 불완전한" },
|
|
56
|
+
"polished": { label: "세련된", description: "깔끔하고 주류" },
|
|
57
|
+
"raw": { label: "거친", description: "필터 없이, 거칠게" },
|
|
58
|
+
"dreamy": { label: "몽환적", description: "흐릿하고 초현실적" },
|
|
59
|
+
"hypnotic": { label: "최면적", description: "반복되는, 황홀경" },
|
|
60
|
+
"dark": { label: "어두운", description: "음울하고 그늘진" },
|
|
61
|
+
"gritty": { label: "거친 질감의", description: "거칠고 도시적" },
|
|
62
|
+
"uplifting": { label: "기운 북돋우는", description: "밝고 격려하는" },
|
|
63
|
+
"tense": { label: "긴장된", description: "서스펜스 가득한" },
|
|
64
|
+
"spacey": { label: "우주적", description: "코스믹하고 광대한" },
|
|
65
|
+
"psychedelic": { label: "사이키델릭", description: "정신을 휘젓는, 소용돌이치는" },
|
|
66
|
+
"noir": { label: "느와르", description: "연기 자욱하고 하드보일드" },
|
|
67
|
+
"vintage": { label: "빈티지", description: "레트로, 세월이 깃든" },
|
|
68
|
+
"futuristic": { label: "미래적", description: "SF적, 앞을 내다보는" },
|
|
69
|
+
"suspenseful": { label: "서스펜스", description: "공포, 아슬아슬한" },
|
|
70
|
+
"espionage": { label: "스파이", description: "첩보 스릴러, 비밀 작전" },
|
|
71
|
+
"cold": { label: "차가운", description: "냉혹한, 거리감 있는, 날카로운" },
|
|
72
|
+
"clandestine": { label: "은밀한", description: "비밀스러운, 그림자 속의" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "Baixa", description: "Calma, lenta" },
|
|
6
|
+
"mellow": { label: "Suave", description: "Relaxada, descontraída" },
|
|
7
|
+
"gentle": { label: "Delicada", description: "Macia, terna" },
|
|
8
|
+
"moderate": { label: "Moderada", description: "Equilibrada, constante" },
|
|
9
|
+
"building": { label: "Crescente", description: "Intensificando lentamente" },
|
|
10
|
+
"upbeat": { label: "Animada", description: "Vibrante, otimista" },
|
|
11
|
+
"driving": { label: "Pulsante", description: "Impulso para frente" },
|
|
12
|
+
"high": { label: "Alta", description: "Enérgica, intensa" },
|
|
13
|
+
"explosive": { label: "Explosiva", description: "Estourante, selvagem" },
|
|
14
|
+
"frenetic": { label: "Frenética", description: "Intensa, rápida" },
|
|
15
|
+
"pulsing": { label: "Pulsante", description: "Rítmica, marcada pelo beat" },
|
|
16
|
+
"throbbing": { label: "Latejante", description: "Pesada, hipnótica" },
|
|
17
|
+
"simmering": { label: "Fervilhante", description: "Tensa, contida" },
|
|
18
|
+
"ferocious": { label: "Feroz", description: "Agressiva, implacável" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "Feliz", description: "Alegre, brilhante" },
|
|
22
|
+
"joyful": { label: "Jubilosa", description: "Exuberante, festiva" },
|
|
23
|
+
"euphoric": { label: "Eufórica", description: "Extática, transcendente" },
|
|
24
|
+
"melancholic": { label: "Melancólica", description: "Saudosa, agridoce" },
|
|
25
|
+
"sad": { label: "Triste", description: "Sombria, pesarosa" },
|
|
26
|
+
"longing": { label: "Anseante", description: "Anseio, dolorida" },
|
|
27
|
+
"lonely": { label: "Solitária", description: "Isolada, distante" },
|
|
28
|
+
"angry": { label: "Raivosa", description: "Agressiva, hostil" },
|
|
29
|
+
"defiant": { label: "Desafiadora", description: "Rebelde, resistente" },
|
|
30
|
+
"triumphant": { label: "Triunfante", description: "Heroica, vitoriosa" },
|
|
31
|
+
"victorious": { label: "Vitoriosa", description: "Conquistadora, hino" },
|
|
32
|
+
"tender": { label: "Terna", description: "Macia, afetuosa" },
|
|
33
|
+
"romantic": { label: "Romântica", description: "Amorosa, sensual" },
|
|
34
|
+
"haunting": { label: "Assombrosa", description: "Estranha, persistente" },
|
|
35
|
+
"mysterious": { label: "Misteriosa", description: "Enigmática, secreta" },
|
|
36
|
+
"menacing": { label: "Ameaçadora", description: "Ameaçadora, agourenta" },
|
|
37
|
+
"playful": { label: "Brincalhona", description: "Caprichosa, divertida" },
|
|
38
|
+
"mischievous": { label: "Travessa", description: "Astuta, traquina" },
|
|
39
|
+
"anxious": { label: "Ansiosa", description: "Tensa, apreensiva" },
|
|
40
|
+
"fearful": { label: "Temerosa", description: "Assustada, em pânico" },
|
|
41
|
+
"hopeful": { label: "Esperançosa", description: "Edificante, aspiracional" },
|
|
42
|
+
"inspirational": { label: "Inspiradora", description: "Motivadora, elevada" },
|
|
43
|
+
"nostalgic": { label: "Nostálgica", description: "Voltada ao passado, saudosa" },
|
|
44
|
+
"bittersweet": { label: "Agridoce", description: "Doce tristeza, mista" },
|
|
45
|
+
"peaceful": { label: "Pacífica", description: "Serena, repousante" },
|
|
46
|
+
"contemplative": { label: "Contemplativa", description: "Reflexiva, pensativa" },
|
|
47
|
+
"ethereal": { label: "Etérea", description: "Sobrenatural, flutuante" },
|
|
48
|
+
"awe": { label: "Espanto", description: "Maravilha, vastidão" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "Cinemática", description: "Tipo trilha sonora, evocativa" },
|
|
52
|
+
"intimate": { label: "Íntima", description: "Pessoal, próxima" },
|
|
53
|
+
"epic": { label: "Épica", description: "Grandiosa, arrebatadora" },
|
|
54
|
+
"anthemic": { label: "Hino", description: "Grande para multidão cantar" },
|
|
55
|
+
"lo-fi": { description: "Quente, imperfeita" },
|
|
56
|
+
"polished": { label: "Polida", description: "Impecável, mainstream" },
|
|
57
|
+
"raw": { label: "Crua", description: "Sem filtro, áspera" },
|
|
58
|
+
"dreamy": { label: "Onírica", description: "Enevoada, surreal" },
|
|
59
|
+
"hypnotic": { label: "Hipnótica", description: "Em loop, transe" },
|
|
60
|
+
"dark": { label: "Sombria", description: "Carrancuda, sombreada" },
|
|
61
|
+
"gritty": { label: "Áspera", description: "Grosseira, urbana" },
|
|
62
|
+
"uplifting": { label: "Elevadora", description: "Brilhante, encorajadora" },
|
|
63
|
+
"tense": { label: "Tensa", description: "Suspense" },
|
|
64
|
+
"spacey": { label: "Espacial", description: "Cósmica, vasta" },
|
|
65
|
+
"psychedelic": { label: "Psicodélica", description: "Alucinante, rodopiante" },
|
|
66
|
+
"noir": { label: "Noir", description: "Esfumaçada, durona" },
|
|
67
|
+
"vintage": { label: "Vintage", description: "Retrô, envelhecida" },
|
|
68
|
+
"futuristic": { label: "Futurista", description: "Sci-fi, voltada ao futuro" },
|
|
69
|
+
"suspenseful": { label: "Suspense", description: "Terror, à beira do abismo" },
|
|
70
|
+
"espionage": { label: "Espionagem", description: "Thriller de espias, operações encobertas" },
|
|
71
|
+
"cold": { label: "Fria", description: "Gelada, distante, afiada" },
|
|
72
|
+
"clandestine": { label: "Clandestina", description: "Secreta, nas sombras, encoberta" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "Низкая", description: "Спокойная, медленная" },
|
|
6
|
+
"mellow": { label: "Мягкая", description: "Расслабленная, непринуждённая" },
|
|
7
|
+
"gentle": { label: "Нежная", description: "Мягкая, ласковая" },
|
|
8
|
+
"moderate": { label: "Умеренная", description: "Сбалансированная, ровная" },
|
|
9
|
+
"building": { label: "Нарастающая", description: "Медленно усиливающаяся" },
|
|
10
|
+
"upbeat": { label: "Бодрая", description: "Живая, оптимистичная" },
|
|
11
|
+
"driving": { label: "Движущая", description: "Импульс вперёд" },
|
|
12
|
+
"high": { label: "Высокая", description: "Энергичная, интенсивная" },
|
|
13
|
+
"explosive": { label: "Взрывная", description: "Бурная, дикая" },
|
|
14
|
+
"frenetic": { label: "Неистовая", description: "Интенсивная, стремительная" },
|
|
15
|
+
"pulsing": { label: "Пульсирующая", description: "Ритмичная, на пульсе" },
|
|
16
|
+
"throbbing": { label: "Тяжело пульсирующая", description: "Тяжёлая, гипнотическая" },
|
|
17
|
+
"simmering": { label: "Тлеющая", description: "Напряжённая, сдержанная" },
|
|
18
|
+
"ferocious": { label: "Свирепая", description: "Агрессивная, неумолимая" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "Счастливая", description: "Радостная, светлая" },
|
|
22
|
+
"joyful": { label: "Радостная", description: "Бурная, праздничная" },
|
|
23
|
+
"euphoric": { label: "Эйфорическая", description: "Экстатичная, трансцендентная" },
|
|
24
|
+
"melancholic": { label: "Меланхоличная", description: "Тоскливая, горько-сладкая" },
|
|
25
|
+
"sad": { label: "Грустная", description: "Мрачная, скорбная" },
|
|
26
|
+
"longing": { label: "Тоскующая", description: "Стремящаяся, ноющая" },
|
|
27
|
+
"lonely": { label: "Одинокая", description: "Изолированная, отдалённая" },
|
|
28
|
+
"angry": { label: "Гневная", description: "Агрессивная, враждебная" },
|
|
29
|
+
"defiant": { label: "Дерзкая", description: "Бунтарская, сопротивляющаяся" },
|
|
30
|
+
"triumphant": { label: "Торжествующая", description: "Героическая, победная" },
|
|
31
|
+
"victorious": { label: "Победоносная", description: "Покоряющая, гимновая" },
|
|
32
|
+
"tender": { label: "Нежная", description: "Мягкая, ласковая" },
|
|
33
|
+
"romantic": { label: "Романтическая", description: "Любовная, чувственная" },
|
|
34
|
+
"haunting": { label: "Преследующая", description: "Жуткая, въедающаяся" },
|
|
35
|
+
"mysterious": { label: "Загадочная", description: "Энигматичная, тайная" },
|
|
36
|
+
"menacing": { label: "Угрожающая", description: "Грозная, предвещающая" },
|
|
37
|
+
"playful": { label: "Игривая", description: "Прихотливая, весёлая" },
|
|
38
|
+
"mischievous": { label: "Озорная", description: "Лукавая, шкодливая" },
|
|
39
|
+
"anxious": { label: "Тревожная", description: "Напряжённая, опасливая" },
|
|
40
|
+
"fearful": { label: "Боязливая", description: "Напуганная, паническая" },
|
|
41
|
+
"hopeful": { label: "Полная надежды", description: "Возвышающая, устремлённая" },
|
|
42
|
+
"inspirational": { label: "Вдохновляющая", description: "Мотивирующая, парящая" },
|
|
43
|
+
"nostalgic": { label: "Ностальгическая", description: "Обращённая в прошлое, тоскливая" },
|
|
44
|
+
"bittersweet": { label: "Горько-сладкая", description: "Сладкая печаль, смешанная" },
|
|
45
|
+
"peaceful": { label: "Умиротворённая", description: "Безмятежная, успокаивающая" },
|
|
46
|
+
"contemplative": { label: "Созерцательная", description: "Размышляющая, вдумчивая" },
|
|
47
|
+
"ethereal": { label: "Эфирная", description: "Неземная, парящая" },
|
|
48
|
+
"awe": { label: "Благоговение", description: "Чудо, необъятность" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "Кинематографичная", description: "Как саундтрек, выразительная" },
|
|
52
|
+
"intimate": { label: "Интимная", description: "Личная, близкая" },
|
|
53
|
+
"epic": { label: "Эпическая", description: "Величественная, размашистая" },
|
|
54
|
+
"anthemic": { label: "Гимническая", description: "Большая для подпевания толпой" },
|
|
55
|
+
"lo-fi": { description: "Тёплая, несовершенная" },
|
|
56
|
+
"polished": { label: "Отшлифованная", description: "Безупречная, мейнстрим" },
|
|
57
|
+
"raw": { label: "Сырая", description: "Нефильтрованная, грубая" },
|
|
58
|
+
"dreamy": { label: "Мечтательная", description: "Туманная, сюрреалистичная" },
|
|
59
|
+
"hypnotic": { label: "Гипнотическая", description: "Зацикленная, трансовая" },
|
|
60
|
+
"dark": { label: "Тёмная", description: "Хмурая, теневая" },
|
|
61
|
+
"gritty": { label: "Жёсткая", description: "Грубая, городская" },
|
|
62
|
+
"uplifting": { label: "Воодушевляющая", description: "Светлая, ободряющая" },
|
|
63
|
+
"tense": { label: "Напряжённая", description: "Саспенс" },
|
|
64
|
+
"spacey": { label: "Космическая", description: "Космическая, безбрежная" },
|
|
65
|
+
"psychedelic": { label: "Психоделическая", description: "Изменяющая сознание, кружащаяся" },
|
|
66
|
+
"noir": { label: "Нуар", description: "Дымчатая, крутая" },
|
|
67
|
+
"vintage": { label: "Винтажная", description: "Ретро, выдержанная" },
|
|
68
|
+
"futuristic": { label: "Футуристическая", description: "Сай-фай, обращённая в будущее" },
|
|
69
|
+
"suspenseful": { label: "Напряжённый", description: "Ужас, на грани" },
|
|
70
|
+
"espionage": { label: "Шпионский", description: "Шпионский триллер, тайные операции" },
|
|
71
|
+
"cold": { label: "Холодный", description: "Ледяной, отстранённый, острый" },
|
|
72
|
+
"clandestine": { label: "Тайный", description: "Секретный, в тени, скрытый" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Energies --------------------
|
|
5
|
+
"low": { label: "低", description: "平静、缓慢" },
|
|
6
|
+
"mellow": { label: "柔和", description: "放松、悠闲" },
|
|
7
|
+
"gentle": { label: "轻柔", description: "柔软、温柔" },
|
|
8
|
+
"moderate": { label: "适中", description: "平衡、稳定" },
|
|
9
|
+
"building": { label: "渐强", description: "缓慢加强" },
|
|
10
|
+
"upbeat": { label: "欢快", description: "活泼、乐观" },
|
|
11
|
+
"driving": { label: "推动", description: "向前推进的动力" },
|
|
12
|
+
"high": { label: "高", description: "充满活力、强烈" },
|
|
13
|
+
"explosive": { label: "爆发", description: "迸发、狂野" },
|
|
14
|
+
"frenetic": { label: "狂热", description: "强烈、迅速" },
|
|
15
|
+
"pulsing": { label: "脉动", description: "有节奏、节拍驱动" },
|
|
16
|
+
"throbbing": { label: "悸动", description: "厚重、催眠" },
|
|
17
|
+
"simmering": { label: "酝酿", description: "紧张、克制" },
|
|
18
|
+
"ferocious": { label: "凶猛", description: "侵略性、毫不留情" },
|
|
19
|
+
|
|
20
|
+
// -------------------- Emotions --------------------
|
|
21
|
+
"happy": { label: "快乐", description: "喜悦、明亮" },
|
|
22
|
+
"joyful": { label: "欢乐", description: "兴高采烈、庆祝" },
|
|
23
|
+
"euphoric": { label: "陶醉", description: "狂喜、超然" },
|
|
24
|
+
"melancholic": { label: "忧郁", description: "怀旧、苦乐参半" },
|
|
25
|
+
"sad": { label: "悲伤", description: "阴沉、悲痛" },
|
|
26
|
+
"longing": { label: "渴望", description: "向往、痛苦" },
|
|
27
|
+
"lonely": { label: "孤独", description: "孤立、遥远" },
|
|
28
|
+
"angry": { label: "愤怒", description: "侵略性、敌意" },
|
|
29
|
+
"defiant": { label: "反抗", description: "叛逆、抵抗" },
|
|
30
|
+
"triumphant": { label: "凯旋", description: "英雄式、胜利" },
|
|
31
|
+
"victorious": { label: "胜利", description: "征服、颂歌" },
|
|
32
|
+
"tender": { label: "温柔", description: "柔软、深情" },
|
|
33
|
+
"romantic": { label: "浪漫", description: "充满爱意、感性" },
|
|
34
|
+
"haunting": { label: "萦绕", description: "诡异、挥之不去" },
|
|
35
|
+
"mysterious": { label: "神秘", description: "扑朔迷离、隐秘" },
|
|
36
|
+
"menacing": { label: "威胁", description: "威胁性、不祥" },
|
|
37
|
+
"playful": { label: "顽皮", description: "异想天开、有趣" },
|
|
38
|
+
"mischievous": { label: "调皮", description: "狡黠、捣乱" },
|
|
39
|
+
"anxious": { label: "焦虑", description: "紧张、忧虑" },
|
|
40
|
+
"fearful": { label: "恐惧", description: "害怕、惊慌" },
|
|
41
|
+
"hopeful": { label: "充满希望", description: "鼓舞人心、有抱负" },
|
|
42
|
+
"inspirational": { label: "鼓舞人心", description: "激励、振奋" },
|
|
43
|
+
"nostalgic": { label: "怀旧", description: "回首往昔、伤感" },
|
|
44
|
+
"bittersweet": { label: "苦乐参半", description: "甜蜜的哀愁、混合" },
|
|
45
|
+
"peaceful": { label: "宁静", description: "安详、休憩" },
|
|
46
|
+
"contemplative": { label: "沉思", description: "反思、深思" },
|
|
47
|
+
"ethereal": { label: "缥缈", description: "超凡脱俗、漂浮" },
|
|
48
|
+
"awe": { label: "敬畏", description: "惊叹、浩瀚" },
|
|
49
|
+
|
|
50
|
+
// -------------------- Vibes --------------------
|
|
51
|
+
"cinematic": { label: "电影感", description: "如配乐般、富有感染力" },
|
|
52
|
+
"intimate": { label: "亲密", description: "个人化、贴近" },
|
|
53
|
+
"epic": { label: "史诗", description: "宏大、磅礴" },
|
|
54
|
+
"anthemic": { label: "颂歌式", description: "适合人群合唱的宏大感" },
|
|
55
|
+
"lo-fi": { description: "温暖、不完美" },
|
|
56
|
+
"polished": { label: "精致", description: "无瑕、主流" },
|
|
57
|
+
"raw": { label: "原始", description: "未经修饰、粗犷" },
|
|
58
|
+
"dreamy": { label: "梦幻", description: "朦胧、超现实" },
|
|
59
|
+
"hypnotic": { label: "催眠", description: "循环、出神" },
|
|
60
|
+
"dark": { label: "黑暗", description: "阴郁、阴影" },
|
|
61
|
+
"gritty": { label: "粗粝", description: "粗糙、都市" },
|
|
62
|
+
"uplifting": { label: "振奋", description: "明亮、鼓舞" },
|
|
63
|
+
"tense": { label: "紧张", description: "悬疑" },
|
|
64
|
+
"spacey": { label: "太空感", description: "宇宙、辽阔" },
|
|
65
|
+
"psychedelic": { label: "迷幻", description: "扭曲心智、旋转" },
|
|
66
|
+
"noir": { label: "黑色电影", description: "烟雾缭绕、硬朗" },
|
|
67
|
+
"vintage": { label: "复古", description: "怀旧、岁月感" },
|
|
68
|
+
"futuristic": { label: "未来感", description: "科幻、前瞻" },
|
|
69
|
+
"suspenseful": { label: "悬疑", description: "恐惧,悬念感" },
|
|
70
|
+
"espionage": { label: "间谍", description: "谍战惊悚,秘密行动" },
|
|
71
|
+
"cold": { label: "冷酷", description: "冰冷,疏离,锋利" },
|
|
72
|
+
"clandestine": { label: "秘密", description: "隐秘,暗藏,隐蔽" },
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default map
|