@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,195 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- INSTRUMENTS: Drums --------------------
|
|
5
|
+
"drums": { label: "Batería", description: "Batería acústica" },
|
|
6
|
+
"drum-machine": { label: "Caja de Ritmos", description: "Ritmos programados" },
|
|
7
|
+
"808": { description: "Bajo y batería Roland TR-808" },
|
|
8
|
+
"live-drums": { label: "Batería en Vivo", description: "Batería acústica grabada" },
|
|
9
|
+
"breakbeats": { description: "Loops de batería sampleados" },
|
|
10
|
+
"trap-drums": { label: "Batería Trap", description: "Rolls de hi-hat con 808" },
|
|
11
|
+
|
|
12
|
+
// -------------------- INSTRUMENTS: Percussion --------------------
|
|
13
|
+
"bongos": { description: "Par de pequeños tambores cubanos" },
|
|
14
|
+
"conga": { description: "Tambor alto de un solo parche" },
|
|
15
|
+
"djembe": { description: "Tambor de copa de África Occidental" },
|
|
16
|
+
"timbales": { description: "Tambores metálicos cubanos en par" },
|
|
17
|
+
"tambourine": { label: "Pandereta", description: "Sonajas agitadas a mano" },
|
|
18
|
+
"shaker": { label: "Maraca", description: "Cascabel relleno" },
|
|
19
|
+
"cowbell": { label: "Cencerro", description: "Cencerro de mano" },
|
|
20
|
+
"maracas": { description: "Par de maracas latinas" },
|
|
21
|
+
"claves": { description: "Palitos de madera" },
|
|
22
|
+
"marimba": { description: "Teclado de mazos de madera" },
|
|
23
|
+
"vibraphone": { label: "Vibráfono", description: "Mazo con resonador eléctrico" },
|
|
24
|
+
"xylophone": { label: "Xilófono", description: "Mazo de madera, brillante" },
|
|
25
|
+
"glockenspiel": { description: "Campanas de mazo agudas" },
|
|
26
|
+
"timpani": { label: "Timbales Sinfónicos", description: "Gran timbal orquestal" },
|
|
27
|
+
"taiko": { description: "Tambor de conjunto japonés" },
|
|
28
|
+
"frame-drum": { label: "Tambor de Marco", description: "Tambor redondo poco profundo" },
|
|
29
|
+
"cajon": { label: "Cajón", description: "Tambor peruano en forma de caja" },
|
|
30
|
+
"darbuka": { label: "Darbuka", description: "Tambor cáliz de Oriente Medio" },
|
|
31
|
+
|
|
32
|
+
// -------------------- INSTRUMENTS: Keys --------------------
|
|
33
|
+
"piano": { description: "Piano acústico de cola o vertical" },
|
|
34
|
+
"electric-piano": { label: "Piano Eléctrico", description: "Estilo Rhodes / Wurlitzer" },
|
|
35
|
+
"wurlitzer": { description: "Piano eléctrico Wurlitzer vintage" },
|
|
36
|
+
"rhodes": { description: "Piano eléctrico Rhodes vintage" },
|
|
37
|
+
"clavinet": { description: "Hohner D6 funk" },
|
|
38
|
+
"organ": { label: "Órgano", description: "Hammond u órgano de tubos" },
|
|
39
|
+
"hammond-organ": { description: "Órgano B3 de soul / rock" },
|
|
40
|
+
"pipe-organ": { label: "Órgano de Tubos", description: "Catedralicio / de iglesia" },
|
|
41
|
+
"accordion": { label: "Acordeón", description: "Lengüeta accionada por fuelle" },
|
|
42
|
+
"mellotron": { description: "Teclado con cintas de loop" },
|
|
43
|
+
"harpsichord": { label: "Clavecín", description: "Teclado de cuerdas pulsadas" },
|
|
44
|
+
"celesta": { description: "Teclado con sonido de campanas" },
|
|
45
|
+
|
|
46
|
+
// -------------------- INSTRUMENTS: Synth --------------------
|
|
47
|
+
"synthesizer": { description: "Sintetizador analógico o digital" },
|
|
48
|
+
"lead-synth": { label: "Sintetizador Solista", description: "Sintetizador melódico cortante" },
|
|
49
|
+
"pluck-synth": { label: "Sintetizador Pulsado", description: "Timbre corto y pulsado" },
|
|
50
|
+
"pads": { label: "Pads de Sintetizador", description: "Texturas sostenidas de sintetizador" },
|
|
51
|
+
"arpeggiator": { label: "Arpegiador", description: "Patrones de arpegio secuenciados" },
|
|
52
|
+
"vocoder": { description: "Sintetizador modulado por voz" },
|
|
53
|
+
"talkbox": { description: "Sintetizador modelado con la boca" },
|
|
54
|
+
"modular-synth": { label: "Modular", description: "Sintetizador analógico parcheable" },
|
|
55
|
+
"fm-synth": { description: "Sintetizador de modulación de frecuencia" },
|
|
56
|
+
"wavetable-synth": { label: "Wavetable", description: "Sintetizador de barrido de tabla de ondas" },
|
|
57
|
+
"stab-synth": { label: "Stab", description: "Acorde corto y percusivo" },
|
|
58
|
+
|
|
59
|
+
// -------------------- INSTRUMENTS: Guitar --------------------
|
|
60
|
+
"acoustic-guitar": { label: "Guitarra Acústica", description: "De cuerdas de acero o nylon" },
|
|
61
|
+
"electric-guitar": { label: "Guitarra Eléctrica", description: "Cuerpo sólido, a menudo distorsionada" },
|
|
62
|
+
"classical-guitar": { label: "Guitarra Clásica", description: "Cuerdas de nylon, fingerstyle" },
|
|
63
|
+
"12-string-guitar": { label: "Guitarra de 12 Cuerdas", description: "Rasgueo de cuerdas dobladas" },
|
|
64
|
+
"pedal-steel": { description: "Steel deslizante country" },
|
|
65
|
+
"lap-steel": { description: "Steel hawaiano de regazo" },
|
|
66
|
+
"dobro": { description: "Guitarra resofónica" },
|
|
67
|
+
"banjo": { description: "De 5 cuerdas o tenor" },
|
|
68
|
+
"mandolin": { label: "Mandolina", description: "Folk / bluegrass" },
|
|
69
|
+
"ukulele": { description: "Ukulele soprano-tenor" },
|
|
70
|
+
|
|
71
|
+
// -------------------- INSTRUMENTS: Bass --------------------
|
|
72
|
+
"bass-guitar": { label: "Bajo Eléctrico", description: "Bajo eléctrico de gama baja" },
|
|
73
|
+
"synth-bass": { label: "Bajo Sintetizado", description: "Graves sintetizados" },
|
|
74
|
+
"sub-bass": { label: "Sub Bajo", description: "Sub-frecuencias sinusoidales profundas" },
|
|
75
|
+
"acoustic-bass": { label: "Bajo Acústico", description: "Guitarra bajo acústica" },
|
|
76
|
+
"upright-bass": { label: "Contrabajo", description: "Contrabajo, estilo jazz" },
|
|
77
|
+
"fretless-bass": { label: "Bajo Sin Trastes", description: "Bajo con deslizamientos" },
|
|
78
|
+
"acid-bass": { label: "Bajo Ácido", description: "Squelch TB-303" },
|
|
79
|
+
"wobble-bass": { description: "Dubstep modulado por LFO" },
|
|
80
|
+
"reese-bass": { description: "Drum-and-bass desafinado" },
|
|
81
|
+
|
|
82
|
+
// -------------------- INSTRUMENTS: Brass --------------------
|
|
83
|
+
"brass": { label: "Sección de Metales", description: "Trompeta, trombón, etc." },
|
|
84
|
+
"trumpet": { label: "Trompeta", description: "Trompeta solista" },
|
|
85
|
+
"trombone": { label: "Trombón", description: "Trombón solista" },
|
|
86
|
+
"french-horn": { label: "Trompa Francesa", description: "Metal cálido" },
|
|
87
|
+
"tuba": { description: "El metal más grave" },
|
|
88
|
+
"saxophone": { description: "Saxofón solista o de sección" },
|
|
89
|
+
"flugelhorn": { label: "Fliscorno", description: "Pariente cálido de la trompeta" },
|
|
90
|
+
"cornet": { label: "Corneta", description: "Corneta de banda de metales" },
|
|
91
|
+
"muted-trumpet": { label: "Trompeta con Sordina", description: "Trompeta de jazz con sordina" },
|
|
92
|
+
|
|
93
|
+
// -------------------- INSTRUMENTS: Woodwinds --------------------
|
|
94
|
+
"flute": { label: "Flauta", description: "Flauta de concierto" },
|
|
95
|
+
"clarinet": { label: "Clarinete", description: "Clarinete solista" },
|
|
96
|
+
"harmonica": { label: "Armónica", description: "Armónica de blues" },
|
|
97
|
+
"oboe": { description: "Lengüeta, lastimero" },
|
|
98
|
+
"bassoon": { label: "Fagot", description: "Doble lengüeta grave" },
|
|
99
|
+
"english-horn": { label: "Corno Inglés", description: "Oboe tenor" },
|
|
100
|
+
"piccolo": { label: "Flautín", description: "Flauta aguda" },
|
|
101
|
+
"recorder": { label: "Flauta Dulce", description: "Viento-madera de tono suave" },
|
|
102
|
+
"pan-flute": { label: "Flauta de Pan", description: "Flauta andina de tubos" },
|
|
103
|
+
|
|
104
|
+
// -------------------- INSTRUMENTS: Strings --------------------
|
|
105
|
+
"strings": { label: "Sección de Cuerdas", description: "Sección orquestal de cuerdas" },
|
|
106
|
+
"violin": { label: "Violín", description: "Violín solista" },
|
|
107
|
+
"viola": { description: "Viola solista" },
|
|
108
|
+
"cello": { label: "Violonchelo", description: "Violonchelo solista" },
|
|
109
|
+
"double-bass": { label: "Contrabajo", description: "Contrabajo orquestal" },
|
|
110
|
+
"harp": { label: "Arpa", description: "Arpa de concierto o folk" },
|
|
111
|
+
"pizzicato-strings": { label: "Pizzicato", description: "Cuerdas pulsadas" },
|
|
112
|
+
"staccato-strings": { label: "Staccato", description: "Cuerdas cortas y contundentes" },
|
|
113
|
+
"fiddle": { label: "Violín Folk", description: "Violín al estilo folk" },
|
|
114
|
+
|
|
115
|
+
// -------------------- INSTRUMENTS: World --------------------
|
|
116
|
+
"sitar": { description: "Mástil largo indio" },
|
|
117
|
+
"tabla": { description: "Tambores de mano indios" },
|
|
118
|
+
"steel-drum": { label: "Tambor de Acero", description: "Steelpan trinitense" },
|
|
119
|
+
"kalimba": { description: "Piano de pulgar africano" },
|
|
120
|
+
"bagpipes": { label: "Gaita", description: "Gaita escocesa" },
|
|
121
|
+
"didgeridoo": { description: "Viento australiano" },
|
|
122
|
+
"oud": { description: "Laúd de Oriente Medio" },
|
|
123
|
+
"erhu": { description: "Violín chino de 2 cuerdas" },
|
|
124
|
+
"koto": { description: "Cítara japonesa" },
|
|
125
|
+
"shakuhachi": { description: "Flauta japonesa de boquilla abierta" },
|
|
126
|
+
"shamisen": { description: "Laúd japonés de 3 cuerdas" },
|
|
127
|
+
"duduk": { description: "Doble lengüeta armenia" },
|
|
128
|
+
"balalaika": { description: "Laúd ruso triangular" },
|
|
129
|
+
"bouzouki": { description: "Laúd griego de mástil largo" },
|
|
130
|
+
"kora": { description: "Instrumento de 21 cuerdas de África Occidental" },
|
|
131
|
+
"hang-drum": { description: "Hang de acero de mano" },
|
|
132
|
+
|
|
133
|
+
// -------------------- INSTRUMENTS: Middle Eastern --------------------
|
|
134
|
+
"kamancheh": { description: "Violín persa de mástil con arco" },
|
|
135
|
+
"ney": { description: "Flauta de caña soplada por el extremo (persa/árabe)" },
|
|
136
|
+
"santur": { description: "Salterio persa percutido" },
|
|
137
|
+
|
|
138
|
+
// -------------------- PRODUCTION_STYLES --------------------
|
|
139
|
+
"polished": { label: "Pulida", description: "Producción prístina y mainstream" },
|
|
140
|
+
"lo-fi": { description: "Cinta cálida con siseo, imperfecta" },
|
|
141
|
+
"raw": { label: "Cruda", description: "Sin filtros, sensación en vivo" },
|
|
142
|
+
"vintage": { description: "Calidez analógica" },
|
|
143
|
+
"modern": { label: "Moderna", description: "Digital contemporánea" },
|
|
144
|
+
"minimalist": { label: "Minimalista", description: "Escasa, contenida" },
|
|
145
|
+
"wall-of-sound": { label: "Muro de Sonido", description: "Densa, en capas" },
|
|
146
|
+
"ambient": { label: "Ambiental", description: "Atmosférica, con reverberación" },
|
|
147
|
+
"garage-band": { label: "Banda de Garaje", description: "Casero, grabado en sótano" },
|
|
148
|
+
"live-recording": { label: "En Vivo", description: "Sonido de concierto / sala" },
|
|
149
|
+
"demo-quality": { label: "Demo", description: "Estética de demo en bruto" },
|
|
150
|
+
"studio-pristine": { label: "Estudio Prístino", description: "Calidad de referencia hi-fi" },
|
|
151
|
+
"tape-saturated": { label: "Saturada por Cinta", description: "Calidez analógica de cinta + saturación" },
|
|
152
|
+
"8-bit-retro": { label: "8-bit Retro", description: "Audio retro de baja tasa de bits" },
|
|
153
|
+
|
|
154
|
+
// -------------------- VOCAL_PRESENCE --------------------
|
|
155
|
+
"instrumental": { description: "Sin voces (exclusivo)" },
|
|
156
|
+
"male-lead": { label: "Voz Masculina Principal", description: "Voz principal masculina" },
|
|
157
|
+
"female-lead": { label: "Voz Femenina Principal", description: "Voz principal femenina" },
|
|
158
|
+
"androgynous-lead": { label: "Andrógina", description: "Voz principal de género neutro" },
|
|
159
|
+
"duet": { label: "Dúo", description: "Dos voces principales" },
|
|
160
|
+
"choir": { label: "Coro", description: "Voces corales / de conjunto" },
|
|
161
|
+
"gospel-choir": { label: "Coro Gospel", description: "Coro de respaldo estilo gospel" },
|
|
162
|
+
"harmony-stack": { label: "Apilado de Armonías", description: "Armonías vocales apiladas" },
|
|
163
|
+
"rapper-lead": { label: "Rapero", description: "Rap principal" },
|
|
164
|
+
"spoken-word": { label: "Palabra Hablada", description: "Recitado / poesía sobre la música" },
|
|
165
|
+
"vocal-chops": { label: "Vocal Chops", description: "Voces sampleadas troceadas" },
|
|
166
|
+
"mixed": { label: "Mixto", description: "Múltiples voces principales" },
|
|
167
|
+
|
|
168
|
+
// -------------------- SINGING_STYLES --------------------
|
|
169
|
+
"pop-singing": { description: "Estilo principal mainstream" },
|
|
170
|
+
"rock-singing": { description: "Entrega vocal estilo rock" },
|
|
171
|
+
"operatic": { label: "Operística", description: "Técnica clásica de ópera" },
|
|
172
|
+
"classical-vocals": { label: "Clásica", description: "Voz clásica entrenada" },
|
|
173
|
+
"rap": { description: "Entrega rítmica hablada" },
|
|
174
|
+
"trap-melodic": { label: "Trap (Melódico)", description: "Trap melódico, con autotune" },
|
|
175
|
+
"growl": { label: "Gutural", description: "Gutural estilo death-metal" },
|
|
176
|
+
"scream": { label: "Grito", description: "Hardcore / gritado" },
|
|
177
|
+
"shout": { label: "Vociferado", description: "Gritado punk / coreado" },
|
|
178
|
+
"falsetto": { description: "Registro alto, ligero" },
|
|
179
|
+
"head-voice": { label: "Voz de Cabeza", description: "Registro alto resonante" },
|
|
180
|
+
"chest-voice": { label: "Voz de Pecho", description: "Registro grave fuerte" },
|
|
181
|
+
"belting": { label: "Belting", description: "Notas altas potentes y sostenidas" },
|
|
182
|
+
"crooning": { label: "Crooning", description: "Estilo romántico vintage suave" },
|
|
183
|
+
"scat": { description: "Sílabas improvisadas de jazz" },
|
|
184
|
+
"yodeling": { label: "Yodel", description: "Cambio de registro alpino" },
|
|
185
|
+
"throat-singing": { label: "Canto Gutural", description: "Sobretono mongol / tuvano" },
|
|
186
|
+
"melismatic": { label: "Melismática", description: "Múltiples notas por sílaba" },
|
|
187
|
+
"autotuned": { label: "Con Autotune", description: "Voces con corrección de tono, procesadas" },
|
|
188
|
+
"vocoded": { label: "Vocoderizada", description: "Voces procesadas con vocoder" },
|
|
189
|
+
"whisper-singing": { label: "Canto Susurrado", description: "Canto silencioso e íntimo" },
|
|
190
|
+
"breathy-singing": { label: "Susurrante", description: "Canto aireado e íntimo" },
|
|
191
|
+
"harmonized": { label: "Armonizada", description: "Armonías a varias voces" },
|
|
192
|
+
"chant": { label: "Canto Litúrgico", description: "Canto litúrgico / monástico" },
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export default map
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- INSTRUMENTS: Drums --------------------
|
|
5
|
+
"drums": { label: "Batterie", description: "Kit de batterie acoustique" },
|
|
6
|
+
"drum-machine": { label: "Boîte à Rythmes", description: "Rythmes programmés" },
|
|
7
|
+
"808": { description: "Basse et batterie Roland TR-808" },
|
|
8
|
+
"live-drums": { label: "Batterie Live", description: "Kit acoustique enregistré" },
|
|
9
|
+
"breakbeats": { description: "Boucles de batterie samplées" },
|
|
10
|
+
"trap-drums": { label: "Batterie Trap", description: "Roulements de hi-hat avec 808" },
|
|
11
|
+
|
|
12
|
+
// -------------------- INSTRUMENTS: Percussion --------------------
|
|
13
|
+
"bongos": { description: "Paire de petits tambours cubains" },
|
|
14
|
+
"conga": { label: "Conga", description: "Tambour haut à peau unique" },
|
|
15
|
+
"djembe": { label: "Djembé", description: "Tambour gobelet ouest-africain" },
|
|
16
|
+
"timbales": { description: "Tambours métalliques cubains en paire" },
|
|
17
|
+
"tambourine": { label: "Tambourin", description: "Cymbalettes secouées à la main" },
|
|
18
|
+
"shaker": { label: "Shaker", description: "Hochet rempli" },
|
|
19
|
+
"cowbell": { label: "Cloche de Vache", description: "Cloche tenue à la main" },
|
|
20
|
+
"maracas": { description: "Paire de shakers latins" },
|
|
21
|
+
"claves": { description: "Bâtons en bois" },
|
|
22
|
+
"marimba": { description: "Clavier à mailloches en bois" },
|
|
23
|
+
"vibraphone": { description: "Mailloche à résonateur électrique" },
|
|
24
|
+
"xylophone": { description: "Mailloches en bois, brillant" },
|
|
25
|
+
"glockenspiel": { description: "Cloches à mailloches aiguës" },
|
|
26
|
+
"timpani": { label: "Timbales d'Orchestre", description: "Grandes timbales orchestrales" },
|
|
27
|
+
"taiko": { description: "Tambour d'ensemble japonais" },
|
|
28
|
+
"frame-drum": { label: "Tambour sur Cadre", description: "Tambour rond peu profond" },
|
|
29
|
+
"cajon": { description: "Tambour péruvien en forme de boîte" },
|
|
30
|
+
"darbuka": { label: "Darbouka", description: "Tambour calice du Moyen-Orient" },
|
|
31
|
+
|
|
32
|
+
// -------------------- INSTRUMENTS: Keys --------------------
|
|
33
|
+
"piano": { description: "Piano à queue ou droit acoustique" },
|
|
34
|
+
"electric-piano": { label: "Piano Électrique", description: "Style Rhodes / Wurlitzer" },
|
|
35
|
+
"wurlitzer": { description: "Piano électrique Wurlitzer vintage" },
|
|
36
|
+
"rhodes": { description: "Piano électrique Rhodes vintage" },
|
|
37
|
+
"clavinet": { description: "Hohner D6 funky" },
|
|
38
|
+
"organ": { label: "Orgue", description: "Hammond ou orgue à tuyaux" },
|
|
39
|
+
"hammond-organ": { description: "Orgue B3 soul / rock" },
|
|
40
|
+
"pipe-organ": { label: "Orgue à Tuyaux", description: "Cathédrale / église" },
|
|
41
|
+
"accordion": { label: "Accordéon", description: "Anche à soufflet" },
|
|
42
|
+
"mellotron": { description: "Clavier à boucles de bande" },
|
|
43
|
+
"harpsichord": { label: "Clavecin", description: "Clavier à cordes pincées" },
|
|
44
|
+
"celesta": { label: "Célesta", description: "Clavier au son de clochettes" },
|
|
45
|
+
|
|
46
|
+
// -------------------- INSTRUMENTS: Synth --------------------
|
|
47
|
+
"synthesizer": { label: "Synthétiseur", description: "Synthé analogique ou numérique" },
|
|
48
|
+
"lead-synth": { label: "Synthé Lead", description: "Synthé mélodique tranchant" },
|
|
49
|
+
"pluck-synth": { label: "Synthé Pincé", description: "Timbre court et pincé" },
|
|
50
|
+
"pads": { label: "Nappes de Synthé", description: "Textures de synthé soutenues" },
|
|
51
|
+
"arpeggiator": { label: "Arpégiateur", description: "Motifs d'arpèges séquencés" },
|
|
52
|
+
"vocoder": { description: "Synthé modulé par la voix" },
|
|
53
|
+
"talkbox": { description: "Synthé façonné par la bouche" },
|
|
54
|
+
"modular-synth": { label: "Modulaire", description: "Synthé analogique à patcher" },
|
|
55
|
+
"fm-synth": { label: "Synthé FM", description: "Synthé à modulation de fréquence" },
|
|
56
|
+
"wavetable-synth": { label: "Wavetable", description: "Synthé à balayage de table d'ondes" },
|
|
57
|
+
"stab-synth": { label: "Stab", description: "Accord court et percussif" },
|
|
58
|
+
|
|
59
|
+
// -------------------- INSTRUMENTS: Guitar --------------------
|
|
60
|
+
"acoustic-guitar": { label: "Guitare Acoustique", description: "Cordes en acier ou nylon" },
|
|
61
|
+
"electric-guitar": { label: "Guitare Électrique", description: "Corps plein, souvent saturé" },
|
|
62
|
+
"classical-guitar": { label: "Guitare Classique", description: "Cordes nylon, fingerstyle" },
|
|
63
|
+
"12-string-guitar": { label: "12 Cordes", description: "Grattage à cordes doublées" },
|
|
64
|
+
"pedal-steel": { description: "Steel glissante country" },
|
|
65
|
+
"lap-steel": { description: "Steel hawaïenne sur les genoux" },
|
|
66
|
+
"dobro": { description: "Guitare à résonateur" },
|
|
67
|
+
"banjo": { description: "5 cordes ou ténor" },
|
|
68
|
+
"mandolin": { label: "Mandoline", description: "Folk / bluegrass" },
|
|
69
|
+
"ukulele": { label: "Ukulélé", description: "Uke soprano-ténor" },
|
|
70
|
+
|
|
71
|
+
// -------------------- INSTRUMENTS: Bass --------------------
|
|
72
|
+
"bass-guitar": { label: "Guitare Basse", description: "Basse électrique grave" },
|
|
73
|
+
"synth-bass": { label: "Basse de Synthé", description: "Graves synthétisés" },
|
|
74
|
+
"sub-bass": { label: "Sub-Basse", description: "Sub-fréquences sinusoïdales profondes" },
|
|
75
|
+
"acoustic-bass": { label: "Basse Acoustique", description: "Guitare basse acoustique" },
|
|
76
|
+
"upright-bass": { label: "Contrebasse", description: "Contrebasse, style jazz" },
|
|
77
|
+
"fretless-bass": { label: "Basse Fretless", description: "Basse glissée" },
|
|
78
|
+
"acid-bass": { label: "Basse Acid", description: "Squelch TB-303" },
|
|
79
|
+
"wobble-bass": { description: "Dubstep modulé par LFO" },
|
|
80
|
+
"reese-bass": { description: "Drum-and-bass désaccordé" },
|
|
81
|
+
|
|
82
|
+
// -------------------- INSTRUMENTS: Brass --------------------
|
|
83
|
+
"brass": { label: "Section de Cuivres", description: "Trompette, trombone, etc." },
|
|
84
|
+
"trumpet": { label: "Trompette", description: "Trompette solo" },
|
|
85
|
+
"trombone": { description: "Trombone solo" },
|
|
86
|
+
"french-horn": { label: "Cor d'Harmonie", description: "Cuivre doux" },
|
|
87
|
+
"tuba": { description: "Le cuivre le plus grave" },
|
|
88
|
+
"saxophone": { description: "Saxophone solo ou de section" },
|
|
89
|
+
"flugelhorn": { label: "Bugle", description: "Cousin doux de la trompette" },
|
|
90
|
+
"cornet": { description: "Cornet de fanfare" },
|
|
91
|
+
"muted-trumpet": { label: "Trompette Bouchée", description: "Trompette jazz avec sourdine" },
|
|
92
|
+
|
|
93
|
+
// -------------------- INSTRUMENTS: Woodwinds --------------------
|
|
94
|
+
"flute": { label: "Flûte", description: "Flûte de concert" },
|
|
95
|
+
"clarinet": { label: "Clarinette", description: "Clarinette solo" },
|
|
96
|
+
"harmonica": { description: "Harmonica de blues" },
|
|
97
|
+
"oboe": { label: "Hautbois", description: "À anche, plaintif" },
|
|
98
|
+
"bassoon": { label: "Basson", description: "Double anche grave" },
|
|
99
|
+
"english-horn": { label: "Cor Anglais", description: "Hautbois ténor" },
|
|
100
|
+
"piccolo": { description: "Flûte aiguë" },
|
|
101
|
+
"recorder": { label: "Flûte à Bec", description: "Bois au timbre doux" },
|
|
102
|
+
"pan-flute": { label: "Flûte de Pan", description: "Flûte andine à tuyaux" },
|
|
103
|
+
|
|
104
|
+
// -------------------- INSTRUMENTS: Strings --------------------
|
|
105
|
+
"strings": { label: "Section de Cordes", description: "Section orchestrale de cordes" },
|
|
106
|
+
"violin": { label: "Violon", description: "Violon solo" },
|
|
107
|
+
"viola": { label: "Alto", description: "Alto solo" },
|
|
108
|
+
"cello": { label: "Violoncelle", description: "Violoncelle solo" },
|
|
109
|
+
"double-bass": { label: "Contrebasse", description: "Contrebasse orchestrale" },
|
|
110
|
+
"harp": { label: "Harpe", description: "Harpe de concert ou folk" },
|
|
111
|
+
"pizzicato-strings": { label: "Pizzicato", description: "Cordes pincées" },
|
|
112
|
+
"staccato-strings": { label: "Staccato", description: "Cordes courtes et incisives" },
|
|
113
|
+
"fiddle": { label: "Violon Folk", description: "Violon de style folk" },
|
|
114
|
+
|
|
115
|
+
// -------------------- INSTRUMENTS: World --------------------
|
|
116
|
+
"sitar": { description: "Long manche indien" },
|
|
117
|
+
"tabla": { description: "Tambours à main indiens" },
|
|
118
|
+
"steel-drum": { label: "Steel Drum", description: "Steelpan trinidadien" },
|
|
119
|
+
"kalimba": { description: "Piano à pouces africain" },
|
|
120
|
+
"bagpipes": { label: "Cornemuse", description: "Cornemuse écossaise" },
|
|
121
|
+
"didgeridoo": { description: "Vent australien" },
|
|
122
|
+
"oud": { description: "Luth du Moyen-Orient" },
|
|
123
|
+
"erhu": { description: "Vièle chinoise à 2 cordes" },
|
|
124
|
+
"koto": { description: "Cithare japonaise" },
|
|
125
|
+
"shakuhachi": { description: "Flûte japonaise à embouchure" },
|
|
126
|
+
"shamisen": { description: "Luth japonais à 3 cordes" },
|
|
127
|
+
"duduk": { description: "Double anche arménienne" },
|
|
128
|
+
"balalaika": { label: "Balalaïka", description: "Luth russe triangulaire" },
|
|
129
|
+
"bouzouki": { description: "Luth grec à long manche" },
|
|
130
|
+
"kora": { description: "Instrument à 21 cordes d'Afrique de l'Ouest" },
|
|
131
|
+
"hang-drum": { description: "Hang en acier joué à la main" },
|
|
132
|
+
|
|
133
|
+
// -------------------- INSTRUMENTS: Middle Eastern --------------------
|
|
134
|
+
"kamancheh": { label: "Kamânche", description: "Vièle persane à pique jouée à l'archet" },
|
|
135
|
+
"ney": { description: "Flûte de roseau à embouchure terminale (persane/arabe)" },
|
|
136
|
+
"santur": { label: "Santour", description: "Cithare persane frappée à mailloches" },
|
|
137
|
+
|
|
138
|
+
// -------------------- PRODUCTION_STYLES --------------------
|
|
139
|
+
"polished": { label: "Soignée", description: "Production prestine et grand public" },
|
|
140
|
+
"lo-fi": { description: "Cassette chaude avec souffle, imparfaite" },
|
|
141
|
+
"raw": { label: "Brute", description: "Sans filtre, sensation live" },
|
|
142
|
+
"vintage": { description: "Chaleur analogique" },
|
|
143
|
+
"modern": { label: "Moderne", description: "Numérique contemporaine" },
|
|
144
|
+
"minimalist": { label: "Minimaliste", description: "Épurée, retenue" },
|
|
145
|
+
"wall-of-sound": { label: "Mur du Son", description: "Dense, superposée" },
|
|
146
|
+
"ambient": { description: "Atmosphérique, avec réverbération" },
|
|
147
|
+
"garage-band": { label: "Garage Band", description: "DIY, enregistré au sous-sol" },
|
|
148
|
+
"live-recording": { label: "Live", description: "Son de concert / de salle" },
|
|
149
|
+
"demo-quality": { description: "Esthétique de démo brute" },
|
|
150
|
+
"studio-pristine": { label: "Studio Prestige", description: "Qualité de référence hi-fi" },
|
|
151
|
+
"tape-saturated": { label: "Saturation Bande", description: "Chaleur analogique de bande + drive" },
|
|
152
|
+
"8-bit-retro": { description: "Audio rétro de jeu lo-bit" },
|
|
153
|
+
|
|
154
|
+
// -------------------- VOCAL_PRESENCE --------------------
|
|
155
|
+
"instrumental": { description: "Pas de voix (exclusif)" },
|
|
156
|
+
"male-lead": { label: "Voix Masculine", description: "Voix principale masculine" },
|
|
157
|
+
"female-lead": { label: "Voix Féminine", description: "Voix principale féminine" },
|
|
158
|
+
"androgynous-lead": { label: "Androgyne", description: "Voix principale de genre neutre" },
|
|
159
|
+
"duet": { label: "Duo", description: "Deux voix principales" },
|
|
160
|
+
"choir": { label: "Chœur", description: "Voix chorales / d'ensemble" },
|
|
161
|
+
"gospel-choir": { label: "Chœur Gospel", description: "Chœur de soutien style gospel" },
|
|
162
|
+
"harmony-stack": { label: "Empilement d'Harmonies", description: "Harmonies vocales empilées" },
|
|
163
|
+
"rapper-lead": { label: "Rappeur", description: "Rap principal" },
|
|
164
|
+
"spoken-word": { label: "Parole Parlée", description: "Diction / poésie sur la musique" },
|
|
165
|
+
"vocal-chops": { description: "Voix samplées découpées" },
|
|
166
|
+
"mixed": { label: "Mixte", description: "Plusieurs voix principales" },
|
|
167
|
+
|
|
168
|
+
// -------------------- SINGING_STYLES --------------------
|
|
169
|
+
"pop-singing": { description: "Style principal grand public" },
|
|
170
|
+
"rock-singing": { description: "Diction vocale rock" },
|
|
171
|
+
"operatic": { label: "Lyrique", description: "Technique d'opéra classique" },
|
|
172
|
+
"classical-vocals": { label: "Classique", description: "Voix classique formée" },
|
|
173
|
+
"rap": { description: "Diction rythmée parlée" },
|
|
174
|
+
"trap-melodic": { label: "Trap (Mélodique)", description: "Trap mélodique, avec autotune" },
|
|
175
|
+
"growl": { description: "Growl à la death metal" },
|
|
176
|
+
"scream": { label: "Cri", description: "Hardcore / hurlé" },
|
|
177
|
+
"shout": { label: "Hurlement", description: "Hurlement punk / scandé" },
|
|
178
|
+
"falsetto": { description: "Registre aigu, léger" },
|
|
179
|
+
"head-voice": { label: "Voix de Tête", description: "Registre aigu résonant" },
|
|
180
|
+
"chest-voice": { label: "Voix de Poitrine", description: "Registre grave puissant" },
|
|
181
|
+
"belting": { description: "Aigus puissants soutenus" },
|
|
182
|
+
"crooning": { description: "Romantique vintage onctueux" },
|
|
183
|
+
"scat": { description: "Syllabes improvisées de jazz" },
|
|
184
|
+
"yodeling": { label: "Iodel", description: "Bascule de registre alpine" },
|
|
185
|
+
"throat-singing": { label: "Chant Diphonique", description: "Harmoniques mongols / touvanes" },
|
|
186
|
+
"melismatic": { label: "Mélismatique", description: "Plusieurs notes par syllabe" },
|
|
187
|
+
"autotuned": { label: "Auto-Tunée", description: "Voix corrigée en hauteur, traitée" },
|
|
188
|
+
"vocoded": { label: "Vocodée", description: "Voix traitée au vocoder" },
|
|
189
|
+
"whisper-singing": { label: "Chant Chuchoté", description: "Chant feutré et intime" },
|
|
190
|
+
"breathy-singing": { label: "Soufflée", description: "Chant aéré et intime" },
|
|
191
|
+
"harmonized": { label: "Harmonisée", description: "Harmonies à plusieurs voix" },
|
|
192
|
+
"chant": { description: "Chant liturgique / monastique" },
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export default map
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- INSTRUMENTS: Drums --------------------
|
|
5
|
+
"drums": { label: "תופים", description: "ערכת תופים אקוסטית" },
|
|
6
|
+
"drum-machine": { label: "מכונת תופים", description: "ביטים מתוכנתים" },
|
|
7
|
+
"808": { description: "בס וערכת Roland TR-808" },
|
|
8
|
+
"live-drums": { label: "תופים חיים", description: "ערכה אקוסטית מוקלטת" },
|
|
9
|
+
"breakbeats": { label: "ברייקביטס", description: "לולאות תופים מדגומות" },
|
|
10
|
+
"trap-drums": { label: "תופי טראפ", description: "גלגולי היי-האט + 808" },
|
|
11
|
+
|
|
12
|
+
// -------------------- INSTRUMENTS: Percussion --------------------
|
|
13
|
+
"bongos": { label: "בונגו", description: "זוג תופים קובניים קטנים" },
|
|
14
|
+
"conga": { label: "קונגה", description: "תוף גבוה חד-ראש" },
|
|
15
|
+
"djembe": { label: "ג׳מבה", description: "תוף גביעי ממערב אפריקה" },
|
|
16
|
+
"timbales": { label: "טימבלס", description: "תופי מתכת קובניים זוגיים" },
|
|
17
|
+
"tambourine": { label: "תוף מרים", description: "פעמונים מנוערים ביד" },
|
|
18
|
+
"shaker": { label: "שייקר", description: "רעשן ממולא" },
|
|
19
|
+
"cowbell": { label: "פעמון פרה", description: "פעמון פרה ביד" },
|
|
20
|
+
"maracas": { label: "מרקס", description: "זוג שייקרים לטיניים" },
|
|
21
|
+
"claves": { label: "קלאוויס", description: "מקלות עץ" },
|
|
22
|
+
"marimba": { label: "מרימבה", description: "קלידי פטישי עץ" },
|
|
23
|
+
"vibraphone": { label: "ויברפון", description: "פטישים עם תהודה חשמלית" },
|
|
24
|
+
"xylophone": { label: "קסילופון", description: "פטיש עץ, בהיר" },
|
|
25
|
+
"glockenspiel": { label: "גלוקנשפיל", description: "פעמוני פטיש גבוהים" },
|
|
26
|
+
"timpani": { label: "טימפני", description: "תוף תזמורתי גדול" },
|
|
27
|
+
"taiko": { label: "טאיקו", description: "תוף הרכב יפני" },
|
|
28
|
+
"frame-drum": { label: "תוף מסגרת", description: "תוף עגול שטוח" },
|
|
29
|
+
"cajon": { label: "קחון", description: "תוף פרואני בצורת קופסה" },
|
|
30
|
+
"darbuka": { label: "דרבוקה", description: "תוף גביעי ממוצא מזרח תיכוני" },
|
|
31
|
+
|
|
32
|
+
// -------------------- INSTRUMENTS: Keys --------------------
|
|
33
|
+
"piano": { label: "פסנתר", description: "פסנתר כנף או זקוף אקוסטי" },
|
|
34
|
+
"electric-piano": { label: "פסנתר חשמלי", description: "סגנון Rhodes / Wurlitzer" },
|
|
35
|
+
"wurlitzer": { description: "פסנתר חשמלי Wurlitzer וינטג׳" },
|
|
36
|
+
"rhodes": { description: "פסנתר חשמלי Rhodes וינטג׳" },
|
|
37
|
+
"clavinet": { label: "קלאוויןט", description: "Hohner D6 פאנקי" },
|
|
38
|
+
"organ": { label: "עוגב", description: "Hammond או עוגב צינורות" },
|
|
39
|
+
"hammond-organ": { description: "עוגב B3 סול / רוק" },
|
|
40
|
+
"pipe-organ": { label: "עוגב צינורות", description: "קתדרלה / כנסייה" },
|
|
41
|
+
"accordion": { label: "אקורדיון", description: "לשונית מונעת מפוח" },
|
|
42
|
+
"mellotron": { label: "מלוטרון", description: "קלידים עם לולאות סרט" },
|
|
43
|
+
"harpsichord": { label: "צ׳מבלו", description: "קלידים עם מיתרים פרוטים" },
|
|
44
|
+
"celesta": { label: "צ׳לסטה", description: "קלידים בצליל פעמון" },
|
|
45
|
+
|
|
46
|
+
// -------------------- INSTRUMENTS: Synth --------------------
|
|
47
|
+
"synthesizer": { label: "סינתסייזר", description: "סינת אנלוגי או דיגיטלי" },
|
|
48
|
+
"lead-synth": { label: "סינת מוביל", description: "סינת מלודי חד" },
|
|
49
|
+
"pluck-synth": { label: "סינת פריטה", description: "צליל קצר ופרוט" },
|
|
50
|
+
"pads": { label: "פאדים של סינת", description: "טקסטורות סינת מתמשכות" },
|
|
51
|
+
"arpeggiator": { label: "ארפג׳יאטור", description: "תבניות ארפג׳יו רציפות" },
|
|
52
|
+
"vocoder": { description: "סינת מאופנן בקול" },
|
|
53
|
+
"talkbox": { description: "סינת מעוצב בפה" },
|
|
54
|
+
"modular-synth": { label: "מודולרי", description: "סינת אנלוגי לחיבור" },
|
|
55
|
+
"fm-synth": { label: "סינת FM", description: "סינת אפנון תדר" },
|
|
56
|
+
"wavetable-synth": { label: "וייבטייבל", description: "סינת סריקת טבלת גלים" },
|
|
57
|
+
"stab-synth": { label: "סטאב", description: "אקורד קצר ופרקוסיבי" },
|
|
58
|
+
|
|
59
|
+
// -------------------- INSTRUMENTS: Guitar --------------------
|
|
60
|
+
"acoustic-guitar": { label: "גיטרה אקוסטית", description: "מיתרי פלדה או ניילון" },
|
|
61
|
+
"electric-guitar": { label: "גיטרה חשמלית", description: "גוף מלא, לעיתים מעוותת" },
|
|
62
|
+
"classical-guitar": { label: "גיטרה קלאסית", description: "מיתרי ניילון, פינגרסטייל" },
|
|
63
|
+
"12-string-guitar": { label: "גיטרת 12 מיתרים", description: "פריטה עם מיתרים כפולים" },
|
|
64
|
+
"pedal-steel": { label: "פדל סטיל", description: "סטיל החלקה קאנטרי" },
|
|
65
|
+
"lap-steel": { label: "לאפ סטיל", description: "סטיל הוואי על הברך" },
|
|
66
|
+
"dobro": { label: "דוברו", description: "גיטרת רזונטור" },
|
|
67
|
+
"banjo": { label: "בנג׳ו", description: "5 מיתרים או טנור" },
|
|
68
|
+
"mandolin": { label: "מנדולינה", description: "פולק / בלוגראס" },
|
|
69
|
+
"ukulele": { label: "יוקולילי", description: "סופרן-טנור יוק" },
|
|
70
|
+
|
|
71
|
+
// -------------------- INSTRUMENTS: Bass --------------------
|
|
72
|
+
"bass-guitar": { label: "גיטרת בס", description: "בס חשמלי בתדר נמוך" },
|
|
73
|
+
"synth-bass": { label: "בס סינת", description: "תדרים נמוכים מסונתזים" },
|
|
74
|
+
"sub-bass": { label: "סאב בס", description: "תדרי סאב סינוס עמוקים" },
|
|
75
|
+
"acoustic-bass": { label: "בס אקוסטי", description: "גיטרת בס אקוסטית" },
|
|
76
|
+
"upright-bass": { label: "קונטרבס זקוף", description: "קונטרבס, סגנון ג׳אז" },
|
|
77
|
+
"fretless-bass": { label: "בס ללא סריגים", description: "גיטרת בס מחליקה" },
|
|
78
|
+
"acid-bass": { label: "בס אסיד", description: "TB-303 squelch" },
|
|
79
|
+
"wobble-bass": { label: "בס ובל", description: "דאבסטפ מאופנן LFO" },
|
|
80
|
+
"reese-bass": { label: "בס Reese", description: "דראם-אנד-בס מכוון לרעה" },
|
|
81
|
+
|
|
82
|
+
// -------------------- INSTRUMENTS: Brass --------------------
|
|
83
|
+
"brass": { label: "מקטע נשיפה", description: "חצוצרה, טרומבון וכו׳" },
|
|
84
|
+
"trumpet": { label: "חצוצרה", description: "חצוצרת סולו" },
|
|
85
|
+
"trombone": { label: "טרומבון", description: "טרומבון סולו" },
|
|
86
|
+
"french-horn": { label: "קרן יער", description: "נשיפה רכה" },
|
|
87
|
+
"tuba": { label: "טובה", description: "כלי הנשיפה הנמוך ביותר" },
|
|
88
|
+
"saxophone": { label: "סקסופון", description: "סקס סולו או מקטע" },
|
|
89
|
+
"flugelhorn": { label: "פלוגלהורן", description: "בן דוד רך לחצוצרה" },
|
|
90
|
+
"cornet": { label: "קורנט", description: "קורנט תזמורת נשיפה" },
|
|
91
|
+
"muted-trumpet": { label: "חצוצרה מושתקת", description: "חצוצרת ג׳אז מושתקת" },
|
|
92
|
+
|
|
93
|
+
// -------------------- INSTRUMENTS: Woodwinds --------------------
|
|
94
|
+
"flute": { label: "חליל צד", description: "חליל קונצרט" },
|
|
95
|
+
"clarinet": { label: "קלרינט", description: "קלרינט סולו" },
|
|
96
|
+
"harmonica": { label: "מפוחית", description: "מפוחית בלוז" },
|
|
97
|
+
"oboe": { label: "אבוב", description: "מונע לשונית, נוגה" },
|
|
98
|
+
"bassoon": { label: "בסון", description: "לשונית כפולה נמוכה" },
|
|
99
|
+
"english-horn": { label: "קרן אנגלית", description: "אבוב טנור" },
|
|
100
|
+
"piccolo": { label: "פיקולו", description: "חליל גבוה" },
|
|
101
|
+
"recorder": { label: "חלילית", description: "כלי נשיפה רך" },
|
|
102
|
+
"pan-flute": { label: "חליל פאן", description: "חליל צינורות אנדי" },
|
|
103
|
+
|
|
104
|
+
// -------------------- INSTRUMENTS: Strings --------------------
|
|
105
|
+
"strings": { label: "מקטע מיתרים", description: "מקטע מיתרים תזמורתי" },
|
|
106
|
+
"violin": { label: "כינור", description: "כינור סולו" },
|
|
107
|
+
"viola": { label: "ויולה", description: "ויולה סולו" },
|
|
108
|
+
"cello": { label: "צ׳לו", description: "צ׳לו סולו" },
|
|
109
|
+
"double-bass": { label: "קונטרבס", description: "קונטרבס תזמורתי" },
|
|
110
|
+
"harp": { label: "נבל", description: "נבל קונצרט או פולק" },
|
|
111
|
+
"pizzicato-strings": { label: "פיציקטו", description: "מיתרים פרוטים" },
|
|
112
|
+
"staccato-strings": { label: "סטקטו", description: "מיתרים קצרים ועוצמתיים" },
|
|
113
|
+
"fiddle": { label: "פידל", description: "כינור בסגנון פולק" },
|
|
114
|
+
|
|
115
|
+
// -------------------- INSTRUMENTS: World --------------------
|
|
116
|
+
"sitar": { label: "סיטאר", description: "כלי הודי בעל צוואר ארוך" },
|
|
117
|
+
"tabla": { label: "טבלה", description: "תופי יד הודיים" },
|
|
118
|
+
"steel-drum": { label: "תוף פלדה", description: "סטילפן טרינידדי" },
|
|
119
|
+
"kalimba": { label: "קלימבה", description: "פסנתר אגודל אפריקאי" },
|
|
120
|
+
"bagpipes": { label: "חמת חלילים", description: "חמת חלילים סקוטית" },
|
|
121
|
+
"didgeridoo": { label: "דידג׳רידו", description: "כלי נשיפה אוסטרלי" },
|
|
122
|
+
"oud": { label: "עוד", description: "לאוטה מזרח תיכונית" },
|
|
123
|
+
"erhu": { label: "ארהו", description: "כינור סיני בן 2 מיתרים" },
|
|
124
|
+
"koto": { label: "קוטו", description: "ציתר יפני" },
|
|
125
|
+
"shakuhachi": { label: "שקוהאצ׳י", description: "חליל יפני נשוף בקצה" },
|
|
126
|
+
"shamisen": { label: "שמיסן", description: "לאוטה יפנית בת 3 מיתרים" },
|
|
127
|
+
"duduk": { label: "דודוק", description: "לשונית כפולה ארמנית" },
|
|
128
|
+
"balalaika": { label: "בללייקה", description: "לאוטה רוסית משולשת" },
|
|
129
|
+
"bouzouki": { label: "בוזוקי", description: "לאוטה יוונית בעלת צוואר ארוך" },
|
|
130
|
+
"kora": { label: "קורה", description: "כלי בן 21 מיתרים ממערב אפריקה" },
|
|
131
|
+
"hang-drum": { label: "תוף האנג", description: "האנדפן פלדה" },
|
|
132
|
+
|
|
133
|
+
// -------------------- INSTRUMENTS: Middle Eastern --------------------
|
|
134
|
+
"kamancheh": { label: "קמאנצ׳ה", description: "כינור כידני פרסי בקשת" },
|
|
135
|
+
"ney": { label: "ניי", description: "חליל קנה נשוף בקצה (פרסי/ערבי)" },
|
|
136
|
+
"santur": { label: "סנטור", description: "כלי פטישים פרסי דמוי צ׳מבלו" },
|
|
137
|
+
|
|
138
|
+
// -------------------- PRODUCTION_STYLES --------------------
|
|
139
|
+
"polished": { label: "מלוטשת", description: "הפקה נקייה ומיינסטרים" },
|
|
140
|
+
"lo-fi": { description: "סרט חם עם רעש, לא מושלם" },
|
|
141
|
+
"raw": { label: "גולמית", description: "ללא סינון, תחושה חיה" },
|
|
142
|
+
"vintage": { label: "וינטג׳", description: "חמימות אנלוגית" },
|
|
143
|
+
"modern": { label: "מודרנית", description: "דיגיטלית עכשווית" },
|
|
144
|
+
"minimalist": { label: "מינימליסטית", description: "דלילה ומאופקת" },
|
|
145
|
+
"wall-of-sound": { label: "קיר של צליל", description: "צפופה, רב-שכבתית" },
|
|
146
|
+
"ambient": { label: "אמביינט", description: "אווירתית, עם הדהוד" },
|
|
147
|
+
"garage-band": { label: "להקת חנייה", description: "DIY, מוקלטת במרתף" },
|
|
148
|
+
"live-recording": { label: "חיה", description: "צליל קונצרט / חלל" },
|
|
149
|
+
"demo-quality": { label: "דמו", description: "אסתטיקה של דמו גולמי" },
|
|
150
|
+
"studio-pristine": { label: "אולפן מלוטש", description: "איכות ייחוס היי-פיי" },
|
|
151
|
+
"tape-saturated": { label: "סרט רווי", description: "חמימות סרט אנלוגית + דרייב" },
|
|
152
|
+
"8-bit-retro": { label: "8-bit רטרו", description: "אודיו רטרו של משחקים בקצב סיביות נמוך" },
|
|
153
|
+
|
|
154
|
+
// -------------------- VOCAL_PRESENCE --------------------
|
|
155
|
+
"instrumental": { label: "אינסטרומנטלי", description: "ללא ווקאלים (בלעדי)" },
|
|
156
|
+
"male-lead": { label: "סולן", description: "ווקאל סולן גברי" },
|
|
157
|
+
"female-lead": { label: "סולנית", description: "ווקאל סולנית" },
|
|
158
|
+
"androgynous-lead": { label: "אנדרוגיני", description: "סולן ניטרלי-מגדר" },
|
|
159
|
+
"duet": { label: "דואט", description: "שני סולנים" },
|
|
160
|
+
"choir": { label: "מקהלה", description: "ווקאלי מקהלה / הרכב" },
|
|
161
|
+
"gospel-choir": { label: "מקהלת גוספל", description: "ליווי מקהלה בסגנון גוספל" },
|
|
162
|
+
"harmony-stack": { label: "ערימת הרמוניות", description: "הרמוניות ווקאליות מערומות" },
|
|
163
|
+
"rapper-lead": { label: "ראפר", description: "סולן ראפ" },
|
|
164
|
+
"spoken-word": { label: "מילה מדוברת", description: "דקלום / שירה על מוזיקה" },
|
|
165
|
+
"vocal-chops": { label: "ווקאלים חתוכים", description: "ווקאלים מדגומים חתוכים" },
|
|
166
|
+
"mixed": { label: "מעורב", description: "מספר סולנים" },
|
|
167
|
+
|
|
168
|
+
// -------------------- SINGING_STYLES --------------------
|
|
169
|
+
"pop-singing": { description: "סגנון סולן מיינסטרים" },
|
|
170
|
+
"rock-singing": { description: "מסירה ווקאלית בסגנון רוק" },
|
|
171
|
+
"operatic": { label: "אופראי", description: "טכניקת אופרה קלאסית" },
|
|
172
|
+
"classical-vocals": { label: "קלאסי", description: "קול קלאסי מאומן" },
|
|
173
|
+
"rap": { label: "ראפ", description: "מסירה מדוברת קצבית" },
|
|
174
|
+
"trap-melodic": { label: "טראפ (מלודי)", description: "טראפ מלודי, אוטוטיון" },
|
|
175
|
+
"growl": { label: "גראול", description: "גראול בסגנון דת׳ מטאל" },
|
|
176
|
+
"scream": { label: "צרחה", description: "הארדקור / צרוח" },
|
|
177
|
+
"shout": { label: "קריאה", description: "פאנק / קריאה מקצבית" },
|
|
178
|
+
"falsetto": { label: "פלסטו", description: "אוקטבה גבוהה, קל" },
|
|
179
|
+
"head-voice": { label: "קול ראש", description: "אוקטבה גבוהה מהדהדת" },
|
|
180
|
+
"chest-voice": { label: "קול חזה", description: "אוקטבה נמוכה חזקה" },
|
|
181
|
+
"belting": { label: "בלטינג", description: "גבוהים חזקים מתמשכים" },
|
|
182
|
+
"crooning": { label: "קרונינג", description: "רומנטי וינטג׳ חלק" },
|
|
183
|
+
"scat": { label: "סקאט", description: "הברות ג׳אז מאולתרות" },
|
|
184
|
+
"yodeling": { label: "יודלינג", description: "החלפת אוקטבה אלפינית" },
|
|
185
|
+
"throat-singing": { label: "שירת גרון", description: "אובר-טון מונגולי / טובאני" },
|
|
186
|
+
"melismatic": { label: "מליסמטי", description: "ריצות מרובות צלילים להברה" },
|
|
187
|
+
"autotuned": { label: "עם אוטוטיון", description: "תיקון פיץ׳, מעובד" },
|
|
188
|
+
"vocoded": { label: "מעובד בווקודר", description: "ווקאלים מעובדים בווקודר" },
|
|
189
|
+
"whisper-singing": { label: "שירת לחישה", description: "שירה שקטה ואינטימית" },
|
|
190
|
+
"breathy-singing": { label: "אוורירי", description: "שירה אוורירית ואינטימית" },
|
|
191
|
+
"harmonized": { label: "מהורמן", description: "הרמוניות רב-קוליות" },
|
|
192
|
+
"chant": { label: "מזמור", description: "מזמור ליטורגי / נזיר" },
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export default map
|