@nodaro/shared 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +32 -0
- package/dist/index.cjs +12506 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +12269 -0
- package/dist/index.d.ts +12269 -0
- package/dist/index.js +11831 -0
- package/dist/index.js.map +1 -0
- package/package.json +54 -0
- package/src/__tests__/__snapshots__/prompt-builder-segments.test.ts.snap +65 -0
- package/src/__tests__/ai-avatar-pricing.test.ts +321 -0
- package/src/__tests__/apply-video-negative-prompt.test.ts +76 -0
- package/src/__tests__/attach-columns.test.ts +28 -0
- package/src/__tests__/audio-crossfade-curves.test.ts +33 -0
- package/src/__tests__/build-model-menu.test.ts +58 -0
- package/src/__tests__/character-aspect-defaults.test.ts +142 -0
- package/src/__tests__/character-mention-slug.test.ts +199 -0
- package/src/__tests__/character-reference-photo-kinds.test.ts +32 -0
- package/src/__tests__/character-usage-mode.test.ts +147 -0
- package/src/__tests__/character-variant-assets.test.ts +142 -0
- package/src/__tests__/character-voice.test.ts +130 -0
- package/src/__tests__/cinematic-avatar-pricing.test.ts +119 -0
- package/src/__tests__/combine-transitions.test.ts +137 -0
- package/src/__tests__/component-types.test.ts +87 -0
- package/src/__tests__/condition-variables.test.ts +98 -0
- package/src/__tests__/credit-identifiers.test.ts +811 -0
- package/src/__tests__/default-video-provider.test.ts +63 -0
- package/src/__tests__/entity-image-handle.test.ts +43 -0
- package/src/__tests__/entity-variants.test.ts +33 -0
- package/src/__tests__/fal-lip-sync-sets.test.ts +31 -0
- package/src/__tests__/featured-entities.test.ts +33 -0
- package/src/__tests__/film-pricing.test.ts +64 -0
- package/src/__tests__/filter-condition.test.ts +285 -0
- package/src/__tests__/freecut-protocol.test.ts +35 -0
- package/src/__tests__/generate-text-items.test.ts +19 -0
- package/src/__tests__/generated-results.test.ts +50 -0
- package/src/__tests__/graph-utils.test.ts +618 -0
- package/src/__tests__/group-aggregation.test.ts +83 -0
- package/src/__tests__/i18n-locale-completeness.test.ts +156 -0
- package/src/__tests__/image-critic-node.test.ts +86 -0
- package/src/__tests__/image-mask-mode.test.ts +16 -0
- package/src/__tests__/image-ref-limit.test.ts +78 -0
- package/src/__tests__/inpaint-region.test.ts +24 -0
- package/src/__tests__/input-field-map-parity.test.ts +30 -0
- package/src/__tests__/json-evaluator.test.ts +289 -0
- package/src/__tests__/json-path.test.ts +64 -0
- package/src/__tests__/lip-sync-pricing.test.ts +142 -0
- package/src/__tests__/list-merge.test.ts +96 -0
- package/src/__tests__/list-sort.test.ts +134 -0
- package/src/__tests__/llm-models.test.ts +445 -0
- package/src/__tests__/location-mention-slug.test.ts +246 -0
- package/src/__tests__/locations-coverage-critic-schema.test.ts +92 -0
- package/src/__tests__/loop-delimiter.test.ts +39 -0
- package/src/__tests__/lottie-slots.test.ts +245 -0
- package/src/__tests__/model-catalog-flux2-resolutions.test.ts +21 -0
- package/src/__tests__/model-constants-location.test.ts +20 -0
- package/src/__tests__/model-constants.test.ts +122 -0
- package/src/__tests__/model-tree.test.ts +86 -0
- package/src/__tests__/no-internal-imports.test.ts +25 -0
- package/src/__tests__/node-default-mappings.test.ts +175 -0
- package/src/__tests__/node-mappable-fields.test.ts +7 -0
- package/src/__tests__/node-preset-export.test.ts +46 -0
- package/src/__tests__/node-preset-extract.test.ts +166 -0
- package/src/__tests__/node-refs-canonical.test.ts +54 -0
- package/src/__tests__/node-refs-combine.test.ts +54 -0
- package/src/__tests__/node-refs.test.ts +187 -0
- package/src/__tests__/node-runtime-keys.test.ts +99 -0
- package/src/__tests__/object-aspect-defaults.test.ts +59 -0
- package/src/__tests__/parameter-node-value.test.ts +137 -0
- package/src/__tests__/pinterest-url.test.ts +35 -0
- package/src/__tests__/pipeline-chat.test.ts +110 -0
- package/src/__tests__/pipeline-validation.test.ts +98 -0
- package/src/__tests__/presentation-utils.test.ts +1137 -0
- package/src/__tests__/producer-types.test.ts +47 -0
- package/src/__tests__/prompt-length-limits.test.ts +156 -0
- package/src/__tests__/provider-directive-defaults.test.ts +46 -0
- package/src/__tests__/reduce-strategy-registry.test.ts +43 -0
- package/src/__tests__/reference-board-templates.test.ts +33 -0
- package/src/__tests__/reference-roles.test.ts +36 -0
- package/src/__tests__/resolve-field-mappings.test.ts +110 -0
- package/src/__tests__/resolve-pipeline-model.test.ts +76 -0
- package/src/__tests__/scene-node-types.test.ts +80 -0
- package/src/__tests__/scraper-actors.test.ts +67 -0
- package/src/__tests__/seedance-2-catalog.test.ts +18 -0
- package/src/__tests__/seedance-2-credit-id.test.ts +23 -0
- package/src/__tests__/seedance-aspects.test.ts +52 -0
- package/src/__tests__/selector.test.ts +1151 -0
- package/src/__tests__/settled-with-limit.test.ts +214 -0
- package/src/__tests__/social-media-specs.test.ts +129 -0
- package/src/__tests__/sub-workflow-validation.test.ts +88 -0
- package/src/__tests__/switchx-pricing.test.ts +28 -0
- package/src/__tests__/to-connected-references.test.ts +153 -0
- package/src/__tests__/utilities.test.ts +541 -0
- package/src/__tests__/video-analysis-pricing.test.ts +58 -0
- package/src/__tests__/video-analysis.test.ts +63 -0
- package/src/__tests__/video-audio-capability.test.ts +204 -0
- package/src/__tests__/video-gen-providers.test.ts +28 -0
- package/src/__tests__/video-mode-aliases.test.ts +150 -0
- package/src/__tests__/video-ref-limits.test.ts +72 -0
- package/src/__tests__/video-utils.test.ts +303 -0
- package/src/__tests__/voice-changer-models.test.ts +33 -0
- package/src/__tests__/workflow-export-strip.test.ts +46 -0
- package/src/ai-avatar-pricing.ts +213 -0
- package/src/ancestor-refs.ts +48 -0
- package/src/animals.ts +231 -0
- package/src/audio-crossfade-curves.ts +73 -0
- package/src/audio-fx-presets.ts +64 -0
- package/src/avatar-payload-validators.ts +214 -0
- package/src/caption-styles.ts +31 -0
- package/src/character-aspect-defaults.ts +102 -0
- package/src/character-facets.ts +37 -0
- package/src/character-mention-slug.ts +166 -0
- package/src/character-usage-mode.ts +109 -0
- package/src/character-variant-assets.ts +121 -0
- package/src/character-voice.ts +151 -0
- package/src/cinematic-avatar-pricing.ts +111 -0
- package/src/clone-utils.ts +46 -0
- package/src/combine-transitions.ts +482 -0
- package/src/community.ts +112 -0
- package/src/component-types.ts +127 -0
- package/src/condition-variables.ts +65 -0
- package/src/credit-estimators/index.ts +15 -0
- package/src/credit-estimators/video-utils.ts +165 -0
- package/src/credit-identifiers.ts +304 -0
- package/src/entity-approval-types.ts +31 -0
- package/src/entity-aspect-defaults.ts +82 -0
- package/src/entity-asset-types.ts +296 -0
- package/src/entity-image-handle.ts +36 -0
- package/src/extra-refs.ts +139 -0
- package/src/featured-entities.ts +136 -0
- package/src/film-pricing.ts +117 -0
- package/src/filter-condition.ts +250 -0
- package/src/flux2-pricing.ts +18 -0
- package/src/freecut-protocol.ts +52 -0
- package/src/furniture.ts +167 -0
- package/src/generate-text-items.ts +15 -0
- package/src/generated-results.ts +63 -0
- package/src/group-aggregation.ts +75 -0
- package/src/hint-graph-types.ts +18 -0
- package/src/i18n/action-fx.ar.ts +89 -0
- package/src/i18n/action-fx.de.ts +89 -0
- package/src/i18n/action-fx.es.ts +89 -0
- package/src/i18n/action-fx.fr.ts +89 -0
- package/src/i18n/action-fx.he.ts +89 -0
- package/src/i18n/action-fx.hi.ts +89 -0
- package/src/i18n/action-fx.ja.ts +89 -0
- package/src/i18n/action-fx.ko.ts +89 -0
- package/src/i18n/action-fx.pt-BR.ts +89 -0
- package/src/i18n/action-fx.ru.ts +89 -0
- package/src/i18n/action-fx.zh-CN.ts +89 -0
- package/src/i18n/aesthetic.ar.ts +170 -0
- package/src/i18n/aesthetic.de.ts +48 -0
- package/src/i18n/aesthetic.es.ts +169 -0
- package/src/i18n/aesthetic.fr.ts +52 -0
- package/src/i18n/aesthetic.he.ts +169 -0
- package/src/i18n/aesthetic.hi.ts +55 -0
- package/src/i18n/aesthetic.ja.ts +165 -0
- package/src/i18n/aesthetic.ko.ts +169 -0
- package/src/i18n/aesthetic.pt-BR.ts +148 -0
- package/src/i18n/aesthetic.ru.ts +155 -0
- package/src/i18n/aesthetic.zh-CN.ts +172 -0
- package/src/i18n/animals.ar.ts +145 -0
- package/src/i18n/animals.de.ts +144 -0
- package/src/i18n/animals.es.ts +158 -0
- package/src/i18n/animals.fr.ts +144 -0
- package/src/i18n/animals.he.ts +155 -0
- package/src/i18n/animals.hi.ts +157 -0
- package/src/i18n/animals.ja.ts +159 -0
- package/src/i18n/animals.ko.ts +159 -0
- package/src/i18n/animals.pt-BR.ts +157 -0
- package/src/i18n/animals.ru.ts +155 -0
- package/src/i18n/animals.zh-CN.ts +155 -0
- package/src/i18n/atmosphere.ar.ts +49 -0
- package/src/i18n/atmosphere.de.ts +47 -0
- package/src/i18n/atmosphere.es.ts +50 -0
- package/src/i18n/atmosphere.fr.ts +47 -0
- package/src/i18n/atmosphere.he.ts +47 -0
- package/src/i18n/atmosphere.hi.ts +49 -0
- package/src/i18n/atmosphere.ja.ts +49 -0
- package/src/i18n/atmosphere.ko.ts +49 -0
- package/src/i18n/atmosphere.pt-BR.ts +49 -0
- package/src/i18n/atmosphere.ru.ts +47 -0
- package/src/i18n/atmosphere.zh-CN.ts +152 -0
- package/src/i18n/backdrop.ar.ts +53 -0
- package/src/i18n/backdrop.de.ts +46 -0
- package/src/i18n/backdrop.es.ts +54 -0
- package/src/i18n/backdrop.fr.ts +52 -0
- package/src/i18n/backdrop.he.ts +51 -0
- package/src/i18n/backdrop.hi.ts +59 -0
- package/src/i18n/backdrop.ja.ts +61 -0
- package/src/i18n/backdrop.ko.ts +59 -0
- package/src/i18n/backdrop.pt-BR.ts +59 -0
- package/src/i18n/backdrop.ru.ts +57 -0
- package/src/i18n/backdrop.zh-CN.ts +57 -0
- package/src/i18n/camera-format.ar.ts +40 -0
- package/src/i18n/camera-format.de.ts +37 -0
- package/src/i18n/camera-format.es.ts +41 -0
- package/src/i18n/camera-format.fr.ts +37 -0
- package/src/i18n/camera-format.he.ts +37 -0
- package/src/i18n/camera-format.hi.ts +42 -0
- package/src/i18n/camera-format.ja.ts +37 -0
- package/src/i18n/camera-format.ko.ts +37 -0
- package/src/i18n/camera-format.pt-BR.ts +46 -0
- package/src/i18n/camera-format.ru.ts +42 -0
- package/src/i18n/camera-format.zh-CN.ts +42 -0
- package/src/i18n/camera-motions.ar.ts +86 -0
- package/src/i18n/camera-motions.de.ts +74 -0
- package/src/i18n/camera-motions.es.ts +86 -0
- package/src/i18n/camera-motions.fr.ts +86 -0
- package/src/i18n/camera-motions.he.ts +86 -0
- package/src/i18n/camera-motions.hi.ts +99 -0
- package/src/i18n/camera-motions.ja.ts +99 -0
- package/src/i18n/camera-motions.ko.ts +99 -0
- package/src/i18n/camera-motions.pt-BR.ts +99 -0
- package/src/i18n/camera-motions.ru.ts +99 -0
- package/src/i18n/camera-motions.zh-CN.ts +99 -0
- package/src/i18n/character-fx.ar.ts +72 -0
- package/src/i18n/character-fx.de.ts +72 -0
- package/src/i18n/character-fx.es.ts +72 -0
- package/src/i18n/character-fx.fr.ts +72 -0
- package/src/i18n/character-fx.he.ts +72 -0
- package/src/i18n/character-fx.hi.ts +72 -0
- package/src/i18n/character-fx.ja.ts +72 -0
- package/src/i18n/character-fx.ko.ts +72 -0
- package/src/i18n/character-fx.pt-BR.ts +72 -0
- package/src/i18n/character-fx.ru.ts +72 -0
- package/src/i18n/character-fx.zh-CN.ts +72 -0
- package/src/i18n/color-look.ar.ts +50 -0
- package/src/i18n/color-look.de.ts +47 -0
- package/src/i18n/color-look.es.ts +50 -0
- package/src/i18n/color-look.fr.ts +50 -0
- package/src/i18n/color-look.he.ts +49 -0
- package/src/i18n/color-look.hi.ts +52 -0
- package/src/i18n/color-look.ja.ts +54 -0
- package/src/i18n/color-look.ko.ts +54 -0
- package/src/i18n/color-look.pt-BR.ts +54 -0
- package/src/i18n/color-look.ru.ts +52 -0
- package/src/i18n/color-look.zh-CN.ts +53 -0
- package/src/i18n/composition-effects.ar.ts +26 -0
- package/src/i18n/composition-effects.de.ts +25 -0
- package/src/i18n/composition-effects.es.ts +27 -0
- package/src/i18n/composition-effects.fr.ts +25 -0
- package/src/i18n/composition-effects.he.ts +25 -0
- package/src/i18n/composition-effects.hi.ts +27 -0
- package/src/i18n/composition-effects.ja.ts +27 -0
- package/src/i18n/composition-effects.ko.ts +27 -0
- package/src/i18n/composition-effects.pt-BR.ts +25 -0
- package/src/i18n/composition-effects.ru.ts +82 -0
- package/src/i18n/composition-effects.zh-CN.ts +25 -0
- package/src/i18n/era.ar.ts +37 -0
- package/src/i18n/era.de.ts +34 -0
- package/src/i18n/era.es.ts +37 -0
- package/src/i18n/era.fr.ts +37 -0
- package/src/i18n/era.he.ts +36 -0
- package/src/i18n/era.hi.ts +39 -0
- package/src/i18n/era.ja.ts +41 -0
- package/src/i18n/era.ko.ts +39 -0
- package/src/i18n/era.pt-BR.ts +41 -0
- package/src/i18n/era.ru.ts +121 -0
- package/src/i18n/era.zh-CN.ts +39 -0
- package/src/i18n/exposure-settings.ar.ts +28 -0
- package/src/i18n/exposure-settings.de.ts +26 -0
- package/src/i18n/exposure-settings.es.ts +28 -0
- package/src/i18n/exposure-settings.fr.ts +29 -0
- package/src/i18n/exposure-settings.he.ts +28 -0
- package/src/i18n/exposure-settings.hi.ts +31 -0
- package/src/i18n/exposure-settings.ja.ts +31 -0
- package/src/i18n/exposure-settings.ko.ts +31 -0
- package/src/i18n/exposure-settings.pt-BR.ts +31 -0
- package/src/i18n/exposure-settings.ru.ts +31 -0
- package/src/i18n/exposure-settings.zh-CN.ts +31 -0
- package/src/i18n/framing.ar.ts +78 -0
- package/src/i18n/framing.de.ts +73 -0
- package/src/i18n/framing.es.ts +78 -0
- package/src/i18n/framing.fr.ts +78 -0
- package/src/i18n/framing.he.ts +77 -0
- package/src/i18n/framing.hi.ts +82 -0
- package/src/i18n/framing.ja.ts +84 -0
- package/src/i18n/framing.ko.ts +82 -0
- package/src/i18n/framing.pt-BR.ts +84 -0
- package/src/i18n/framing.ru.ts +82 -0
- package/src/i18n/framing.zh-CN.ts +82 -0
- package/src/i18n/furniture.ar.ts +92 -0
- package/src/i18n/furniture.de.ts +93 -0
- package/src/i18n/furniture.es.ts +101 -0
- package/src/i18n/furniture.fr.ts +93 -0
- package/src/i18n/furniture.he.ts +101 -0
- package/src/i18n/furniture.hi.ts +101 -0
- package/src/i18n/furniture.ja.ts +101 -0
- package/src/i18n/furniture.ko.ts +101 -0
- package/src/i18n/furniture.pt-BR.ts +101 -0
- package/src/i18n/furniture.ru.ts +101 -0
- package/src/i18n/furniture.zh-CN.ts +101 -0
- package/src/i18n/held-prop.ar.ts +74 -0
- package/src/i18n/held-prop.de.ts +65 -0
- package/src/i18n/held-prop.es.ts +83 -0
- package/src/i18n/held-prop.fr.ts +74 -0
- package/src/i18n/held-prop.he.ts +73 -0
- package/src/i18n/held-prop.hi.ts +82 -0
- package/src/i18n/held-prop.ja.ts +84 -0
- package/src/i18n/held-prop.ko.ts +84 -0
- package/src/i18n/held-prop.pt-BR.ts +84 -0
- package/src/i18n/held-prop.ru.ts +82 -0
- package/src/i18n/held-prop.zh-CN.ts +82 -0
- package/src/i18n/index.ts +208 -0
- package/src/i18n/instrumentation.ar.ts +195 -0
- package/src/i18n/instrumentation.de.ts +195 -0
- package/src/i18n/instrumentation.es.ts +195 -0
- package/src/i18n/instrumentation.fr.ts +195 -0
- package/src/i18n/instrumentation.he.ts +195 -0
- package/src/i18n/instrumentation.hi.ts +195 -0
- package/src/i18n/instrumentation.ja.ts +195 -0
- package/src/i18n/instrumentation.ko.ts +195 -0
- package/src/i18n/instrumentation.pt-BR.ts +195 -0
- package/src/i18n/instrumentation.ru.ts +195 -0
- package/src/i18n/instrumentation.zh-CN.ts +195 -0
- package/src/i18n/lens.ar.ts +24 -0
- package/src/i18n/lens.de.ts +24 -0
- package/src/i18n/lens.es.ts +24 -0
- package/src/i18n/lens.fr.ts +24 -0
- package/src/i18n/lens.he.ts +24 -0
- package/src/i18n/lens.hi.ts +24 -0
- package/src/i18n/lens.ja.ts +24 -0
- package/src/i18n/lens.ko.ts +24 -0
- package/src/i18n/lens.pt-BR.ts +24 -0
- package/src/i18n/lens.ru.ts +25 -0
- package/src/i18n/lens.zh-CN.ts +24 -0
- package/src/i18n/lighting.ar.ts +86 -0
- package/src/i18n/lighting.de.ts +84 -0
- package/src/i18n/lighting.es.ts +89 -0
- package/src/i18n/lighting.fr.ts +84 -0
- package/src/i18n/lighting.he.ts +88 -0
- package/src/i18n/lighting.hi.ts +90 -0
- package/src/i18n/lighting.ja.ts +90 -0
- package/src/i18n/lighting.ko.ts +90 -0
- package/src/i18n/lighting.pt-BR.ts +90 -0
- package/src/i18n/lighting.ru.ts +88 -0
- package/src/i18n/lighting.zh-CN.ts +92 -0
- package/src/i18n/loop-subject.ar.ts +39 -0
- package/src/i18n/loop-subject.de.ts +39 -0
- package/src/i18n/loop-subject.es.ts +39 -0
- package/src/i18n/loop-subject.fr.ts +39 -0
- package/src/i18n/loop-subject.he.ts +39 -0
- package/src/i18n/loop-subject.hi.ts +39 -0
- package/src/i18n/loop-subject.ja.ts +39 -0
- package/src/i18n/loop-subject.ko.ts +39 -0
- package/src/i18n/loop-subject.pt-BR.ts +39 -0
- package/src/i18n/loop-subject.ru.ts +39 -0
- package/src/i18n/loop-subject.zh-CN.ts +39 -0
- package/src/i18n/materials.ar.ts +80 -0
- package/src/i18n/materials.de.ts +80 -0
- package/src/i18n/materials.es.ts +87 -0
- package/src/i18n/materials.fr.ts +80 -0
- package/src/i18n/materials.he.ts +86 -0
- package/src/i18n/materials.hi.ts +86 -0
- package/src/i18n/materials.ja.ts +88 -0
- package/src/i18n/materials.ko.ts +88 -0
- package/src/i18n/materials.pt-BR.ts +88 -0
- package/src/i18n/materials.ru.ts +86 -0
- package/src/i18n/materials.zh-CN.ts +86 -0
- package/src/i18n/mood.ar.ts +61 -0
- package/src/i18n/mood.de.ts +61 -0
- package/src/i18n/mood.es.ts +66 -0
- package/src/i18n/mood.fr.ts +61 -0
- package/src/i18n/mood.he.ts +64 -0
- package/src/i18n/mood.hi.ts +66 -0
- package/src/i18n/mood.ja.ts +66 -0
- package/src/i18n/mood.ko.ts +66 -0
- package/src/i18n/mood.pt-BR.ts +64 -0
- package/src/i18n/mood.ru.ts +64 -0
- package/src/i18n/mood.zh-CN.ts +64 -0
- package/src/i18n/music-genre.ar.ts +302 -0
- package/src/i18n/music-genre.de.ts +302 -0
- package/src/i18n/music-genre.es.ts +302 -0
- package/src/i18n/music-genre.fr.ts +302 -0
- package/src/i18n/music-genre.he.ts +302 -0
- package/src/i18n/music-genre.hi.ts +302 -0
- package/src/i18n/music-genre.ja.ts +302 -0
- package/src/i18n/music-genre.ko.ts +302 -0
- package/src/i18n/music-genre.pt-BR.ts +302 -0
- package/src/i18n/music-genre.ru.ts +302 -0
- package/src/i18n/music-genre.zh-CN.ts +302 -0
- package/src/i18n/music-mood.ar.ts +75 -0
- package/src/i18n/music-mood.de.ts +75 -0
- package/src/i18n/music-mood.es.ts +75 -0
- package/src/i18n/music-mood.fr.ts +75 -0
- package/src/i18n/music-mood.he.ts +75 -0
- package/src/i18n/music-mood.hi.ts +75 -0
- package/src/i18n/music-mood.ja.ts +75 -0
- package/src/i18n/music-mood.ko.ts +75 -0
- package/src/i18n/music-mood.pt-BR.ts +75 -0
- package/src/i18n/music-mood.ru.ts +75 -0
- package/src/i18n/music-mood.zh-CN.ts +75 -0
- package/src/i18n/person.ar.ts +638 -0
- package/src/i18n/person.de.ts +629 -0
- package/src/i18n/person.es.ts +645 -0
- package/src/i18n/person.fr.ts +621 -0
- package/src/i18n/person.he.ts +656 -0
- package/src/i18n/person.hi.ts +654 -0
- package/src/i18n/person.ja.ts +662 -0
- package/src/i18n/person.ko.ts +662 -0
- package/src/i18n/person.pt-BR.ts +656 -0
- package/src/i18n/person.ru.ts +656 -0
- package/src/i18n/person.zh-CN.ts +656 -0
- package/src/i18n/photo-genre.ar.ts +58 -0
- package/src/i18n/photo-genre.de.ts +52 -0
- package/src/i18n/photo-genre.es.ts +64 -0
- package/src/i18n/photo-genre.fr.ts +58 -0
- package/src/i18n/photo-genre.he.ts +62 -0
- package/src/i18n/photo-genre.hi.ts +63 -0
- package/src/i18n/photo-genre.ja.ts +65 -0
- package/src/i18n/photo-genre.ko.ts +63 -0
- package/src/i18n/photo-genre.pt-BR.ts +65 -0
- package/src/i18n/photo-genre.ru.ts +63 -0
- package/src/i18n/photo-genre.zh-CN.ts +63 -0
- package/src/i18n/photographer.ar.ts +75 -0
- package/src/i18n/photographer.de.ts +74 -0
- package/src/i18n/photographer.es.ts +77 -0
- package/src/i18n/photographer.fr.ts +77 -0
- package/src/i18n/photographer.he.ts +78 -0
- package/src/i18n/photographer.hi.ts +80 -0
- package/src/i18n/photographer.ja.ts +84 -0
- package/src/i18n/photographer.ko.ts +84 -0
- package/src/i18n/photographer.pt-BR.ts +83 -0
- package/src/i18n/photographer.ru.ts +78 -0
- package/src/i18n/photographer.zh-CN.ts +78 -0
- package/src/i18n/pose.ar.ts +95 -0
- package/src/i18n/pose.de.ts +96 -0
- package/src/i18n/pose.es.ts +104 -0
- package/src/i18n/pose.fr.ts +96 -0
- package/src/i18n/pose.he.ts +104 -0
- package/src/i18n/pose.hi.ts +104 -0
- package/src/i18n/pose.ja.ts +104 -0
- package/src/i18n/pose.ko.ts +104 -0
- package/src/i18n/pose.pt-BR.ts +104 -0
- package/src/i18n/pose.ru.ts +104 -0
- package/src/i18n/pose.zh-CN.ts +104 -0
- package/src/i18n/post-process-effects.ar.ts +25 -0
- package/src/i18n/post-process-effects.de.ts +24 -0
- package/src/i18n/post-process-effects.es.ts +26 -0
- package/src/i18n/post-process-effects.fr.ts +24 -0
- package/src/i18n/post-process-effects.he.ts +24 -0
- package/src/i18n/post-process-effects.hi.ts +26 -0
- package/src/i18n/post-process-effects.ja.ts +26 -0
- package/src/i18n/post-process-effects.ko.ts +26 -0
- package/src/i18n/post-process-effects.pt-BR.ts +24 -0
- package/src/i18n/post-process-effects.ru.ts +24 -0
- package/src/i18n/post-process-effects.zh-CN.ts +24 -0
- package/src/i18n/render-quality.ar.ts +34 -0
- package/src/i18n/render-quality.de.ts +30 -0
- package/src/i18n/render-quality.es.ts +35 -0
- package/src/i18n/render-quality.fr.ts +34 -0
- package/src/i18n/render-quality.he.ts +33 -0
- package/src/i18n/render-quality.hi.ts +39 -0
- package/src/i18n/render-quality.ja.ts +39 -0
- package/src/i18n/render-quality.ko.ts +39 -0
- package/src/i18n/render-quality.pt-BR.ts +37 -0
- package/src/i18n/render-quality.ru.ts +37 -0
- package/src/i18n/render-quality.zh-CN.ts +37 -0
- package/src/i18n/seasons.ar.ts +10 -0
- package/src/i18n/seasons.de.ts +10 -0
- package/src/i18n/seasons.es.ts +10 -0
- package/src/i18n/seasons.fr.ts +10 -0
- package/src/i18n/seasons.he.ts +10 -0
- package/src/i18n/seasons.hi.ts +10 -0
- package/src/i18n/seasons.ja.ts +10 -0
- package/src/i18n/seasons.ko.ts +10 -0
- package/src/i18n/seasons.pt-BR.ts +10 -0
- package/src/i18n/seasons.ru.ts +10 -0
- package/src/i18n/seasons.zh-CN.ts +10 -0
- package/src/i18n/setting.ar.ts +73 -0
- package/src/i18n/setting.de.ts +73 -0
- package/src/i18n/setting.es.ts +77 -0
- package/src/i18n/setting.fr.ts +73 -0
- package/src/i18n/setting.he.ts +76 -0
- package/src/i18n/setting.hi.ts +76 -0
- package/src/i18n/setting.ja.ts +78 -0
- package/src/i18n/setting.ko.ts +76 -0
- package/src/i18n/setting.pt-BR.ts +78 -0
- package/src/i18n/setting.ru.ts +76 -0
- package/src/i18n/setting.zh-CN.ts +76 -0
- package/src/i18n/style.ar.ts +55 -0
- package/src/i18n/style.de.ts +54 -0
- package/src/i18n/style.es.ts +54 -0
- package/src/i18n/style.fr.ts +54 -0
- package/src/i18n/style.he.ts +54 -0
- package/src/i18n/style.hi.ts +54 -0
- package/src/i18n/style.ja.ts +54 -0
- package/src/i18n/style.ko.ts +54 -0
- package/src/i18n/style.pt-BR.ts +56 -0
- package/src/i18n/style.ru.ts +54 -0
- package/src/i18n/style.zh-CN.ts +54 -0
- package/src/i18n/styling.ar.ts +295 -0
- package/src/i18n/styling.de.ts +285 -0
- package/src/i18n/styling.es.ts +317 -0
- package/src/i18n/styling.fr.ts +285 -0
- package/src/i18n/styling.he.ts +307 -0
- package/src/i18n/styling.hi.ts +323 -0
- package/src/i18n/styling.ja.ts +317 -0
- package/src/i18n/styling.ko.ts +311 -0
- package/src/i18n/styling.pt-BR.ts +301 -0
- package/src/i18n/styling.ru.ts +301 -0
- package/src/i18n/styling.zh-CN.ts +307 -0
- package/src/i18n/temporal.ar.ts +31 -0
- package/src/i18n/temporal.de.ts +24 -0
- package/src/i18n/temporal.es.ts +27 -0
- package/src/i18n/temporal.fr.ts +28 -0
- package/src/i18n/temporal.he.ts +31 -0
- package/src/i18n/temporal.hi.ts +31 -0
- package/src/i18n/temporal.ja.ts +31 -0
- package/src/i18n/temporal.ko.ts +31 -0
- package/src/i18n/temporal.pt-BR.ts +31 -0
- package/src/i18n/temporal.ru.ts +31 -0
- package/src/i18n/temporal.zh-CN.ts +31 -0
- package/src/i18n/transitions.ar.ts +97 -0
- package/src/i18n/transitions.de.ts +97 -0
- package/src/i18n/transitions.es.ts +97 -0
- package/src/i18n/transitions.fr.ts +97 -0
- package/src/i18n/transitions.he.ts +97 -0
- package/src/i18n/transitions.hi.ts +97 -0
- package/src/i18n/transitions.ja.ts +97 -0
- package/src/i18n/transitions.ko.ts +97 -0
- package/src/i18n/transitions.pt-BR.ts +97 -0
- package/src/i18n/transitions.ru.ts +97 -0
- package/src/i18n/transitions.zh-CN.ts +97 -0
- package/src/i18n/types.ts +158 -0
- package/src/i18n/vehicles.ar.ts +137 -0
- package/src/i18n/vehicles.de.ts +125 -0
- package/src/i18n/vehicles.es.ts +138 -0
- package/src/i18n/vehicles.fr.ts +125 -0
- package/src/i18n/vehicles.he.ts +136 -0
- package/src/i18n/vehicles.hi.ts +138 -0
- package/src/i18n/vehicles.ja.ts +138 -0
- package/src/i18n/vehicles.ko.ts +138 -0
- package/src/i18n/vehicles.pt-BR.ts +136 -0
- package/src/i18n/vehicles.ru.ts +136 -0
- package/src/i18n/vehicles.zh-CN.ts +136 -0
- package/src/i18n/voice-character.ar.ts +126 -0
- package/src/i18n/voice-character.de.ts +126 -0
- package/src/i18n/voice-character.es.ts +126 -0
- package/src/i18n/voice-character.fr.ts +126 -0
- package/src/i18n/voice-character.he.ts +126 -0
- package/src/i18n/voice-character.hi.ts +126 -0
- package/src/i18n/voice-character.ja.ts +126 -0
- package/src/i18n/voice-character.ko.ts +126 -0
- package/src/i18n/voice-character.pt-BR.ts +126 -0
- package/src/i18n/voice-character.ru.ts +126 -0
- package/src/i18n/voice-character.zh-CN.ts +126 -0
- package/src/i18n/voice-delivery.ar.ts +77 -0
- package/src/i18n/voice-delivery.de.ts +77 -0
- package/src/i18n/voice-delivery.es.ts +77 -0
- package/src/i18n/voice-delivery.fr.ts +77 -0
- package/src/i18n/voice-delivery.he.ts +77 -0
- package/src/i18n/voice-delivery.hi.ts +77 -0
- package/src/i18n/voice-delivery.ja.ts +77 -0
- package/src/i18n/voice-delivery.ko.ts +77 -0
- package/src/i18n/voice-delivery.pt-BR.ts +77 -0
- package/src/i18n/voice-delivery.ru.ts +77 -0
- package/src/i18n/voice-delivery.zh-CN.ts +77 -0
- package/src/i18n/weapons.ar.ts +115 -0
- package/src/i18n/weapons.de.ts +114 -0
- package/src/i18n/weapons.es.ts +116 -0
- package/src/i18n/weapons.fr.ts +103 -0
- package/src/i18n/weapons.he.ts +114 -0
- package/src/i18n/weapons.hi.ts +116 -0
- package/src/i18n/weapons.ja.ts +116 -0
- package/src/i18n/weapons.ko.ts +116 -0
- package/src/i18n/weapons.pt-BR.ts +114 -0
- package/src/i18n/weapons.ru.ts +114 -0
- package/src/i18n/weapons.zh-CN.ts +114 -0
- package/src/image-critic-node.ts +61 -0
- package/src/image-critic-types.ts +40 -0
- package/src/index.ts +866 -0
- package/src/inject-upstream.ts +15 -0
- package/src/inpaint-region.ts +51 -0
- package/src/json-evaluator.ts +732 -0
- package/src/json-path.ts +52 -0
- package/src/lip-sync-pricing.ts +90 -0
- package/src/list-merge.ts +40 -0
- package/src/list-sort.ts +122 -0
- package/src/list-source-resolver.ts +50 -0
- package/src/llm-models.ts +245 -0
- package/src/location-mention-slug.ts +291 -0
- package/src/location-preset-catalog-map.ts +128 -0
- package/src/loop-delimiter.ts +73 -0
- package/src/lora-routing.ts +95 -0
- package/src/lottie-overlay-catalog.ts +175 -0
- package/src/lottie-slots.ts +309 -0
- package/src/model-catalog.ts +2386 -0
- package/src/model-constants.ts +1910 -0
- package/src/model-tree.ts +120 -0
- package/src/monetization.ts +15 -0
- package/src/multi-pick.ts +42 -0
- package/src/node-default-mappings.ts +262 -0
- package/src/node-mappable-fields.ts +70 -0
- package/src/node-preset-export.ts +56 -0
- package/src/node-preset-extract.ts +147 -0
- package/src/node-refs.ts +253 -0
- package/src/node-runtime-keys.ts +117 -0
- package/src/object-aspect-defaults.ts +72 -0
- package/src/object-picker-types.ts +22 -0
- package/src/parameter-node-value.ts +284 -0
- package/src/pinterest-url.ts +28 -0
- package/src/pipeline-chat.ts +72 -0
- package/src/pipeline-defaults.ts +318 -0
- package/src/pipeline-events.ts +162 -0
- package/src/pipeline-state-types.ts +196 -0
- package/src/pipeline-types.ts +647 -0
- package/src/pipeline-validation.ts +87 -0
- package/src/presentation-types.ts +23 -0
- package/src/presentation-utils.ts +397 -0
- package/src/producer-types.ts +188 -0
- package/src/progress-curve.ts +99 -0
- package/src/provider-directive-defaults.ts +69 -0
- package/src/reduce-strategy-registry.ts +121 -0
- package/src/reference-board-templates.ts +81 -0
- package/src/reference-roles.ts +153 -0
- package/src/reference-sheet/__tests__/board-to-column.test.ts +20 -0
- package/src/reference-sheet/__tests__/catalog.test.ts +50 -0
- package/src/reference-sheet/__tests__/cost.test.ts +38 -0
- package/src/reference-sheet/__tests__/no-drift.test.ts +28 -0
- package/src/reference-sheet/__tests__/panel-plan.test.ts +61 -0
- package/src/reference-sheet/__tests__/panel-prompts.test.ts +17 -0
- package/src/reference-sheet/__tests__/plan-generation.test.ts +72 -0
- package/src/reference-sheet/__tests__/presets.test.ts +54 -0
- package/src/reference-sheet/__tests__/types.test.ts +24 -0
- package/src/reference-sheet/catalog.ts +144 -0
- package/src/reference-sheet/cost.ts +37 -0
- package/src/reference-sheet/credit-id.ts +7 -0
- package/src/reference-sheet/index.ts +8 -0
- package/src/reference-sheet/panel-plan.ts +65 -0
- package/src/reference-sheet/panel-prompts.ts +14 -0
- package/src/reference-sheet/plan-generation.ts +79 -0
- package/src/reference-sheet/presets.ts +77 -0
- package/src/reference-sheet/types.ts +92 -0
- package/src/repeat-types.ts +97 -0
- package/src/resolve-field-mappings.ts +119 -0
- package/src/route-filter.ts +80 -0
- package/src/scene-helper-types.ts +249 -0
- package/src/scene-node-types.ts +281 -0
- package/src/scraper-actors.ts +57 -0
- package/src/scraper-output-schemas.ts +25 -0
- package/src/seasons.ts +45 -0
- package/src/selector.ts +864 -0
- package/src/settled-with-limit.ts +42 -0
- package/src/shot-element.ts +43 -0
- package/src/social-media-specs.ts +121 -0
- package/src/social-post.ts +24 -0
- package/src/sub-workflow-validation.ts +78 -0
- package/src/supported-fonts.ts +40 -0
- package/src/surround.ts +113 -0
- package/src/switchx-pricing.ts +33 -0
- package/src/text-separators.ts +59 -0
- package/src/to-connected-references.ts +77 -0
- package/src/types.ts +272 -0
- package/src/variant-job-id.ts +17 -0
- package/src/vehicles.ts +213 -0
- package/src/video-analysis-pricing.ts +74 -0
- package/src/video-analysis.ts +127 -0
- package/src/video-duration.ts +25 -0
- package/src/voice-changer-models.ts +36 -0
- package/src/voice-matcher-types.ts +37 -0
- package/src/voices.ts +92 -0
- package/src/weapons.ts +190 -0
- package/src/workflow-export.ts +153 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// ── Transformation ──
|
|
5
|
+
"auto": { label: "自动", description: "让模型自主选择" },
|
|
6
|
+
"none": { label: "无", description: "无角色特效" },
|
|
7
|
+
"werewolf": { label: "狼人", description: "变身为狼人" },
|
|
8
|
+
"vampire": { label: "吸血鬼", description: "变身为吸血鬼" },
|
|
9
|
+
"cyborg": { label: "赛博格揭示", description: "皮肤裂开露出机械内构" },
|
|
10
|
+
"ghost-form": { label: "灵体化", description: "身体变为半透明的幽灵态" },
|
|
11
|
+
"statue-stone": { label: "石化", description: "身体石化成石像" },
|
|
12
|
+
"liquid-metal": { label: "液态金属", description: "T-1000风格的镜面液态金属形态" },
|
|
13
|
+
"animalization": { label: "动物化", description: "变形为动物" },
|
|
14
|
+
"gorilla-form": { label: "大猩猩形态", description: "变身为银背大猩猩" },
|
|
15
|
+
"mystification": { label: "神秘变身", description: "魔法光环包裹并完成变形" },
|
|
16
|
+
"gas-form": { label: "气态变形", description: "身体消散为气态旋云后重新凝聚" },
|
|
17
|
+
"diamond-skin": { label: "钻石肌肤", description: "皮肤结晶化为钻石切面" },
|
|
18
|
+
"agent-reveal": { label: "特工变装", description: "西装与墨镜迅速出现" },
|
|
19
|
+
|
|
20
|
+
// ── Power ──
|
|
21
|
+
"fire-breathe": { label: "喷火", description: "口吐持续的橙黄色火焰射流" },
|
|
22
|
+
"ice-breathe": { label: "冰息", description: "呼出一道冷冻气流" },
|
|
23
|
+
"air-bending": { label: "御气术", description: "操控旋转的气流漩涡" },
|
|
24
|
+
"water-bending": { label: "御水术", description: "以手势操控流动的水" },
|
|
25
|
+
"earth-bending": { label: "御土术", description: "从地面召唤石板升起" },
|
|
26
|
+
"lightning-hands": { label: "雷电之手", description: "双手迸出蓝白电弧" },
|
|
27
|
+
"levitation": { label: "悬浮", description: "离地升起,身体呈垂直或水平姿势" },
|
|
28
|
+
"telekinesis": { label: "心灵遥控", description: "附近物体漂浮并环绕旋转" },
|
|
29
|
+
"invisibility": { label: "隐身", description: "身体淡化为透明屈光轮廓" },
|
|
30
|
+
"hero-flight": { label: "英雄飞行", description: "以超英姿势腾空而起" },
|
|
31
|
+
"super-speed": { label: "超速", description: "化为模糊的超高速残影" },
|
|
32
|
+
"soul-departure": { label: "灵魂出窍", description: "半透明灵魂从身体中升起" },
|
|
33
|
+
|
|
34
|
+
// ── Body-Mod ──
|
|
35
|
+
"wings-grow": { label: "翅膀生长", description: "背部长出双翼并展开" },
|
|
36
|
+
"horns-grow": { label: "角破皮而出", description: "头部生长出弯曲的角" },
|
|
37
|
+
"tail-emerge": { label: "尾巴伸出", description: "脊椎根部长出尾巴" },
|
|
38
|
+
"tentacles-emerge": { label: "触手伸出", description: "背部或躯干伸出蠕动的触手" },
|
|
39
|
+
"extra-eyes": { label: "额外眼睛睁开", description: "面部和身体各处额外的眼睛依次睁开" },
|
|
40
|
+
"head-explode": { label: "头部爆裂", description: "头部猛烈爆开(PG-13,风格化)" },
|
|
41
|
+
"head-off": { label: "头部脱落", description: "头部平滑脱离飘浮(PG-13,风格化)" },
|
|
42
|
+
"spiders-from-mouth": { label: "口吐蜘蛛", description: "蜘蛛从张开的嘴里爬出(恐怖风格)" },
|
|
43
|
+
"skin-surge": { label: "皮下涌动", description: "皮肤下涌现波浪状运动" },
|
|
44
|
+
|
|
45
|
+
// ── Face-Expression ──
|
|
46
|
+
"horror-face": { label: "恐怖面孔", description: "面部扭曲成恐怖表情" },
|
|
47
|
+
"oni-mask": { label: "鬼面", description: "鬼神面具在脸上显现" },
|
|
48
|
+
"glowing-eyes": { label: "发光眼睛", description: "眼睛从内部点燃发光" },
|
|
49
|
+
"floral-eyes": { label: "花之眼", description: "花朵从眼眶中绽放而出" },
|
|
50
|
+
"bloom-mouth": { label: "花开之口", description: "花朵和藤蔓从张开的嘴中蔓延而出" },
|
|
51
|
+
"x-ray": { label: "X光透视", description: "身体变为X光风格,骨骼清晰可见" },
|
|
52
|
+
"agent-snap": { label: "墨镜弹出", description: "墨镜以明快的视觉节奏扣上" },
|
|
53
|
+
"visor-x": { label: "赛博护目镜", description: "科幻赛博护目镜在眼前显现" },
|
|
54
|
+
|
|
55
|
+
// ── Aura-Ambient ──
|
|
56
|
+
"paparazzi": { label: "狗仔闪光灯", description: "相机闪光灯在主体周围不断弹出" },
|
|
57
|
+
"money-rain": { label: "金钱雨", description: "纸币从上方飘落" },
|
|
58
|
+
"color-rain": { label: "彩色雨", description: "鲜艳彩色雨滴围绕主体飘落" },
|
|
59
|
+
"saint-glow": { label: "圣人光环", description: "光晕与神圣光芒萦绕主体" },
|
|
60
|
+
"fire-aura": { label: "火焰光环", description: "火舌围绕身体轮廓舔舐跳动" },
|
|
61
|
+
"frost-aura": { label: "寒冰光环", description: "霜雪冰晶从主体向外辐射" },
|
|
62
|
+
"shadow-aura": { label: "暗影光环", description: "黑暗触须在主体周围蠕动涌动" },
|
|
63
|
+
"electricity-aura": { label: "电气光环", description: "特斯拉线圈式电弧在主体周围爆裂" },
|
|
64
|
+
"sparkles-around": { label: "魔法闪光", description: "魔法闪光粒子环绕主体旋转" },
|
|
65
|
+
"fairies-around": { label: "仙子围绕", description: "微小的发光仙子在周围嬉戏飞翔" },
|
|
66
|
+
"objects-orbit": { label: "物体环绕", description: "小物体漂浮并环绕主体旋转" },
|
|
67
|
+
"petals-around": { label: "花瓣环绕", description: "樱花花瓣在主体周围轻柔飘落" },
|
|
68
|
+
"glow-trace": { label: "发光轨迹", description: "明亮的轨迹跟随主体每一个动作" },
|
|
69
|
+
"tattoo-animation": { label: "纹身动画", description: "皮肤上的纹身发光并开始动态移动" },
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export default map
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"warm": { label: "دافئ", description: "نغمات برتقالية / حمراء دافئة" },
|
|
5
|
+
"cool": { label: "بارد", description: "نغمات زرقاء / تركوازية باردة" },
|
|
6
|
+
"teal-orange": { label: "تركوازي وبرتقالي", description: "تدرج هوليوودي تكاملي" },
|
|
7
|
+
"split-toning": { label: "Split Toning", description: "ظلال باردة، إبرازات دافئة" },
|
|
8
|
+
"selective-color": { label: "لون انتقائي", description: "أبيض وأسود مع لون مميز واحد" },
|
|
9
|
+
"faded-matte": { label: "Faded Matte", description: "أسود مرفوع، تباين منخفض حليبي" },
|
|
10
|
+
"log-flat": { label: "Log Flat", description: "محايد قبل التدرج S-Log/V-Log" },
|
|
11
|
+
"desaturated": { label: "مخفض التشبع", description: "تشبع منخفض، باهت" },
|
|
12
|
+
"monochrome-bw": { label: "أحادي اللون أبيض وأسود", description: "أبيض وأسود نقي" },
|
|
13
|
+
"sepia": { label: "Sepia", description: "نغمة بنية قديمة" },
|
|
14
|
+
"pastel": { label: "باستيلي", description: "ألوان باستيلية ناعمة منخفضة التباين" },
|
|
15
|
+
"high-contrast": { label: "تباين عال", description: "تباين قوي، أسود عميق" },
|
|
16
|
+
"vibrant": { label: "نابض بالحياة", description: "ألوان عالية التشبع" },
|
|
17
|
+
|
|
18
|
+
"kodak-portra": { description: "نغمات بشرة ناعمة، حبيبات دقيقة" },
|
|
19
|
+
"kodak-ektar": { description: "متشبع، حبيبات دقيقة" },
|
|
20
|
+
"kodak-vision3": { description: "مخزون فيلم سينما متحرك" },
|
|
21
|
+
"fuji-pro-400h": { description: "خضرة وسماء باستيلية" },
|
|
22
|
+
"cinestill-800t": { description: "فيلم تنغستن مع هالة حمراء" },
|
|
23
|
+
"bleach-bypass": { label: "Bleach Bypass", description: "تباين عال، مخفض التشبع" },
|
|
24
|
+
"technicolor": { label: "Technicolor 3-strip", description: "Technicolor زاهي قديم" },
|
|
25
|
+
"two-strip-technicolor": { label: "Two-Strip Technicolor", description: "Technicolor أحمر-أزرق من العشرينيات والثلاثينيات" },
|
|
26
|
+
"eastman-color": { description: "مخزون باهت دافئ من الخمسينيات/الستينيات" },
|
|
27
|
+
"hand-tinted": { label: "ملون يدويا", description: "أبيض وأسود مع لون مرسوم يدويا" },
|
|
28
|
+
"agfa-orwo": { description: "خضرة باردة من أوروبا الشرقية" },
|
|
29
|
+
"day-for-night": { label: "Day-for-Night", description: "نهار متدرج كليل" },
|
|
30
|
+
"cross-processed": { label: "معالج بطريقة Cross", description: "تحولات لونية من Cross-Processing" },
|
|
31
|
+
|
|
32
|
+
"instagram-warm": { label: "Instagram دافئ", description: "فلتر دافئ بأسلوب Valencia" },
|
|
33
|
+
"tiktok-saturated": { label: "TikTok متشبع", description: "لوحة اجتماعية مشرقة قوية" },
|
|
34
|
+
"youtube-vlog-flat": { label: "YouTube Vlog Flat", description: "تدرج Vlog مسطح نظيف" },
|
|
35
|
+
"iphone-hdr": { label: "iPhone HDR", description: "مظهر HDR حسابي" },
|
|
36
|
+
"y2k-saturated": { label: "Y2K متشبع", description: "بوب رقمي من بدايات الألفينيات" },
|
|
37
|
+
"mtv-90s-vhs": { label: "MTV 90s VHS", description: "تشبع كروما VHS مفرط من التسعينيات" },
|
|
38
|
+
"polaroid-faded": { label: "Polaroid باهت", description: "Polaroid باهت بصبغة أرجوانية" },
|
|
39
|
+
"lifestyle-warm-magazine": { label: "مجلة Lifestyle دافئة", description: "تدرج تحريري دافئ حديث" },
|
|
40
|
+
|
|
41
|
+
"kodachrome-64": { description: "حمر متشبعة + إبرازات كهرمانية، دفء NatGeo القديم" },
|
|
42
|
+
"ektachrome-100": { description: "أزرق نقي بارد، وضوح فيلم Slide" },
|
|
43
|
+
"kodak-tri-x-400": { description: "تصوير شارع أبيض وأسود بحبيبات مدفوعة، 35mm خشن" },
|
|
44
|
+
"aerochrome": { description: "نباتات وردية أرجوانية سوريالية، منظر طبيعي بألوان زائفة" },
|
|
45
|
+
"fuji-instax": { description: "نغمات وسطى باستيلية ناعمة، فيلم فوري بصيغة مربعة" },
|
|
46
|
+
"cinestill-50d": { description: "مخزون سينما ضوء النهار، أزرق متحكم به، بإحساس Wong Kar-wai" },
|
|
47
|
+
"expired-film": { description: "تحولات لونية وإفراط في تعرض الأرجواني وتسربات ضوء" },
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export default map
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"warm": { description: "Warme Orange-/Rottöne" },
|
|
5
|
+
"cool": { label: "Kühl", description: "Kühle Blau-/Petroltöne" },
|
|
6
|
+
"teal-orange": { label: "Petrol & Orange", description: "Hollywood-Komplementär-Farbgebung" },
|
|
7
|
+
"split-toning": { description: "Kühle Schatten, warme Lichter" },
|
|
8
|
+
"selective-color": { label: "Selektive Farbe", description: "S/W mit einer Akzentfarbe" },
|
|
9
|
+
"faded-matte": { label: "Verblasstes Matt", description: "Angehobene Schwarzwerte, milchig-kontrastarm" },
|
|
10
|
+
"log-flat": { description: "Vor-Grading neutrales S-Log/V-Log" },
|
|
11
|
+
"desaturated": { label: "Entsättigt", description: "Geringe Sättigung, gedämpft" },
|
|
12
|
+
"monochrome-bw": { label: "Monochrom S/W", description: "Reines Schwarz-Weiß" },
|
|
13
|
+
"sepia": { description: "Vintage-Brauntonung" },
|
|
14
|
+
"pastel": { label: "Pastell", description: "Sanfte, kontrastarme Pastelltöne" },
|
|
15
|
+
"high-contrast": { label: "Hochkontrast", description: "Kräftiger Kontrast, tiefe Schwarzwerte" },
|
|
16
|
+
"vibrant": { label: "Lebhaft", description: "Hochgesättigte Farben" },
|
|
17
|
+
"kodak-portra": { description: "Sanfte Hauttöne, feines Korn" },
|
|
18
|
+
"kodak-ektar": { description: "Gesättigt, feines Korn" },
|
|
19
|
+
"kodak-vision3": { description: "Kino-Filmmaterial" },
|
|
20
|
+
"fuji-pro-400h": { description: "Pastellgrüne Farbtöne und Himmel" },
|
|
21
|
+
"cinestill-800t": { description: "Tungsten-Film mit roter Halation" },
|
|
22
|
+
"bleach-bypass": { description: "Hoher Kontrast, entsättigt" },
|
|
23
|
+
"technicolor": { description: "Lebhafter Retro-Technicolor" },
|
|
24
|
+
"two-strip-technicolor": { description: "1920er-30er Rot-Blau-Technicolor" },
|
|
25
|
+
"eastman-color": { description: "1950er/60er warmer verblasster Filmbestand" },
|
|
26
|
+
"hand-tinted": { label: "Handkoloriert", description: "S/W mit handgemalten Farben" },
|
|
27
|
+
"agfa-orwo": { description: "Osteuropäische kühle Grüntöne" },
|
|
28
|
+
"day-for-night": { label: "Tag-für-Nacht", description: "Tageslicht als Nacht abgestuft" },
|
|
29
|
+
"cross-processed": { description: "Farbverschiebungen vom xpro" },
|
|
30
|
+
"instagram-warm": { description: "Valencia-artiger warmer Filter" },
|
|
31
|
+
"tiktok-saturated": { description: "Helle, knackige Social-Palette" },
|
|
32
|
+
"youtube-vlog-flat": { description: "Saubere flache Vlog-Farbgebung" },
|
|
33
|
+
"iphone-hdr": { description: "Computational HDR-Look" },
|
|
34
|
+
"y2k-saturated": { description: "Frühe-2000er Digital-Pop" },
|
|
35
|
+
"mtv-90s-vhs": { description: "Übersättigte 90er VHS-Chroma" },
|
|
36
|
+
"polaroid-faded": { label: "Polaroid Verblasst", description: "Magenta-getöntes verblasstes Polaroid" },
|
|
37
|
+
"lifestyle-warm-magazine": { label: "Lifestyle Warmes Magazin", description: "Moderne warme Editorial-Farbgebung" },
|
|
38
|
+
"kodachrome-64": { description: "Gesättigte Rottöne und bernsteinfarbene Lichter, Vintage-NatGeo-Wärme" },
|
|
39
|
+
"ektachrome-100": { description: "Kühle klare Blautöne, Diafilm-Klarheit" },
|
|
40
|
+
"kodak-tri-x-400": { description: "Gepushtes körniges S/W-Streetfoto, raues 35mm" },
|
|
41
|
+
"aerochrome": { description: "Surreales rosa-magentafarbenes Laub, Falschfarben-Landschaft" },
|
|
42
|
+
"fuji-instax": { description: "Sanfte Pastell-Mitteltöne, quadratisches Sofortbildformat" },
|
|
43
|
+
"cinestill-50d": { description: "Tageslicht-Kinofilm, kontrollierte Blautöne, Wong-Kar-wai-Gefühl" },
|
|
44
|
+
"expired-film": { label: "Abgelaufener Film", description: "Farbverschiebungen, überbelichtete Magentatöne, Lichtlecks" },
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export default map
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"warm": { label: "Cálido", description: "Tonos cálidos naranja/rojo" },
|
|
5
|
+
"cool": { label: "Frío", description: "Tonos fríos azul/turquesa" },
|
|
6
|
+
"teal-orange": { label: "Turquesa y Naranja", description: "Grado complementario hollywoodense" },
|
|
7
|
+
"split-toning": { label: "Tonos Divididos", description: "Sombras frías, luces cálidas" },
|
|
8
|
+
"selective-color": { label: "Color Selectivo", description: "B&N con un color de acento" },
|
|
9
|
+
"faded-matte": { label: "Mate Desvanecido", description: "Negros levantados, bajo contraste lechoso" },
|
|
10
|
+
"log-flat": { label: "Log Plano", description: "S-Log/V-Log neutro pre-grado" },
|
|
11
|
+
"desaturated": { label: "Desaturado", description: "Baja saturación, apagado" },
|
|
12
|
+
"monochrome-bw": { label: "Monocromo B&N", description: "Blanco y negro puro" },
|
|
13
|
+
"sepia": { label: "Sepia", description: "Tono marrón vintage" },
|
|
14
|
+
"pastel": { label: "Pastel", description: "Pasteles suaves de bajo contraste" },
|
|
15
|
+
"high-contrast": { label: "Alto Contraste", description: "Contraste fuerte, negros profundos" },
|
|
16
|
+
"vibrant": { label: "Vibrante", description: "Colores altamente saturados" },
|
|
17
|
+
|
|
18
|
+
"kodak-portra": { description: "Tonos de piel suaves, grano fino" },
|
|
19
|
+
"kodak-ektar": { description: "Saturado, grano fino" },
|
|
20
|
+
"kodak-vision3": { description: "Película cinematográfica de motion picture" },
|
|
21
|
+
"fuji-pro-400h": { description: "Verdes pastel y cielos" },
|
|
22
|
+
"cinestill-800t": { description: "Película de tungsteno con halación roja" },
|
|
23
|
+
"bleach-bypass": { label: "Bleach Bypass", description: "Alto contraste, desaturado" },
|
|
24
|
+
"technicolor": { label: "Technicolor de 3 Tiras", description: "Technicolor retro vívido" },
|
|
25
|
+
"two-strip-technicolor": { label: "Technicolor de 2 Tiras", description: "Technicolor rojo-azul de los años 1920-30" },
|
|
26
|
+
"eastman-color": { description: "Película cálida desvanecida de los 50/60" },
|
|
27
|
+
"hand-tinted": { label: "Coloreado a Mano", description: "B&N con color pintado a mano" },
|
|
28
|
+
"agfa-orwo": { description: "Verdes fríos de Europa del Este" },
|
|
29
|
+
"day-for-night": { label: "Día por Noche", description: "Luz diurna graduada como noche" },
|
|
30
|
+
"cross-processed": { label: "Procesado Cruzado", description: "Cambios de color del xpro" },
|
|
31
|
+
|
|
32
|
+
"instagram-warm": { label: "Cálido de Instagram", description: "Filtro cálido estilo Valencia" },
|
|
33
|
+
"tiktok-saturated": { label: "Saturado de TikTok", description: "Paleta social brillante y punzante" },
|
|
34
|
+
"youtube-vlog-flat": { label: "Plano de Vlog YouTube", description: "Grado plano limpio de vlog" },
|
|
35
|
+
"iphone-hdr": { label: "HDR de iPhone", description: "Look computacional HDR" },
|
|
36
|
+
"y2k-saturated": { label: "Saturado Y2K", description: "Pop digital de principios de los 2000" },
|
|
37
|
+
"mtv-90s-vhs": { label: "VHS de MTV de los 90", description: "Cromo VHS sobresaturado de los 90" },
|
|
38
|
+
"polaroid-faded": { label: "Polaroid Desvanecida", description: "Polaroid desvanecida con tinte magenta" },
|
|
39
|
+
"lifestyle-warm-magazine": { label: "Revista Lifestyle Cálida", description: "Grado editorial moderno y cálido" },
|
|
40
|
+
|
|
41
|
+
"kodachrome-64": { description: "Rojos saturados y luces ámbar, calidez vintage estilo NatGeo" },
|
|
42
|
+
"ektachrome-100": { description: "Azules limpios y fríos, claridad de película diapositiva" },
|
|
43
|
+
"kodak-tri-x-400": { description: "Foto callejera B&N con grano forzado, 35mm crudo" },
|
|
44
|
+
"aerochrome": { description: "Follaje rosa-magenta surrealista, paisaje de color falso" },
|
|
45
|
+
"fuji-instax": { description: "Tonos medios pastel suaves, película instantánea de formato cuadrado" },
|
|
46
|
+
"cinestill-50d": { description: "Película cinematográfica de luz diurna, azules controlados, sensación Wong Kar-wai" },
|
|
47
|
+
"expired-film": { label: "Película Caducada", description: "Cambios de color, magentas sobreexpuestos, filtraciones de luz" },
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export default map
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Palette
|
|
5
|
+
"warm": { label: "Chaud", description: "Tons orange/rouge chauds" },
|
|
6
|
+
"cool": { label: "Froid", description: "Tons bleu/turquoise froids" },
|
|
7
|
+
"teal-orange": { label: "Turquoise & Orange", description: "Étalonnage complémentaire hollywoodien" },
|
|
8
|
+
"split-toning": { label: "Split-toning", description: "Ombres froides, hautes lumières chaudes" },
|
|
9
|
+
"selective-color": { label: "Couleur sélective", description: "N&B avec une seule couleur d'accent" },
|
|
10
|
+
"faded-matte": { label: "Mat délavé", description: "Noirs relevés, contraste laiteux et faible" },
|
|
11
|
+
"log-flat": { label: "Log plat", description: "S-Log/V-Log neutre pré-étalonnage" },
|
|
12
|
+
"desaturated": { label: "Désaturé", description: "Saturation faible, atténué" },
|
|
13
|
+
"monochrome-bw": { label: "Monochrome N&B", description: "Noir et blanc pur" },
|
|
14
|
+
"sepia": { label: "Sépia", description: "Ton brun vintage" },
|
|
15
|
+
"pastel": { label: "Pastel", description: "Pastels doux à faible contraste" },
|
|
16
|
+
"high-contrast": { label: "Contraste élevé", description: "Contraste punchy, noirs profonds" },
|
|
17
|
+
"vibrant": { label: "Vibrant", description: "Couleurs très saturées" },
|
|
18
|
+
// Film emulation
|
|
19
|
+
"kodak-portra": { description: "Tons de peau doux, grain fin" },
|
|
20
|
+
"kodak-ektar": { description: "Saturé, grain fin" },
|
|
21
|
+
"kodak-vision3": { description: "Pellicule cinéma" },
|
|
22
|
+
"fuji-pro-400h": { description: "Verts pastel et ciels" },
|
|
23
|
+
"cinestill-800t": { description: "Pellicule tungstène avec halation rouge" },
|
|
24
|
+
"bleach-bypass": { description: "Contraste élevé, désaturé" },
|
|
25
|
+
"technicolor": { label: "Technicolor 3 bandes", description: "Technicolor rétro vif" },
|
|
26
|
+
"two-strip-technicolor": { label: "Technicolor 2 bandes", description: "Technicolor rouge-bleu des années 1920-30" },
|
|
27
|
+
"eastman-color": { description: "Pellicule chaude délavée des années 1950/60" },
|
|
28
|
+
"hand-tinted": { label: "Coloré à la main", description: "N&B avec couleur peinte à la main" },
|
|
29
|
+
"agfa-orwo": { description: "Verts froids d'Europe de l'Est" },
|
|
30
|
+
"day-for-night": { label: "Nuit américaine", description: "Lumière du jour étalonnée en nuit" },
|
|
31
|
+
"cross-processed": { label: "Développement croisé", description: "Décalages chromatiques du xpro" },
|
|
32
|
+
// Social-preset
|
|
33
|
+
"instagram-warm": { description: "Filtre chaud style Valencia" },
|
|
34
|
+
"tiktok-saturated": { description: "Palette sociale punchy et brillante" },
|
|
35
|
+
"youtube-vlog-flat": { description: "Étalonnage vlog plat propre" },
|
|
36
|
+
"iphone-hdr": { description: "Look HDR computationnel" },
|
|
37
|
+
"y2k-saturated": { description: "Pop numérique du début des années 2000" },
|
|
38
|
+
"mtv-90s-vhs": { description: "Chroma VHS sursaturée des années 90" },
|
|
39
|
+
"polaroid-faded": { description: "Polaroid délavé teinté magenta" },
|
|
40
|
+
"lifestyle-warm-magazine": { description: "Étalonnage éditorial chaud moderne" },
|
|
41
|
+
"kodachrome-64": { description: "Rouges saturés et hautes lumières ambrées, chaleur vintage NatGeo" },
|
|
42
|
+
"ektachrome-100": { description: "Bleus froids et propres, clarté du film diapositive" },
|
|
43
|
+
"kodak-tri-x-400": { description: "Photo de rue N&B au grain poussé, 35 mm âpre" },
|
|
44
|
+
"aerochrome": { label: "Aerochrome / IR couleur", description: "Feuillage rose-magenta surréaliste, paysage en fausses couleurs" },
|
|
45
|
+
"fuji-instax": { description: "Tons moyens pastel doux, film instantané format carré" },
|
|
46
|
+
"cinestill-50d": { description: "Pellicule cinéma lumière du jour, bleus contrôlés, ambiance Wong Kar-wai" },
|
|
47
|
+
"expired-film": { label: "Pellicule périmée", description: "Décalages chromatiques, magentas surexposés, fuites de lumière" },
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export default map
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"warm": { label: "חם", description: "גוונים חמים של כתום/אדום" },
|
|
5
|
+
"cool": { label: "קר", description: "גוונים קרים של כחול/טורקיז" },
|
|
6
|
+
"teal-orange": { label: "טורקיז וכתום", description: "Grade משלים בסגנון הוליווד" },
|
|
7
|
+
"split-toning": { label: "Split Toning", description: "צללים קרים, היילייטים חמים" },
|
|
8
|
+
"selective-color": { label: "צבע סלקטיבי", description: "שחור-לבן עם צבע אחד מודגש" },
|
|
9
|
+
"faded-matte": { label: "Faded Matte", description: "שחורים מורמים, חלבי בקונטרסט נמוך" },
|
|
10
|
+
"log-flat": { label: "Log Flat", description: "S-Log/V-Log נייטרלי לפני grade" },
|
|
11
|
+
"desaturated": { label: "מופחת רוויה", description: "רוויה נמוכה, עמום" },
|
|
12
|
+
"monochrome-bw": { label: "מונוכרום שחור-לבן", description: "שחור ולבן טהור" },
|
|
13
|
+
"sepia": { label: "ספיה", description: "גוון חום וינטג'" },
|
|
14
|
+
"pastel": { label: "פסטל", description: "פסטלים רכים בקונטרסט נמוך" },
|
|
15
|
+
"high-contrast": { label: "קונטרסט גבוה", description: "קונטרסט עוצמתי, שחורים עמוקים" },
|
|
16
|
+
"vibrant": { label: "תוסס", description: "צבעים רוויים מאוד" },
|
|
17
|
+
|
|
18
|
+
"kodak-portra": { description: "גווני עור רכים, גרגירים דקים" },
|
|
19
|
+
"kodak-ektar": { description: "רווי, גרגירים דקים" },
|
|
20
|
+
"kodak-vision3": { description: "פילם תמונה נעה לקולנוע" },
|
|
21
|
+
"fuji-pro-400h": { description: "ירוקים פסטליים ושמיים" },
|
|
22
|
+
"cinestill-800t": { description: "פילם טונגסטן עם הילה אדומה" },
|
|
23
|
+
"bleach-bypass": { label: "Bleach Bypass", description: "קונטרסט גבוה, מופחת רוויה" },
|
|
24
|
+
"technicolor": { label: "Technicolor שלוש פסים", description: "Technicolor רטרו תוסס" },
|
|
25
|
+
"two-strip-technicolor": { label: "Two-Strip Technicolor", description: "Technicolor אדום-כחול של שנות ה-1920-30" },
|
|
26
|
+
"eastman-color": { description: "פילם חמים דהוי של שנות ה-50/60" },
|
|
27
|
+
"hand-tinted": { label: "צבוע ביד", description: "שחור-לבן עם צבע צבוע ביד" },
|
|
28
|
+
"agfa-orwo": { description: "ירוקים קרירים מזרח-אירופאיים" },
|
|
29
|
+
"day-for-night": { label: "Day-for-Night", description: "אור יום מסווג כלילה" },
|
|
30
|
+
"cross-processed": { label: "Cross-Processed", description: "שינויי צבע מ-xpro" },
|
|
31
|
+
|
|
32
|
+
"instagram-warm": { label: "Instagram חם", description: "פילטר חם בסגנון Valencia" },
|
|
33
|
+
"tiktok-saturated": { label: "TikTok רווי", description: "פלטה חברתית בהירה ועוצמתית" },
|
|
34
|
+
"youtube-vlog-flat": { label: "YouTube Vlog שטוח", description: "Grade שטוח נקי ל-vlog" },
|
|
35
|
+
"iphone-hdr": { label: "iPhone HDR", description: "מראה HDR חישובי" },
|
|
36
|
+
"y2k-saturated": { label: "Y2K רווי", description: "פופ דיגיטלי של תחילת שנות ה-2000" },
|
|
37
|
+
"mtv-90s-vhs": { label: "MTV 90s VHS", description: "כרומה רווייה של VHS משנות ה-90" },
|
|
38
|
+
"polaroid-faded": { label: "Polaroid דהוי", description: "Polaroid דהוי בגוון מג'נטה" },
|
|
39
|
+
"lifestyle-warm-magazine": { label: "מגזין Lifestyle חמים", description: "Grade אדיטוריאלי חמים מודרני" },
|
|
40
|
+
"kodachrome-64": { description: "אדומים רוויים והיילייטים בגוון ענבר, חום וינטג' של NatGeo" },
|
|
41
|
+
"ektachrome-100": { description: "כחולים נקיים וקרירים, צלילות של פילם slide" },
|
|
42
|
+
"kodak-tri-x-400": { description: "צילום רחוב שחור-לבן עם גרגירים, 35mm מחוספס" },
|
|
43
|
+
"aerochrome": { description: "עלווה בגוון ורוד-מג'נטה סוריאליסטי, נוף בצבע מזויף" },
|
|
44
|
+
"fuji-instax": { description: "טונים בינוניים בפסטל רך, פילם מיידי בפורמט מרובע" },
|
|
45
|
+
"cinestill-50d": { description: "פילם קולנוע לאור יום, כחולים מבוקרים, תחושת Wong Kar-wai" },
|
|
46
|
+
"expired-film": { label: "פילם פג תוקף", description: "שינויי צבע, מג'נטות בחשיפת יתר, דליפות אור" },
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export default map
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Palette
|
|
5
|
+
"warm": { label: "गर्म", description: "गर्म नारंगी/लाल tones" },
|
|
6
|
+
"cool": { label: "ठंडा", description: "ठंडे नीले/teal tones" },
|
|
7
|
+
"teal-orange": { label: "Teal & Orange", description: "Hollywood complementary grade" },
|
|
8
|
+
"split-toning": { label: "Split Toning", description: "ठंडी shadows, गर्म highlights" },
|
|
9
|
+
"selective-color": { label: "Selective Color", description: "एक accent color के साथ B&W" },
|
|
10
|
+
"faded-matte": { label: "Faded Matte", description: "उठे हुए blacks, milky low-contrast" },
|
|
11
|
+
"log-flat": { label: "Log Flat", description: "Pre-grade S-Log/V-Log neutral" },
|
|
12
|
+
"desaturated": { label: "Desaturated", description: "कम saturation, मद्धम" },
|
|
13
|
+
"monochrome-bw": { label: "Monochrome B&W", description: "शुद्ध श्वेत-श्याम" },
|
|
14
|
+
"sepia": { label: "Sepia", description: "विंटेज भूरा tone" },
|
|
15
|
+
"pastel": { label: "Pastel", description: "नरम, low-contrast pastels" },
|
|
16
|
+
"high-contrast": { label: "High Contrast", description: "Punchy contrast, गहरे blacks" },
|
|
17
|
+
"vibrant": { label: "Vibrant", description: "अत्यधिक संतृप्त रंग" },
|
|
18
|
+
|
|
19
|
+
// Film emulation — keep stock names in Latin
|
|
20
|
+
"kodak-portra": { description: "नरम skin tones, बारीक grain" },
|
|
21
|
+
"kodak-ektar": { description: "संतृप्त, बारीक grain" },
|
|
22
|
+
"kodak-vision3": { description: "Cinema motion picture stock" },
|
|
23
|
+
"fuji-pro-400h": { description: "Pastel हरियाली और आसमान" },
|
|
24
|
+
"cinestill-800t": { description: "लाल halation के साथ tungsten film" },
|
|
25
|
+
"bleach-bypass": { label: "Bleach Bypass", description: "High contrast, desaturated" },
|
|
26
|
+
"technicolor": { label: "Technicolor 3-strip", description: "जीवंत रेट्रो Technicolor" },
|
|
27
|
+
"two-strip-technicolor": { label: "Two-Strip Technicolor", description: "1920-30 के दशक का लाल-नीला Technicolor" },
|
|
28
|
+
"eastman-color": { description: "1950/60 के दशक का गर्म मद्धम stock" },
|
|
29
|
+
"hand-tinted": { label: "Hand-Tinted", description: "हाथ से रंगे हुए रंग के साथ B&W" },
|
|
30
|
+
"agfa-orwo": { label: "Agfa / ORWO", description: "पूर्वी यूरोपीय ठंडी हरियाली" },
|
|
31
|
+
"day-for-night": { label: "Day-for-Night", description: "दिन की shooting को रात के रूप में grade किया" },
|
|
32
|
+
"cross-processed": { label: "Cross-Processed", description: "xpro से रंग shift" },
|
|
33
|
+
|
|
34
|
+
// Social-preset
|
|
35
|
+
"instagram-warm": { label: "Instagram Warm", description: "Valencia-शैली का warm filter" },
|
|
36
|
+
"tiktok-saturated": { label: "TikTok Saturated", description: "उज्ज्वल punchy social palette" },
|
|
37
|
+
"youtube-vlog-flat": { label: "YouTube Vlog Flat", description: "स्वच्छ vlog flat grade" },
|
|
38
|
+
"iphone-hdr": { label: "iPhone HDR", description: "Computational HDR look" },
|
|
39
|
+
"y2k-saturated": { label: "Y2K Saturated", description: "2000 के दशक का early digital pop" },
|
|
40
|
+
"mtv-90s-vhs": { label: "MTV 90s VHS", description: "Oversaturated 90 के दशक का VHS chroma" },
|
|
41
|
+
"polaroid-faded": { label: "Polaroid Faded", description: "Magenta-tinted faded Polaroid" },
|
|
42
|
+
"lifestyle-warm-magazine": { label: "Lifestyle Warm Magazine", description: "आधुनिक warm editorial grade" },
|
|
43
|
+
"kodachrome-64": { description: "संतृप्त लाल और amber highlights, vintage NatGeo गर्माहट" },
|
|
44
|
+
"ektachrome-100": { description: "ठंडे साफ़ नीले, slide-film स्पष्टता" },
|
|
45
|
+
"kodak-tri-x-400": { description: "Pushed-grain B&W street photo, gritty 35mm" },
|
|
46
|
+
"aerochrome": { description: "Surreal गुलाबी-magenta पत्ते, false-color landscape" },
|
|
47
|
+
"fuji-instax": { description: "मुलायम pastel midtones, square-format instant film" },
|
|
48
|
+
"cinestill-50d": { description: "Daylight cinema stock, नियंत्रित नीले, Wong Kar-wai feel" },
|
|
49
|
+
"expired-film": { label: "Expired Film", description: "रंग shifts, overexposed magentas, light leaks" },
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Palette
|
|
5
|
+
"warm": { label: "ウォーム", description: "暖かいオレンジ/赤のトーン" },
|
|
6
|
+
"cool": { label: "クール", description: "クールな青/ティールのトーン" },
|
|
7
|
+
"teal-orange": { label: "ティール&オレンジ", description: "ハリウッド風の補色グレーディング" },
|
|
8
|
+
"split-toning": { label: "スプリットトーニング", description: "クールなシャドウ、暖かいハイライト" },
|
|
9
|
+
"selective-color": { label: "セレクティブカラー", description: "1色のアクセントを残した白黒" },
|
|
10
|
+
"faded-matte": { label: "フェイデッドマット", description: "持ち上げたブラックの乳白色低コントラスト" },
|
|
11
|
+
"log-flat": { label: "ログフラット", description: "グレーディング前のS-Log/V-Logニュートラル" },
|
|
12
|
+
"desaturated": { label: "デサチュレイテッド", description: "低彩度で落ち着いた色" },
|
|
13
|
+
"monochrome-bw": { label: "モノクロ白黒", description: "純粋な白黒" },
|
|
14
|
+
"sepia": { label: "セピア", description: "ヴィンテージのブラウントーン" },
|
|
15
|
+
"pastel": { label: "パステル", description: "柔らかく低コントラストなパステル" },
|
|
16
|
+
"high-contrast": { label: "ハイコントラスト", description: "パンチのあるコントラストと深い黒" },
|
|
17
|
+
"vibrant": { label: "ヴィブラント", description: "高彩度の色彩" },
|
|
18
|
+
|
|
19
|
+
// Film emulation
|
|
20
|
+
"kodak-portra": { description: "柔らかな肌色と細かい粒子" },
|
|
21
|
+
"kodak-ektar": { description: "彩度の高い細かい粒子" },
|
|
22
|
+
"kodak-vision3": { description: "シネマ用ムービーフィルムストック" },
|
|
23
|
+
"fuji-pro-400h": { description: "パステル調のグリーンと空" },
|
|
24
|
+
"cinestill-800t": { description: "赤いハレーションを伴うタングステンフィルム" },
|
|
25
|
+
"bleach-bypass": { label: "ブリーチバイパス", description: "ハイコントラストで脱彩度" },
|
|
26
|
+
"technicolor": { label: "テクニカラー3ストリップ", description: "鮮やかなレトロ・テクニカラー" },
|
|
27
|
+
"two-strip-technicolor": { label: "ツーストリップ・テクニカラー", description: "1920〜30年代の赤青テクニカラー" },
|
|
28
|
+
"eastman-color": { description: "1950〜60年代の暖かく褪せたフィルムストック" },
|
|
29
|
+
"hand-tinted": { label: "ハンドティンテッド", description: "手で彩色を加えた白黒" },
|
|
30
|
+
"agfa-orwo": { description: "東欧のクールなグリーン調" },
|
|
31
|
+
"day-for-night": { label: "デイ・フォー・ナイト", description: "昼光を夜としてグレーディング" },
|
|
32
|
+
"cross-processed": { label: "クロスプロセス", description: "クロス現像による色の変化" },
|
|
33
|
+
|
|
34
|
+
// Social-preset
|
|
35
|
+
"instagram-warm": { label: "Instagramウォーム", description: "Valencia風の暖色フィルター" },
|
|
36
|
+
"tiktok-saturated": { label: "TikTokサチュレイテッド", description: "明るくパンチの効いたソーシャルパレット" },
|
|
37
|
+
"youtube-vlog-flat": { label: "YouTubeヴログ・フラット", description: "クリーンなヴログのフラットグレーディング" },
|
|
38
|
+
"iphone-hdr": { description: "計算的HDRルック" },
|
|
39
|
+
"y2k-saturated": { label: "Y2Kサチュレイテッド", description: "2000年代初頭のデジタルポップ" },
|
|
40
|
+
"mtv-90s-vhs": { label: "MTV 90s VHS", description: "彩度過多の90年代VHSクロマ" },
|
|
41
|
+
"polaroid-faded": { label: "ポラロイド・フェイデッド", description: "マゼンタ調に褪せたポラロイド" },
|
|
42
|
+
"lifestyle-warm-magazine": { label: "ライフスタイル・ウォーム雑誌", description: "モダンな暖色エディトリアル・グレーディング" },
|
|
43
|
+
|
|
44
|
+
// Additional film stocks — names kept English
|
|
45
|
+
"kodachrome-64": { description: "彩度の高い赤と琥珀色のハイライト、ヴィンテージのナショジオ的暖かさ" },
|
|
46
|
+
"ektachrome-100": { description: "クールでクリーンな青、スライドフィルムの透明感" },
|
|
47
|
+
"kodak-tri-x-400": { description: "粒状感を強調した白黒のストリート写真、ざらついた35mm" },
|
|
48
|
+
"aerochrome": { description: "シュルレアリスティックなピンクとマゼンタの植物、フォールスカラーの風景" },
|
|
49
|
+
"fuji-instax": { description: "柔らかなパステル中間調、スクエア・フォーマットのインスタントフィルム" },
|
|
50
|
+
"cinestill-50d": { description: "デイライトのシネマストック、抑制された青、ウォン・カーウァイ風" },
|
|
51
|
+
"expired-film": { label: "期限切れフィルム", description: "色のシフト、露出過多のマゼンタ、光漏れ" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Palette
|
|
5
|
+
"warm": { label: "웜", description: "따뜻한 주황/빨강 톤입니다" },
|
|
6
|
+
"cool": { label: "쿨", description: "차가운 파랑/틸 톤입니다" },
|
|
7
|
+
"teal-orange": { label: "틸 & 오렌지", description: "할리우드 스타일의 보색 그레이드입니다" },
|
|
8
|
+
"split-toning": { label: "스플릿 토닝", description: "차가운 섀도우, 따뜻한 하이라이트입니다" },
|
|
9
|
+
"selective-color": { label: "선택 컬러", description: "흑백에 한 가지 액센트 컬러를 더한 스타일입니다" },
|
|
10
|
+
"faded-matte": { label: "페이디드 매트", description: "리프트된 블랙과 뿌연 저대비입니다" },
|
|
11
|
+
"log-flat": { label: "Log 플랫", description: "그레이딩 전 S-Log/V-Log 중성입니다" },
|
|
12
|
+
"desaturated": { label: "디새추레이티드", description: "낮은 채도의 차분한 톤입니다" },
|
|
13
|
+
"monochrome-bw": { label: "모노크롬 흑백", description: "완전한 흑백입니다" },
|
|
14
|
+
"sepia": { label: "세피아", description: "빈티지한 갈색 톤입니다" },
|
|
15
|
+
"pastel": { label: "파스텔", description: "부드럽고 저대비의 파스텔입니다" },
|
|
16
|
+
"high-contrast": { label: "하이 콘트라스트", description: "쨍한 대비와 깊은 블랙입니다" },
|
|
17
|
+
"vibrant": { label: "바이브런트", description: "고채도의 화려한 컬러입니다" },
|
|
18
|
+
|
|
19
|
+
// Film emulation (mostly product names — keep in English)
|
|
20
|
+
"kodak-portra": { description: "부드러운 피부톤과 미세한 그레인입니다" },
|
|
21
|
+
"kodak-ektar": { description: "고채도와 미세한 그레인입니다" },
|
|
22
|
+
"kodak-vision3": { description: "시네마 영화 필름 스톡입니다" },
|
|
23
|
+
"fuji-pro-400h": { description: "파스텔 톤의 그린과 하늘입니다" },
|
|
24
|
+
"cinestill-800t": { description: "텅스텐 필름의 레드 헐레이션이 특징입니다" },
|
|
25
|
+
"bleach-bypass": { label: "블리치 바이패스", description: "고대비, 저채도의 룩입니다" },
|
|
26
|
+
"technicolor": { label: "Technicolor 3-strip", description: "선명한 레트로 테크니컬러 룩입니다" },
|
|
27
|
+
"two-strip-technicolor": { label: "Two-Strip Technicolor", description: "1920~30년대의 레드-블루 테크니컬러입니다" },
|
|
28
|
+
"eastman-color": { description: "1950/60년대의 따뜻하고 바랜 필름 스톡입니다" },
|
|
29
|
+
"hand-tinted": { label: "핸드 틴티드", description: "흑백 위에 손으로 칠한 컬러입니다" },
|
|
30
|
+
"agfa-orwo": { description: "동유럽 스타일의 차가운 그린 톤입니다" },
|
|
31
|
+
"day-for-night": { label: "데이 포 나이트", description: "낮을 밤처럼 그레이딩한 룩입니다" },
|
|
32
|
+
"cross-processed": { label: "크로스 프로세스", description: "xpro로 인한 컬러 시프트입니다" },
|
|
33
|
+
|
|
34
|
+
// Social-preset
|
|
35
|
+
"instagram-warm": { label: "Instagram 웜", description: "Valencia 스타일의 따뜻한 필터입니다" },
|
|
36
|
+
"tiktok-saturated": { label: "TikTok 새추레이티드", description: "밝고 펀치감 있는 소셜 팔레트입니다" },
|
|
37
|
+
"youtube-vlog-flat": { label: "YouTube 블로그 플랫", description: "깨끗한 블로그 플랫 그레이드입니다" },
|
|
38
|
+
"iphone-hdr": { label: "iPhone HDR", description: "컴퓨테이셔널 HDR 룩입니다" },
|
|
39
|
+
"y2k-saturated": { label: "Y2K 새추레이티드", description: "2000년대 초의 디지털 팝 룩입니다" },
|
|
40
|
+
"mtv-90s-vhs": { label: "MTV 90s VHS", description: "90년대 VHS의 과채도 색감입니다" },
|
|
41
|
+
"polaroid-faded": { label: "폴라로이드 페이디드", description: "마젠타 톤의 바랜 폴라로이드입니다" },
|
|
42
|
+
"lifestyle-warm-magazine": { label: "라이프스타일 웜 매거진", description: "모던한 따뜻한 에디토리얼 그레이드입니다" },
|
|
43
|
+
|
|
44
|
+
// Newly added
|
|
45
|
+
"kodachrome-64": { description: "채도 높은 레드와 호박색 하이라이트, 빈티지 내셔널 지오그래픽의 따뜻함입니다" },
|
|
46
|
+
"ektachrome-100": { description: "차갑고 깔끔한 블루, 슬라이드 필름의 명료함입니다" },
|
|
47
|
+
"kodak-tri-x-400": { description: "그레인이 강조된 흑백 거리 사진, 거친 35mm 룩입니다" },
|
|
48
|
+
"aerochrome": { description: "초현실적인 핑크-마젠타 단풍, 적외선 풍경 사진입니다" },
|
|
49
|
+
"fuji-instax": { description: "부드러운 파스텔 미드톤, 정사각형 인스턴트 필름입니다" },
|
|
50
|
+
"cinestill-50d": { description: "데이라이트 시네마 필름, 절제된 블루, 왕가위 스타일의 분위기입니다" },
|
|
51
|
+
"expired-film": { description: "컬러 시프트, 과노출된 마젠타, 라이트 릭이 있는 룩입니다" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Palette
|
|
5
|
+
"warm": { label: "Quente", description: "Tons quentes em laranja/vermelho" },
|
|
6
|
+
"cool": { label: "Fria", description: "Tons frios em azul/petróleo" },
|
|
7
|
+
"teal-orange": { label: "Petróleo & Laranja", description: "Grade complementar de Hollywood" },
|
|
8
|
+
"split-toning": { label: "Split Toning", description: "Sombras frias, altas-luzes quentes" },
|
|
9
|
+
"selective-color": { label: "Cor Seletiva", description: "P&B com uma cor de destaque" },
|
|
10
|
+
"faded-matte": { label: "Matte Desbotado", description: "Pretos elevados, baixo contraste leitoso" },
|
|
11
|
+
"log-flat": { description: "Log neutro pré-grade S-Log/V-Log" },
|
|
12
|
+
"desaturated": { label: "Dessaturada", description: "Pouca saturação, tons abafados" },
|
|
13
|
+
"monochrome-bw": { label: "Monocromática P&B", description: "Preto e branco puros" },
|
|
14
|
+
"sepia": { label: "Sépia", description: "Tom marrom vintage" },
|
|
15
|
+
"pastel": { description: "Pastéis suaves de baixo contraste" },
|
|
16
|
+
"high-contrast": { label: "Alto Contraste", description: "Contraste forte, pretos profundos" },
|
|
17
|
+
"vibrant": { label: "Vibrante", description: "Cores altamente saturadas" },
|
|
18
|
+
|
|
19
|
+
// Film emulation — film stock names kept in English
|
|
20
|
+
"kodak-portra": { description: "Tons de pele suaves, granulação fina" },
|
|
21
|
+
"kodak-ektar": { description: "Saturada, granulação fina" },
|
|
22
|
+
"kodak-vision3": { description: "Filme cinematográfico de cinema" },
|
|
23
|
+
"fuji-pro-400h": { description: "Verdes pastel e céus" },
|
|
24
|
+
"cinestill-800t": { description: "Filme tungstênio com halação vermelha" },
|
|
25
|
+
"bleach-bypass": { description: "Alto contraste, dessaturado" },
|
|
26
|
+
"technicolor": { label: "Technicolor 3 cores", description: "Technicolor retrô vívido" },
|
|
27
|
+
"two-strip-technicolor": { description: "Technicolor de duas faixas dos anos 1920-30 em vermelho-azul" },
|
|
28
|
+
"eastman-color": { description: "Filme quente desbotado dos anos 1950/60" },
|
|
29
|
+
"hand-tinted": { label: "Pintado à Mão", description: "P&B com cor pintada à mão" },
|
|
30
|
+
"agfa-orwo": { description: "Verdes frios do Leste Europeu" },
|
|
31
|
+
"day-for-night": { description: "Luz do dia tratada como noite" },
|
|
32
|
+
"cross-processed": { label: "Cross-Processed", description: "Mudanças de cor por revelação cruzada" },
|
|
33
|
+
|
|
34
|
+
// Social-preset
|
|
35
|
+
"instagram-warm": { description: "Filtro quente estilo Valencia" },
|
|
36
|
+
"tiktok-saturated": { description: "Paleta social punchy e vibrante" },
|
|
37
|
+
"youtube-vlog-flat": { description: "Grade flat clean para vlog" },
|
|
38
|
+
"iphone-hdr": { description: "Visual HDR computacional" },
|
|
39
|
+
"y2k-saturated": { description: "Pop digital saturado dos anos 2000" },
|
|
40
|
+
"mtv-90s-vhs": { description: "Croma VHS supersaturado dos anos 90" },
|
|
41
|
+
"polaroid-faded": { description: "Polaroid desbotada com tom magenta" },
|
|
42
|
+
"lifestyle-warm-magazine": { description: "Grade editorial moderna e quente" },
|
|
43
|
+
|
|
44
|
+
// Additional film stocks — names kept in English
|
|
45
|
+
"kodachrome-64": { description: "Vermelhos saturados e altas-luzes âmbar, calor vintage da NatGeo" },
|
|
46
|
+
"ektachrome-100": { description: "Azuis frios e limpos, clareza de filme slide" },
|
|
47
|
+
"kodak-tri-x-400": { description: "P&B granulado puxado para fotografia de rua, 35mm áspero" },
|
|
48
|
+
"aerochrome": { description: "Folhagem rosa-magenta surreal, paisagem em cor falsa" },
|
|
49
|
+
"fuji-instax": { description: "Tons médios pastel suaves, filme instantâneo de formato quadrado" },
|
|
50
|
+
"cinestill-50d": { description: "Filme cinema diurno, azuis controlados, atmosfera Wong Kar-wai" },
|
|
51
|
+
"expired-film": { label: "Filme Vencido", description: "Mudanças de cor, magentas superexpostos e light leaks" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|