@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,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "3D-Render", description: "Modernes CGI-Rendering mit klarem Shading" },
|
|
5
|
+
"anime": { label: "Anime", description: "Japanischer Animations-Look" },
|
|
6
|
+
"children-book": { label: "Kinderbuch", description: "Warmes illustriertes Bilderbuch" },
|
|
7
|
+
"cinematic": { label: "Cinematisch", description: "Filmisch-dramatisches Bild" },
|
|
8
|
+
"comic-book": { label: "Comic-Buch", description: "Getuschte Panels mit flacher Farbe" },
|
|
9
|
+
"digital-art": { label: "Digitalkunst", description: "Polierte digitale Illustration" },
|
|
10
|
+
"fantasy": { label: "Fantasy", description: "Epische High-Fantasy-Illustration" },
|
|
11
|
+
"minimalist": { label: "Minimalistisch", description: "Einfache Formen, viel Weißraum" },
|
|
12
|
+
"noir": { label: "Noir", description: "Hochkontrastiges S/W-Film-Noir" },
|
|
13
|
+
"oil-painting": { label: "Ölgemälde", description: "Dicke Pinselstriche, klassische Leinwand" },
|
|
14
|
+
"pencil-sketch": { label: "Bleistiftzeichnung", description: "Handgezeichnete Graphitzeichnung" },
|
|
15
|
+
"photorealistic": { label: "Fotorealistisch", description: "Nicht von einem Foto zu unterscheiden" },
|
|
16
|
+
"pixel-art": { label: "Pixel Art", description: "Retro-Game-Pixel-Raster" },
|
|
17
|
+
"pop-art": { label: "Pop Art", description: "Kräftige Farben, Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "Retro / Vintage", description: "Verblasster nostalgischer Film-Look" },
|
|
19
|
+
"watercolor": { label: "Aquarell", description: "Sanfte transparente Lasuren" },
|
|
20
|
+
"concept-art": { label: "Concept Art", description: "Film-/Spiel-Vorproduktionsmalerei" },
|
|
21
|
+
"impressionism": { label: "Impressionismus", description: "Monet-artige getupfte Pinselführung" },
|
|
22
|
+
"surrealism": { label: "Surrealismus", description: "Traumhaft, Dalí-inspiriert" },
|
|
23
|
+
"cyberpunk": { label: "Cyberpunk", description: "Neonbeleuchtete dystopische Zukunft" },
|
|
24
|
+
"steampunk": { label: "Steampunk", description: "Viktorianisches Messing + Maschinerie" },
|
|
25
|
+
"vaporwave": { label: "Vaporwave", description: "80er Pastell-Digital-Retro" },
|
|
26
|
+
"low-poly": { label: "Low Poly", description: "Facettiertes geometrisches 3D" },
|
|
27
|
+
"ink-wash": { label: "Tuschelavierung", description: "Ostasiatischer Sumi-e-Pinsel" },
|
|
28
|
+
"isometric": { label: "Isometrisch", description: "3/4-Axonometrische Ansicht" },
|
|
29
|
+
"flat-vector": { label: "Flat Vector", description: "Moderne flache Illustration" },
|
|
30
|
+
"ukiyo-e": { description: "Japanischer Holzschnitt" },
|
|
31
|
+
"graffiti": { label: "Graffiti", description: "Street-Art-Sprühfarbe" },
|
|
32
|
+
"claymation": { label: "Knetanimation", description: "Taktiles Stop-Motion-Knetmasse" },
|
|
33
|
+
"glitch-art": { description: "Digitale Korruption + Datamosh" },
|
|
34
|
+
"ascii-art": { description: "Monochrome Terminalzeichen" },
|
|
35
|
+
"blueprint": { label: "Blaupause", description: "Technische Zeichnung auf Blau" },
|
|
36
|
+
"stained-glass": { label: "Buntglas", description: "Verbleites farbiges Glasmosaik" },
|
|
37
|
+
"chalkboard": { label: "Tafel", description: "Weiße Kreide auf Schiefer" },
|
|
38
|
+
"paper-cutout": { label: "Papierausschnitt", description: "Geschichtetes Schnittpapier + Schatten" },
|
|
39
|
+
"illuminated": { label: "Illuminierte Handschrift", description: "Blattgold + Kalligrafie" },
|
|
40
|
+
"pixar-3d": { description: "Polierte Charakteranimations-CG" },
|
|
41
|
+
"caricature": { label: "Karikatur", description: "Übertriebenes stilisiertes Porträt" },
|
|
42
|
+
"fresco": { label: "Fresko", description: "Wandmalerei auf Putz im Stil einer Renaissance-Decke" },
|
|
43
|
+
"mosaic": { label: "Mosaik", description: "Aus kleinen Kacheln tesseliertes byzantinisches Kunstwerk" },
|
|
44
|
+
"woodcut": { label: "Holzschnitt", description: "Kontrastreicher Reliefdruck der Dürer-Ära" },
|
|
45
|
+
"etching": { label: "Radierung", description: "Fein schraffierter Tiefdruck im Stil Rembrandts" },
|
|
46
|
+
"lithograph": { label: "Lithografie", description: "Steindruck mit weichem Tonwertumfang im Stil Toulouse-Lautrecs" },
|
|
47
|
+
"charcoal": { label: "Kohlezeichnung", description: "Weiche Schwarz-Grau-Tonstudie" },
|
|
48
|
+
"pastel": { label: "Pastell", description: "Weiche Kreidepastelle, trockenes Medium" },
|
|
49
|
+
"acrylic-paint": { label: "Acrylfarbe", description: "Schnelltrocknendes deckendes Medium, scharfe Kanten" },
|
|
50
|
+
"mixed-media": { label: "Mischtechnik", description: "Kombinierte Medien, heterogene Texturen" },
|
|
51
|
+
"manga": { label: "Manga", description: "Getuschte S/W-Panel-Kunst, Rastertöne" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "Render 3D", description: "Render CGI moderno con sombreado limpio" },
|
|
5
|
+
"anime": { label: "Anime", description: "Look de animación japonesa" },
|
|
6
|
+
"children-book": { label: "Libro Infantil", description: "Cuento ilustrado cálido" },
|
|
7
|
+
"cinematic": { label: "Cinematográfico", description: "Imagen dramática de calidad fílmica" },
|
|
8
|
+
"comic-book": { label: "Cómic", description: "Paneles entintados con color plano" },
|
|
9
|
+
"digital-art": { label: "Arte Digital", description: "Ilustración digital pulida" },
|
|
10
|
+
"fantasy": { label: "Fantasía", description: "Ilustración de alta fantasía épica" },
|
|
11
|
+
"minimalist": { label: "Minimalista", description: "Formas simples, mucho espacio en blanco" },
|
|
12
|
+
"noir": { description: "Cine noir B&N de alto contraste" },
|
|
13
|
+
"oil-painting": { label: "Pintura al Óleo", description: "Pinceladas gruesas, lienzo clásico" },
|
|
14
|
+
"pencil-sketch": { label: "Boceto a Lápiz", description: "Dibujo a grafito hecho a mano" },
|
|
15
|
+
"photorealistic": { label: "Fotorrealista", description: "Indistinguible de una fotografía" },
|
|
16
|
+
"pixel-art": { label: "Pixel Art", description: "Cuadrícula de píxeles estilo juego retro" },
|
|
17
|
+
"pop-art": { label: "Pop Art", description: "Colores audaces, estilo Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "Retro / Vintage", description: "Look de película nostálgica desvanecida" },
|
|
19
|
+
"watercolor": { label: "Acuarela", description: "Lavados transparentes suaves" },
|
|
20
|
+
"concept-art": { label: "Concept Art", description: "Pintura de preproducción de cine/juegos" },
|
|
21
|
+
"impressionism": { label: "Impresionismo", description: "Pinceladas estilo Monet" },
|
|
22
|
+
"surrealism": { label: "Surrealismo", description: "Onírico inspirado en Dalí" },
|
|
23
|
+
"cyberpunk": { label: "Cyberpunk", description: "Futuro distópico iluminado por neón" },
|
|
24
|
+
"steampunk": { label: "Steampunk", description: "Latón y maquinaria victoriana" },
|
|
25
|
+
"vaporwave": { label: "Vaporwave", description: "Retro digital pastel de los 80" },
|
|
26
|
+
"low-poly": { label: "Low Poly", description: "3D geométrico facetado" },
|
|
27
|
+
"ink-wash": { description: "Pincelada sumi-e del este de Asia" },
|
|
28
|
+
"isometric": { label: "Isométrico", description: "Vista axonométrica 3/4" },
|
|
29
|
+
"flat-vector": { label: "Vector Plano", description: "Ilustración plana moderna" },
|
|
30
|
+
"ukiyo-e": { description: "Grabado en madera japonés" },
|
|
31
|
+
"graffiti": { label: "Grafiti", description: "Pintura en aerosol de arte callejero" },
|
|
32
|
+
"claymation": { label: "Claymation", description: "Stop-motion de plastilina táctil" },
|
|
33
|
+
"glitch-art": { label: "Arte Glitch", description: "Corrupción digital + datamosh" },
|
|
34
|
+
"ascii-art": { label: "ASCII Art", description: "Caracteres de terminal monocromos" },
|
|
35
|
+
"blueprint": { label: "Plano Técnico", description: "Dibujo técnico sobre azul" },
|
|
36
|
+
"stained-glass": { label: "Vitral", description: "Mosaico de cristal coloreado emplomado" },
|
|
37
|
+
"chalkboard": { label: "Pizarra", description: "Tiza blanca sobre pizarra" },
|
|
38
|
+
"paper-cutout": { label: "Recortes de Papel", description: "Papel cortado en capas + sombras" },
|
|
39
|
+
"illuminated": { label: "Manuscrito Iluminado", description: "Pan de oro + caligrafía" },
|
|
40
|
+
"pixar-3d": { label: "Pixar 3D", description: "CG de animación de personajes pulida" },
|
|
41
|
+
"caricature": { label: "Caricatura", description: "Retrato exagerado estilizado" },
|
|
42
|
+
"fresco": { label: "Fresco", description: "Pintura mural sobre yeso estilo techo renacentista" },
|
|
43
|
+
"mosaic": { label: "Mosaico", description: "Obra teselada de pequeñas teselas, bizantina" },
|
|
44
|
+
"woodcut": { label: "Xilografía", description: "Grabado en relieve de alto contraste, era de Dürer" },
|
|
45
|
+
"etching": { label: "Aguafuerte", description: "Grabado calcográfico finamente entrecruzado, Rembrandt" },
|
|
46
|
+
"lithograph": { label: "Litografía", description: "Impresión en piedra de rango tonal suave, Toulouse-Lautrec" },
|
|
47
|
+
"charcoal": { label: "Carboncillo", description: "Estudio tonal suave en negro/gris" },
|
|
48
|
+
"pastel": { label: "Pastel", description: "Pasteles de tiza suaves, medio seco" },
|
|
49
|
+
"acrylic-paint": { label: "Pintura Acrílica", description: "Medio opaco de secado rápido, bordes definidos" },
|
|
50
|
+
"mixed-media": { label: "Técnica Mixta", description: "Medios combinados, texturas heterogéneas" },
|
|
51
|
+
"manga": { label: "Manga", description: "Arte de viñetas entintado en B&N, sombreado con tramas" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "Rendu 3D", description: "Rendu CGI moderne avec ombrage propre" },
|
|
5
|
+
"anime": { label: "Anime", description: "Look animation japonaise" },
|
|
6
|
+
"children-book": { label: "Livre pour enfants", description: "Livre d'images chaleureusement illustré" },
|
|
7
|
+
"cinematic": { label: "Cinématographique", description: "Image dramatique grade cinéma" },
|
|
8
|
+
"comic-book": { label: "Bande dessinée", description: "Cases encrées avec couleur plate" },
|
|
9
|
+
"digital-art": { label: "Art numérique", description: "Illustration numérique soignée" },
|
|
10
|
+
"fantasy": { label: "Fantastique", description: "Illustration high fantasy épique" },
|
|
11
|
+
"minimalist": { label: "Minimaliste", description: "Formes simples, beaucoup d'espace blanc" },
|
|
12
|
+
"noir": { label: "Noir", description: "Film noir N&B à fort contraste" },
|
|
13
|
+
"oil-painting": { label: "Peinture à l'huile", description: "Coups de pinceau épais, toile classique" },
|
|
14
|
+
"pencil-sketch": { label: "Croquis au crayon", description: "Dessin au graphite à la main" },
|
|
15
|
+
"photorealistic": { label: "Photoréaliste", description: "Indistinguable d'une photographie" },
|
|
16
|
+
"pixel-art": { description: "Grille de pixels rétro style jeu vidéo" },
|
|
17
|
+
"pop-art": { description: "Couleurs audacieuses, Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "Rétro / Vintage", description: "Look pellicule nostalgique délavé" },
|
|
19
|
+
"watercolor": { label: "Aquarelle", description: "Lavis transparents doux" },
|
|
20
|
+
"concept-art": { description: "Peinture pré-production cinéma/jeu" },
|
|
21
|
+
"impressionism": { label: "Impressionnisme", description: "Pinceau pointillé style Monet" },
|
|
22
|
+
"surrealism": { label: "Surréalisme", description: "Onirique inspiré de Dalí" },
|
|
23
|
+
"cyberpunk": { description: "Futur dystopique au néon" },
|
|
24
|
+
"steampunk": { description: "Laiton victorien + machinerie" },
|
|
25
|
+
"vaporwave": { description: "Pastel numérique rétro années 80" },
|
|
26
|
+
"low-poly": { description: "3D géométrique à facettes" },
|
|
27
|
+
"ink-wash": { description: "Pinceau sumi-e d'Asie de l'Est" },
|
|
28
|
+
"isometric": { label: "Isométrique", description: "Vue axonométrique 3/4" },
|
|
29
|
+
"flat-vector": { label: "Vecteur plat", description: "Illustration plate moderne" },
|
|
30
|
+
"ukiyo-e": { description: "Estampe japonaise sur bois" },
|
|
31
|
+
"graffiti": { description: "Bombage de street art" },
|
|
32
|
+
"claymation": { description: "Pâte à modeler stop-motion tactile" },
|
|
33
|
+
"glitch-art": { description: "Corruption numérique + datamosh" },
|
|
34
|
+
"ascii-art": { description: "Caractères de terminal monochromes" },
|
|
35
|
+
"blueprint": { label: "Plan technique", description: "Dessin technique sur fond bleu" },
|
|
36
|
+
"stained-glass": { label: "Vitrail", description: "Mosaïque de verre coloré au plomb" },
|
|
37
|
+
"chalkboard": { label: "Tableau noir", description: "Craie blanche sur ardoise" },
|
|
38
|
+
"paper-cutout": { label: "Découpage en papier", description: "Papier découpé en couches + ombres" },
|
|
39
|
+
"illuminated": { label: "Manuscrit enluminé", description: "Feuille d'or + calligraphie" },
|
|
40
|
+
"pixar-3d": { description: "CG d'animation de personnages soigné" },
|
|
41
|
+
"caricature": { description: "Portrait stylisé exagéré" },
|
|
42
|
+
"fresco": { label: "Fresque", description: "Peinture murale sur plâtre style plafond Renaissance" },
|
|
43
|
+
"mosaic": { label: "Mosaïque", description: "Œuvre tessellée à petits carreaux, byzantine" },
|
|
44
|
+
"woodcut": { label: "Gravure sur bois", description: "Estampe en relief à fort contraste, ère Dürer" },
|
|
45
|
+
"etching": { label: "Eau-forte", description: "Gravure intaglio finement hachurée, Rembrandt" },
|
|
46
|
+
"lithograph": { label: "Lithographie", description: "Estampe sur pierre à plage tonale douce, Toulouse-Lautrec" },
|
|
47
|
+
"charcoal": { label: "Fusain", description: "Étude tonale douce noir/gris" },
|
|
48
|
+
"pastel": { label: "Pastel", description: "Pastels secs à la craie, médium sec" },
|
|
49
|
+
"acrylic-paint": { label: "Peinture acrylique", description: "Médium opaque à séchage rapide, contours nets" },
|
|
50
|
+
"mixed-media": { label: "Techniques mixtes", description: "Médias combinés, textures hétérogènes" },
|
|
51
|
+
"manga": { label: "Manga", description: "Art encré N&B en cases, ombrage à trame" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "רנדר תלת-ממד", description: "רנדר CGI מודרני עם הצללה נקייה" },
|
|
5
|
+
"anime": { label: "אנימה", description: "מראה של אנימציה יפנית" },
|
|
6
|
+
"children-book": { label: "ספר ילדים", description: "ספר אגדה מצויר חמים" },
|
|
7
|
+
"cinematic": { label: "קולנועי", description: "תמונה דרמטית ברמת פילם" },
|
|
8
|
+
"comic-book": { label: "קומיקס", description: "פאנלים בדיו עם צבע שטוח" },
|
|
9
|
+
"digital-art": { label: "אמנות דיגיטלית", description: "איור דיגיטלי מלוטש" },
|
|
10
|
+
"fantasy": { label: "פנטזיה", description: "איור פנטזיה גבוהה אפי" },
|
|
11
|
+
"minimalist": { label: "מינימליסטי", description: "צורות פשוטות, הרבה רווח לבן" },
|
|
12
|
+
"noir": { label: "Noir", description: "Film noir שחור-לבן בקונטרסט גבוה" },
|
|
13
|
+
"oil-painting": { label: "ציור שמן", description: "משיכות מכחול עבות, קנבס קלאסי" },
|
|
14
|
+
"pencil-sketch": { label: "סקיצת עיפרון", description: "ציור גרפיט בעבודת יד" },
|
|
15
|
+
"photorealistic": { label: "פוטו-ריאליסטי", description: "לא ניתן להבחנה מצילום" },
|
|
16
|
+
"pixel-art": { label: "Pixel Art", description: "רשת פיקסלים בסגנון משחק רטרו" },
|
|
17
|
+
"pop-art": { label: "פופ ארט", description: "צבעים נועזים, Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "רטרו / וינטג'", description: "מראה פילם נוסטלגי דהוי" },
|
|
19
|
+
"watercolor": { label: "צבעי מים", description: "שטיפות שקופות רכות" },
|
|
20
|
+
"concept-art": { label: "אמנות קונספט", description: "ציור pre-production לפילם/משחק" },
|
|
21
|
+
"impressionism": { label: "אימפרסיוניזם", description: "משיכות מכחול מנקדות בסגנון Monet" },
|
|
22
|
+
"surrealism": { label: "סוריאליזם", description: "חולמני בהשפעת Dalí" },
|
|
23
|
+
"cyberpunk": { label: "Cyberpunk", description: "עתיד דיסטופי מואר ניאון" },
|
|
24
|
+
"steampunk": { label: "Steampunk", description: "פליז ויקטוריאני + מכונות" },
|
|
25
|
+
"vaporwave": { label: "Vaporwave", description: "פסטל דיגיטלי רטרו של שנות ה-80" },
|
|
26
|
+
"low-poly": { label: "Low Poly", description: "תלת-ממד גיאומטרי משטחי" },
|
|
27
|
+
"ink-wash": { label: "Ink Wash", description: "מכחול sumi-e מזרח-אסיאני" },
|
|
28
|
+
"isometric": { label: "איזומטרי", description: "מבט אקסונומטרי 3/4" },
|
|
29
|
+
"flat-vector": { label: "וקטור שטוח", description: "איור שטוח מודרני" },
|
|
30
|
+
"ukiyo-e": { label: "Ukiyo-e", description: "הדפס עץ יפני" },
|
|
31
|
+
"graffiti": { label: "גרפיטי", description: "אמנות רחוב בספריי" },
|
|
32
|
+
"claymation": { label: "Claymation", description: "סטופ-מושן חימר מוחשי" },
|
|
33
|
+
"glitch-art": { label: "אמנות Glitch", description: "השחתה דיגיטלית + Datamosh" },
|
|
34
|
+
"ascii-art": { label: "ASCII Art", description: "תווי טרמינל מונוכרומטיים" },
|
|
35
|
+
"blueprint": { label: "Blueprint", description: "ציור טכני על כחול" },
|
|
36
|
+
"stained-glass": { label: "ויטראז'", description: "פסיפס זכוכית מצבעית מולחמת" },
|
|
37
|
+
"chalkboard": { label: "לוח גיר", description: "גיר לבן על צפחה" },
|
|
38
|
+
"paper-cutout": { label: "חיתוך נייר", description: "נייר חתוך בשכבות + צללים" },
|
|
39
|
+
"illuminated": { label: "כתב יד מואר", description: "עלי זהב + קליגרפיה" },
|
|
40
|
+
"pixar-3d": { label: "תלת-ממד Pixar", description: "אנימציית דמות מלוטשת CG" },
|
|
41
|
+
"caricature": { label: "קריקטורה", description: "פורטרט מסוגנן ומוגזם" },
|
|
42
|
+
"fresco": { label: "פרסקו", description: "ציור קיר על טיח בסגנון תקרת רנסנס" },
|
|
43
|
+
"mosaic": { label: "פסיפס", description: "אמנות אריחים קטנים בטכניקת פסיפס ביזנטי" },
|
|
44
|
+
"woodcut": { label: "חיתוך עץ", description: "הדפס תבליט בקונטרסט נועז, מתקופת Dürer" },
|
|
45
|
+
"etching": { label: "תחריט", description: "הדפס intaglio עם הצללה דקה, סגנון Rembrandt" },
|
|
46
|
+
"lithograph": { label: "ליתוגרפיה", description: "הדפס אבן עם טווח טונאלי רך, סגנון Toulouse-Lautrec" },
|
|
47
|
+
"charcoal": { label: "פחם", description: "מחקר טונאלי שחור-אפור רך" },
|
|
48
|
+
"pastel": { label: "פסטל", description: "פסטלים יבשים של גיר רך" },
|
|
49
|
+
"acrylic-paint": { label: "צבע אקריליק", description: "מדיה אטומה מתייבשת מהר, קצוות חדים" },
|
|
50
|
+
"mixed-media": { label: "מדיה מעורבת", description: "שילוב מדיות, טקסטורות הטרוגניות" },
|
|
51
|
+
"manga": { label: "מאנגה", description: "אמנות פאנלים בדיו שחור-לבן עם הצללת screen-tone" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "3D Render", description: "साफ़ shading वाला आधुनिक CGI render" },
|
|
5
|
+
"anime": { label: "Anime", description: "जापानी animation look" },
|
|
6
|
+
"children-book": { label: "बच्चों की किताब", description: "गर्म illustrated storybook" },
|
|
7
|
+
"cinematic": { label: "Cinematic", description: "Film-grade dramatic image" },
|
|
8
|
+
"comic-book": { label: "Comic Book", description: "Flat color के साथ inked panels" },
|
|
9
|
+
"digital-art": { label: "Digital Art", description: "Polished digital illustration" },
|
|
10
|
+
"fantasy": { label: "Fantasy", description: "Epic high-fantasy illustration" },
|
|
11
|
+
"minimalist": { label: "Minimalist", description: "साधारण आकार, ख़ूब whitespace" },
|
|
12
|
+
"noir": { label: "Noir", description: "High-contrast B&W film noir" },
|
|
13
|
+
"oil-painting": { label: "Oil Painting", description: "मोटे brush strokes, क्लासिक canvas" },
|
|
14
|
+
"pencil-sketch": { label: "Pencil Sketch", description: "हाथ से बनाई graphite drawing" },
|
|
15
|
+
"photorealistic": { label: "Photorealistic", description: "तस्वीर से अप्रभेद्य" },
|
|
16
|
+
"pixel-art": { label: "Pixel Art", description: "Retro game-शैली का pixel grid" },
|
|
17
|
+
"pop-art": { label: "Pop Art", description: "Bold रंग, Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "Retro / Vintage", description: "Faded nostalgic film look" },
|
|
19
|
+
"watercolor": { label: "Watercolor", description: "मुलायम पारदर्शी washes" },
|
|
20
|
+
"concept-art": { label: "Concept Art", description: "Film/game pre-production painting" },
|
|
21
|
+
"impressionism": { label: "Impressionism", description: "Monet-शैली का dabbed brushwork" },
|
|
22
|
+
"surrealism": { label: "Surrealism", description: "Dreamlike Dalí-inspired" },
|
|
23
|
+
"cyberpunk": { label: "Cyberpunk", description: "Neon-lit dystopian भविष्य" },
|
|
24
|
+
"steampunk": { label: "Steampunk", description: "Victorian brass + machinery" },
|
|
25
|
+
"vaporwave": { label: "Vaporwave", description: "80 के दशक का pastel digital retro" },
|
|
26
|
+
"low-poly": { label: "Low Poly", description: "Faceted geometric 3D" },
|
|
27
|
+
"ink-wash": { label: "Ink Wash", description: "East-Asian sumi-e brush" },
|
|
28
|
+
"isometric": { label: "Isometric", description: "3/4 axonometric view" },
|
|
29
|
+
"flat-vector": { label: "Flat Vector", description: "आधुनिक flat illustration" },
|
|
30
|
+
"ukiyo-e": { label: "Ukiyo-e", description: "जापानी woodblock print" },
|
|
31
|
+
"graffiti": { label: "Graffiti", description: "Street-art spray paint" },
|
|
32
|
+
"claymation": { label: "Claymation", description: "Tactile stop-motion clay" },
|
|
33
|
+
"glitch-art": { label: "Glitch Art", description: "Digital corruption + datamosh" },
|
|
34
|
+
"ascii-art": { label: "ASCII Art", description: "Monochrome terminal अक्षर" },
|
|
35
|
+
"blueprint": { label: "Blueprint", description: "नीले पर technical drawing" },
|
|
36
|
+
"stained-glass": { label: "Stained Glass", description: "Leaded रंगीन काँच का mosaic" },
|
|
37
|
+
"chalkboard": { label: "Chalkboard", description: "Slate पर सफ़ेद chalk" },
|
|
38
|
+
"paper-cutout": { label: "Paper Cutout", description: "Layered cut paper + shadows" },
|
|
39
|
+
"illuminated": { label: "Illuminated Manuscript", description: "Gold leaf + calligraphy" },
|
|
40
|
+
"pixar-3d": { label: "Pixar 3D", description: "Polished character animation CG" },
|
|
41
|
+
"caricature": { label: "Caricature", description: "Exaggerated stylized portrait" },
|
|
42
|
+
"fresco": { label: "Fresco", description: "Plaster पर Renaissance छत-शैली की दीवार चित्रकारी" },
|
|
43
|
+
"mosaic": { label: "Mosaic", description: "छोटे-tile tessellated कलाकृति, Byzantine" },
|
|
44
|
+
"woodcut": { label: "Woodcut", description: "Bold-contrast relief print, Dürer-era" },
|
|
45
|
+
"etching": { label: "Etching", description: "बारीक cross-hatched intaglio printmaking, Rembrandt" },
|
|
46
|
+
"lithograph": { label: "Lithograph", description: "Stone-print मुलायम tonal range, Toulouse-Lautrec" },
|
|
47
|
+
"charcoal": { label: "Charcoal", description: "मुलायम काला/धूसर tonal study" },
|
|
48
|
+
"pastel": { label: "Pastel", description: "मुलायम chalk pastels, dry medium" },
|
|
49
|
+
"acrylic-paint": { label: "Acrylic Paint", description: "तेज़ी से सूखने वाला opaque medium, तीखे edges" },
|
|
50
|
+
"mixed-media": { label: "Mixed Media", description: "मिश्रित media, heterogeneous textures" },
|
|
51
|
+
"manga": { label: "Manga", description: "Inked B&W panel कला, screen-tone shading" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "3Dレンダー", description: "クリーンなシェーディングのモダンなCGIレンダリング" },
|
|
5
|
+
"anime": { label: "アニメ", description: "日本のアニメーション調" },
|
|
6
|
+
"children-book": { label: "絵本", description: "暖かなイラストの絵本風" },
|
|
7
|
+
"cinematic": { label: "シネマティック", description: "映画的でドラマチックな画像" },
|
|
8
|
+
"comic-book": { label: "コミックブック", description: "ベタ塗りカラーのインク描きパネル" },
|
|
9
|
+
"digital-art": { label: "デジタルアート", description: "磨かれたデジタルイラストレーション" },
|
|
10
|
+
"fantasy": { label: "ファンタジー", description: "壮大なハイファンタジー・イラスト" },
|
|
11
|
+
"minimalist": { label: "ミニマリスト", description: "シンプルな形と豊富な余白" },
|
|
12
|
+
"noir": { label: "ノワール", description: "高コントラストの白黒フィルム・ノワール" },
|
|
13
|
+
"oil-painting": { label: "油絵", description: "厚塗りのブラシストロークとクラシックなキャンバス" },
|
|
14
|
+
"pencil-sketch": { label: "鉛筆スケッチ", description: "手描きのグラファイト画" },
|
|
15
|
+
"photorealistic": { label: "フォトリアリスティック", description: "写真と見分けがつかない" },
|
|
16
|
+
"pixel-art": { label: "ピクセルアート", description: "レトロゲーム風のピクセルグリッド" },
|
|
17
|
+
"pop-art": { label: "ポップアート", description: "大胆な色使い、ウォーホル/リキテンシュタイン風" },
|
|
18
|
+
"retro-vintage": { label: "レトロ/ヴィンテージ", description: "色褪せた懐かしいフィルムルック" },
|
|
19
|
+
"watercolor": { label: "水彩画", description: "柔らかな透明の洗い" },
|
|
20
|
+
"concept-art": { label: "コンセプトアート", description: "映画/ゲームのプリプロダクション・ペインティング" },
|
|
21
|
+
"impressionism": { label: "印象派", description: "モネ風の点描的なブラシワーク" },
|
|
22
|
+
"surrealism": { label: "シュルレアリスム", description: "ダリ風の夢のような世界" },
|
|
23
|
+
"cyberpunk": { label: "サイバーパンク", description: "ネオンに照らされたディストピアの未来" },
|
|
24
|
+
"steampunk": { label: "スチームパンク", description: "ヴィクトリア朝の真鍮と機械" },
|
|
25
|
+
"vaporwave": { label: "ヴェイパーウェイヴ", description: "80年代のパステル調デジタル・レトロ" },
|
|
26
|
+
"low-poly": { label: "ローポリ", description: "幾何学的な3Dの面構成" },
|
|
27
|
+
"ink-wash": { label: "墨絵", description: "東アジアの水墨画(墨絵)" },
|
|
28
|
+
"isometric": { label: "アイソメトリック", description: "3/4の軸測投影ビュー" },
|
|
29
|
+
"flat-vector": { label: "フラットベクター", description: "モダンなフラットイラストレーション" },
|
|
30
|
+
"ukiyo-e": { description: "日本の伝統的な木版画(浮世絵)" },
|
|
31
|
+
"graffiti": { label: "グラフィティ", description: "ストリートアートのスプレーペイント" },
|
|
32
|
+
"claymation": { label: "クレイメーション", description: "触覚的なストップモーションの粘土" },
|
|
33
|
+
"glitch-art": { label: "グリッチアート", description: "デジタル破損とデータモッシュ" },
|
|
34
|
+
"ascii-art": { label: "ASCIIアート", description: "モノクロの端末文字" },
|
|
35
|
+
"blueprint": { label: "ブループリント", description: "青地の上の技術図面" },
|
|
36
|
+
"stained-glass": { label: "ステンドグラス", description: "鉛が囲む色ガラスのモザイク" },
|
|
37
|
+
"chalkboard": { label: "黒板", description: "石板上の白いチョーク描き" },
|
|
38
|
+
"paper-cutout": { label: "ペーパーカット", description: "層になった切り紙とドロップシャドウ" },
|
|
39
|
+
"illuminated": { label: "彩色写本", description: "金箔とカリグラフィー" },
|
|
40
|
+
"pixar-3d": { label: "Pixar 3D", description: "磨かれたキャラクター・アニメーションCG" },
|
|
41
|
+
"caricature": { label: "カリカチュア", description: "誇張された様式化ポートレート" },
|
|
42
|
+
"fresco": { label: "フレスコ画", description: "漆喰の上に描くルネサンス様式の天井画風" },
|
|
43
|
+
"mosaic": { label: "モザイク", description: "小さなタイルを敷き詰めたビザンチン風モザイク" },
|
|
44
|
+
"woodcut": { label: "木版画", description: "デューラー時代の大胆なコントラストの凸版印刷" },
|
|
45
|
+
"etching": { label: "エッチング", description: "細かいクロスハッチングのレンブラント風凹版画" },
|
|
46
|
+
"lithograph": { label: "リトグラフ", description: "石版印刷の柔らかな階調、トゥールーズ=ロートレック風" },
|
|
47
|
+
"charcoal": { label: "木炭画", description: "柔らかな黒と灰のトーン習作" },
|
|
48
|
+
"pastel": { label: "パステル", description: "柔らかなチョーク状のドライメディア" },
|
|
49
|
+
"acrylic-paint": { label: "アクリル絵具", description: "速乾性の不透明メディア、シャープなエッジ" },
|
|
50
|
+
"mixed-media": { label: "ミクストメディア", description: "複数の素材を組み合わせた不均質な質感" },
|
|
51
|
+
"manga": { 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
|
+
"3d-render": { label: "3D 렌더", description: "깔끔한 셰이딩의 모던 CGI 렌더입니다" },
|
|
5
|
+
"anime": { label: "애니메이션", description: "일본 애니메이션 룩입니다" },
|
|
6
|
+
"children-book": { label: "동화책", description: "따뜻한 일러스트 동화책 스타일입니다" },
|
|
7
|
+
"cinematic": { label: "시네마틱", description: "필름급 드라마틱 이미지입니다" },
|
|
8
|
+
"comic-book": { label: "코믹북", description: "잉킹된 패널과 평면 컬러입니다" },
|
|
9
|
+
"digital-art": { label: "디지털 아트", description: "세련된 디지털 일러스트레이션입니다" },
|
|
10
|
+
"fantasy": { label: "판타지", description: "장엄한 하이 판타지 일러스트레이션입니다" },
|
|
11
|
+
"minimalist": { label: "미니멀리스트", description: "단순한 형태와 풍부한 여백입니다" },
|
|
12
|
+
"noir": { label: "느와르", description: "고대비 흑백 필름 느와르입니다" },
|
|
13
|
+
"oil-painting": { label: "유화", description: "두꺼운 붓터치의 클래식한 캔버스입니다" },
|
|
14
|
+
"pencil-sketch": { label: "연필 스케치", description: "손으로 그린 흑연 드로잉입니다" },
|
|
15
|
+
"photorealistic": { label: "포토리얼리스틱", description: "사진과 구분되지 않는 룩입니다" },
|
|
16
|
+
"pixel-art": { label: "픽셀 아트", description: "레트로 게임 스타일의 픽셀 그리드입니다" },
|
|
17
|
+
"pop-art": { label: "팝 아트", description: "Warhol/Lichtenstein 스타일의 강렬한 색상입니다" },
|
|
18
|
+
"retro-vintage": { label: "레트로 / 빈티지", description: "바랜 향수의 필름 룩입니다" },
|
|
19
|
+
"watercolor": { label: "수채화", description: "부드럽고 투명한 워시입니다" },
|
|
20
|
+
"concept-art": { label: "콘셉트 아트", description: "영화/게임 사전 제작용 페인팅입니다" },
|
|
21
|
+
"impressionism": { label: "인상주의", description: "Monet 스타일의 점묘 붓터치입니다" },
|
|
22
|
+
"surrealism": { label: "초현실주의", description: "Dalí 스타일의 꿈결 같은 표현입니다" },
|
|
23
|
+
"cyberpunk": { label: "사이버펑크", description: "네온이 빛나는 디스토피아 미래입니다" },
|
|
24
|
+
"steampunk": { label: "스팀펑크", description: "빅토리아 시대 황동과 기계 장치입니다" },
|
|
25
|
+
"vaporwave": { label: "베이퍼웨이브", description: "80년대 파스텔 디지털 레트로입니다" },
|
|
26
|
+
"low-poly": { label: "로우 폴리", description: "면이 보이는 기하학적 3D입니다" },
|
|
27
|
+
"ink-wash": { label: "수묵화", description: "동아시아의 수묵화 붓 기법입니다" },
|
|
28
|
+
"isometric": { label: "아이소메트릭", description: "3/4 등각 투영 뷰입니다" },
|
|
29
|
+
"flat-vector": { label: "플랫 벡터", description: "모던한 플랫 일러스트레이션입니다" },
|
|
30
|
+
"ukiyo-e": { description: "일본 목판화 양식입니다" },
|
|
31
|
+
"graffiti": { label: "그래피티", description: "스트리트 아트 스프레이 페인트입니다" },
|
|
32
|
+
"claymation": { label: "클레이메이션", description: "촉각적인 스톱모션 클레이입니다" },
|
|
33
|
+
"glitch-art": { label: "글리치 아트", description: "디지털 손상과 데이터모쉬입니다" },
|
|
34
|
+
"ascii-art": { description: "흑백 터미널 문자 아트입니다" },
|
|
35
|
+
"blueprint": { label: "블루프린트", description: "푸른 바탕의 기술 도면입니다" },
|
|
36
|
+
"stained-glass": { label: "스테인드 글라스", description: "납으로 짠 컬러 글라스 모자이크입니다" },
|
|
37
|
+
"chalkboard": { label: "칠판", description: "슬레이트 위의 흰 분필입니다" },
|
|
38
|
+
"paper-cutout": { label: "종이 컷아웃", description: "겹쳐진 종이와 그림자입니다" },
|
|
39
|
+
"illuminated": { label: "일루미네이티드 매뉴스크립트", description: "금박과 캘리그래피의 채식본입니다" },
|
|
40
|
+
"pixar-3d": { description: "세련된 캐릭터 애니메이션 CG입니다" },
|
|
41
|
+
"caricature": { label: "캐리커처", description: "과장되고 양식화된 인물화입니다" },
|
|
42
|
+
"fresco": { label: "프레스코", description: "회반죽 위에 그린 르네상스 천장 스타일의 벽화입니다" },
|
|
43
|
+
"mosaic": { label: "모자이크", description: "작은 타일을 이어붙인 비잔틴 풍의 모자이크 작품입니다" },
|
|
44
|
+
"woodcut": { label: "목판화", description: "뒤러 시대의 강한 대비를 가진 부조 판화입니다" },
|
|
45
|
+
"etching": { label: "에칭", description: "렘브란트 풍의 섬세한 크로스해칭 인타글리오 판화입니다" },
|
|
46
|
+
"lithograph": { label: "리소그래프", description: "툴루즈 로트렉 풍의 부드러운 톤을 가진 석판 인쇄입니다" },
|
|
47
|
+
"charcoal": { label: "차콜", description: "부드러운 흑백 톤의 목탄 드로잉입니다" },
|
|
48
|
+
"pastel": { label: "파스텔", description: "건식 매체인 부드러운 분필 파스텔입니다" },
|
|
49
|
+
"acrylic-paint": { label: "아크릴화", description: "빠르게 마르고 불투명한 매체로 가장자리가 또렷합니다" },
|
|
50
|
+
"mixed-media": { label: "믹스드 미디어", description: "다양한 매체가 결합된 이질적인 텍스처입니다" },
|
|
51
|
+
"manga": { label: "망가", description: "잉크로 그린 흑백 패널 아트와 스크린톤 셰이딩입니다" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "Renderização 3D", description: "Renderização CGI moderna com sombreamento limpo" },
|
|
5
|
+
"anime": { description: "Visual da animação japonesa" },
|
|
6
|
+
"children-book": { label: "Livro Infantil", description: "Storybook caloroso ilustrado" },
|
|
7
|
+
"cinematic": { label: "Cinematográfico", description: "Imagem dramática em qualidade de cinema" },
|
|
8
|
+
"comic-book": { label: "Quadrinhos", description: "Painéis em traço de tinta com cor chapada" },
|
|
9
|
+
"digital-art": { label: "Arte Digital", description: "Ilustração digital polida" },
|
|
10
|
+
"fantasy": { label: "Fantasia", description: "Ilustração épica de alta fantasia" },
|
|
11
|
+
"minimalist": { label: "Minimalista", description: "Formas simples, muito espaço em branco" },
|
|
12
|
+
"noir": { description: "P&B noir de alto contraste" },
|
|
13
|
+
"oil-painting": { label: "Pintura a Óleo", description: "Pinceladas grossas, tela clássica" },
|
|
14
|
+
"pencil-sketch": { label: "Desenho a Lápis", description: "Desenho a grafite feito à mão" },
|
|
15
|
+
"photorealistic": { label: "Foto-realista", description: "Indistinguível de uma fotografia" },
|
|
16
|
+
"pixel-art": { description: "Grade de pixels retrô estilo videogame" },
|
|
17
|
+
"pop-art": { description: "Cores ousadas, Warhol/Lichtenstein" },
|
|
18
|
+
"retro-vintage": { label: "Retrô / Vintage", description: "Look de filme nostálgico desbotado" },
|
|
19
|
+
"watercolor": { label: "Aquarela", description: "Camadas suaves transparentes" },
|
|
20
|
+
"concept-art": { description: "Pintura de pré-produção para cinema/jogos" },
|
|
21
|
+
"impressionism": { label: "Impressionismo", description: "Pinceladas estilo Monet" },
|
|
22
|
+
"surrealism": { label: "Surrealismo", description: "Onírico, inspirado em Dalí" },
|
|
23
|
+
"cyberpunk": { description: "Futuro distópico iluminado por neon" },
|
|
24
|
+
"steampunk": { description: "Latão e maquinário vitorianos" },
|
|
25
|
+
"vaporwave": { description: "Retrô digital pastel anos 80" },
|
|
26
|
+
"low-poly": { description: "3D geométrico facetado" },
|
|
27
|
+
"ink-wash": { description: "Pincel sumi-e do Leste Asiático" },
|
|
28
|
+
"isometric": { label: "Isométrico", description: "Vista 3/4 axonométrica" },
|
|
29
|
+
"flat-vector": { label: "Vetor Plano", description: "Ilustração flat moderna" },
|
|
30
|
+
"ukiyo-e": { description: "Xilogravura tradicional japonesa" },
|
|
31
|
+
"graffiti": { description: "Spray de arte de rua" },
|
|
32
|
+
"claymation": { description: "Stop-motion tátil em massinha" },
|
|
33
|
+
"glitch-art": { description: "Corrupção digital + datamosh" },
|
|
34
|
+
"ascii-art": { description: "Caracteres monocromáticos de terminal" },
|
|
35
|
+
"blueprint": { description: "Desenho técnico em fundo azul" },
|
|
36
|
+
"stained-glass": { label: "Vitral", description: "Mosaico de vidro colorido com chumbo" },
|
|
37
|
+
"chalkboard": { label: "Quadro de Giz", description: "Giz branco em ardósia" },
|
|
38
|
+
"paper-cutout": { label: "Recorte de Papel", description: "Papel recortado em camadas + sombras" },
|
|
39
|
+
"illuminated": { label: "Manuscrito Iluminado", description: "Folha de ouro + caligrafia" },
|
|
40
|
+
"pixar-3d": { description: "CG polido de animação de personagens" },
|
|
41
|
+
"caricature": { description: "Retrato estilizado e exagerado" },
|
|
42
|
+
|
|
43
|
+
// Additional styles
|
|
44
|
+
"fresco": { label: "Afresco", description: "Pintura mural em gesso ao estilo dos tetos renascentistas" },
|
|
45
|
+
"mosaic": { label: "Mosaico", description: "Arte de pequenas peças tesseladas, estilo bizantino" },
|
|
46
|
+
"woodcut": { label: "Xilogravura", description: "Gravura em relevo de alto contraste, era de Dürer" },
|
|
47
|
+
"etching": { label: "Água-forte", description: "Gravura em metal com hachuras finas, estilo Rembrandt" },
|
|
48
|
+
"lithograph": { label: "Litografia", description: "Impressão em pedra com tons suaves, estilo Toulouse-Lautrec" },
|
|
49
|
+
"charcoal": { label: "Carvão", description: "Estudo tonal suave em preto e cinza" },
|
|
50
|
+
"pastel": { label: "Pastel", description: "Pastéis secos macios à base de giz" },
|
|
51
|
+
"acrylic-paint": { label: "Tinta Acrílica", description: "Tinta opaca de secagem rápida com bordas nítidas" },
|
|
52
|
+
"mixed-media": { label: "Técnica Mista", description: "Combinação de meios e texturas heterogêneas" },
|
|
53
|
+
"manga": { label: "Mangá", description: "Arte de painéis em P&B entintados com sombreamento em screen-tone" },
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export default map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
"3d-render": { label: "3D-рендер", description: "Современный CGI-рендер с чистым шейдингом" },
|
|
5
|
+
"anime": { label: "Аниме", description: "Японская анимация" },
|
|
6
|
+
"children-book": { label: "Детская книга", description: "Тёплая иллюстрированная книжка" },
|
|
7
|
+
"cinematic": { label: "Кинематографический", description: "Кинокачественное драматическое изображение" },
|
|
8
|
+
"comic-book": { label: "Комикс", description: "Прорисованные тушью панели с плоским цветом" },
|
|
9
|
+
"digital-art": { label: "Цифровое искусство", description: "Отполированная цифровая иллюстрация" },
|
|
10
|
+
"fantasy": { label: "Фэнтези", description: "Эпическая фэнтезийная иллюстрация" },
|
|
11
|
+
"minimalist": { label: "Минимализм", description: "Простые формы, много пустого пространства" },
|
|
12
|
+
"noir": { label: "Нуар", description: "Высококонтрастный Ч/Б фильм-нуар" },
|
|
13
|
+
"oil-painting": { label: "Масляная живопись", description: "Густые мазки кисти, классический холст" },
|
|
14
|
+
"pencil-sketch": { label: "Карандашный набросок", description: "Графитный рисунок от руки" },
|
|
15
|
+
"photorealistic": { label: "Фотореалистичный", description: "Неотличимо от фотографии" },
|
|
16
|
+
"pixel-art": { label: "Пиксель-арт", description: "Ретро-игровая пиксельная сетка" },
|
|
17
|
+
"pop-art": { label: "Поп-арт", description: "Смелые цвета, в стиле Уорхола/Лихтенштейна" },
|
|
18
|
+
"retro-vintage": { label: "Ретро / Винтаж", description: "Выцветший ностальгический плёночный вид" },
|
|
19
|
+
"watercolor": { label: "Акварель", description: "Мягкие прозрачные заливки" },
|
|
20
|
+
"concept-art": { label: "Концепт-арт", description: "Предпродакшн-роспись для фильмов/игр" },
|
|
21
|
+
"impressionism": { label: "Импрессионизм", description: "Мазки точками в стиле Моне" },
|
|
22
|
+
"surrealism": { label: "Сюрреализм", description: "Мечтательно в духе Дали" },
|
|
23
|
+
"cyberpunk": { label: "Киберпанк", description: "Неоновое антиутопическое будущее" },
|
|
24
|
+
"steampunk": { label: "Стимпанк", description: "Викторианская латунь и механизмы" },
|
|
25
|
+
"vaporwave": { label: "Vaporwave", description: "Цифровое ретро 80-х в пастели" },
|
|
26
|
+
"low-poly": { label: "Низкополигональный", description: "Гранёный геометрический 3D" },
|
|
27
|
+
"ink-wash": { description: "Восточно-азиатская кисть sumi-e" },
|
|
28
|
+
"isometric": { label: "Изометрия", description: "3/4 аксонометрический вид" },
|
|
29
|
+
"flat-vector": { label: "Плоский вектор", description: "Современная плоская иллюстрация" },
|
|
30
|
+
"ukiyo-e": { description: "Японская гравюра на дереве" },
|
|
31
|
+
"graffiti": { label: "Граффити", description: "Уличное искусство аэрозольной краской" },
|
|
32
|
+
"claymation": { description: "Тактильная стоп-моушн глина" },
|
|
33
|
+
"glitch-art": { label: "Глитч-арт", description: "Цифровое искажение и datamosh" },
|
|
34
|
+
"ascii-art": { description: "Монохромные терминальные символы" },
|
|
35
|
+
"blueprint": { label: "Чертёж", description: "Технический чертёж на синем фоне" },
|
|
36
|
+
"stained-glass": { label: "Витражное стекло", description: "Свинцово-цветная стеклянная мозаика" },
|
|
37
|
+
"chalkboard": { label: "Меловая доска", description: "Белый мел на сланце" },
|
|
38
|
+
"paper-cutout": { label: "Бумажная вырезка", description: "Слои вырезанной бумаги и тени" },
|
|
39
|
+
"illuminated": { label: "Иллюминированная рукопись", description: "Сусальное золото и каллиграфия" },
|
|
40
|
+
"pixar-3d": { description: "Отполированная анимация персонажей CG" },
|
|
41
|
+
"caricature": { label: "Карикатура", description: "Преувеличенный стилизованный портрет" },
|
|
42
|
+
"fresco": { label: "Фреска", description: "Настенная роспись по штукатурке в духе ренессансного потолка" },
|
|
43
|
+
"mosaic": { label: "Мозаика", description: "Мозаика из мелкой плитки, византийская" },
|
|
44
|
+
"woodcut": { label: "Ксилография", description: "Контрастная высокая печать в духе эпохи Дюрера" },
|
|
45
|
+
"etching": { label: "Офорт", description: "Тонкая штриховая интальо-печать в духе Рембрандта" },
|
|
46
|
+
"lithograph": { label: "Литография", description: "Каменная печать с мягкой тональной шкалой в духе Тулуз-Лотрека" },
|
|
47
|
+
"charcoal": { label: "Уголь", description: "Мягкое чёрно-серое тональное исследование" },
|
|
48
|
+
"pastel": { label: "Пастель", description: "Мягкая мелковая пастель, сухая техника" },
|
|
49
|
+
"acrylic-paint": { label: "Акрил", description: "Быстросохнущий укрывистый материал, чёткие края" },
|
|
50
|
+
"mixed-media": { label: "Смешанная техника", description: "Сочетание материалов, разнородные текстуры" },
|
|
51
|
+
"manga": { 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
|
+
"3d-render": { label: "3D 渲染", description: "现代 CGI 渲染,着色干净" },
|
|
5
|
+
"anime": { label: "动漫", description: "日式动画风格" },
|
|
6
|
+
"children-book": { label: "童书插画", description: "温暖的故事书插画" },
|
|
7
|
+
"cinematic": { label: "电影感", description: "电影级的戏剧化画面" },
|
|
8
|
+
"comic-book": { label: "漫画风", description: "勾线分镜加平涂色彩" },
|
|
9
|
+
"digital-art": { label: "数字艺术", description: "精致的数字插画" },
|
|
10
|
+
"fantasy": { label: "奇幻", description: "史诗级高奇幻插画" },
|
|
11
|
+
"minimalist": { label: "极简", description: "简单形状,大量留白" },
|
|
12
|
+
"noir": { label: "黑色电影", description: "高对比黑白的 film noir" },
|
|
13
|
+
"oil-painting": { label: "油画", description: "厚重笔触的古典画布油画" },
|
|
14
|
+
"pencil-sketch": { label: "铅笔素描", description: "手绘石墨素描" },
|
|
15
|
+
"photorealistic": { label: "照片写实", description: "与照片难以分辨的真实感" },
|
|
16
|
+
"pixel-art": { label: "像素画", description: "复古游戏风的像素网格" },
|
|
17
|
+
"pop-art": { label: "波普艺术", description: "鲜亮色彩,Warhol / Lichtenstein 风" },
|
|
18
|
+
"retro-vintage": { label: "复古", description: "褪色怀旧的胶片质感" },
|
|
19
|
+
"watercolor": { label: "水彩", description: "柔和透明的水彩晕染" },
|
|
20
|
+
"concept-art": { label: "概念设定", description: "电影 / 游戏前期概念绘画" },
|
|
21
|
+
"impressionism": { label: "印象派", description: "莫奈风的点染笔触" },
|
|
22
|
+
"surrealism": { label: "超现实主义", description: "梦幻达利风" },
|
|
23
|
+
"cyberpunk": { label: "赛博朋克", description: "霓虹光下的反乌托邦未来" },
|
|
24
|
+
"steampunk": { label: "蒸汽朋克", description: "维多利亚黄铜与机械" },
|
|
25
|
+
"vaporwave": { label: "蒸汽波", description: "80 年代粉彩数字复古" },
|
|
26
|
+
"low-poly": { label: "低多边形", description: "切面几何感 3D" },
|
|
27
|
+
"ink-wash": { label: "水墨画", description: "东亚水墨笔触" },
|
|
28
|
+
"isometric": { label: "等距画面", description: "3/4 轴测视角" },
|
|
29
|
+
"flat-vector": { label: "扁平矢量", description: "现代扁平插画" },
|
|
30
|
+
"ukiyo-e": { description: "日本浮世绘木刻版画" },
|
|
31
|
+
"graffiti": { label: "涂鸦", description: "街头喷漆艺术" },
|
|
32
|
+
"claymation": { label: "黏土定格", description: "有手感的定格黏土" },
|
|
33
|
+
"glitch-art": { label: "故障艺术", description: "数字损坏与数据移植" },
|
|
34
|
+
"ascii-art": { label: "ASCII 艺术", description: "由终端字符组成的单色画" },
|
|
35
|
+
"blueprint": { label: "蓝图", description: "蓝色背景上的技术绘图" },
|
|
36
|
+
"stained-glass": { label: "彩色玻璃", description: "铅条镶嵌的彩色玻璃马赛克" },
|
|
37
|
+
"chalkboard": { label: "黑板画", description: "石板上的白色粉笔画" },
|
|
38
|
+
"paper-cutout": { label: "纸艺剪贴", description: "层叠剪纸加投影" },
|
|
39
|
+
"illuminated": { label: "彩饰手稿", description: "金箔加书法的中世纪手稿" },
|
|
40
|
+
"pixar-3d": { label: "皮克斯 3D", description: "精致的角色动画 CG" },
|
|
41
|
+
"caricature": { label: "漫画肖像", description: "夸张风格化的人物肖像" },
|
|
42
|
+
"fresco": { label: "湿壁画", description: "文艺复兴风格的灰泥天顶画" },
|
|
43
|
+
"mosaic": { label: "马赛克", description: "拜占庭风格的小块镶嵌艺术" },
|
|
44
|
+
"woodcut": { label: "木刻版画", description: "杜勒时代的高对比凸版印刷" },
|
|
45
|
+
"etching": { label: "蚀刻版画", description: "伦勃朗式精细交叉线腐蚀凹版" },
|
|
46
|
+
"lithograph": { label: "石版画", description: "图卢兹-洛特列克风的柔和层次石版印刷" },
|
|
47
|
+
"charcoal": { label: "炭笔画", description: "柔软的黑灰色调研究" },
|
|
48
|
+
"pastel": { label: "色粉画", description: "干性介质的柔软粉彩" },
|
|
49
|
+
"acrylic-paint": { label: "丙烯画", description: "速干不透明介质,边缘锐利" },
|
|
50
|
+
"mixed-media": { label: "综合材料", description: "混合多种介质,异质肌理交织" },
|
|
51
|
+
"manga": { label: "漫画", description: "黑白勾线分镜,网点纸阴影" },
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export default map
|