@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,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "عريضة جدا (14mm)", description: "زاوية عريضة جدا، منظور مبالغ فيه" },
|
|
5
|
+
"wide-24mm": { label: "عريضة (24mm)", description: "حقل رؤية واسع، بيئي" },
|
|
6
|
+
"standard-35mm": { label: "قياسية (35mm)", description: "منظور طبيعي، إحساس وثائقي" },
|
|
7
|
+
"normal-50mm": { label: "عادية (50mm)", description: "الأقرب لإدراك العين البشرية" },
|
|
8
|
+
"portrait-85mm": { label: "بورتريه (85mm)", description: "ضغط مغر، بوكيه كريمي" },
|
|
9
|
+
"telephoto-135mm": { label: "تيليفوتو (135mm)", description: "عمق مضغوط، موضوع معزول" },
|
|
10
|
+
"super-telephoto-400mm": { label: "تيليفوتو فائقة (400mm)", description: "ضغط شديد، موضوع بعيد" },
|
|
11
|
+
"fisheye": { label: "عين السمكة", description: "تشويه نصف كروي 180°" },
|
|
12
|
+
"anamorphic": { label: "Anamorphic", description: "سينمائية عريضة، بوكيه بيضوي" },
|
|
13
|
+
"macro": { label: "ماكرو", description: "تقريب فائق لتفاصيل صغيرة" },
|
|
14
|
+
"tilt-shift": { label: "Tilt-shift", description: "تركيز انتقائي، تأثير مصغر" },
|
|
15
|
+
"shallow-dof": { label: "عمق ميدان رفيع", description: "تركيز رفيع كالموس، بوكيه حالم" },
|
|
16
|
+
"canon-k35": { description: "سينمائية قديمة، بشرة دافئة لطيفة" },
|
|
17
|
+
"cooke-s4": { description: "مظهر Cooke — بشرة كريمية رسامية" },
|
|
18
|
+
"helios-44": { description: "بوكيه دوامة سوفيتي قديم" },
|
|
19
|
+
"petzval": { description: "دوامة قديمة جدا، تلاشي درامي" },
|
|
20
|
+
"probe": { label: "عدسة المسبار", description: "ماكرو أنبوبي — عبر الفتحات والمساحات الضيقة" },
|
|
21
|
+
"cctv": { label: "كاميرا مراقبة", description: "مظهر لقطات كاميرات المراقبة" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "Ultraweitwinkel (14mm)", description: "Extremes Weitwinkel, übertriebene Perspektive" },
|
|
5
|
+
"wide-24mm": { label: "Weitwinkel (24mm)", description: "Breites Sichtfeld, environmental" },
|
|
6
|
+
"standard-35mm": { label: "Standard (35mm)", description: "Natürliche Perspektive, dokumentarisches Gefühl" },
|
|
7
|
+
"normal-50mm": { label: "Normal (50mm)", description: "Am nächsten an der menschlichen Augenwahrnehmung" },
|
|
8
|
+
"portrait-85mm": { label: "Porträt (85mm)", description: "Schmeichelhafte Kompression, cremiges Bokeh" },
|
|
9
|
+
"telephoto-135mm": { label: "Tele (135mm)", description: "Komprimierte Tiefe, isoliertes Motiv" },
|
|
10
|
+
"super-telephoto-400mm": { label: "Super-Tele (400mm)", description: "Extreme Kompression, weit entferntes Motiv" },
|
|
11
|
+
"fisheye": { label: "Fischauge", description: "Halbkugelförmige 180°-Verzerrung" },
|
|
12
|
+
"anamorphic": { description: "Cinematic Widescreen, ovales Bokeh" },
|
|
13
|
+
"macro": { label: "Makro", description: "Extreme Nahaufnahme von kleinem Detail" },
|
|
14
|
+
"tilt-shift": { description: "Selektiver Fokus, Miniatureffekt" },
|
|
15
|
+
"shallow-dof": { label: "Geringe Schärfentiefe", description: "Hauchdünner Fokus, traumhaftes Bokeh" },
|
|
16
|
+
"canon-k35": { description: "Vintage-Cinematic, warme sanfte Hauttöne" },
|
|
17
|
+
"cooke-s4": { description: "Der Cooke-Look — cremig-malerische Hauttöne" },
|
|
18
|
+
"helios-44": { description: "Vintage-sowjetisches Wirbelbokeh" },
|
|
19
|
+
"petzval": { description: "Ultra-Vintage-Wirbel, dramatischer Falloff" },
|
|
20
|
+
"probe": { label: "Sondenobjektiv", description: "Röhren-Makro — durch Öffnungen und enge Räume" },
|
|
21
|
+
"cctv": { label: "Überwachungskamera", description: "Securitycam-Ästhetik" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "Ultra-ancho (14mm)", description: "Ángulo extremadamente amplio, perspectiva exagerada" },
|
|
5
|
+
"wide-24mm": { label: "Ancho (24mm)", description: "Amplio campo de visión, ambiental" },
|
|
6
|
+
"standard-35mm": { label: "Estándar (35mm)", description: "Perspectiva natural, sensación documental" },
|
|
7
|
+
"normal-50mm": { label: "Normal (50mm)", description: "Lo más cercano a la percepción del ojo humano" },
|
|
8
|
+
"portrait-85mm": { label: "Retrato (85mm)", description: "Compresión favorecedora, bokeh cremoso" },
|
|
9
|
+
"telephoto-135mm": { label: "Telefoto (135mm)", description: "Profundidad comprimida, sujeto aislado" },
|
|
10
|
+
"super-telephoto-400mm": { label: "Super Telefoto (400mm)", description: "Compresión extrema, sujeto distante" },
|
|
11
|
+
"fisheye": { label: "Ojo de Pez", description: "Distorsión hemisférica de 180°" },
|
|
12
|
+
"anamorphic": { description: "Widescreen cinematográfico, bokeh ovalado" },
|
|
13
|
+
"macro": { label: "Macro", description: "Primer plano extremo de detalle pequeño" },
|
|
14
|
+
"tilt-shift": { description: "Enfoque selectivo, efecto miniatura" },
|
|
15
|
+
"shallow-dof": { label: "PdC Reducida", description: "Enfoque ultra fino, bokeh ensoñador" },
|
|
16
|
+
"canon-k35": { description: "Cinematográfico vintage, piel cálida y suave" },
|
|
17
|
+
"cooke-s4": { description: "El look Cooke — piel pictórica cremosa" },
|
|
18
|
+
"helios-44": { description: "Bokeh giratorio soviético vintage" },
|
|
19
|
+
"petzval": { description: "Vintage extremo, caída dramática" },
|
|
20
|
+
"probe": { label: "Lente sonda", description: "Macro tubular — a través de huecos y espacios estrechos" },
|
|
21
|
+
"cctv": { label: "CCTV", description: "Estética de cámara de vigilancia" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "Ultra grand-angle (14mm)", description: "Grand-angle extrême, perspective exagérée" },
|
|
5
|
+
"wide-24mm": { label: "Grand-angle (24mm)", description: "Large champ de vision, environnemental" },
|
|
6
|
+
"standard-35mm": { label: "Standard (35mm)", description: "Perspective naturelle, ambiance documentaire" },
|
|
7
|
+
"normal-50mm": { label: "Normal (50mm)", description: "Perception la plus proche de l'œil humain" },
|
|
8
|
+
"portrait-85mm": { label: "Portrait (85mm)", description: "Compression flatteuse, bokeh crémeux" },
|
|
9
|
+
"telephoto-135mm": { label: "Téléobjectif (135mm)", description: "Profondeur compressée, sujet isolé" },
|
|
10
|
+
"super-telephoto-400mm": { label: "Super téléobjectif (400mm)", description: "Compression extrême, sujet lointain" },
|
|
11
|
+
"fisheye": { description: "Distorsion hémisphérique 180°" },
|
|
12
|
+
"anamorphic": { description: "Cinéma widescreen, bokeh ovale" },
|
|
13
|
+
"macro": { description: "Très gros plan d'un petit détail" },
|
|
14
|
+
"tilt-shift": { description: "Mise au point sélective, effet miniature" },
|
|
15
|
+
"shallow-dof": { label: "Profondeur de champ réduite", description: "Mise au point ultra-fine, bokeh onirique" },
|
|
16
|
+
"canon-k35": { description: "Cinéma vintage, peau chaude et douce" },
|
|
17
|
+
"cooke-s4": { description: "Le \"Cooke look\" — peau crémeuse et picturale" },
|
|
18
|
+
"helios-44": { description: "Bokeh tourbillonnant soviétique vintage" },
|
|
19
|
+
"petzval": { label: "Portrait Petzval", description: "Tourbillon ultra-vintage, chute de mise au point dramatique" },
|
|
20
|
+
"probe": { label: "Objectif sonde", description: "Macro tubulaire — à travers trous et espaces étroits" },
|
|
21
|
+
"cctv": { label: "CCTV", description: "Rendu caméra de surveillance" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "Ultra-wide (14mm)", description: "זווית רחבה קיצונית, פרספקטיבה מוגזמת" },
|
|
5
|
+
"wide-24mm": { label: "Wide (24mm)", description: "שדה ראייה רחב, סביבתי" },
|
|
6
|
+
"standard-35mm": { label: "סטנדרט (35mm)", description: "פרספקטיבה טבעית, מראה דוקומנטרי" },
|
|
7
|
+
"normal-50mm": { label: "נורמלי (50mm)", description: "הקרוב ביותר לתפיסת העין האנושית" },
|
|
8
|
+
"portrait-85mm": { label: "פורטרט (85mm)", description: "דחיסה מחמיאה, בוקה קרמי" },
|
|
9
|
+
"telephoto-135mm": { label: "Telephoto (135mm)", description: "עומק דחוס, סובייקט מבודד" },
|
|
10
|
+
"super-telephoto-400mm": { label: "Super Telephoto (400mm)", description: "דחיסה קיצונית, סובייקט רחוק" },
|
|
11
|
+
"fisheye": { label: "Fisheye", description: "עיוות חצי-כדורי 180°" },
|
|
12
|
+
"anamorphic": { label: "Anamorphic", description: "קולנועי במסך רחב, בוקה אובלי" },
|
|
13
|
+
"macro": { label: "Macro", description: "פרט קרוב קיצוני של פרט קטן" },
|
|
14
|
+
"tilt-shift": { label: "Tilt-shift", description: "פוקוס סלקטיבי, אפקט מיניאטורה" },
|
|
15
|
+
"shallow-dof": { label: "DOF רדוד", description: "פוקוס דק כתער, בוקה חולמני" },
|
|
16
|
+
"canon-k35": { description: "קולנועי וינטג', עור עדין וחם" },
|
|
17
|
+
"cooke-s4": { description: "מראה Cooke — עור ציורי קרמי" },
|
|
18
|
+
"helios-44": { description: "בוקה מסולסל סובייטי וינטג'" },
|
|
19
|
+
"petzval": { description: "מסולסל אולטרא-וינטג', נפילה דרמטית" },
|
|
20
|
+
"probe": { label: "עדשת גשש", description: "מאקרו צינורי — דרך חורים ומעברים צרים" },
|
|
21
|
+
"cctv": { label: "מצלמת אבטחה", description: "מראה צילומי מצלמת אבטחה" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { description: "अत्यधिक wide angle, exaggerated perspective" },
|
|
5
|
+
"wide-24mm": { description: "Wide field of view, environmental" },
|
|
6
|
+
"standard-35mm": { description: "स्वाभाविक perspective, documentary एहसास" },
|
|
7
|
+
"normal-50mm": { description: "मानवीय आँख की धारणा के सबसे क़रीब" },
|
|
8
|
+
"portrait-85mm": { description: "Flattering compression, creamy bokeh" },
|
|
9
|
+
"telephoto-135mm": { description: "Compressed depth, isolated subject" },
|
|
10
|
+
"super-telephoto-400mm": { description: "अत्यधिक compression, दूर का subject" },
|
|
11
|
+
"fisheye": { label: "Fisheye", description: "Hemispherical 180° distortion" },
|
|
12
|
+
"anamorphic": { label: "Anamorphic", description: "Cinematic widescreen, अंडाकार bokeh" },
|
|
13
|
+
"macro": { label: "Macro", description: "छोटे detail का अत्यधिक close-up" },
|
|
14
|
+
"tilt-shift": { label: "Tilt-shift", description: "चयनात्मक focus, miniature प्रभाव" },
|
|
15
|
+
"shallow-dof": { label: "Shallow DOF", description: "बहुत पतला focus, स्वप्निल bokeh" },
|
|
16
|
+
"canon-k35": { description: "विंटेज cinematic, गर्म कोमल skin" },
|
|
17
|
+
"cooke-s4": { description: "Cooke का look — creamy painterly skin" },
|
|
18
|
+
"helios-44": { description: "विंटेज Soviet swirly bokeh" },
|
|
19
|
+
"petzval": { description: "अत्यधिक विंटेज swirl, dramatic falloff" },
|
|
20
|
+
"probe": { label: "प्रोब लेंस", description: "नली मैक्रो — छिद्रों और तंग जगहों के आर-पार" },
|
|
21
|
+
"cctv": { label: "सीसीटीवी", description: "निगरानी कैमरा लुक" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "超広角(14mm)", description: "極端な広角、誇張された遠近感" },
|
|
5
|
+
"wide-24mm": { label: "広角(24mm)", description: "広い視野、環境を含む" },
|
|
6
|
+
"standard-35mm": { label: "標準(35mm)", description: "自然な遠近感、ドキュメンタリー的" },
|
|
7
|
+
"normal-50mm": { label: "ノーマル(50mm)", description: "人間の目に最も近い知覚" },
|
|
8
|
+
"portrait-85mm": { label: "ポートレート(85mm)", description: "顔を引き締める圧縮、クリーミーなボケ" },
|
|
9
|
+
"telephoto-135mm": { label: "望遠(135mm)", description: "圧縮された奥行き、被写体を分離" },
|
|
10
|
+
"super-telephoto-400mm": { label: "超望遠(400mm)", description: "極端な圧縮、遠くの被写体" },
|
|
11
|
+
"fisheye": { label: "魚眼", description: "180°の半球状歪み" },
|
|
12
|
+
"anamorphic": { label: "アナモルフィック", description: "シネマ的ワイドスクリーン、楕円形のボケ" },
|
|
13
|
+
"macro": { label: "マクロ", description: "小さなディテールの極端なクローズアップ" },
|
|
14
|
+
"tilt-shift": { label: "ティルトシフト", description: "選択的フォーカス、ミニチュア効果" },
|
|
15
|
+
"shallow-dof": { label: "浅い被写界深度", description: "極薄のフォーカス、夢のようなボケ" },
|
|
16
|
+
"canon-k35": { description: "ヴィンテージなシネマ調、暖かく柔らかな肌" },
|
|
17
|
+
"cooke-s4": { description: "Cooke独特の表情 — 絵画的でクリーミーな肌" },
|
|
18
|
+
"helios-44": { description: "ヴィンテージのソビエト製スワール(渦巻き)ボケ" },
|
|
19
|
+
"petzval": { label: "ペッツバール・ポートレート", description: "極端にヴィンテージな渦巻き、劇的な周辺減光" },
|
|
20
|
+
"probe": { label: "プローブレンズ", description: "チューブ型マクロ——穴や狭い隙間を通り抜ける" },
|
|
21
|
+
"cctv": { label: "監視カメラ", description: "防犯カメラ映像風" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "초광각 (14mm)", description: "극단적인 광각, 과장된 원근감입니다" },
|
|
5
|
+
"wide-24mm": { label: "광각 (24mm)", description: "넓은 시야각, 환경 표현에 적합합니다" },
|
|
6
|
+
"standard-35mm": { label: "표준 (35mm)", description: "자연스러운 원근감, 다큐멘터리한 느낌입니다" },
|
|
7
|
+
"normal-50mm": { label: "노멀 (50mm)", description: "사람의 눈 인식에 가장 가깝습니다" },
|
|
8
|
+
"portrait-85mm": { label: "포트레이트 (85mm)", description: "보기 좋은 압축감과 크리미한 보케입니다" },
|
|
9
|
+
"telephoto-135mm": { label: "망원 (135mm)", description: "압축된 깊이감, 분리된 피사체입니다" },
|
|
10
|
+
"super-telephoto-400mm": { label: "초망원 (400mm)", description: "극단적 압축, 멀리 있는 피사체입니다" },
|
|
11
|
+
"fisheye": { label: "어안", description: "180° 반구형 왜곡입니다" },
|
|
12
|
+
"anamorphic": { label: "아나모픽", description: "시네마틱 와이드스크린, 타원형 보케입니다" },
|
|
13
|
+
"macro": { label: "매크로", description: "작은 디테일의 극단적 클로즈업입니다" },
|
|
14
|
+
"tilt-shift": { label: "틸트 시프트", description: "선택적 초점, 미니어처 효과입니다" },
|
|
15
|
+
"shallow-dof": { label: "얕은 DOF", description: "면도날처럼 얇은 초점, 몽환적인 보케입니다" },
|
|
16
|
+
"canon-k35": { description: "빈티지하고 시네마틱, 따뜻하고 부드러운 피부톤입니다" },
|
|
17
|
+
"cooke-s4": { description: "Cooke 룩 — 크리미하고 회화적인 피부톤입니다" },
|
|
18
|
+
"helios-44": { description: "빈티지 소비에트의 소용돌이 보케입니다" },
|
|
19
|
+
"petzval": { label: "Petzval Portrait", description: "초빈티지 소용돌이, 극적인 폴오프입니다" },
|
|
20
|
+
"probe": { label: "프로브 렌즈", description: "좁은 틈과 구멍을 통과하는 튜브형 매크로" },
|
|
21
|
+
"cctv": { label: "CCTV", description: "감시 카메라 룩" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "Ultra-grande-angular (14mm)", description: "Grande angular extrema, perspectiva exagerada" },
|
|
5
|
+
"wide-24mm": { label: "Grande-angular (24mm)", description: "Campo amplo, ambiental" },
|
|
6
|
+
"standard-35mm": { label: "Padrão (35mm)", description: "Perspectiva natural, sensação documental" },
|
|
7
|
+
"normal-50mm": { label: "Normal (50mm)", description: "Mais próxima da percepção do olho humano" },
|
|
8
|
+
"portrait-85mm": { label: "Retrato (85mm)", description: "Compressão favorecedora, bokeh cremoso" },
|
|
9
|
+
"telephoto-135mm": { label: "Telefoto (135mm)", description: "Profundidade comprimida, sujeito isolado" },
|
|
10
|
+
"super-telephoto-400mm": { label: "Super Telefoto (400mm)", description: "Compressão extrema, sujeito distante" },
|
|
11
|
+
"fisheye": { description: "Distorção hemisférica de 180°" },
|
|
12
|
+
"anamorphic": { description: "Cinematográfica em widescreen, bokeh oval" },
|
|
13
|
+
"macro": { description: "Primeiríssimo plano de pequenos detalhes" },
|
|
14
|
+
"tilt-shift": { description: "Foco seletivo, efeito miniatura" },
|
|
15
|
+
"shallow-dof": { label: "Profundidade de Campo Rasa", description: "Foco mínimo, bokeh sonhador" },
|
|
16
|
+
"canon-k35": { description: "Cinemática vintage, pele suave e quente" },
|
|
17
|
+
"cooke-s4": { description: "O \"Cooke look\" — pele pictórica e cremosa" },
|
|
18
|
+
"helios-44": { description: "Bokeh em redemoinho soviético vintage" },
|
|
19
|
+
"petzval": { description: "Vintage extremo, com queda dramática" },
|
|
20
|
+
"probe": { label: "Lente sonda", description: "Macro tubular — por orifícios e espaços apertados" },
|
|
21
|
+
"cctv": { label: "CCTV", description: "Visual de câmera de segurança" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { description: "Сверхширокий угол, преувеличенная перспектива" },
|
|
5
|
+
"wide-24mm": { description: "Широкое поле обзора, окружение в кадре" },
|
|
6
|
+
"standard-35mm": { description: "Естественная перспектива, документальное ощущение" },
|
|
7
|
+
"normal-50mm": { description: "Ближе всего к восприятию человеческого глаза" },
|
|
8
|
+
"portrait-85mm": { description: "Льстивое сжатие, кремовое боке" },
|
|
9
|
+
"telephoto-135mm": { description: "Сжатая глубина, изолированный объект" },
|
|
10
|
+
"super-telephoto-400mm": { description: "Экстремальное сжатие, отдалённый объект" },
|
|
11
|
+
"fisheye": { label: "Рыбий глаз", description: "Полусферическое 180° искажение" },
|
|
12
|
+
"anamorphic": { label: "Анаморфный", description: "Кинематографический широкоэкранный, овальное боке" },
|
|
13
|
+
"macro": { label: "Макро", description: "Сверхкрупный план мелкой детали" },
|
|
14
|
+
"tilt-shift": { label: "Тилт-шифт", description: "Селективный фокус, эффект миниатюры" },
|
|
15
|
+
"shallow-dof": { label: "Малая ГРИП", description: "Бритвенно тонкий фокус, мечтательное боке" },
|
|
16
|
+
// Lens series — keep label English
|
|
17
|
+
"canon-k35": { description: "Винтажный кинематографический, тёплая мягкая кожа" },
|
|
18
|
+
"cooke-s4": { description: "The Cooke look — кремовая живописная кожа" },
|
|
19
|
+
"helios-44": { description: "Винтажное советское закрученное боке" },
|
|
20
|
+
"petzval": { description: "Сверхвинтажный завиток, драматичный спад резкости" },
|
|
21
|
+
"probe": { label: "Линза-зонд", description: "Трубчатый макро — сквозь отверстия и узкие щели" },
|
|
22
|
+
"cctv": { label: "Камера наблюдения", description: "Вид записи с камеры видеонаблюдения" },
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"ultra-wide-14mm": { label: "超广角(14mm)", description: "极广视角,夸张透视" },
|
|
5
|
+
"wide-24mm": { label: "广角(24mm)", description: "宽视野,带环境感" },
|
|
6
|
+
"standard-35mm": { label: "标准(35mm)", description: "自然透视,纪实感" },
|
|
7
|
+
"normal-50mm": { label: "标头(50mm)", description: "最接近人眼的视感" },
|
|
8
|
+
"portrait-85mm": { label: "人像(85mm)", description: "压缩讨喜,奶油散景" },
|
|
9
|
+
"telephoto-135mm": { label: "长焦(135mm)", description: "压缩景深,主体被分离" },
|
|
10
|
+
"super-telephoto-400mm": { label: "超长焦(400mm)", description: "极致压缩,主体被前推" },
|
|
11
|
+
"fisheye": { label: "鱼眼镜头", description: "180° 半球状畸变" },
|
|
12
|
+
"anamorphic": { description: "电影感宽屏,椭圆散景" },
|
|
13
|
+
"macro": { label: "微距镜头", description: "对小细节的极近特写" },
|
|
14
|
+
"tilt-shift": { label: "移轴镜头", description: "选择性对焦,微缩模型效果" },
|
|
15
|
+
"shallow-dof": { label: "浅景深", description: "极薄焦面,梦幻散景" },
|
|
16
|
+
"canon-k35": { description: "复古电影感,温暖柔美的肤色" },
|
|
17
|
+
"cooke-s4": { description: "Cooke 之味——奶油般绘画感的肤色" },
|
|
18
|
+
"helios-44": { description: "复古苏联旋焦散景" },
|
|
19
|
+
"petzval": { description: "极致复古旋焦,戏剧性边缘衰减" },
|
|
20
|
+
"probe": { label: "探针镜头", description: "管状微距——穿过孔洞与狭窄空间" },
|
|
21
|
+
"cctv": { label: "监控镜头", description: "监控摄像画面质感" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"sunrise": { label: "شروق الشمس", description: "شمس منخفضة دافئة، ظلال طويلة" },
|
|
5
|
+
"golden-hour": { label: "الساعة الذهبية", description: "توهج غروب دافئ" },
|
|
6
|
+
"noon": { label: "الظهر", description: "شمس ظهر علوية حادة" },
|
|
7
|
+
"harsh-midday": { label: "ظهيرة قاسية", description: "ذروة شمس بيضاء مبيضة" },
|
|
8
|
+
"overcast": { label: "غائم", description: "ضوء نهار منتشر ناعم" },
|
|
9
|
+
"blue-hour": { label: "الساعة الزرقاء", description: "Twilight بارد عند الغسق" },
|
|
10
|
+
"twilight": { label: "Twilight", description: "بين الساعة الزرقاء والليل" },
|
|
11
|
+
"night": { label: "ليل", description: "ليل عميق، إضاءة محيطة منخفضة" },
|
|
12
|
+
"moonlight": { label: "ضوء قمر", description: "مشهد بارد أزرق مضاء بالقمر" },
|
|
13
|
+
"neon-night": { label: "ليل نيون", description: "ليل مدينة نيون متشبع" },
|
|
14
|
+
|
|
15
|
+
"three-point": { label: "ثلاث نقاط", description: "كلاسيكي Key + Fill + Back" },
|
|
16
|
+
"rembrandt": { label: "Rembrandt", description: "مثلث ضوء على الخد" },
|
|
17
|
+
"chiaroscuro": { label: "Chiaroscuro", description: "تباين قوي بين النور والظل" },
|
|
18
|
+
"silhouette": { label: "ظل خارجي", description: "موضوع كشكل نقي" },
|
|
19
|
+
"high-key": { label: "High-Key", description: "ساطع، تباين منخفض" },
|
|
20
|
+
"low-key": { label: "Low-Key", description: "داكن، تباين عال" },
|
|
21
|
+
"split": { label: "Split", description: "نصف وجه مضاء، نصف في الظل" },
|
|
22
|
+
"hard": { label: "صلب", description: "ظلال بحواف حادة" },
|
|
23
|
+
"soft": { label: "ناعم", description: "ضوء منتشر لطيف" },
|
|
24
|
+
"practical": { label: "عملي", description: "أضواء مرئية في المشهد" },
|
|
25
|
+
|
|
26
|
+
"ring-light": { label: "Ring Light", description: "وميض دائري في العين بأسلوب Beauty/Vlog" },
|
|
27
|
+
"phone-screen-glow": { label: "توهج شاشة هاتف", description: "إضاءة سفلية باردة من الشاشة" },
|
|
28
|
+
"selfie-natural": { label: "سيلفي طبيعي", description: "سيلفي بضوء نافذة" },
|
|
29
|
+
"natural": { label: "طبيعي", description: "ضوء محيط متوفر" },
|
|
30
|
+
"volumetric": { label: "حجمي", description: "حزم ضوء مرئية في الضباب" },
|
|
31
|
+
"noir": { label: "Noir", description: "أبيض وأسود تباين عال Film Noir" },
|
|
32
|
+
|
|
33
|
+
"on-camera-flash": { label: "فلاش على الكاميرا", description: "فلاش مباشر بأسلوب Paparazzi/iPhone" },
|
|
34
|
+
"mirror-bounce-flash": { label: "فلاش انعكاس مرآة", description: "ارتداد فلاش سيلفي بالمرآة" },
|
|
35
|
+
"bounced-flash": { label: "فلاش مرتد", description: "Fill ناعم مرتد من السقف" },
|
|
36
|
+
"softbox-key": { label: "Softbox Key", description: "Key أزياء كبير منتشر" },
|
|
37
|
+
"beauty-dish": { label: "Beauty Dish", description: "ضوء بطل، تلاشي حاد" },
|
|
38
|
+
"gridded-snoot": { label: "Snoot مع شبكة", description: "بركة ضوء ضيقة مركزة" },
|
|
39
|
+
"silk-diffusion": { label: "انتشار حريري", description: "Key لطيف منعم بحرير" },
|
|
40
|
+
"kicker-rim": { label: "Kicker / Rim Accent", description: "فاصل لكنة جانبية منخفضة" },
|
|
41
|
+
"candlelight": { label: "ضوء شموع", description: "توهج نار دافئ مرتجف" },
|
|
42
|
+
"edison-tungsten": { label: "Edison Tungsten", description: "توهج لمبة كروية دافئ مريح" },
|
|
43
|
+
"dappled-light": { label: "Dappled / مفلتر بأوراق", description: "ضوء مرقط بأوراق" },
|
|
44
|
+
"raking-sidelight": { label: "Raking Sidelight", description: "جانب منخفض جدا، نسيج" },
|
|
45
|
+
"stage-spotlight": { label: "Stage Spotlight", description: "بقعة علوية صلبة واحدة" },
|
|
46
|
+
"underwater-caustics": { label: "Caustics تحت الماء", description: "أنماط منكسرة متموجة" },
|
|
47
|
+
"bioluminescence": { label: "Bioluminescence", description: "توهج بيولوجي بارد غريب" },
|
|
48
|
+
|
|
49
|
+
"front": { label: "أمامي", description: "ضوء من اتجاه الكاميرا" },
|
|
50
|
+
"three-quarter": { label: "ضوء 3/4", description: "زاوية Key بورتريه كلاسيكية" },
|
|
51
|
+
"side": { label: "جانبي", description: "ضوء من جانب واحد" },
|
|
52
|
+
"back-rim": { label: "خلفي / Rim", description: "Backlight Rim حول الموضوع" },
|
|
53
|
+
"silhouette-backlight": { label: "Silhouette Backlight", description: "هالة ساطعة، موضوع داكن" },
|
|
54
|
+
"top-overhead": { label: "علوي / فوقي", description: "ضوء من فوق مباشرة" },
|
|
55
|
+
"under-uplight": { label: "تحت / Uplight", description: "ضوء من الأسفل" },
|
|
56
|
+
"window": { label: "نافذة", description: "ضوء جانبي ناعم من نافذة" },
|
|
57
|
+
|
|
58
|
+
"ratio-1-1": { description: "مسطح، بدون تباين ظل" },
|
|
59
|
+
"ratio-1-2": { description: "تلاشي ناعم بفتحة واحدة" },
|
|
60
|
+
"ratio-1-3": { description: "تباين معتدل بفتحتين" },
|
|
61
|
+
"ratio-1-4": { description: "تباين تحريري قوي" },
|
|
62
|
+
"ratio-1-8": { description: "Chiaroscuro Low-Key شديد" },
|
|
63
|
+
"ratio-1-16": { description: "تلاشي Film-Noir بمصدر واحد" },
|
|
64
|
+
|
|
65
|
+
"temp-2700k": { label: "2700K شمعة", description: "كهرماني عميق شمعة/تنغستن" },
|
|
66
|
+
"temp-3200k": { label: "3200K تنغستن", description: "أصفر داخلي دافئ" },
|
|
67
|
+
"temp-4000k": { label: "4000K مختلط", description: "أبيض محايد" },
|
|
68
|
+
"temp-5600k": { label: "5600K ضوء النهار", description: "شمس ظهر متوازنة مع ضوء النهار" },
|
|
69
|
+
"temp-6500k": { label: "6500K غائم", description: "صبغة زرقاء باردة قليلا" },
|
|
70
|
+
"temp-9000k": { label: "9000K ظل", description: "ظل أزرق بارد بشكل مميز" },
|
|
71
|
+
|
|
72
|
+
"butterfly": { label: "إضاءة Butterfly", description: "ضوء من فوق يلقي ظل فراشة تحت الأنف" },
|
|
73
|
+
"loop": { label: "إضاءة Loop", description: "جانب + فوق قليلا يلقي حلقة صغيرة على الخد" },
|
|
74
|
+
"broad": { label: "إضاءة Broad", description: "الجانب المضاء نحو الكاميرا، مظهر وجه أعرض" },
|
|
75
|
+
"short": { label: "إضاءة Short", description: "الجانب المضاء بعيدا عن الكاميرا، تنحيف" },
|
|
76
|
+
"hatchet": { label: "إضاءة Hatchet", description: "كشط علوي وظل عميق على الجهة المقابلة" },
|
|
77
|
+
"clamshell": { label: "إضاءة Clamshell", description: "فوق + عاكس تحت، جمال مضغوط" },
|
|
78
|
+
// Location-studio extension (PR #2505 follow-up)
|
|
79
|
+
"dawn": { label: "الفجر", description: "توهج باهت قبل شروق الشمس" },
|
|
80
|
+
"morning": { label: "الصباح", description: "ضوء الصباح المنعش الساطع" },
|
|
81
|
+
"afternoon": { label: "بعد الظهر", description: "توهج دافئ في فترة بعد الظهر المتأخرة" },
|
|
82
|
+
"dusk": { label: "الغسق", description: "ضوء يتلاشى بعد غروب الشمس" },
|
|
83
|
+
"midnight": { label: "منتصف الليل", description: "أعمق ليل، سماء سوداء تقريبًا" },
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export default map
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Time of day
|
|
5
|
+
"sunrise": { label: "Sonnenaufgang", description: "Warme tiefe Sonne, lange Schatten" },
|
|
6
|
+
"golden-hour": { label: "Goldene Stunde", description: "Warmes Sonnenuntergangslicht" },
|
|
7
|
+
"noon": { label: "Mittag", description: "Harte Mittagssonne von oben" },
|
|
8
|
+
"harsh-midday": { label: "Hartes Mittagslicht", description: "Gebleichte Weiße-Sonne im Zenit" },
|
|
9
|
+
"overcast": { label: "Bedeckt", description: "Sanftes diffuses Tageslicht" },
|
|
10
|
+
"blue-hour": { label: "Blaue Stunde", description: "Kühle Abenddämmerung" },
|
|
11
|
+
"twilight": { label: "Dämmerung", description: "Zwischen blauer Stunde und Nacht" },
|
|
12
|
+
"night": { label: "Nacht", description: "Tiefe Nacht, niedriges Umgebungslicht" },
|
|
13
|
+
"moonlight": { label: "Mondlicht", description: "Kühle blaue mondbeschienene Szene" },
|
|
14
|
+
"neon-night": { label: "Neonnacht", description: "Gesättigte Neon-Stadtnacht" },
|
|
15
|
+
// Style
|
|
16
|
+
"three-point": { label: "Drei-Punkt-Beleuchtung", description: "Klassisch Führungs- + Aufhell- + Streiflicht" },
|
|
17
|
+
"rembrandt": { description: "Lichtdreieck auf der Wange" },
|
|
18
|
+
"chiaroscuro": { description: "Starker Hell-Dunkel-Kontrast" },
|
|
19
|
+
"silhouette": { label: "Silhouette", description: "Motiv als reine Form" },
|
|
20
|
+
"high-key": { label: "High Key", description: "Hell, kontrastarm" },
|
|
21
|
+
"low-key": { label: "Low Key", description: "Dunkel, kontrastreich" },
|
|
22
|
+
"split": { label: "Split-Beleuchtung", description: "Halb beleuchtet, halb im Schatten" },
|
|
23
|
+
"hard": { label: "Hart", description: "Scharfkantige Schatten" },
|
|
24
|
+
"soft": { label: "Weich", description: "Diffuses sanftes Licht" },
|
|
25
|
+
"practical": { label: "Praktisches Licht", description: "Im Bild sichtbare Lichter" },
|
|
26
|
+
"ring-light": { description: "Beauty-/Vlog-Ringlicht-Catchlight" },
|
|
27
|
+
"phone-screen-glow": { label: "Handybildschirm-Leuchten", description: "Kühles Bildschirm-Unterlicht" },
|
|
28
|
+
"selfie-natural": { label: "Selfie Natürlich", description: "Fensterlicht-Selfie" },
|
|
29
|
+
"natural": { label: "Natürlich", description: "Verfügbares Umgebungslicht" },
|
|
30
|
+
"volumetric": { label: "Volumetrisch", description: "Sichtbare Lichtstrahlen im Dunst" },
|
|
31
|
+
"noir": { description: "Hochkontrastiges S/W-Film-Noir" },
|
|
32
|
+
"on-camera-flash": { label: "On-Camera-Blitz", description: "Paparazzi/iPhone-Direktblitz" },
|
|
33
|
+
"mirror-bounce-flash": { label: "Spiegel-Bounce-Blitz", description: "Spiegelselfie-Blitz-Bounce" },
|
|
34
|
+
"bounced-flash": { label: "Indirekter Blitz", description: "Sanftes Decken-reflektiertes Aufhelllicht" },
|
|
35
|
+
"softbox-key": { description: "Großes diffuses Mode-Führungslicht" },
|
|
36
|
+
"beauty-dish": { description: "Hero-Licht, knackiger Falloff" },
|
|
37
|
+
"gridded-snoot": { description: "Eng fokussierter Lichtkegel" },
|
|
38
|
+
"silk-diffusion": { label: "Seiden-Diffusion", description: "Seidengeglättetes sanftes Führungslicht" },
|
|
39
|
+
"kicker-rim": { label: "Kicker / Rim-Akzent", description: "Niedriger Seitenakzent zur Trennung" },
|
|
40
|
+
"candlelight": { label: "Kerzenlicht", description: "Warmes flackerndes Feuerlicht" },
|
|
41
|
+
"edison-tungsten": { description: "Gemütliches warmes Globe-Birnen-Leuchten" },
|
|
42
|
+
"dappled-light": { label: "Gesprenkelt / Blattgefiltert", description: "Geflecktes Laublicht" },
|
|
43
|
+
"raking-sidelight": { label: "Streifendes Seitenlicht", description: "Extreme niedrige Seite, Textur" },
|
|
44
|
+
"stage-spotlight": { label: "Bühnenscheinwerfer", description: "Einzelner harter Overhead-Spot" },
|
|
45
|
+
"underwater-caustics": { label: "Unterwasser-Kaustiken", description: "Gewellte gebrochene Muster" },
|
|
46
|
+
"bioluminescence": { label: "Biolumineszenz", description: "Kühles unheimliches biologisches Leuchten" },
|
|
47
|
+
// Direction
|
|
48
|
+
"front": { label: "Frontal", description: "Licht aus Kamerarichtung" },
|
|
49
|
+
"three-quarter": { label: "3/4-Licht", description: "Klassischer Porträt-Hauptlicht-Winkel" },
|
|
50
|
+
"side": { label: "Seitlich", description: "Licht von einer Seite" },
|
|
51
|
+
"back-rim": { label: "Hinten / Rim", description: "Gegenlicht-Rim um das Motiv" },
|
|
52
|
+
"silhouette-backlight": { label: "Silhouetten-Gegenlicht", description: "Heller Halo, dunkles Motiv" },
|
|
53
|
+
"top-overhead": { label: "Oben / Überkopf", description: "Licht direkt von oben" },
|
|
54
|
+
"under-uplight": { label: "Unten / Unterlicht", description: "Licht von unten" },
|
|
55
|
+
"window": { label: "Fensterlicht", description: "Sanftes Seitenlicht vom Fenster" },
|
|
56
|
+
// Lighting ratio
|
|
57
|
+
"ratio-1-1": { description: "Flach, kein Schatten-Kontrast" },
|
|
58
|
+
"ratio-1-2": { description: "Sanfter Ein-Stufen-Falloff" },
|
|
59
|
+
"ratio-1-3": { description: "Moderater Zwei-Stufen-Kontrast" },
|
|
60
|
+
"ratio-1-4": { description: "Starker Editorial-Kontrast" },
|
|
61
|
+
"ratio-1-8": { description: "Extremes Low-Key-Chiaroscuro" },
|
|
62
|
+
"ratio-1-16": { description: "Einzellichtquellen-Film-Noir-Falloff" },
|
|
63
|
+
// Color temperature
|
|
64
|
+
"temp-2700k": { label: "2700K Kerze", description: "Tiefes Bernstein-Kerzen/Tungsten" },
|
|
65
|
+
"temp-3200k": { label: "3200K Tungsten", description: "Warmer gelber Innenraum" },
|
|
66
|
+
"temp-4000k": { label: "4000K Mischlicht", description: "Neutrales Weiß" },
|
|
67
|
+
"temp-5600k": { label: "5600K Tageslicht", description: "Tageslicht-balancierte Mittagssonne" },
|
|
68
|
+
"temp-6500k": { label: "6500K Bedeckt", description: "Leicht kühler Blaustich" },
|
|
69
|
+
"temp-9000k": { label: "9000K Schatten", description: "Deutlich kühler blauer Schatten" },
|
|
70
|
+
"butterfly": { label: "Schmetterlingslicht", description: "Licht von oben wirft Schmetterlingsschatten unter die Nase" },
|
|
71
|
+
"loop": { label: "Loop-Licht", description: "Licht leicht von der Seite und oben wirft kleine Schleife auf die Wange" },
|
|
72
|
+
"broad": { label: "Breite Beleuchtung", description: "Beleuchtete Seite zur Kamera, breiteres Gesicht" },
|
|
73
|
+
"short": { label: "Kurze Beleuchtung", description: "Beleuchtete Seite von der Kamera abgewandt, schmälernd" },
|
|
74
|
+
"hatchet": { label: "Hatchet-Licht", description: "Streiflicht von oben, tiefer Schatten gegenüber" },
|
|
75
|
+
"clamshell": { label: "Clamshell-Licht", description: "Licht von oben und Reflektor von unten, Beauty-Sandwich" },
|
|
76
|
+
// Location-studio extension (PR #2505 follow-up)
|
|
77
|
+
"dawn": { label: "Morgendämmerung", description: "Blasses Leuchten vor dem Sonnenaufgang" },
|
|
78
|
+
"morning": { label: "Morgen", description: "Frisches, helles Morgenlicht" },
|
|
79
|
+
"afternoon": { label: "Nachmittag", description: "Warmer später Nachmittagsschein" },
|
|
80
|
+
"dusk": { label: "Abenddämmerung", description: "Verblassendes Licht nach Sonnenuntergang" },
|
|
81
|
+
"midnight": { label: "Mitternacht", description: "Tiefste Nacht, fast schwarzer Himmel" },
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export default map
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Time of day
|
|
5
|
+
"sunrise": { label: "Amanecer", description: "Sol bajo cálido, sombras largas" },
|
|
6
|
+
"golden-hour": { label: "Hora Dorada", description: "Resplandor cálido del atardecer" },
|
|
7
|
+
"noon": { label: "Mediodía", description: "Sol cenital duro de mediodía" },
|
|
8
|
+
"harsh-midday": { label: "Mediodía Duro", description: "Cenit blanqueado por el sol blanco" },
|
|
9
|
+
"overcast": { label: "Nublado", description: "Luz diurna suave y difusa" },
|
|
10
|
+
"blue-hour": { label: "Hora Azul", description: "Crepúsculo frío del atardecer" },
|
|
11
|
+
"twilight": { label: "Crepúsculo", description: "Entre la hora azul y la noche" },
|
|
12
|
+
"night": { label: "Noche", description: "Noche profunda, ambiente bajo" },
|
|
13
|
+
"moonlight": { label: "Luz de Luna", description: "Escena iluminada por luz azul de luna" },
|
|
14
|
+
"neon-night": { label: "Noche de Neón", description: "Noche de ciudad con neón saturado" },
|
|
15
|
+
|
|
16
|
+
// Style
|
|
17
|
+
"three-point": { label: "Tres Puntos", description: "Clásico key + fill + back" },
|
|
18
|
+
"rembrandt": { description: "Triángulo de luz en la mejilla" },
|
|
19
|
+
"chiaroscuro": { description: "Fuerte contraste luz/oscuridad" },
|
|
20
|
+
"silhouette": { label: "Silueta", description: "Sujeto como forma pura" },
|
|
21
|
+
"high-key": { label: "Alta Clave", description: "Brillante, bajo contraste" },
|
|
22
|
+
"low-key": { label: "Baja Clave", description: "Oscuro, alto contraste" },
|
|
23
|
+
"split": { label: "Dividida", description: "Rostro mitad iluminado, mitad en sombra" },
|
|
24
|
+
"hard": { label: "Dura", description: "Sombras de bordes definidos" },
|
|
25
|
+
"soft": { label: "Suave", description: "Luz suave y difusa" },
|
|
26
|
+
"practical": { label: "Práctica", description: "Luces visibles dentro de la escena" },
|
|
27
|
+
"ring-light": { label: "Aro de Luz", description: "Reflejo circular de belleza/vlog" },
|
|
28
|
+
"phone-screen-glow": { label: "Resplandor de Pantalla de Teléfono", description: "Luz inferior fría desde la pantalla" },
|
|
29
|
+
"selfie-natural": { label: "Selfie Natural", description: "Selfie con luz de ventana" },
|
|
30
|
+
"natural": { label: "Natural", description: "Luz ambiental disponible" },
|
|
31
|
+
"volumetric": { label: "Volumétrica", description: "Rayos de luz visibles en bruma" },
|
|
32
|
+
"noir": { description: "Cine noir B&N de alto contraste" },
|
|
33
|
+
"on-camera-flash": { label: "Flash en la Cámara", description: "Flash directo estilo paparazzi/iPhone" },
|
|
34
|
+
"mirror-bounce-flash": { label: "Flash Rebotado en Espejo", description: "Rebote de flash en selfie en espejo" },
|
|
35
|
+
"bounced-flash": { label: "Flash Rebotado", description: "Relleno suave rebotado del techo" },
|
|
36
|
+
"softbox-key": { label: "Key con Softbox", description: "Key de moda grande y difusa" },
|
|
37
|
+
"beauty-dish": { label: "Beauty Dish", description: "Luz hero, caída nítida" },
|
|
38
|
+
"gridded-snoot": { label: "Snoot con Cuadrícula", description: "Charco de luz enfocada apretada" },
|
|
39
|
+
"silk-diffusion": { label: "Difusión de Seda", description: "Key suave a través de seda" },
|
|
40
|
+
"kicker-rim": { label: "Acento Lateral / Rim", description: "Acento separador lateral inferior" },
|
|
41
|
+
"candlelight": { label: "Luz de Vela", description: "Luz cálida y parpadeante de fuego" },
|
|
42
|
+
"edison-tungsten": { description: "Resplandor cálido y acogedor de bombilla globo" },
|
|
43
|
+
"dappled-light": { label: "Luz Moteada / Filtrada por Hojas", description: "Luz moteada filtrada por follaje" },
|
|
44
|
+
"raking-sidelight": { label: "Luz Lateral Rasante", description: "Lateral muy bajo, textura" },
|
|
45
|
+
"stage-spotlight": { label: "Reflector de Escenario", description: "Único reflector cenital duro" },
|
|
46
|
+
"underwater-caustics": { label: "Cáusticas Submarinas", description: "Patrones refractados ondulantes" },
|
|
47
|
+
"bioluminescence": { label: "Bioluminiscencia", description: "Resplandor biológico frío e inquietante" },
|
|
48
|
+
|
|
49
|
+
// Direction
|
|
50
|
+
"front": { label: "Frontal", description: "Luz desde la dirección de la cámara" },
|
|
51
|
+
"three-quarter": { label: "Luz 3/4", description: "Ángulo clave clásico de retrato" },
|
|
52
|
+
"side": { label: "Lateral", description: "Luz desde un lado" },
|
|
53
|
+
"back-rim": { label: "Trasera / Rim", description: "Contraluz con rim alrededor del sujeto" },
|
|
54
|
+
"silhouette-backlight": { label: "Contraluz de Silueta", description: "Halo brillante, sujeto oscuro" },
|
|
55
|
+
"top-overhead": { label: "Cenital", description: "Luz directamente desde arriba" },
|
|
56
|
+
"under-uplight": { label: "Inferior / Uplight", description: "Luz desde abajo" },
|
|
57
|
+
"window": { label: "Ventana", description: "Luz lateral suave desde una ventana" },
|
|
58
|
+
|
|
59
|
+
// Lighting ratio (technical units — translate description only)
|
|
60
|
+
"ratio-1-1": { description: "Plano, sin contraste de sombras" },
|
|
61
|
+
"ratio-1-2": { description: "Caída suave de un paso" },
|
|
62
|
+
"ratio-1-3": { description: "Contraste moderado de dos pasos" },
|
|
63
|
+
"ratio-1-4": { description: "Contraste editorial fuerte" },
|
|
64
|
+
"ratio-1-8": { description: "Chiaroscuro extremo de baja clave" },
|
|
65
|
+
"ratio-1-16": { description: "Caída film noir de fuente única" },
|
|
66
|
+
|
|
67
|
+
// Color temperature (technical units — translate description only)
|
|
68
|
+
"temp-2700k": { description: "Vela/tungsteno ámbar profundo" },
|
|
69
|
+
"temp-3200k": { description: "Interior amarillo cálido" },
|
|
70
|
+
"temp-4000k": { description: "Blanco neutro" },
|
|
71
|
+
"temp-5600k": { description: "Sol mediodía balanceado a luz diurna" },
|
|
72
|
+
"temp-6500k": { description: "Tinte azul ligeramente frío" },
|
|
73
|
+
"temp-9000k": { description: "Sombra azul claramente fría" },
|
|
74
|
+
|
|
75
|
+
"butterfly": { label: "Iluminación Mariposa", description: "Luz desde arriba proyecta una sombra de mariposa bajo la nariz" },
|
|
76
|
+
"loop": { label: "Iluminación Loop", description: "Ligera lateral+arriba proyecta un pequeño bucle en la mejilla" },
|
|
77
|
+
"broad": { label: "Iluminación Amplia", description: "Lado iluminado hacia la cámara, aspecto de rostro más ancho" },
|
|
78
|
+
"short": { label: "Iluminación Corta", description: "Lado iluminado lejos de la cámara, efecto adelgazante" },
|
|
79
|
+
"hatchet": { label: "Iluminación Hacha", description: "Rasante cenital, sombra profunda en el lado opuesto" },
|
|
80
|
+
"clamshell": { label: "Iluminación Clamshell", description: "Arriba + reflector debajo, belleza emparedada" },
|
|
81
|
+
// Location-studio extension (PR #2505 follow-up)
|
|
82
|
+
"dawn": { label: "Amanecer", description: "Resplandor pálido antes del amanecer" },
|
|
83
|
+
"morning": { label: "Mañana", description: "Luz matinal fresca y brillante" },
|
|
84
|
+
"afternoon": { label: "Tarde", description: "Cálido resplandor de la tarde tardía" },
|
|
85
|
+
"dusk": { label: "Crepúsculo", description: "Luz que se desvanece tras la puesta del sol" },
|
|
86
|
+
"midnight": { label: "Medianoche", description: "La noche más profunda, cielo casi negro" },
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export default map
|