@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,26 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "Viñeta Suave", description: "Oscurecimiento suave en las esquinas" },
|
|
5
|
+
"vignette-heavy": { label: "Viñeta Intensa", description: "Esquinas negras dramáticas" },
|
|
6
|
+
"dodge-and-burn": { label: "Dodge & Burn", description: "Luz/sombra esculpida" },
|
|
7
|
+
"film-grain-fine": { label: "Grano Fino de Película", description: "Grano sutil estilo 35mm" },
|
|
8
|
+
"film-grain-heavy": { label: "Grano Intenso de Película", description: "Grano grueso forzado" },
|
|
9
|
+
"halation-glow": { label: "Resplandor de Halación", description: "Floración halo rojo Cinestill" },
|
|
10
|
+
"bloom-glow": { label: "Resplandor Bloom", description: "Floración romántica ensoñadora en luces" },
|
|
11
|
+
"chromatic-aberration": { label: "Aberración Cromática", description: "Borde rojo/cian en los bordes" },
|
|
12
|
+
"light-leak": { label: "Filtración de Luz", description: "Trazo cálido a través del cuadro" },
|
|
13
|
+
"film-burn": { label: "Quemadura de Película", description: "Destello vintage Super-8 en la esquina" },
|
|
14
|
+
"scratched-emulsion": { label: "Emulsión Rayada", description: "Rayones de película envejecida + polvo" },
|
|
15
|
+
"color-fringe": { label: "Borde de Color", description: "Borde sutil en alto contraste" },
|
|
16
|
+
"soft-focus-diffusion": { label: "Difusión de Foco Suave", description: "Floración brumosa ensoñadora en luces" },
|
|
17
|
+
"contrast-boost": { label: "Aumento de Contraste", description: "Sombras aplastadas + luces empujadas" },
|
|
18
|
+
|
|
19
|
+
// -------------------- Round 2 --------------------
|
|
20
|
+
"sharpening": { label: "Enfoque Intenso", description: "Pase agresivo de enfoque de bordes" },
|
|
21
|
+
"clarity-boost": { label: "Aumento de Claridad", description: "Mejora de claridad en medios tonos, mayor contraste local" },
|
|
22
|
+
"dehaze": { label: "Eliminar Bruma", description: "Eliminación de bruma atmosférica aplicada, quitando suavidad" },
|
|
23
|
+
"lift-gamma-gain": { label: "Lift-Gamma-Gain", description: "Ruedas de gradación de color de tres vías" },
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "Vignettage doux", description: "Assombrissement doux des coins" },
|
|
5
|
+
"vignette-heavy": { label: "Vignettage prononcé", description: "Coins noirs dramatiques" },
|
|
6
|
+
"dodge-and-burn": { description: "Hautes lumières et ombres sculptées" },
|
|
7
|
+
"film-grain-fine": { label: "Grain de pellicule fin", description: "Grain subtil style 35mm" },
|
|
8
|
+
"film-grain-heavy": { label: "Grain de pellicule prononcé", description: "Grain grossier de pellicule poussée" },
|
|
9
|
+
"halation-glow": { description: "Floraison rouge style Cinestill" },
|
|
10
|
+
"bloom-glow": { description: "Floraison romantique onirique des hautes lumières" },
|
|
11
|
+
"chromatic-aberration": { label: "Aberration chromatique", description: "Frange rouge/cyan sur les bords" },
|
|
12
|
+
"light-leak": { description: "Traînée chaude en travers du cadre" },
|
|
13
|
+
"film-burn": { description: "Flare de coin Super-8 vintage" },
|
|
14
|
+
"scratched-emulsion": { label: "Émulsion rayée", description: "Rayures de pellicule vieillie + poussière" },
|
|
15
|
+
"color-fringe": { label: "Frange de couleur", description: "Subtile frange à fort contraste" },
|
|
16
|
+
"soft-focus-diffusion": { label: "Diffusion mise au point douce", description: "Floraison brumeuse onirique des hautes lumières" },
|
|
17
|
+
"contrast-boost": { label: "Boost de contraste", description: "Ombres écrasées + hautes lumières poussées" },
|
|
18
|
+
"sharpening": { label: "Accentuation prononcée", description: "Passe d'accentuation des bords agressive" },
|
|
19
|
+
"clarity-boost": { label: "Boost de clarté", description: "Amélioration de la clarté des tons moyens, contraste local accru" },
|
|
20
|
+
"dehaze": { label: "Suppression du voile", description: "Suppression atmosphérique du voile, supprimant la douceur" },
|
|
21
|
+
"lift-gamma-gain": { label: "Étalonnage Lift-Gamma-Gain", description: "Roues d'étalonnage couleur trois voies" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "ויניטה רכה", description: "החשכת פינות עדינה" },
|
|
5
|
+
"vignette-heavy": { label: "ויניטה כבדה", description: "פינות שחורות דרמטיות" },
|
|
6
|
+
"dodge-and-burn": { label: "Dodge & Burn", description: "היילייט/צל מפוסל" },
|
|
7
|
+
"film-grain-fine": { label: "גרגירי פילם דקים", description: "גרגירים דקים בסגנון 35mm" },
|
|
8
|
+
"film-grain-heavy": { label: "גרגירי פילם כבדים", description: "גרגירים גסים מורחקים" },
|
|
9
|
+
"halation-glow": { label: "זוהר Halation", description: "Bloom של הילה אדומה בסגנון Cinestill" },
|
|
10
|
+
"bloom-glow": { label: "זוהר Bloom", description: "Bloom של היילייטים חולמני ורומנטי" },
|
|
11
|
+
"chromatic-aberration": { label: "Chromatic Aberration", description: "הילה אדומה/טורקיז על קצוות" },
|
|
12
|
+
"light-leak": { label: "Light Leak", description: "פס חמים על פני הפריים" },
|
|
13
|
+
"film-burn": { label: "כוויית פילם", description: "Flare פינתי בסגנון Super-8 וינטג'" },
|
|
14
|
+
"scratched-emulsion": { label: "אמולסיה שרוטה", description: "שריטות פילם וינטג' + אבק" },
|
|
15
|
+
"color-fringe": { label: "הילה צבעונית", description: "הילה עדינה בקונטרסט גבוה" },
|
|
16
|
+
"soft-focus-diffusion": { label: "פיזור פוקוס רך", description: "Bloom חולמני מעורפל בהיילייטים" },
|
|
17
|
+
"contrast-boost": { label: "הגברת קונטרסט", description: "צללים שחוקים + היילייטים מורמים" },
|
|
18
|
+
"sharpening": { label: "חידוד כבד", description: "מעבר חידוד קצוות אגרסיבי" },
|
|
19
|
+
"clarity-boost": { label: "הגברת בהירות", description: "שיפור בהירות גוונים בינוניים, הגברת קונטרסט מקומי" },
|
|
20
|
+
"dehaze": { label: "Dehaze", description: "הסרת אובך אטמוספרי, הסרת רכות" },
|
|
21
|
+
"lift-gamma-gain": { label: "Lift-Gamma-Gain", description: "גלגלי דירוג צבע תלת-כיווניים" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "Soft Vignette", description: "कोमल कोनों का darkening" },
|
|
5
|
+
"vignette-heavy": { label: "Heavy Vignette", description: "Dramatic काले कोने" },
|
|
6
|
+
"dodge-and-burn": { label: "Dodge & Burn", description: "Sculpted highlight/shadow" },
|
|
7
|
+
"film-grain-fine": { label: "Fine Film Grain", description: "सूक्ष्म 35mm-शैली का grain" },
|
|
8
|
+
"film-grain-heavy": { label: "Heavy Film Grain", description: "खुरदुरा push-processed grain" },
|
|
9
|
+
"halation-glow": { label: "Halation Glow", description: "Cinestill लाल-halo bloom" },
|
|
10
|
+
"bloom-glow": { label: "Bloom Glow", description: "Romantic स्वप्निल highlight bloom" },
|
|
11
|
+
"chromatic-aberration": { label: "Chromatic Aberration", description: "किनारों पर लाल/cyan fringe" },
|
|
12
|
+
"light-leak": { label: "Light Leak", description: "Frame पर गर्म streak" },
|
|
13
|
+
"film-burn": { label: "Film Burn", description: "विंटेज Super-8 कोने का flare" },
|
|
14
|
+
"scratched-emulsion": { label: "Scratched Emulsion", description: "पुरानी film की scratches + धूल" },
|
|
15
|
+
"color-fringe": { label: "Color Fringe", description: "सूक्ष्म high-contrast fringing" },
|
|
16
|
+
"soft-focus-diffusion": { label: "Soft-Focus Diffusion", description: "धुँधला स्वप्निल highlight bloom" },
|
|
17
|
+
"contrast-boost": { label: "Contrast Boost", description: "दबी हुई shadows + पुश की हुई highlights" },
|
|
18
|
+
|
|
19
|
+
// -------------------- Round 2 --------------------
|
|
20
|
+
"sharpening": { label: "Heavy Sharpening", description: "आक्रामक edge-sharpening pass" },
|
|
21
|
+
"clarity-boost": { label: "Clarity Boost", description: "Mid-tone clarity enhancement, बढ़ा हुआ local contrast" },
|
|
22
|
+
"dehaze": { label: "Dehaze", description: "Atmospheric dehaze लगाया हुआ, softness हटाते हुए" },
|
|
23
|
+
"lift-gamma-gain": { label: "Lift-Gamma-Gain Grade", description: "तीन-तरफ़ा color grading wheels" },
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "ソフト・ヴィネット", description: "穏やかな四隅の暗化" },
|
|
5
|
+
"vignette-heavy": { label: "ヘビー・ヴィネット", description: "劇的な黒い四隅" },
|
|
6
|
+
"dodge-and-burn": { label: "ドッジ&バーン", description: "彫刻的なハイライト/シャドウ" },
|
|
7
|
+
"film-grain-fine": { label: "細かいフィルム粒子", description: "繊細な35mm風の粒子" },
|
|
8
|
+
"film-grain-heavy": { label: "粗いフィルム粒子", description: "粗いプッシュ処理風の粒子" },
|
|
9
|
+
"halation-glow": { label: "ハレーション・グロー", description: "Cinestill風の赤いハロー・ブルーム" },
|
|
10
|
+
"bloom-glow": { label: "ブルーム・グロー", description: "ロマンチックで夢のようなハイライト・ブルーム" },
|
|
11
|
+
"chromatic-aberration": { label: "色収差", description: "縁の赤/シアンのフリンジ" },
|
|
12
|
+
"light-leak": { label: "ライトリーク", description: "フレームを横切る暖色の光線" },
|
|
13
|
+
"film-burn": { label: "フィルム焼け", description: "ヴィンテージSuper-8の角フレア" },
|
|
14
|
+
"scratched-emulsion": { label: "傷んだエマルション", description: "古びたフィルムの傷とほこり" },
|
|
15
|
+
"color-fringe": { label: "カラーフリンジ", description: "ハイコントラストエッジの繊細なフリンジ" },
|
|
16
|
+
"soft-focus-diffusion": { label: "ソフトフォーカス・ディフュージョン", description: "霞んだ夢のようなハイライト・ブルーム" },
|
|
17
|
+
"contrast-boost": { label: "コントラスト強調", description: "潰したシャドウと押し上げたハイライト" },
|
|
18
|
+
|
|
19
|
+
// Additional post-process effects
|
|
20
|
+
"sharpening": { label: "強いシャープニング", description: "積極的なエッジシャープニング処理" },
|
|
21
|
+
"clarity-boost": { label: "明瞭度ブースト", description: "ミッドトーンの明瞭度強調、局所コントラストの増加" },
|
|
22
|
+
"dehaze": { label: "霞除去", description: "適用された大気の霞除去、柔らかさを取り除く" },
|
|
23
|
+
"lift-gamma-gain": { label: "リフト・ガンマ・ゲイン・グレード", description: "三方向カラーグレーディングホイール" },
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "소프트 비네트", description: "부드러운 모서리 어둡게 처리입니다" },
|
|
5
|
+
"vignette-heavy": { label: "헤비 비네트", description: "극적인 검은 모서리입니다" },
|
|
6
|
+
"dodge-and-burn": { label: "닷지 & 번", description: "조각된 하이라이트/섀도우입니다" },
|
|
7
|
+
"film-grain-fine": { label: "고운 필름 그레인", description: "은은한 35mm 스타일 그레인입니다" },
|
|
8
|
+
"film-grain-heavy": { label: "강한 필름 그레인", description: "푸시 처리된 거친 그레인입니다" },
|
|
9
|
+
"halation-glow": { label: "헐레이션 글로우", description: "Cinestill 스타일의 레드 헐레이션 블룸입니다" },
|
|
10
|
+
"bloom-glow": { label: "블룸 글로우", description: "낭만적이고 몽환적인 하이라이트 블룸입니다" },
|
|
11
|
+
"chromatic-aberration": { label: "색수차", description: "가장자리의 빨강/시안 프린지입니다" },
|
|
12
|
+
"light-leak": { label: "라이트 릭", description: "프레임을 가로지르는 따뜻한 스트릭입니다" },
|
|
13
|
+
"film-burn": { label: "필름 번", description: "빈티지 Super-8 모서리 플레어입니다" },
|
|
14
|
+
"scratched-emulsion": { label: "스크래치 이멀젼", description: "오래된 필름 스크래치와 먼지 자국입니다" },
|
|
15
|
+
"color-fringe": { label: "컬러 프린지", description: "은은한 고대비 프린지입니다" },
|
|
16
|
+
"soft-focus-diffusion": { label: "소프트 포커스 디퓨전", description: "흐릿하고 몽환적인 하이라이트 블룸입니다" },
|
|
17
|
+
"contrast-boost": { label: "콘트라스트 부스트", description: "섀도우는 깊게, 하이라이트는 강하게 처리합니다" },
|
|
18
|
+
|
|
19
|
+
// Additional post-process effects
|
|
20
|
+
"sharpening": { label: "헤비 샤프닝", description: "공격적인 엣지 샤프닝 처리입니다" },
|
|
21
|
+
"clarity-boost": { label: "클래리티 부스트", description: "미드톤 클래리티 향상, 로컬 콘트라스트 증가입니다" },
|
|
22
|
+
"dehaze": { label: "디헤이즈", description: "대기 디헤이즈 적용, 부드러움을 제거합니다" },
|
|
23
|
+
"lift-gamma-gain": { label: "리프트-감마-게인 그레이드", description: "3-웨이 컬러 그레이딩 휠입니다" },
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "Vignette Suave", description: "Escurecimento suave dos cantos" },
|
|
5
|
+
"vignette-heavy": { label: "Vignette Pesada", description: "Cantos escurecidos dramáticos" },
|
|
6
|
+
"dodge-and-burn": { description: "Esculpir altas-luzes/sombras" },
|
|
7
|
+
"film-grain-fine": { label: "Granulação Fina de Filme", description: "Granulação sutil estilo 35mm" },
|
|
8
|
+
"film-grain-heavy": { label: "Granulação Pesada de Filme", description: "Granulação grossa de revelação forçada" },
|
|
9
|
+
"halation-glow": { label: "Brilho de Halação", description: "Bloom com halo vermelho estilo Cinestill" },
|
|
10
|
+
"bloom-glow": { label: "Brilho Bloom", description: "Bloom romântico e sonhador nas altas-luzes" },
|
|
11
|
+
"chromatic-aberration": { label: "Aberração Cromática", description: "Franja vermelha/ciano nas bordas" },
|
|
12
|
+
"light-leak": { description: "Risco quente atravessando o quadro" },
|
|
13
|
+
"film-burn": { description: "Estouro de canto vintage estilo Super-8" },
|
|
14
|
+
"scratched-emulsion": { description: "Riscos e poeira em emulsão envelhecida" },
|
|
15
|
+
"color-fringe": { label: "Franja de Cor", description: "Franja sutil em bordas de alto contraste" },
|
|
16
|
+
"soft-focus-diffusion": { description: "Bloom sonhador, suave e enevoado" },
|
|
17
|
+
"contrast-boost": { label: "Boost de Contraste", description: "Sombras esmagadas + altas-luzes empurradas" },
|
|
18
|
+
"sharpening": { label: "Sharpening Pesado", description: "Passagem agressiva de sharpening nas bordas" },
|
|
19
|
+
"clarity-boost": { label: "Boost de Clareza", description: "Aprimoramento de clareza nos meios-tons, contraste local elevado" },
|
|
20
|
+
"dehaze": { label: "Dehaze", description: "Dehaze atmosférico aplicado, removendo a suavidade" },
|
|
21
|
+
"lift-gamma-gain": { label: "Color Grading Lift-Gamma-Gain", description: "Rodas de color grading em três vias" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "Мягкая виньетка", description: "Лёгкое затемнение по углам" },
|
|
5
|
+
"vignette-heavy": { label: "Тяжёлая виньетка", description: "Драматичные чёрные углы" },
|
|
6
|
+
"dodge-and-burn": { label: "Осветление и затемнение", description: "Скульптурные света и тени" },
|
|
7
|
+
"film-grain-fine": { label: "Тонкое плёночное зерно", description: "Тонкое зерно в стиле 35мм" },
|
|
8
|
+
"film-grain-heavy": { label: "Грубое плёночное зерно", description: "Грубое подтянутое зерно" },
|
|
9
|
+
"halation-glow": { label: "Свечение halation", description: "Красная гало-вспышка cinestill" },
|
|
10
|
+
"bloom-glow": { label: "Свечение bloom", description: "Романтичное мечтательное свечение бликов" },
|
|
11
|
+
"chromatic-aberration": { label: "Хроматическая аберрация", description: "Красно-голубая бахрома по краям" },
|
|
12
|
+
"light-leak": { label: "Световая засветка", description: "Тёплая полоса через кадр" },
|
|
13
|
+
"film-burn": { label: "Прожог плёнки", description: "Винтажный угловой блик Super-8" },
|
|
14
|
+
"scratched-emulsion": { label: "Поцарапанная эмульсия", description: "Состаренные царапины и пыль на плёнке" },
|
|
15
|
+
"color-fringe": { label: "Цветная бахрома", description: "Тонкая высококонтрастная цветовая бахрома" },
|
|
16
|
+
"soft-focus-diffusion": { label: "Рассеивание мягкого фокуса", description: "Мечтательное свечение на бликах" },
|
|
17
|
+
"contrast-boost": { label: "Усиление контраста", description: "Раздавленные тени, поднятые света" },
|
|
18
|
+
"sharpening": { label: "Сильное усиление резкости", description: "Агрессивный проход по усилению резкости краёв" },
|
|
19
|
+
"clarity-boost": { label: "Усиление чёткости", description: "Усиление чёткости средних тонов, повышенный локальный контраст" },
|
|
20
|
+
"dehaze": { label: "Удаление дымки", description: "Применено атмосферное удаление дымки, убирающее мягкость" },
|
|
21
|
+
"lift-gamma-gain": { label: "Грейдинг lift-gamma-gain", description: "Трёхзонные колёса цветокоррекции" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"vignette-soft": { label: "柔和暗角", description: "轻微的四角压暗" },
|
|
5
|
+
"vignette-heavy": { label: "重暗角", description: "强烈的黑色四角" },
|
|
6
|
+
"dodge-and-burn": { label: "Dodge & Burn 加深减淡", description: "雕塑感高光与阴影" },
|
|
7
|
+
"film-grain-fine": { label: "细腻胶片颗粒", description: "微妙的 35mm 风格颗粒" },
|
|
8
|
+
"film-grain-heavy": { label: "重胶片颗粒", description: "粗糙的推感颗粒" },
|
|
9
|
+
"halation-glow": { label: "光晕泛红", description: "Cinestill 风的红色光晕" },
|
|
10
|
+
"bloom-glow": { label: "梦幻泛光", description: "浪漫的高光柔光" },
|
|
11
|
+
"chromatic-aberration": { label: "色差", description: "边缘的红 / 青色色差" },
|
|
12
|
+
"light-leak": { label: "漏光", description: "穿过画面的暖色光条" },
|
|
13
|
+
"film-burn": { label: "胶片灼烧", description: "复古 Super-8 角落爆光" },
|
|
14
|
+
"scratched-emulsion": { label: "划痕乳剂", description: "做旧胶片划痕加灰尘" },
|
|
15
|
+
"color-fringe": { label: "色彩边缘", description: "高对比边缘的微妙色散" },
|
|
16
|
+
"soft-focus-diffusion": { label: "柔焦扩散", description: "梦幻雾感高光" },
|
|
17
|
+
"contrast-boost": { label: "对比增强", description: "压黑阴影、推高高光" },
|
|
18
|
+
"sharpening": { label: "强力锐化", description: "强烈的边缘锐化处理" },
|
|
19
|
+
"clarity-boost": { label: "清晰度提升", description: "中间调清晰度增强,提升局部对比" },
|
|
20
|
+
"dehaze": { label: "去雾", description: "去除大气雾感,消除柔化" },
|
|
21
|
+
"lift-gamma-gain": { label: "Lift-Gamma-Gain 调色", description: "三向色轮调色" },
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default map
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"unreal-engine-5": { description: "مظهر UE5 بـ Path Tracing فوري" },
|
|
5
|
+
"blender-cycles": { description: "Cycles Path Tracing غير منحاز" },
|
|
6
|
+
"octane-render": { description: "Path Tracing طيفي على GPU" },
|
|
7
|
+
"redshift": { description: "محرك إنتاج GPU منحاز" },
|
|
8
|
+
"houdini-mantra": { description: "إنتاج فيزيائي بمستوى VFX" },
|
|
9
|
+
"arnold-render": { description: "متتبع أشعة VFX بمعيار الصناعة" },
|
|
10
|
+
"corona-renderer": { description: "محرك archviz غير منحاز واقعي فوتوغرافيا" },
|
|
11
|
+
"vray": { description: "محرك إنتاج للمنتجات / archviz / VFX بمعيار الصناعة" },
|
|
12
|
+
"aces": { description: "إدارة ألوان ACES بمستوى سينمائي" },
|
|
13
|
+
|
|
14
|
+
"raytracing": { label: "تتبع الأشعة", description: "انعكاسات + ظلال دقيقة" },
|
|
15
|
+
"physically-based-rendering": { label: "PBR", description: "مواد فيزيائية" },
|
|
16
|
+
"global-illumination": { label: "إضاءة عالمية", description: "ارتداد ضوء واقعي" },
|
|
17
|
+
"lumen-reflections": { label: "انعكاسات Lumen", description: "GI ديناميكي فوري" },
|
|
18
|
+
|
|
19
|
+
"8k-uhd": { label: "8K UHD", description: "دقة 8K حادة جدا" },
|
|
20
|
+
"4k-uhd": { label: "4K UHD", description: "دقة 4K واضحة" },
|
|
21
|
+
"16k-megapixel": { label: "16K ميجابكسل", description: "تفاصيل عالية الدقة بشكل لا يصدق" },
|
|
22
|
+
"ultra-detailed": { label: "تفاصيل فائقة", description: "إنتاج بأقصى تفاصيل دقيقة" },
|
|
23
|
+
|
|
24
|
+
"raw-photo": { label: "صورة Raw", description: "إحساس فوتوغرافي غير معالج" },
|
|
25
|
+
"masterpiece": { label: "تحفة", description: "ختم جودة بمستوى يد خبير" },
|
|
26
|
+
"award-winning": { label: "حائز على جائزة", description: "بمستوى جوائز" },
|
|
27
|
+
|
|
28
|
+
"volumetric-lighting": { label: "إضاءة Volumetric", description: "أعمدة ضوء Volumetric كأشعة الإله" },
|
|
29
|
+
"photon-mapping": { label: "Photon Mapping", description: "إضاءة عالمية بـ Photon-Mapping واعية بالـ Caustics" },
|
|
30
|
+
"ai-upscaled": { label: "Upscaled بالذكاء الاصطناعي", description: "تعزيز تفاصيل بـ Upscaling عصبي" },
|
|
31
|
+
"denoised": { label: "Denoised", description: "إنتاج نقي خال من الضوضاء" },
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default map
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"unreal-engine-5": { description: "Echtzeit-pathgetracter UE5-Look" },
|
|
5
|
+
"blender-cycles": { description: "Cycles unverzerrtes Path Tracing" },
|
|
6
|
+
"octane-render": { description: "GPU-Spektral-Path-Tracing" },
|
|
7
|
+
"redshift": { description: "Produktions-GPU-biased Renderer" },
|
|
8
|
+
"houdini-mantra": { description: "VFX-grade physikalisches Rendering" },
|
|
9
|
+
"arnold-render": { description: "Branchenüblicher VFX-Path-Tracer" },
|
|
10
|
+
"corona-renderer": { description: "Fotorealistischer unverzerrter Archviz-Renderer" },
|
|
11
|
+
"vray": { description: "Branchenüblicher Produkt- / Archviz- / VFX-Renderer" },
|
|
12
|
+
"aces": { description: "Kinotaugliches ACES-Farbmanagement" },
|
|
13
|
+
"raytracing": { label: "Raytracing", description: "Genaue Reflexionen + Schatten" },
|
|
14
|
+
"physically-based-rendering": { description: "Physikalisch basierte Materialien" },
|
|
15
|
+
"global-illumination": { label: "Globale Beleuchtung", description: "Realistischer Lichtbounce" },
|
|
16
|
+
"lumen-reflections": { description: "Echtzeit-dynamische GI" },
|
|
17
|
+
"8k-uhd": { description: "Ultra-scharfe 8K-Auflösung" },
|
|
18
|
+
"4k-uhd": { description: "Knackige 4K-Auflösung" },
|
|
19
|
+
"16k-megapixel": { description: "Unfassbar hochauflösendes Detail" },
|
|
20
|
+
"ultra-detailed": { label: "Ultra-Detailliert", description: "Maximales Mikrodetail-Rendering" },
|
|
21
|
+
"raw-photo": { label: "Roh-Foto", description: "Unbearbeitetes fotografisches Gefühl" },
|
|
22
|
+
"masterpiece": { label: "Meisterwerk", description: "Hand-eines-Experten-Qualitätsstempel" },
|
|
23
|
+
"award-winning": { label: "Preisgekrönt", description: "Auszeichnungs-Kaliber" },
|
|
24
|
+
"volumetric-lighting": { label: "Volumetrisches Licht", description: "God-Ray-volumetrische Lichtschächte" },
|
|
25
|
+
"photon-mapping": { label: "Photon Mapping", description: "Kaustik-bewusste photongemappte globale Beleuchtung" },
|
|
26
|
+
"ai-upscaled": { label: "KI-hochskaliert", description: "Mit neuronalem Netzwerk hochskalierte Detailverbesserung" },
|
|
27
|
+
"denoised": { label: "Entrauscht", description: "Sauberes rauschbefreites makelloses Rendering" },
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"unreal-engine-5": { description: "Look UE5 con trazado de rayos en tiempo real" },
|
|
5
|
+
"blender-cycles": { description: "Trazado de rayos sin sesgo en Cycles" },
|
|
6
|
+
"octane-render": { description: "Trazado espectral de rayos en GPU" },
|
|
7
|
+
"redshift": { description: "Renderizador GPU con sesgo de producción" },
|
|
8
|
+
"houdini-mantra": { description: "Renderizado físico con calidad VFX" },
|
|
9
|
+
"arnold-render": { description: "Trazador de rayos VFX estándar de la industria" },
|
|
10
|
+
"corona-renderer": { description: "Renderizador sin sesgo fotorrealista para archviz" },
|
|
11
|
+
"vray": { description: "Renderizador de producción de producto / archviz / VFX estándar de la industria" },
|
|
12
|
+
"aces": { description: "Gestión de color ACES con calidad de cine" },
|
|
13
|
+
|
|
14
|
+
"raytracing": { label: "Trazado de Rayos", description: "Reflejos + sombras precisas" },
|
|
15
|
+
"physically-based-rendering": { label: "PBR", description: "Materiales físicamente basados" },
|
|
16
|
+
"global-illumination": { label: "Iluminación Global", description: "Rebote realista de luz" },
|
|
17
|
+
"lumen-reflections": { label: "Reflejos Lumen", description: "GI dinámico en tiempo real" },
|
|
18
|
+
|
|
19
|
+
"8k-uhd": { label: "8K UHD", description: "Resolución 8K ultranítida" },
|
|
20
|
+
"4k-uhd": { label: "4K UHD", description: "Resolución 4K crujiente" },
|
|
21
|
+
"16k-megapixel": { label: "16K Megapíxel", description: "Detalle de resolución insanamente alta" },
|
|
22
|
+
"ultra-detailed": { label: "Ultra Detallado", description: "Renderizado con máximo microdetalle" },
|
|
23
|
+
|
|
24
|
+
"raw-photo": { label: "Foto en Crudo", description: "Sensación fotográfica sin procesar" },
|
|
25
|
+
"masterpiece": { label: "Obra Maestra", description: "Sello de calidad de mano experta" },
|
|
26
|
+
"award-winning": { label: "Premiado", description: "Calibre de circuito de premios" },
|
|
27
|
+
|
|
28
|
+
// -------------------- Round 2 --------------------
|
|
29
|
+
"volumetric-lighting": { label: "Iluminación Volumétrica", description: "Rayos volumétricos tipo god-ray" },
|
|
30
|
+
"photon-mapping": { label: "Photon Mapping", description: "Iluminación global con photon mapping y cáusticas" },
|
|
31
|
+
"ai-upscaled": { label: "Escalado con IA", description: "Mejora de detalle escalada por red neuronal" },
|
|
32
|
+
"denoised": { label: "Sin Ruido", description: "Renderizado limpio prístino con ruido eliminado" },
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default map
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Engines (engine names kept as proper brand names)
|
|
5
|
+
"unreal-engine-5": { description: "Look UE5 path-traced en temps réel" },
|
|
6
|
+
"blender-cycles": { description: "Path tracing non biaisé Cycles" },
|
|
7
|
+
"octane-render": { description: "Path tracing spectral GPU" },
|
|
8
|
+
"redshift": { description: "Moteur de production GPU biaisé" },
|
|
9
|
+
"houdini-mantra": { description: "Rendu physique de qualité VFX" },
|
|
10
|
+
"arnold-render": { description: "Path tracer VFX standard de l'industrie" },
|
|
11
|
+
"corona-renderer": { description: "Moteur non biaisé photoréaliste pour l'archi-viz" },
|
|
12
|
+
"vray": { description: "Moteur de production produit / archi-viz / VFX standard de l'industrie" },
|
|
13
|
+
"aces": { description: "Gestion des couleurs ACES de qualité cinéma" },
|
|
14
|
+
// Render-quality keywords
|
|
15
|
+
"raytracing": { label: "Ray tracing", description: "Reflets et ombres précis" },
|
|
16
|
+
"physically-based-rendering": { label: "PBR", description: "Matériaux physiquement réalistes" },
|
|
17
|
+
"global-illumination": { label: "Illumination globale", description: "Rebond de lumière réaliste" },
|
|
18
|
+
"lumen-reflections": { description: "Illumination globale dynamique en temps réel" },
|
|
19
|
+
// Resolution / Detail (technical units kept)
|
|
20
|
+
"8k-uhd": { description: "Résolution 8K ultra-nette" },
|
|
21
|
+
"4k-uhd": { description: "Résolution 4K nette" },
|
|
22
|
+
"16k-megapixel": { description: "Détail folle haute résolution" },
|
|
23
|
+
"ultra-detailed": { label: "Ultra détaillé", description: "Rendu micro-détail maximal" },
|
|
24
|
+
// Style stamps
|
|
25
|
+
"raw-photo": { label: "Photo brute", description: "Sensation photographique non traitée" },
|
|
26
|
+
"masterpiece": { label: "Chef-d'œuvre", description: "Sceau de qualité main d'expert" },
|
|
27
|
+
"award-winning": { label: "Primé", description: "Calibre des circuits de prix" },
|
|
28
|
+
"volumetric-lighting": { label: "Éclairage volumétrique", description: "Faisceaux de lumière volumétriques en rayons divins" },
|
|
29
|
+
"photon-mapping": { label: "Photon Mapping", description: "Illumination globale par photon mapping avec caustiques" },
|
|
30
|
+
"ai-upscaled": { label: "Upscalé par IA", description: "Amélioration de détail upscalée par réseau neuronal" },
|
|
31
|
+
"denoised": { label: "Débruité", description: "Rendu impeccable, propre, sans bruit" },
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"unreal-engine-5": { description: "מראה UE5 של path-tracing בזמן אמת" },
|
|
5
|
+
"blender-cycles": { description: "Path tracing לא מוטה של Cycles" },
|
|
6
|
+
"octane-render": { description: "GPU spectral path tracing" },
|
|
7
|
+
"redshift": { description: "Renderer מוטה GPU להפקה" },
|
|
8
|
+
"houdini-mantra": { description: "רנדור פיזי ברמת VFX" },
|
|
9
|
+
"arnold-render": { description: "Path tracer ל-VFX בתקן התעשייה" },
|
|
10
|
+
"corona-renderer": { description: "Renderer לא מוטה פוטוריאליסטי ל-archviz" },
|
|
11
|
+
"vray": { description: "Renderer הפקה למוצר / archviz / VFX בתקן התעשייה" },
|
|
12
|
+
"aces": { description: "ניהול צבע ACES ברמה קולנועית" },
|
|
13
|
+
|
|
14
|
+
"raytracing": { label: "Ray Tracing", description: "השתקפויות וצללים מדויקים" },
|
|
15
|
+
"physically-based-rendering": { label: "PBR", description: "חומרים מבוססי-פיזיקה" },
|
|
16
|
+
"global-illumination": { label: "Global Illumination", description: "קפיצת אור ריאליסטית" },
|
|
17
|
+
"lumen-reflections": { label: "Lumen Reflections", description: "GI דינמי בזמן אמת" },
|
|
18
|
+
|
|
19
|
+
"8k-uhd": { label: "8K UHD", description: "רזולוציית 8K חדה במיוחד" },
|
|
20
|
+
"4k-uhd": { label: "4K UHD", description: "רזולוציית 4K חדה" },
|
|
21
|
+
"16k-megapixel": { label: "16K Megapixel", description: "פירוט ברזולוציה גבוהה במיוחד" },
|
|
22
|
+
"ultra-detailed": { label: "פרטי במיוחד", description: "רנדור עם פירוט מקסימלי" },
|
|
23
|
+
|
|
24
|
+
"raw-photo": { label: "תמונה גולמית", description: "תחושה צילומית לא מעובדת" },
|
|
25
|
+
"masterpiece": { label: "יצירת מופת", description: "חותם איכות של יד מומחה" },
|
|
26
|
+
"award-winning": { label: "זוכה פרסים", description: "רמה של מעגל פרסים" },
|
|
27
|
+
"volumetric-lighting": { label: "Volumetric Lighting", description: "פירי אור וולומטרי מסוג קרני אלוהים" },
|
|
28
|
+
"photon-mapping": { label: "Photon Mapping", description: "תאורה גלובלית photon-mapped מודעת ל-caustics" },
|
|
29
|
+
"ai-upscaled": { label: "AI Upscaled", description: "שיפור פירוט בהגדלה ברשת נוירונים" },
|
|
30
|
+
"denoised": { label: "Denoised", description: "רנדור נקי, ללא רעש, מבריק" },
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export default map
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// ---------------------------- Engines ----------------------------
|
|
5
|
+
"unreal-engine-5": { description: "Real-time path-traced UE5 look" },
|
|
6
|
+
"blender-cycles": { description: "Cycles unbiased path tracing" },
|
|
7
|
+
"octane-render": { description: "GPU spectral path tracing" },
|
|
8
|
+
"redshift": { description: "Production GPU biased renderer" },
|
|
9
|
+
"houdini-mantra": { description: "VFX-grade physical rendering" },
|
|
10
|
+
"arnold-render": { description: "Industry-standard VFX path tracer" },
|
|
11
|
+
"corona-renderer": { description: "फोटोरियलिस्टिक archviz unbiased renderer" },
|
|
12
|
+
"vray": { description: "Industry-standard product / archviz / VFX renderer" },
|
|
13
|
+
"aces": { description: "Cinema-grade ACES color management" },
|
|
14
|
+
|
|
15
|
+
// ---------------------------- Render-quality keywords ----------------------------
|
|
16
|
+
"raytracing": { label: "Ray Tracing", description: "सटीक reflections + shadows" },
|
|
17
|
+
"physically-based-rendering": { label: "PBR", description: "Physically-based materials" },
|
|
18
|
+
"global-illumination": { label: "Global Illumination", description: "वास्तविक light bounce" },
|
|
19
|
+
"lumen-reflections": { label: "Lumen Reflections", description: "Real-time dynamic GI" },
|
|
20
|
+
|
|
21
|
+
// ---------------------------- Resolution / Detail ----------------------------
|
|
22
|
+
"8k-uhd": { label: "8K UHD", description: "अल्ट्रा-शार्प 8K resolution" },
|
|
23
|
+
"4k-uhd": { label: "4K UHD", description: "Crisp 4K resolution" },
|
|
24
|
+
"16k-megapixel": { label: "16K Megapixel", description: "अत्यधिक उच्च-resolution detail" },
|
|
25
|
+
"ultra-detailed": { label: "Ultra Detailed", description: "अधिकतम micro-detail rendering" },
|
|
26
|
+
|
|
27
|
+
// ---------------------------- Style stamps ----------------------------
|
|
28
|
+
"raw-photo": { label: "Raw Photo", description: "Unprocessed photographic एहसास" },
|
|
29
|
+
"masterpiece": { label: "Masterpiece", description: "विशेषज्ञ-स्तर का quality stamp" },
|
|
30
|
+
"award-winning": { label: "Award Winning", description: "Award-circuit caliber" },
|
|
31
|
+
|
|
32
|
+
// -------------------- Round 2 --------------------
|
|
33
|
+
"volumetric-lighting": { label: "Volumetric Lighting", description: "God-ray volumetric light shafts" },
|
|
34
|
+
"photon-mapping": { label: "Photon Mapping", description: "Caustic-aware photon-mapped global illumination" },
|
|
35
|
+
"ai-upscaled": { label: "AI Upscaled", description: "Neural-network upscaled detail enhancement" },
|
|
36
|
+
"denoised": { label: "Denoised", description: "साफ़ noise-removed pristine rendering" },
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export default map
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Engines — keep brand names in English
|
|
5
|
+
"unreal-engine-5": { description: "リアルタイム・パストレースのUE5ルック" },
|
|
6
|
+
"blender-cycles": { description: "Cycles の不偏パストレーシング" },
|
|
7
|
+
"octane-render": { description: "GPU スペクトル・パストレーシング" },
|
|
8
|
+
"redshift": { description: "プロダクション GPU バイアスト・レンダラー" },
|
|
9
|
+
"houdini-mantra": { description: "VFX グレードの物理ベース・レンダリング" },
|
|
10
|
+
"arnold-render": { description: "業界標準の VFX パストレーサー" },
|
|
11
|
+
"corona-renderer": { description: "フォトリアルな不偏 archviz レンダラー" },
|
|
12
|
+
"vray": { description: "業界標準の製品 / archviz / VFX プロダクション・レンダラー" },
|
|
13
|
+
"aces": { description: "シネマグレードの ACES カラーマネジメント" },
|
|
14
|
+
|
|
15
|
+
// Render-quality keywords
|
|
16
|
+
"raytracing": { label: "レイトレーシング", description: "正確な反射と影" },
|
|
17
|
+
"physically-based-rendering": { label: "PBR(物理ベース)", description: "物理ベースのマテリアル" },
|
|
18
|
+
"global-illumination": { label: "グローバルイルミネーション", description: "リアルな光の反射" },
|
|
19
|
+
"lumen-reflections": { label: "Lumen 反射", description: "リアルタイムのダイナミック GI" },
|
|
20
|
+
|
|
21
|
+
// Resolution / Detail — keep technical labels
|
|
22
|
+
"8k-uhd": { description: "極めてシャープな8K解像度" },
|
|
23
|
+
"4k-uhd": { description: "鮮明な4K解像度" },
|
|
24
|
+
"16k-megapixel": { description: "信じられないほど高解像度のディテール" },
|
|
25
|
+
"ultra-detailed": { label: "超高精細", description: "最大限のミクロ・ディテール・レンダリング" },
|
|
26
|
+
|
|
27
|
+
// Style stamps
|
|
28
|
+
"raw-photo": { label: "Raw 写真", description: "未加工の写真的な質感" },
|
|
29
|
+
"masterpiece": { label: "マスターピース", description: "熟練者の手によるクオリティの証" },
|
|
30
|
+
"award-winning": { label: "受賞作品級", description: "受賞回路レベルの品質" },
|
|
31
|
+
|
|
32
|
+
// Additional render quality
|
|
33
|
+
"volumetric-lighting": { label: "ボリュメトリック・ライティング", description: "ゴッドレイのボリュメトリックな光の柱" },
|
|
34
|
+
"photon-mapping": { label: "フォトンマッピング", description: "コースティックを意識したフォトンマップによるグローバルイルミネーション" },
|
|
35
|
+
"ai-upscaled": { label: "AIアップスケール", description: "ニューラルネットワークによるディテール強化アップスケール" },
|
|
36
|
+
"denoised": { label: "ノイズ除去", description: "クリーンでノイズを除去した高純度のレンダリング" },
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export default map
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Engines (product names — keep in English)
|
|
5
|
+
"unreal-engine-5": { description: "실시간 패스 트레이싱 UE5 룩입니다" },
|
|
6
|
+
"blender-cycles": { description: "Cycles 비편향 패스 트레이싱입니다" },
|
|
7
|
+
"octane-render": { description: "GPU 스펙트럼 패스 트레이싱입니다" },
|
|
8
|
+
"redshift": { description: "프로덕션급 GPU 편향 렌더러입니다" },
|
|
9
|
+
"houdini-mantra": { description: "VFX급 물리 기반 렌더링입니다" },
|
|
10
|
+
"arnold-render": { description: "업계 표준 VFX 패스 트레이서입니다" },
|
|
11
|
+
"corona-renderer": { description: "포토리얼리스틱 비편향 archviz 렌더러입니다" },
|
|
12
|
+
"vray": { description: "업계 표준 제품 / archviz / VFX 프로덕션 렌더러입니다" },
|
|
13
|
+
"aces": { description: "시네마급 ACES 컬러 관리입니다" },
|
|
14
|
+
|
|
15
|
+
// Render-quality keywords
|
|
16
|
+
"raytracing": { label: "레이 트레이싱", description: "정확한 반사와 그림자 처리입니다" },
|
|
17
|
+
"physically-based-rendering": { description: "물리 기반 머티리얼입니다" },
|
|
18
|
+
"global-illumination": { label: "글로벌 일루미네이션", description: "사실적인 빛 반사입니다" },
|
|
19
|
+
"lumen-reflections": { description: "실시간 다이내믹 GI입니다" },
|
|
20
|
+
|
|
21
|
+
// Resolution / Detail (technical alphanumeric)
|
|
22
|
+
"8k-uhd": { description: "초선명한 8K 해상도입니다" },
|
|
23
|
+
"4k-uhd": { description: "또렷한 4K 해상도입니다" },
|
|
24
|
+
"16k-megapixel": { description: "엄청나게 높은 해상도의 디테일입니다" },
|
|
25
|
+
"ultra-detailed": { label: "울트라 디테일드", description: "최대 마이크로 디테일 렌더링입니다" },
|
|
26
|
+
|
|
27
|
+
// Style stamps
|
|
28
|
+
"raw-photo": { label: "Raw 포토", description: "가공되지 않은 사진의 느낌입니다" },
|
|
29
|
+
"masterpiece": { label: "마스터피스", description: "장인의 손길이 느껴지는 품질의 스탬프입니다" },
|
|
30
|
+
"award-winning": { label: "어워드 위닝", description: "수상작 수준의 퀄리티입니다" },
|
|
31
|
+
|
|
32
|
+
// Additional render qualities
|
|
33
|
+
"volumetric-lighting": { label: "볼류메트릭 라이팅", description: "갓 레이 볼류메트릭 광선 샤프트입니다" },
|
|
34
|
+
"photon-mapping": { label: "포톤 매핑", description: "코스틱을 인식하는 포톤 매핑 기반 글로벌 일루미네이션입니다" },
|
|
35
|
+
"ai-upscaled": { label: "AI 업스케일드", description: "신경망으로 업스케일된 디테일 향상입니다" },
|
|
36
|
+
"denoised": { label: "디노이즈드", description: "노이즈가 제거된 깨끗하고 정갈한 렌더링입니다" },
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export default map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Engines — render engine names kept in English
|
|
5
|
+
"unreal-engine-5": { description: "Visão UE5 com path tracing em tempo real" },
|
|
6
|
+
"blender-cycles": { description: "Path tracing imparcial do Cycles" },
|
|
7
|
+
"octane-render": { description: "Path tracing espectral em GPU" },
|
|
8
|
+
"redshift": { description: "Renderizador GPU enviesado de produção" },
|
|
9
|
+
"houdini-mantra": { description: "Renderização física padrão VFX" },
|
|
10
|
+
"arnold-render": { description: "Path tracer VFX padrão da indústria" },
|
|
11
|
+
"corona-renderer": { description: "Renderizador imparcial fotorrealista para archviz" },
|
|
12
|
+
"vray": { description: "Renderizador de produção de produto / archviz / VFX padrão da indústria" },
|
|
13
|
+
"aces": { description: "Gerenciamento de cor ACES com qualidade de cinema" },
|
|
14
|
+
|
|
15
|
+
// Render-quality keywords
|
|
16
|
+
"raytracing": { label: "Ray Tracing", description: "Reflexos + sombras precisos" },
|
|
17
|
+
"physically-based-rendering": { description: "Materiais fisicamente baseados" },
|
|
18
|
+
"global-illumination": { label: "Iluminação Global", description: "Refração realista de luz" },
|
|
19
|
+
"lumen-reflections": { label: "Reflexos Lumen", description: "GI dinâmica em tempo real" },
|
|
20
|
+
|
|
21
|
+
// Resolution / Detail — units kept in English
|
|
22
|
+
"8k-uhd": { description: "Resolução 8K ultranítida" },
|
|
23
|
+
"4k-uhd": { description: "Resolução 4K nítida" },
|
|
24
|
+
"16k-megapixel": { description: "Resolução insanamente alta" },
|
|
25
|
+
"ultra-detailed": { label: "Ultra Detalhado", description: "Renderização com microdetalhes ao máximo" },
|
|
26
|
+
|
|
27
|
+
// Style stamps
|
|
28
|
+
"raw-photo": { label: "Foto Crua", description: "Sensação fotográfica não processada" },
|
|
29
|
+
"masterpiece": { label: "Obra-Prima", description: "Carimbo de qualidade de mestre" },
|
|
30
|
+
"award-winning": { label: "Premiado", description: "Calibre de circuito de prêmios" },
|
|
31
|
+
"volumetric-lighting": { label: "Iluminação Volumétrica", description: "Feixes volumétricos de luz formando god rays" },
|
|
32
|
+
"photon-mapping": { label: "Photon Mapping", description: "Iluminação global com photon mapping consciente de cáusticas" },
|
|
33
|
+
"ai-upscaled": { label: "Upscaling por IA", description: "Aprimoramento de detalhes via upscaling por rede neural" },
|
|
34
|
+
"denoised": { label: "Sem Ruído", description: "Renderização limpa, impecável, com remoção de ruído" },
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default map
|