@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,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { description: "Klassisches Kino-Filmkorn" },
|
|
5
|
+
"16mm-film": { description: "Indie / Doku-Korn" },
|
|
6
|
+
"super-8": { description: "Vintage-8mm-Heimfilm-Look" },
|
|
7
|
+
"imax-70mm": { description: "Großformatige makellose Klarheit" },
|
|
8
|
+
"anamorphic-scope": { label: "Anamorphic Scope", description: "2,39:1 Cinemascope-Look" },
|
|
9
|
+
"arri-alexa": { description: "Premium-Digitalkino" },
|
|
10
|
+
"alexa-65": { description: "Großformat-65mm-Kino der IMAX-Klasse" },
|
|
11
|
+
"sony-venice": { description: "Vollformat-Kino mit Dual-Base-ISO" },
|
|
12
|
+
"blackmagic-pocket-6k": { description: "Indie-RAW-Kinokamera" },
|
|
13
|
+
"red-komodo": { description: "Kompakte 6K-Action-Kinokamera" },
|
|
14
|
+
"dslr": { description: "Knackiger Video-DSLR-Look" },
|
|
15
|
+
"mirrorless-a7iii": { description: "Moderne hybride spiegellose Kamera" },
|
|
16
|
+
"canon-r5": { description: "Hochauflösende Mode-Editorial-Kamera" },
|
|
17
|
+
"hasselblad-medium-format": { description: "Editorial-Mittelformat" },
|
|
18
|
+
"leica-m-rangefinder": { description: "Klassischer 35mm-Messsucher" },
|
|
19
|
+
"voigtlander": { description: "Boutique-Messsucher-Charakter" },
|
|
20
|
+
"fuji-xt4": { description: "Filmemulierende Fuji-Farben" },
|
|
21
|
+
"drone-aerial": { label: "Drohne (Luftaufnahme)", description: "Überkopf-Gimbal-stabilisierte Luftaufnahme" },
|
|
22
|
+
"gopro-action-cam": { label: "GoPro Action-Cam", description: "Fischaugen-Weitwinkel-Action-Kamera" },
|
|
23
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "Niedrigaufgelöster Videoanruf" },
|
|
24
|
+
"vhs": { description: "Bandverzerrung + Scanlines" },
|
|
25
|
+
"camcorder": { label: "Camcorder", description: "Konsumenten-90er-Video" },
|
|
26
|
+
"polaroid": { description: "Sofortbildfilm-Tonalität" },
|
|
27
|
+
"fuji-instax": { description: "Moderner Sofortbildfilm" },
|
|
28
|
+
"disposable-camera": { label: "Einwegkamera", description: "Einmal-Film der 90er/2000er" },
|
|
29
|
+
"toy-camera-holga": { label: "Spielzeugkamera (Holga)", description: "Lo-Fi-Holga / Lomo-Plastiklinse" },
|
|
30
|
+
"tintype-wet-plate": { label: "Tintype / Wet Plate", description: "Vintage-Nasskollodium" },
|
|
31
|
+
"daguerreotype": { description: "1840er Silberspiegelverfahren" },
|
|
32
|
+
"security-cam": { label: "Überwachungskamera (CCTV)", description: "CCTV-Fischauge + Zeitstempel-Overlay" },
|
|
33
|
+
"bw-film": { label: "S/W-Film", description: "Schwarz-Weiß-Filmmaterial" },
|
|
34
|
+
"iphone": { description: "Moderner Handy-Kamera-Look" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { label: "Película de 35mm", description: "Grano clásico de cine" },
|
|
5
|
+
"16mm-film": { label: "Película de 16mm", description: "Grano indie / documental" },
|
|
6
|
+
"super-8": { label: "Super 8", description: "Look vintage de cine casero de 8mm" },
|
|
7
|
+
"imax-70mm": { label: "IMAX 70mm", description: "Claridad prístina de gran formato" },
|
|
8
|
+
"anamorphic-scope": { label: "Anamórfico Scope", description: "Look de cine widescreen 2.39:1" },
|
|
9
|
+
|
|
10
|
+
"arri-alexa": { description: "Cine digital premium" },
|
|
11
|
+
"alexa-65": { description: "Cine de gran formato 65mm de clase IMAX" },
|
|
12
|
+
"sony-venice": { description: "Cine de fotograma completo con doble ISO nativo" },
|
|
13
|
+
"blackmagic-pocket-6k": { description: "Cámara de cine indie en RAW" },
|
|
14
|
+
"red-komodo": { description: "Cámara de cine de acción 6K compacta" },
|
|
15
|
+
"dslr": { label: "DSLR", description: "Look de video DSLR nítido" },
|
|
16
|
+
"mirrorless-a7iii": { description: "Look híbrido moderno mirrorless" },
|
|
17
|
+
"canon-r5": { description: "Mirrorless de moda editorial de alta resolución" },
|
|
18
|
+
"hasselblad-medium-format": { description: "Formato medio editorial" },
|
|
19
|
+
"leica-m-rangefinder": { description: "Telémetro clásico de 35mm" },
|
|
20
|
+
"voigtlander": { description: "Carácter de telémetro boutique" },
|
|
21
|
+
"fuji-xt4": { description: "Color Fuji que emula película" },
|
|
22
|
+
|
|
23
|
+
"drone-aerial": { label: "Dron (Aéreo)", description: "Toma aérea cenital estabilizada en gimbal" },
|
|
24
|
+
"gopro-action-cam": { label: "Cámara de Acción GoPro", description: "Cámara de acción ojo de pez gran angular" },
|
|
25
|
+
|
|
26
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "Videollamada de baja resolución" },
|
|
27
|
+
|
|
28
|
+
"vhs": { description: "Distorsión de cinta + líneas de barrido" },
|
|
29
|
+
"camcorder": { label: "Videocámara", description: "Video de los 90 para consumidor" },
|
|
30
|
+
"polaroid": { label: "Polaroid", description: "Tonalidad de película instantánea" },
|
|
31
|
+
"fuji-instax": { description: "Película instantánea moderna" },
|
|
32
|
+
"disposable-camera": { label: "Cámara Desechable", description: "Película de un solo uso de los 90/2000s" },
|
|
33
|
+
"toy-camera-holga": { label: "Cámara de Juguete (Holga)", description: "Lente de plástico Holga / Lomo lo-fi" },
|
|
34
|
+
"tintype-wet-plate": { label: "Tintype / Placa Húmeda", description: "Colodión de placa húmeda vintage" },
|
|
35
|
+
"daguerreotype": { label: "Daguerrotipo", description: "Proceso de espejo de plata de 1840" },
|
|
36
|
+
"security-cam": { label: "Cámara de Seguridad (CCTV)", description: "Ojo de pez de CCTV + sello de tiempo" },
|
|
37
|
+
"bw-film": { label: "Película B&N", description: "Película en blanco y negro" },
|
|
38
|
+
"iphone": { label: "iPhone", description: "Look moderno de cámara de teléfono" },
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export default map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { label: "Pellicule 35mm", description: "Grain de pellicule cinéma classique" },
|
|
5
|
+
"16mm-film": { label: "Pellicule 16mm", description: "Grain indé / documentaire" },
|
|
6
|
+
"super-8": { description: "Look cinéma amateur 8mm vintage" },
|
|
7
|
+
"imax-70mm": { description: "Clarté immaculée grand format" },
|
|
8
|
+
"anamorphic-scope": { label: "Scope anamorphique", description: "Look cinéma widescreen 2,39:1" },
|
|
9
|
+
"arri-alexa": { description: "Cinéma numérique premium" },
|
|
10
|
+
"alexa-65": { description: "Cinéma grand format 65mm de classe IMAX" },
|
|
11
|
+
"sony-venice": { description: "Cinéma plein format à double ISO natif" },
|
|
12
|
+
"blackmagic-pocket-6k": { description: "Caméra cinéma indé en RAW" },
|
|
13
|
+
"red-komodo": { description: "Caméra cinéma d'action 6K compacte" },
|
|
14
|
+
"dslr": { label: "Reflex numérique", description: "Look vidéo-reflex net" },
|
|
15
|
+
"mirrorless-a7iii": { description: "Hybride moderne sans miroir" },
|
|
16
|
+
"canon-r5": { description: "Hybride haute résolution mode-éditorial" },
|
|
17
|
+
"hasselblad-medium-format": { label: "Hasselblad moyen format", description: "Moyen format éditorial" },
|
|
18
|
+
"leica-m-rangefinder": { label: "Télémètre Leica M", description: "Télémètre 35mm classique" },
|
|
19
|
+
"voigtlander": { description: "Caractère télémètre boutique" },
|
|
20
|
+
"fuji-xt4": { description: "Couleur Fuji émulant la pellicule" },
|
|
21
|
+
"drone-aerial": { label: "Drone (aérien)", description: "Aérien stabilisé par cardan" },
|
|
22
|
+
"gopro-action-cam": { label: "Caméra d'action GoPro", description: "Caméra d'action grand-angle fisheye" },
|
|
23
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "Appel vidéo basse résolution" },
|
|
24
|
+
"vhs": { description: "Distorsion de bande + lignes de balayage" },
|
|
25
|
+
"camcorder": { label: "Caméscope", description: "Vidéo grand public des années 90" },
|
|
26
|
+
"polaroid": { description: "Tonalité de pellicule instantanée" },
|
|
27
|
+
"fuji-instax": { description: "Pellicule instantanée moderne" },
|
|
28
|
+
"disposable-camera": { label: "Appareil jetable", description: "Pellicule jetable des années 90/2000" },
|
|
29
|
+
"toy-camera-holga": { label: "Toy camera (Holga)", description: "Lo-fi à objectif plastique Holga / Lomo" },
|
|
30
|
+
"tintype-wet-plate": { label: "Ferrotype / Plaque humide", description: "Collodion plaque humide vintage" },
|
|
31
|
+
"daguerreotype": { label: "Daguerréotype", description: "Procédé miroir d'argent des années 1840" },
|
|
32
|
+
"security-cam": { label: "Caméra de surveillance (CCTV)", description: "Fisheye CCTV + horodatage en surimpression" },
|
|
33
|
+
"bw-film": { label: "Pellicule N&B", description: "Pellicule noir et blanc" },
|
|
34
|
+
"iphone": { description: "Look caméra de téléphone moderne" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { label: "פילם 35mm", description: "גרגירי פילם קולנועיים קלאסיים" },
|
|
5
|
+
"16mm-film": { label: "פילם 16mm", description: "גרגירי פילם אינדי / דוקומנטרי" },
|
|
6
|
+
"super-8": { label: "Super 8", description: "מראה וינטג' של סרטים ביתיים 8mm" },
|
|
7
|
+
"imax-70mm": { label: "IMAX 70mm", description: "בהירות צרופה בפורמט גדול" },
|
|
8
|
+
"anamorphic-scope": { label: "Anamorphic Scope", description: "מראה קולנועי במסך רחב 2.39:1" },
|
|
9
|
+
"arri-alexa": { description: "מצלמת קולנוע דיגיטלית פרימיום" },
|
|
10
|
+
"alexa-65": { description: "מצלמת קולנוע בפורמט גדול 65mm ברמת IMAX" },
|
|
11
|
+
"sony-venice": { description: "מצלמת קולנוע full-frame עם ISO בסיס כפול" },
|
|
12
|
+
"blackmagic-pocket-6k": { description: "מצלמת קולנוע אינדי בהקלטת RAW" },
|
|
13
|
+
"red-komodo": { description: "מצלמת קולנוע אקשן 6K קומפקטית" },
|
|
14
|
+
"dslr": { label: "DSLR", description: "מראה DSLR וידאו חד" },
|
|
15
|
+
"mirrorless-a7iii": { description: "מצלמת מראה הפוכה היברידית מודרנית" },
|
|
16
|
+
"canon-r5": { description: "מצלמת מראה הפוכה אדיטוריאל-אופנה ברזולוציה גבוהה" },
|
|
17
|
+
"hasselblad-medium-format": { description: "פורמט בינוני אדיטוריאלי" },
|
|
18
|
+
"leica-m-rangefinder": { description: "Rangefinder קלאסי 35mm" },
|
|
19
|
+
"voigtlander": { description: "אופי Rangefinder בוטיקי" },
|
|
20
|
+
"fuji-xt4": { description: "צבע פוג'י המדמה פילם" },
|
|
21
|
+
"drone-aerial": { label: "רחפן (אווירי)", description: "צילום אווירי מיוצב מעל" },
|
|
22
|
+
"gopro-action-cam": { label: "GoPro Action Cam", description: "מצלמת אקשן fisheye רחבה" },
|
|
23
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "שיחת וידאו ברזולוציה נמוכה" },
|
|
24
|
+
"vhs": { label: "VHS", description: "עיוות קלטת + scanlines" },
|
|
25
|
+
"camcorder": { label: "Camcorder", description: "וידאו צרכני של שנות ה-90" },
|
|
26
|
+
"polaroid": { label: "Polaroid", description: "טונליות פילם מיידי" },
|
|
27
|
+
"fuji-instax": { description: "פילם מיידי מודרני" },
|
|
28
|
+
"disposable-camera": { label: "מצלמה חד-פעמית", description: "פילם חד-פעמי של שנות ה-90/2000" },
|
|
29
|
+
"toy-camera-holga": { label: "מצלמת צעצוע (Holga)", description: "Lo-fi של עדשת פלסטיק Holga / Lomo" },
|
|
30
|
+
"tintype-wet-plate": { label: "Tintype / Wet Plate", description: "קולודיון רטוב וינטג'" },
|
|
31
|
+
"daguerreotype": { label: "Daguerreotype", description: "תהליך מראת כסף משנות ה-1840" },
|
|
32
|
+
"security-cam": { label: "מצלמת אבטחה (CCTV)", description: "Fisheye + חותמת זמן של CCTV" },
|
|
33
|
+
"bw-film": { label: "פילם שחור-לבן", description: "פילם שחור ולבן" },
|
|
34
|
+
"iphone": { label: "iPhone", description: "מראה מודרני של מצלמת טלפון" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Film stocks
|
|
5
|
+
"35mm-film": { description: "क्लासिक cinema film grain" },
|
|
6
|
+
"16mm-film": { description: "Indie / documentary grain" },
|
|
7
|
+
"super-8": { description: "विंटेज 8mm home-movie look" },
|
|
8
|
+
"imax-70mm": { description: "Large-format pristine clarity" },
|
|
9
|
+
"anamorphic-scope": { description: "2.39:1 widescreen cinema look" },
|
|
10
|
+
// Modern digital
|
|
11
|
+
"arri-alexa": { description: "Premium digital cinema" },
|
|
12
|
+
"alexa-65": { description: "Large-format 65mm IMAX-class cinema" },
|
|
13
|
+
"sony-venice": { description: "Full-frame dual-base-ISO cinema" },
|
|
14
|
+
"blackmagic-pocket-6k": { description: "Indie RAW cinema camera" },
|
|
15
|
+
"red-komodo": { description: "कॉम्पैक्ट 6K action cinema camera" },
|
|
16
|
+
"dslr": { description: "Crisp video-DSLR look" },
|
|
17
|
+
"mirrorless-a7iii": { description: "आधुनिक hybrid mirrorless" },
|
|
18
|
+
"canon-r5": { description: "उच्च-resolution fashion-editorial mirrorless" },
|
|
19
|
+
"hasselblad-medium-format": { description: "Editorial medium format" },
|
|
20
|
+
"leica-m-rangefinder": { description: "क्लासिक 35mm rangefinder" },
|
|
21
|
+
"voigtlander": { description: "Boutique rangefinder character" },
|
|
22
|
+
"fuji-xt4": { description: "Film-emulating Fuji color" },
|
|
23
|
+
// Aerial / action
|
|
24
|
+
"drone-aerial": { label: "Drone (Aerial)", description: "ऊपर से gimbal-स्थिर aerial" },
|
|
25
|
+
"gopro-action-cam": { description: "Fisheye-wide action camera" },
|
|
26
|
+
// Lo-fi modern
|
|
27
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "कम-resolution video call" },
|
|
28
|
+
// Vintage / lo-fi
|
|
29
|
+
"vhs": { description: "Tape distortion + scanlines" },
|
|
30
|
+
"camcorder": { description: "उपभोक्ता 90s video" },
|
|
31
|
+
"polaroid": { description: "Instant film tonality" },
|
|
32
|
+
"fuji-instax": { description: "आधुनिक instant film" },
|
|
33
|
+
"disposable-camera": { description: "एक-बार उपयोग 90s/2000s film" },
|
|
34
|
+
"toy-camera-holga": { label: "Toy Camera (Holga)", description: "Lo-fi Holga / Lomo plastic-lens" },
|
|
35
|
+
"tintype-wet-plate": { label: "Tintype / Wet Plate", description: "विंटेज wet-plate collodion" },
|
|
36
|
+
"daguerreotype": { description: "1840 के दशक की silver-mirror process" },
|
|
37
|
+
"security-cam": { label: "Security Cam (CCTV)", description: "CCTV fisheye + timestamp overlay" },
|
|
38
|
+
"bw-film": { label: "B&W Film", description: "श्वेत-श्याम film stock" },
|
|
39
|
+
"iphone": { description: "आधुनिक phone-camera look" },
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export default map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { label: "35mmフィルム", description: "クラシックな映画フィルム粒子" },
|
|
5
|
+
"16mm-film": { label: "16mmフィルム", description: "インディーズ/ドキュメンタリーの粒状感" },
|
|
6
|
+
"super-8": { label: "Super 8", description: "ヴィンテージ8mmホームムービー風ルック" },
|
|
7
|
+
"imax-70mm": { label: "IMAX 70mm", description: "大判フォーマットの澄んだ明瞭さ" },
|
|
8
|
+
"anamorphic-scope": { label: "アナモルフィック・スコープ", description: "2.39:1ワイドスクリーンの映画ルック" },
|
|
9
|
+
"arri-alexa": { description: "プレミアムなデジタルシネマ" },
|
|
10
|
+
"alexa-65": { description: "IMAXクラスの65mm大判シネマ" },
|
|
11
|
+
"sony-venice": { description: "デュアルベースISOのフルフレーム・シネマ" },
|
|
12
|
+
"blackmagic-pocket-6k": { description: "RAW撮影のインディー向けシネマカメラ" },
|
|
13
|
+
"red-komodo": { description: "コンパクトな6Kアクション・シネマカメラ" },
|
|
14
|
+
"dslr": { description: "シャープなビデオDSLRルック" },
|
|
15
|
+
"mirrorless-a7iii": { description: "モダンなハイブリッド・ミラーレス" },
|
|
16
|
+
"canon-r5": { description: "高解像度のファッション・エディトリアル向けミラーレス" },
|
|
17
|
+
"hasselblad-medium-format": { description: "エディトリアル中判フォーマット" },
|
|
18
|
+
"leica-m-rangefinder": { description: "クラシックな35mmレンジファインダー" },
|
|
19
|
+
"voigtlander": { description: "ブティック系レンジファインダーの個性" },
|
|
20
|
+
"fuji-xt4": { description: "フィルム調のFuji色再現" },
|
|
21
|
+
"drone-aerial": { label: "ドローン(空撮)", description: "上空からのジンバル安定化空撮" },
|
|
22
|
+
"gopro-action-cam": { label: "GoProアクションカム", description: "魚眼ワイドのアクションカメラ" },
|
|
23
|
+
"webcam-facetime": { label: "ウェブカメラ/FaceTime", description: "低解像度のビデオ通話" },
|
|
24
|
+
"vhs": { description: "テープ歪みとスキャンライン" },
|
|
25
|
+
"camcorder": { label: "カムコーダー", description: "90年代のコンシューマー向けビデオ" },
|
|
26
|
+
"polaroid": { description: "インスタントフィルムの階調" },
|
|
27
|
+
"fuji-instax": { description: "モダンなインスタントフィルム" },
|
|
28
|
+
"disposable-camera": { label: "使い捨てカメラ", description: "90年代/2000年代の使い切りフィルム" },
|
|
29
|
+
"toy-camera-holga": { label: "トイカメラ(Holga)", description: "ローファイなHolga/Lomoのプラスチックレンズ" },
|
|
30
|
+
"tintype-wet-plate": { label: "ティンタイプ/ウェットプレート", description: "ヴィンテージのウェットプレート・コロジオン法" },
|
|
31
|
+
"daguerreotype": { label: "ダゲレオタイプ", description: "1840年代の銀盤鏡面プロセス" },
|
|
32
|
+
"security-cam": { label: "防犯カメラ(CCTV)", description: "CCTVの魚眼とタイムスタンプオーバーレイ" },
|
|
33
|
+
"bw-film": { label: "白黒フィルム", description: "白黒フィルムのストック" },
|
|
34
|
+
"iphone": { description: "モダンなスマホカメラのルック" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"35mm-film": { label: "35mm 필름", description: "클래식 시네마 필름 그레인입니다" },
|
|
5
|
+
"16mm-film": { label: "16mm 필름", description: "인디 / 다큐멘터리 그레인입니다" },
|
|
6
|
+
"super-8": { label: "Super 8", description: "빈티지 8mm 홈 무비 룩입니다" },
|
|
7
|
+
"imax-70mm": { label: "IMAX 70mm", description: "대형 포맷의 깨끗한 선명도입니다" },
|
|
8
|
+
"anamorphic-scope": { label: "Anamorphic Scope", description: "2.39:1 와이드스크린 시네마 룩입니다" },
|
|
9
|
+
"arri-alexa": { description: "프리미엄 디지털 시네마입니다" },
|
|
10
|
+
"alexa-65": { description: "IMAX급 65mm 대형 포맷 시네마입니다" },
|
|
11
|
+
"sony-venice": { description: "듀얼 베이스 ISO 풀프레임 시네마입니다" },
|
|
12
|
+
"blackmagic-pocket-6k": { description: "RAW 촬영의 인디 시네마 카메라입니다" },
|
|
13
|
+
"red-komodo": { description: "컴팩트한 6K 액션 시네마 카메라입니다" },
|
|
14
|
+
"dslr": { description: "선명한 비디오-DSLR 룩입니다" },
|
|
15
|
+
"mirrorless-a7iii": { description: "모던 하이브리드 미러리스입니다" },
|
|
16
|
+
"canon-r5": { description: "고해상도 패션 에디토리얼 미러리스입니다" },
|
|
17
|
+
"hasselblad-medium-format": { description: "에디토리얼 미디엄 포맷입니다" },
|
|
18
|
+
"leica-m-rangefinder": { description: "클래식 35mm 레인지파인더입니다" },
|
|
19
|
+
"voigtlander": { description: "부티크 레인지파인더의 캐릭터입니다" },
|
|
20
|
+
"fuji-xt4": { description: "필름을 에뮬레이션하는 Fuji 컬러입니다" },
|
|
21
|
+
"drone-aerial": { label: "드론 (항공)", description: "오버헤드 짐벌 안정화 항공 촬영입니다" },
|
|
22
|
+
"gopro-action-cam": { label: "GoPro 액션캠", description: "어안 와이드 액션 카메라입니다" },
|
|
23
|
+
"webcam-facetime": { label: "웹캠 / FaceTime", description: "저해상도 화상 통화 룩입니다" },
|
|
24
|
+
"vhs": { description: "테이프 왜곡과 스캔라인입니다" },
|
|
25
|
+
"camcorder": { label: "캠코더", description: "90년대 소비자용 비디오입니다" },
|
|
26
|
+
"polaroid": { label: "폴라로이드", description: "인스턴트 필름 톤입니다" },
|
|
27
|
+
"fuji-instax": { description: "모던 인스턴트 필름입니다" },
|
|
28
|
+
"disposable-camera": { label: "일회용 카메라", description: "일회용 90년대/2000년대 필름입니다" },
|
|
29
|
+
"toy-camera-holga": { label: "토이 카메라 (Holga)", description: "Holga / Lomo 플라스틱 렌즈의 로파이 룩입니다" },
|
|
30
|
+
"tintype-wet-plate": { label: "틴타입 / Wet Plate", description: "빈티지 wet-plate 콜로디온 프로세스입니다" },
|
|
31
|
+
"daguerreotype": { description: "1840년대 은판 사진 프로세스입니다" },
|
|
32
|
+
"security-cam": { label: "보안 카메라 (CCTV)", description: "어안 렌즈와 타임스탬프 오버레이가 있는 CCTV 화면입니다" },
|
|
33
|
+
"bw-film": { label: "흑백 필름", description: "흑백 필름 스톡입니다" },
|
|
34
|
+
"iphone": { label: "아이폰", description: "모던한 폰 카메라 룩입니다" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Film stocks (most labels are technical units / brand-adjacent — kept as-is)
|
|
5
|
+
"35mm-film": { label: "Filme 35mm", description: "Granulação clássica do cinema em filme" },
|
|
6
|
+
"16mm-film": { label: "Filme 16mm", description: "Granulação indie / documental" },
|
|
7
|
+
"super-8": { description: "Visual vintage de filme caseiro 8mm" },
|
|
8
|
+
"imax-70mm": { description: "Clareza pristina de grande formato" },
|
|
9
|
+
"anamorphic-scope": { description: "Visão widescreen 2.39:1 de cinema" },
|
|
10
|
+
|
|
11
|
+
// Modern digital — camera body brands kept as-is
|
|
12
|
+
"arri-alexa": { description: "Cinema digital premium" },
|
|
13
|
+
"alexa-65": { description: "Cinema de grande formato 65mm de classe IMAX" },
|
|
14
|
+
"sony-venice": { description: "Cinema full-frame com ISO de base dupla" },
|
|
15
|
+
"blackmagic-pocket-6k": { description: "Câmera de cinema indie em RAW" },
|
|
16
|
+
"red-komodo": { description: "Câmera de cinema de ação 6K compacta" },
|
|
17
|
+
"dslr": { description: "Visual nítido de DSLR em vídeo" },
|
|
18
|
+
"mirrorless-a7iii": { description: "Mirrorless híbrida moderna" },
|
|
19
|
+
"canon-r5": { description: "Mirrorless de alta resolução para moda editorial" },
|
|
20
|
+
"hasselblad-medium-format": { description: "Médio formato editorial" },
|
|
21
|
+
"leica-m-rangefinder": { description: "Telêmetro 35mm clássico" },
|
|
22
|
+
"voigtlander": { description: "Caráter boutique de telêmetro" },
|
|
23
|
+
"fuji-xt4": { description: "Cor Fuji emulando filme" },
|
|
24
|
+
|
|
25
|
+
// Aerial / action
|
|
26
|
+
"drone-aerial": { label: "Drone (Aéreo)", description: "Aérea estabilizada por gimbal de drone" },
|
|
27
|
+
"gopro-action-cam": { label: "Câmera de Ação GoPro", description: "Câmera de ação fisheye grande-angular" },
|
|
28
|
+
|
|
29
|
+
// Lo-fi modern
|
|
30
|
+
"webcam-facetime": { label: "Webcam / FaceTime", description: "Vídeo-chamada de baixa resolução" },
|
|
31
|
+
|
|
32
|
+
// Vintage / lo-fi
|
|
33
|
+
"vhs": { description: "Distorção de fita + scanlines" },
|
|
34
|
+
"camcorder": { label: "Camcorder", description: "Vídeo doméstico dos anos 90" },
|
|
35
|
+
"polaroid": { description: "Tonalidade de filme instantâneo" },
|
|
36
|
+
"fuji-instax": { description: "Filme instantâneo moderno" },
|
|
37
|
+
"disposable-camera": { label: "Câmera Descartável", description: "Filme descartável de uso único dos anos 90/2000" },
|
|
38
|
+
"toy-camera-holga": { label: "Câmera de Brinquedo (Holga)", description: "Holga / Lomo lo-fi com lente de plástico" },
|
|
39
|
+
"tintype-wet-plate": { description: "Wet plate colódio vintage" },
|
|
40
|
+
"daguerreotype": { description: "Processo de prata em espelho dos anos 1840" },
|
|
41
|
+
"security-cam": { label: "Câmera de Segurança (CCTV)", description: "CCTV com fisheye + carimbo de hora" },
|
|
42
|
+
"bw-film": { label: "Filme P&B", description: "Filme em preto e branco" },
|
|
43
|
+
"iphone": { description: "Visual moderno de câmera de celular" },
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export default map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Film stocks (technical units & brand names — keep label English)
|
|
5
|
+
"35mm-film": { description: "Классическое кинозерно" },
|
|
6
|
+
"16mm-film": { description: "Инди / документальное зерно" },
|
|
7
|
+
"super-8": { description: "Винтажный домашний 8-мм вид" },
|
|
8
|
+
"imax-70mm": { description: "Безупречная чёткость большого формата" },
|
|
9
|
+
"anamorphic-scope": { description: "Широкоэкранный кинолук 2.39:1" },
|
|
10
|
+
// Modern digital — brand names kept
|
|
11
|
+
"arri-alexa": { description: "Премиальная цифровая киносъёмка" },
|
|
12
|
+
"alexa-65": { description: "Крупноформатная 65-мм киносъёмка класса IMAX" },
|
|
13
|
+
"sony-venice": { description: "Полнокадровая киносъёмка с двойным базовым ISO" },
|
|
14
|
+
"blackmagic-pocket-6k": { description: "Инди-кинокамера с записью в RAW" },
|
|
15
|
+
"red-komodo": { description: "Компактная экшн-кинокамера 6K" },
|
|
16
|
+
"dslr": { description: "Чёткий вид с зеркальной камеры" },
|
|
17
|
+
"mirrorless-a7iii": { description: "Современный гибридный беззеркальный" },
|
|
18
|
+
"canon-r5": { description: "Беззеркальный с высоким разрешением для модной редакции" },
|
|
19
|
+
"hasselblad-medium-format": { description: "Среднеформатный для журнальных съёмок" },
|
|
20
|
+
"leica-m-rangefinder": { description: "Классический 35-мм дальномер" },
|
|
21
|
+
"voigtlander": { description: "Бутиковый дальномерный характер" },
|
|
22
|
+
"fuji-xt4": { description: "Цвет Fuji, имитирующий плёнку" },
|
|
23
|
+
// Aerial / action
|
|
24
|
+
"drone-aerial": { label: "Дрон (с воздуха)", description: "Воздушная съёмка со стабилизированного подвеса сверху" },
|
|
25
|
+
"gopro-action-cam": { label: "Экшн-камера GoPro", description: "Широкоугольная экшн-камера типа «рыбий глаз»" },
|
|
26
|
+
// Lo-fi modern
|
|
27
|
+
"webcam-facetime": { label: "Веб-камера / FaceTime", description: "Низкое разрешение видеозвонка" },
|
|
28
|
+
// Vintage / lo-fi
|
|
29
|
+
"vhs": { description: "Искажения плёнки и линии развёртки" },
|
|
30
|
+
"camcorder": { label: "Видеокамера", description: "Потребительское видео 90-х" },
|
|
31
|
+
"polaroid": { description: "Тональность мгновенной плёнки" },
|
|
32
|
+
"fuji-instax": { description: "Современная мгновенная плёнка" },
|
|
33
|
+
"disposable-camera": { label: "Одноразовая камера", description: "Одноразовая плёночная камера 90-х/2000-х" },
|
|
34
|
+
"toy-camera-holga": { label: "Игрушечная камера (Holga)", description: "Лоу-фай Holga / Lomo с пластиковой линзой" },
|
|
35
|
+
"tintype-wet-plate": { label: "Тинтайп / Мокрая пластина", description: "Винтажный коллодионный мокрый процесс" },
|
|
36
|
+
"daguerreotype": { label: "Дагерротип", description: "Серебряно-зеркальный процесс 1840-х" },
|
|
37
|
+
"security-cam": { label: "Камера наблюдения (CCTV)", description: "CCTV типа «рыбий глаз» с временной меткой" },
|
|
38
|
+
"bw-film": { label: "Чёрно-белая плёнка", description: "Чёрно-белая плёнка" },
|
|
39
|
+
"iphone": { description: "Современный вид камеры телефона" },
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export default map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Film stocks
|
|
5
|
+
"35mm-film": { label: "35mm 胶片", description: "经典电影胶片颗粒" },
|
|
6
|
+
"16mm-film": { label: "16mm 胶片", description: "独立 / 纪录片颗粒" },
|
|
7
|
+
"super-8": { label: "Super 8 胶片", description: "复古 8mm 家庭电影质感" },
|
|
8
|
+
"imax-70mm": { label: "IMAX 70mm", description: "大画幅的纯净清晰度" },
|
|
9
|
+
"anamorphic-scope": { description: "2.39:1 宽屏电影感" },
|
|
10
|
+
// Modern digital
|
|
11
|
+
"arri-alexa": { description: "顶级数字电影机" },
|
|
12
|
+
"alexa-65": { description: "IMAX 级 65mm 大画幅电影机" },
|
|
13
|
+
"sony-venice": { description: "双原生 ISO 全画幅电影机" },
|
|
14
|
+
"blackmagic-pocket-6k": { description: "RAW 录制的独立电影机" },
|
|
15
|
+
"red-komodo": { description: "紧凑型 6K 运动电影机" },
|
|
16
|
+
"dslr": { label: "数码单反", description: "锐利的视频单反质感" },
|
|
17
|
+
"mirrorless-a7iii": { description: "现代混合无反相机" },
|
|
18
|
+
"canon-r5": { description: "高分辨率时尚大片无反" },
|
|
19
|
+
"hasselblad-medium-format":{ description: "中画幅大片相机" },
|
|
20
|
+
"leica-m-rangefinder": { description: "经典 35mm 旁轴相机" },
|
|
21
|
+
"voigtlander": { description: "精品旁轴相机的独特调性" },
|
|
22
|
+
"fuji-xt4": { description: "胶片调色感的富士色彩" },
|
|
23
|
+
// Aerial / action
|
|
24
|
+
"drone-aerial": { label: "无人机(航拍)", description: "云台稳定的高空航拍" },
|
|
25
|
+
"gopro-action-cam": { label: "GoPro 运动相机", description: "鱼眼广角的运动相机" },
|
|
26
|
+
// Lo-fi modern
|
|
27
|
+
"webcam-facetime": { label: "网络摄像头 / FaceTime", description: "低分辨率视频通话" },
|
|
28
|
+
// Vintage / lo-fi
|
|
29
|
+
"vhs": { label: "VHS 录像带", description: "磁带失真加扫描线" },
|
|
30
|
+
"camcorder": { label: "家用摄像机", description: "90 年代消费级视频" },
|
|
31
|
+
"polaroid": { label: "宝丽来", description: "拍立得即时胶片色调" },
|
|
32
|
+
"fuji-instax": { description: "现代拍立得" },
|
|
33
|
+
"disposable-camera": { label: "一次性相机", description: "90 / 2000 年代一次性胶片" },
|
|
34
|
+
"toy-camera-holga": { label: "玩具相机(Holga)", description: "Holga / Lomo 塑料镜头低保真" },
|
|
35
|
+
"tintype-wet-plate": { label: "锡版 / 湿版法", description: "复古湿版火棉胶工艺" },
|
|
36
|
+
"daguerreotype": { label: "达盖尔银版", description: "1840 年代银版照相工艺" },
|
|
37
|
+
"security-cam": { label: "监控摄像头(CCTV)", description: "鱼眼加时间戳的监控画面" },
|
|
38
|
+
"bw-film": { label: "黑白胶片", description: "黑白胶片质感" },
|
|
39
|
+
"iphone": { label: "iPhone", description: "现代手机相机质感" },
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export default map
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"auto": { label: "تلقائي", description: "اترك النموذج يختار حركة الكاميرا المناسبة" },
|
|
5
|
+
"static": { label: "ثابت", description: "كاميرا ثابتة، بدون حركة" },
|
|
6
|
+
"handheld": { label: "محمول باليد", description: "اهتزاز طبيعي محمول باليد" },
|
|
7
|
+
"steadicam": { label: "Steadicam", description: "لقطة مشي سلسة مثبتة" },
|
|
8
|
+
|
|
9
|
+
"pan-left": { label: "لقطة بانورامية لليسار", description: "تدوير الكاميرا أفقيا لليسار" },
|
|
10
|
+
"pan-right": { label: "لقطة بانورامية لليمين", description: "تدوير الكاميرا أفقيا لليمين" },
|
|
11
|
+
"whip-pan-left": { label: "Whip Pan لليسار", description: "بان سريع لليسار مع ضبابية حركة" },
|
|
12
|
+
"whip-pan-right": { label: "Whip Pan لليمين", description: "بان سريع لليمين مع ضبابية حركة" },
|
|
13
|
+
|
|
14
|
+
"tilt-up": { label: "إمالة لأعلى", description: "إمالة الكاميرا لأعلى" },
|
|
15
|
+
"tilt-down": { label: "إمالة لأسفل", description: "إمالة الكاميرا لأسفل" },
|
|
16
|
+
|
|
17
|
+
"zoom-in": { label: "تقريب", description: "تقريب العدسة نحو الموضوع" },
|
|
18
|
+
"zoom-out": { label: "تبعيد", description: "تبعيد العدسة عن الموضوع" },
|
|
19
|
+
"crash-zoom-in": { label: "Crash Zoom تقريب", description: "تقريب سريع بأسلوب Whip" },
|
|
20
|
+
"crash-zoom-out": { label: "Crash Zoom تبعيد", description: "تبعيد سريع بأسلوب Whip" },
|
|
21
|
+
|
|
22
|
+
"dolly-in": { label: "Dolly In", description: "دفع الكاميرا نحو الموضوع (تباين منظور)" },
|
|
23
|
+
"dolly-out": { label: "Dolly Out", description: "سحب الكاميرا للخلف (تباين منظور)" },
|
|
24
|
+
"dolly-zoom": { label: "Dolly Zoom", description: "تأثير Vertigo: Dolly يعاكس Zoom" },
|
|
25
|
+
"push-in": { label: "Push In", description: "دفع بطيء خفيف نحو الموضوع" },
|
|
26
|
+
"pull-out": { label: "Pull Out", description: "سحب بطيء خفيف عن الموضوع" },
|
|
27
|
+
"breathing": { label: "كاميرا تتنفس", description: "تذبذب مستمر خفيف من الدفع والسحب، إحساس عضوي بالكاميرا المحمولة باليد" },
|
|
28
|
+
"push-pull": { label: "Push-Pull / تأرجح", description: "تتحرك الكاميرا نحو الموضوع ثم تعود للخلف، اقتراب وانسحاب متأرجح" },
|
|
29
|
+
"creep-in": { label: "Creep-In", description: "Push-in بطيء بشكل غير محسوس يبني الرعب أو التوتر" },
|
|
30
|
+
"creep-out": { label: "Creep-Out", description: "Pull-out بطيء بشكل غير محسوس يعزل الموضوع في الفضاء" },
|
|
31
|
+
|
|
32
|
+
"truck-left": { label: "Truck لليسار", description: "انزلاق جسم الكاميرا أفقيا لليسار" },
|
|
33
|
+
"truck-right": { label: "Truck لليمين", description: "انزلاق جسم الكاميرا أفقيا لليمين" },
|
|
34
|
+
|
|
35
|
+
"pedestal-up": { label: "Pedestal لأعلى", description: "رفع جسم الكاميرا عموديا" },
|
|
36
|
+
"pedestal-down": { label: "Pedestal لأسفل", description: "خفض جسم الكاميرا عموديا" },
|
|
37
|
+
|
|
38
|
+
"roll-left": { label: "Roll لليسار", description: "تدوير الكاميرا عكس عقارب الساعة" },
|
|
39
|
+
"roll-right": { label: "Roll لليمين", description: "تدوير الكاميرا مع عقارب الساعة" },
|
|
40
|
+
"dutch-angle": { label: "Dutch Angle", description: "إطار ثابت مائل للتوتر" },
|
|
41
|
+
|
|
42
|
+
"orbit-left": { label: "دوران Orbit يسار", description: "دائرة كاملة حول الموضوع لليسار" },
|
|
43
|
+
"orbit-right": { label: "دوران Orbit يمين", description: "دائرة كاملة حول الموضوع لليمين" },
|
|
44
|
+
"spin-360": { label: "دوران كامل 360°", description: "تدور الكاميرا 360 درجة كاملة حول محورها" },
|
|
45
|
+
"orbit-360": { label: "Orbit كامل 360°", description: "تتحرك الكاميرا في قوس كامل 360 درجة حول الموضوع" },
|
|
46
|
+
"arc-left": { label: "قوس Arc يسار", description: "قوس جزئي حول الموضوع لليسار" },
|
|
47
|
+
"arc-right": { label: "قوس Arc يمين", description: "قوس جزئي حول الموضوع لليمين" },
|
|
48
|
+
|
|
49
|
+
"crane-up": { label: "Crane لأعلى", description: "ارتفاع رافعة كاسح يكشف المشهد" },
|
|
50
|
+
"crane-down": { label: "Crane لأسفل", description: "نزول رافعة كاسح" },
|
|
51
|
+
"boom-up": { label: "Boom لأعلى", description: "رفع ذراع Boom" },
|
|
52
|
+
"boom-down": { label: "Boom لأسفل", description: "نزول ذراع Boom" },
|
|
53
|
+
|
|
54
|
+
"tracking-shot": { label: "لقطة تتبع", description: "الكاميرا تتعقب الموضوع المتحرك بجانبه" },
|
|
55
|
+
"follow": { label: "متابعة", description: "اتباع الموضوع من الخلف" },
|
|
56
|
+
"lead": { label: "تقدم", description: "التحرك أمام الموضوع المتقدم" },
|
|
57
|
+
"drone-follow": { label: "متابعة بالدرون", description: "درون مرتفع يتتبع الموضوع" },
|
|
58
|
+
"dolly-track": { label: "Dolly Track", description: "Dolly على مسار مواز بجانب الموضوع" },
|
|
59
|
+
"gimbal-walk": { label: "مشي بالـ Gimbal", description: "لقطة مشي سلسة على gimbal ثلاثي المحاور، حركة أمامية ثابتة عائمة" },
|
|
60
|
+
"ronin-glide": { label: "انزلاق Ronin", description: "حركة انزلاق بطيئة على gimbal Ronin / Movi، طفو سينمائي بدون اهتزاز" },
|
|
61
|
+
"serpentine": { label: "مسار متعرج", description: "تنسج الكاميرا بين العقبات في منحنيات S، مسار أمامي متلوّ" },
|
|
62
|
+
|
|
63
|
+
"pov": { label: "POV", description: "منظور الشخص الأول" },
|
|
64
|
+
"over-the-shoulder": { label: "فوق الكتف", description: "تأطير عبر كتف الشخصية" },
|
|
65
|
+
"birds-eye": { label: "عين الطائر", description: "منظر علوي مباشر من فوق" },
|
|
66
|
+
"worms-eye": { label: "عين الدودة", description: "زاوية منخفضة جدا تنظر للأعلى" },
|
|
67
|
+
"aerial": { label: "جوي", description: "لقطة بأسلوب درون من ارتفاع عال" },
|
|
68
|
+
"helicopter": { label: "هليكوبتر", description: "لقطة جوية واسعة كاسحة من ارتفاع عال" },
|
|
69
|
+
"fly-over": { label: "تحليق فوق", description: "تمرير جوي سريع منخفض فوق المشهد" },
|
|
70
|
+
"flythrough": { label: "تحليق عبر", description: "الكاميرا تطير عبر الفضاء" },
|
|
71
|
+
"reveal": { label: "كشف", description: "كشف تدريجي لمشهد أوسع" },
|
|
72
|
+
"snorricam": { label: "Snorricam", description: "كاميرا مثبتة على الجسم (الموضوع مقفل في الإطار)" },
|
|
73
|
+
"rack-focus": { label: "Rack Focus", description: "نقل التركيز بين المقدمة والخلفية" },
|
|
74
|
+
|
|
75
|
+
"handheld-vlog": { label: "Handheld Vlog", description: "محمول باليد بأسلوب Vlog عفوي" },
|
|
76
|
+
"pov-walk": { label: "POV مشي", description: "مشي بمنظور الشخص الأول" },
|
|
77
|
+
"velocity-edit": { label: "Velocity Edit", description: "إيقاع Speed-Ramp بأسلوب TikTok" },
|
|
78
|
+
"match-cut-zoom": { label: "Match Cut Zoom", description: "تقريب موقت على الإيقاع للقطع" },
|
|
79
|
+
"screen-tap": { label: "Screen Tap", description: "انتقال نقر إصبع على الشاشة" },
|
|
80
|
+
"phone-flip": { label: "قلب الهاتف", description: "قلب الكاميرا الأمامية/الخلفية" },
|
|
81
|
+
// Location-studio extension (PR #2505 follow-up)
|
|
82
|
+
"gentle-drift": { label: "انجراف لطيف", description: "حركة عائمة محيطة بطيئة" },
|
|
83
|
+
"parallax": { label: "اختلاف المنظر", description: "حركة جانبية مع فصل عمق بين المقدمة والخلفية" },
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export default map
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"auto": { label: "Automatisch", description: "Modell wählt passende Kamerabewegung" },
|
|
5
|
+
"static": { label: "Statisch", description: "Feste Kamera, keine Bewegung" },
|
|
6
|
+
"handheld": { label: "Handgehalten", description: "Natürliches Handkamera-Wackeln" },
|
|
7
|
+
"steadicam": { description: "Glatter stabilisierter Walking Shot" },
|
|
8
|
+
"pan-left": { label: "Schwenk nach links", description: "Kamera horizontal nach links drehen" },
|
|
9
|
+
"pan-right": { label: "Schwenk nach rechts", description: "Kamera horizontal nach rechts drehen" },
|
|
10
|
+
"whip-pan-left": { label: "Whip-Pan nach links", description: "Schneller Whip-Pan nach links mit Bewegungsunschärfe" },
|
|
11
|
+
"whip-pan-right": { label: "Whip-Pan nach rechts", description: "Schneller Whip-Pan nach rechts mit Bewegungsunschärfe" },
|
|
12
|
+
"tilt-up": { label: "Neigung nach oben", description: "Kamera nach oben neigen" },
|
|
13
|
+
"tilt-down": { label: "Neigung nach unten", description: "Kamera nach unten neigen" },
|
|
14
|
+
"zoom-in": { label: "Hineinzoomen", description: "Objektiv zoomt zum Motiv hin" },
|
|
15
|
+
"zoom-out": { label: "Herauszoomen", description: "Objektiv zoomt vom Motiv weg" },
|
|
16
|
+
"crash-zoom-in": { label: "Crash-Zoom hinein", description: "Schneller Whip-Style-Zoom hinein" },
|
|
17
|
+
"crash-zoom-out": { label: "Crash-Zoom heraus", description: "Schneller Whip-Style-Zoom heraus" },
|
|
18
|
+
"dolly-in": { label: "Dolly hinein", description: "Kamera zum Motiv schieben (Parallaxe)" },
|
|
19
|
+
"dolly-out": { label: "Dolly heraus", description: "Kamera wegziehen (Parallaxe)" },
|
|
20
|
+
"dolly-zoom": { description: "Vertigo-Effekt: Dolly entgegen Zoom" },
|
|
21
|
+
"push-in": { label: "Push-In", description: "Langsames sanftes Schieben zum Motiv" },
|
|
22
|
+
"pull-out": { label: "Pull-Out", description: "Langsames sanftes Zurückziehen vom Motiv" },
|
|
23
|
+
"breathing": { label: "Atmende Kamera", description: "Subtile, kontinuierliche Push-In/Pull-Out-Oszillation, organisches Handkamera-Gefühl" },
|
|
24
|
+
"push-pull": { label: "Push-Pull / Schwingen", description: "Kamera bewegt sich zum Motiv und wieder zurück, schwingende Annäherung und Rückzug" },
|
|
25
|
+
"creep-in": { label: "Creep-In", description: "Unmerklich langsames Heranschieben, baut Bedrohung oder Spannung auf" },
|
|
26
|
+
"creep-out": { label: "Creep-Out", description: "Unmerklich langsames Zurückziehen, isoliert das Motiv im Raum" },
|
|
27
|
+
"truck-left": { label: "Truck nach links", description: "Kamerakörper seitlich nach links gleiten" },
|
|
28
|
+
"truck-right": { label: "Truck nach rechts", description: "Kamerakörper seitlich nach rechts gleiten" },
|
|
29
|
+
"pedestal-up": { label: "Pedestal nach oben", description: "Kamerakörper vertikal anheben" },
|
|
30
|
+
"pedestal-down": { label: "Pedestal nach unten", description: "Kamerakörper vertikal absenken" },
|
|
31
|
+
"roll-left": { label: "Rollen nach links", description: "Kamera gegen den Uhrzeigersinn drehen" },
|
|
32
|
+
"roll-right": { label: "Rollen nach rechts", description: "Kamera im Uhrzeigersinn drehen" },
|
|
33
|
+
"dutch-angle": { description: "Statischer geneigter Bildausschnitt für Spannung" },
|
|
34
|
+
"orbit-left": { label: "Orbit nach links", description: "Vollkreis um das Motiv nach links" },
|
|
35
|
+
"orbit-right": { label: "Orbit nach rechts", description: "Vollkreis um das Motiv nach rechts" },
|
|
36
|
+
"spin-360": { label: "Volle 360°-Drehung", description: "Kamera dreht sich vollständig um 360 Grad um die eigene Achse" },
|
|
37
|
+
"orbit-360": { label: "Voller 360°-Orbit", description: "Kamera beschreibt einen vollständigen 360-Grad-Bogen um das Motiv" },
|
|
38
|
+
"arc-left": { label: "Bogen nach links", description: "Teilbogen um das Motiv nach links" },
|
|
39
|
+
"arc-right": { label: "Bogen nach rechts", description: "Teilbogen um das Motiv nach rechts" },
|
|
40
|
+
"crane-up": { label: "Kran nach oben", description: "Schwungvoller Kranaufstieg, der die Szene enthüllt" },
|
|
41
|
+
"crane-down": { label: "Kran nach unten", description: "Schwungvolle Krananabwärtsfahrt" },
|
|
42
|
+
"boom-up": { label: "Boom nach oben", description: "Boom-Arm-Aufstieg" },
|
|
43
|
+
"boom-down": { label: "Boom nach unten", description: "Boom-Arm-Abstieg" },
|
|
44
|
+
"tracking-shot": { label: "Tracking-Aufnahme", description: "Kamera verfolgt sich bewegendes Motiv seitlich" },
|
|
45
|
+
"follow": { label: "Folgen", description: "Motiv von hinten verfolgen" },
|
|
46
|
+
"lead": { label: "Vorausgehen", description: "Vor dem vorrückenden Motiv her bewegen" },
|
|
47
|
+
"drone-follow": { label: "Drohnen-Verfolgung", description: "Erhöhte Drohnenverfolgung des Motivs" },
|
|
48
|
+
"dolly-track": { description: "Dolly auf paralleler Schiene neben dem Motiv" },
|
|
49
|
+
"gimbal-walk": { label: "Gimbal-Gang", description: "Geschmeidige Walking-Aufnahme auf 3-Achsen-Gimbal, schwebende stabile Vorwärtsbewegung" },
|
|
50
|
+
"ronin-glide": { label: "Ronin-Gleiten", description: "Langsame gleitende Bewegung auf Ronin- / Movi-Gimbal, kinematografisches Schweben ohne Wackeln" },
|
|
51
|
+
"serpentine": { label: "Serpentinen-Tracking", description: "Kamera schlängelt sich in S-Kurven durch Hindernisse, kurvenreicher Vorwärtsweg" },
|
|
52
|
+
"pov": { label: "POV", description: "First-Person-Sichtweise" },
|
|
53
|
+
"over-the-shoulder": { label: "Over the Shoulder", description: "Aufnahme über die Schulter einer Person" },
|
|
54
|
+
"birds-eye": { label: "Vogelperspektive", description: "Direkte Ansicht von oben" },
|
|
55
|
+
"worms-eye": { label: "Froschperspektive", description: "Extremer Tiefblick nach oben" },
|
|
56
|
+
"aerial": { label: "Luftaufnahme", description: "Drohnenaufnahme aus großer Höhe" },
|
|
57
|
+
"helicopter": { label: "Helikopter", description: "Weitläufige Luftaufnahme aus großer Höhe" },
|
|
58
|
+
"fly-over": { label: "Überflug", description: "Niedriger schneller Luftvorbeiflug über die Szene" },
|
|
59
|
+
"flythrough": { label: "Durchflug", description: "Kamera fliegt durch den Raum" },
|
|
60
|
+
"reveal": { label: "Enthüllung", description: "Allmähliche Enthüllung der weiteren Szene" },
|
|
61
|
+
"snorricam": { description: "Körpermontierte Kamera (Motiv ist im Bild fixiert)" },
|
|
62
|
+
"rack-focus": { label: "Rack Focus", description: "Fokuswechsel zwischen Vorder- und Hintergrund" },
|
|
63
|
+
"handheld-vlog": { label: "Handgehaltenes Vlog", description: "Lässige vlog-artige Handkamera" },
|
|
64
|
+
"pov-walk": { label: "POV-Gehen", description: "First-Person-Walking-POV" },
|
|
65
|
+
"velocity-edit": { description: "TikTok-Speed-Ramp-Tempo" },
|
|
66
|
+
"match-cut-zoom": { description: "Beat-getakteter Zoom für Schnitte" },
|
|
67
|
+
"screen-tap": { label: "Screen-Tap", description: "On-Screen-Fingertipp-Übergang" },
|
|
68
|
+
"phone-flip": { label: "Phone-Flip", description: "Front-/Rückkamera-Wechsel" },
|
|
69
|
+
// Location-studio extension (PR #2505 follow-up)
|
|
70
|
+
"gentle-drift": { label: "Sanfte Drift", description: "Langsame schwebende Umgebungsbewegung" },
|
|
71
|
+
"parallax": { label: "Parallaxe", description: "Seitliche Bewegung mit Tiefentrennung zwischen Vorder- und Hintergrund" },
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export default map
|