@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,101 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// -------------------- Seating --------------------
|
|
5
|
+
"sofa": { label: "Sofa", description: "तीन-सीटों वाला sofa, गद्देदार पीठ और सीट, नीची armrest और तटस्थ tone की upholstery" },
|
|
6
|
+
"sectional-sofa": { label: "Sectional Sofa", description: "L-आकार का sectional sofa, गहरी सीटें, नरम कुशन, एक chaise सिरा और छुपा हुआ storage या recline mechanism" },
|
|
7
|
+
"loveseat": { label: "Loveseat", description: "कॉम्पैक्ट दो-सीट वाला loveseat, मुड़ी हुई बाँहें, tufted पीठ और tapered लकड़ी की टाँगें" },
|
|
8
|
+
"armchair": { label: "Armchair", description: "Upholstered armchair, ऊँची गद्देदार पीठ, घुमावदार armrest और चार पतली लकड़ी की टाँगें" },
|
|
9
|
+
"recliner": { label: "Recliner", description: "गद्देदार recliner कुर्सी, खींचने वाला lever, बाहर निकलने वाला footrest, मोटी leather upholstery और झुकी हुई backrest" },
|
|
10
|
+
"office-chair": { label: "Office Chair", description: "Ergonomic office chair, mesh पीठ, समायोज्य armrest, gas-lift ऊँचाई और पाँच-बिंदु caster base" },
|
|
11
|
+
"rocking-chair": { label: "Rocking Chair", description: "लकड़ी की rocking chair, घुमावदार rockers, बुनी हुई cane पीठ और गद्देदार सीट कुशन" },
|
|
12
|
+
"throne": { label: "सिंहासन", description: "अलंकृत royal सिंहासन, ऊँची नक़्क़ाशी की पीठ, gilded trim, जड़े हुए रत्न और मुलायम velvet कुशन" },
|
|
13
|
+
"bean-bag": { label: "Bean Bag", description: "बड़ी ढीली bean bag कुर्सी, मुलायम कपड़े का बाहरी हिस्सा और तकिये जैसा आकार जो बदन के साथ ढल जाता है" },
|
|
14
|
+
"stool": { label: "Stool", description: "साधारण backless stool, गोल लकड़ी की सीट, चार फैली हुई turned टाँगें और एक पुरानी आरामदायक patina" },
|
|
15
|
+
"bench": { label: "बेंच", description: "लंबी लकड़ी की बेंच, चपटी सीट, खुली slatted पीठ और मज़बूत planked टाँगें" },
|
|
16
|
+
"chaise-lounge": { label: "Chaise Lounge", description: "लालित्यपूर्ण chaise lounge, ढलवाँ headrest, लंबी upholstered सीट और turned लकड़ी की टाँगें" },
|
|
17
|
+
"dining-chair": { label: "Dining Chair", description: "औपचारिक dining chair, ऊँची slatted पीठ, upholstered सीट कुशन और tapered लकड़ी की टाँगें" },
|
|
18
|
+
|
|
19
|
+
// -------------------- Tables --------------------
|
|
20
|
+
"dining-table": { label: "Dining Table", description: "बड़ी आयताकार dining table, polished लकड़ी की top, मोटा trestle base और छह से आठ लोगों के बैठने की जगह" },
|
|
21
|
+
"coffee-table": { label: "Coffee Table", description: "नीची आयताकार coffee table, काँच या लकड़ी की top, साफ़ minimalist टाँगें और magazines के लिए नीचे की shelf" },
|
|
22
|
+
"side-table": { label: "Side Table", description: "छोटी side table, गोल top, एक दराज़ और पतली tapered टाँगें" },
|
|
23
|
+
"console-table": { label: "Console Table", description: "संकरी console table, लंबी पतली top, नाज़ुक टाँगें और apron के साथ सजावटी scrollwork" },
|
|
24
|
+
"desk": { label: "Desk", description: "Writing desk, सपाट काम की सतह, बग़ल में दराज़ों का bank और पीछे cable management के लिए कटआउट" },
|
|
25
|
+
"workbench": { label: "Workbench", description: "Heavy-duty workbench, मोटी butcher-block top, pegboard back panel और एक किनारे पर लगा vice clamp" },
|
|
26
|
+
"vanity-table": { label: "Vanity Table", description: "Dressing vanity, चौड़ा tri-fold mirror, हर तरफ़ छोटी दराज़ें और नीचे रखी गद्देदार bench" },
|
|
27
|
+
"nightstand": { label: "Nightstand", description: "छोटा बिस्तर के पास का nightstand, एक दराज़, खुली नीचे की shelf और lamp के लिए तैयार top" },
|
|
28
|
+
"picnic-table": { label: "Picnic Table", description: "क्लासिक लकड़ी की picnic table, plank top, जुड़ी हुई bench सीटें और मौसम-पका outdoor finish" },
|
|
29
|
+
|
|
30
|
+
// -------------------- Beds --------------------
|
|
31
|
+
"bed-single": { label: "Single बिस्तर", description: "संकरा single बिस्तर, गद्देदार headboard, fitted चादर और पैरों पर मुड़ा हुआ throw कंबल" },
|
|
32
|
+
"bed-queen": { label: "Queen बिस्तर", description: "Queen-size बिस्तर, ऊँचा upholstered headboard, layered तकिये, साफ़ duvet और पैरों पर एक runner" },
|
|
33
|
+
"bed-king": { label: "King बिस्तर", description: "भव्य king-size बिस्तर, tufted headboard, कई गद्देदार तकिये, साफ़ सफ़ेद linens और मोटा quilted duvet" },
|
|
34
|
+
"bunk-bed": { label: "Bunk Bed", description: "मज़बूत लकड़ी का bunk bed, दो stacked गद्दे, side सीढ़ी, सुरक्षा rails और बच्चों के लिए मेल खाते bedding" },
|
|
35
|
+
"canopy-bed": { label: "Canopy Bed", description: "चार-poster canopy bed, ऊँचे नक़्क़ाशी वाले poster, ऊपर लटकता कपड़े का canopy और हर कोने पर बहते पर्दे" },
|
|
36
|
+
"four-poster-bed": { label: "Four-Poster Bed", description: "चार-poster बिस्तर, हर कोने पर turned लकड़ी के स्तंभ headboard की carved profile से मेल खाते हुए ऊपर उठते हैं" },
|
|
37
|
+
"daybed": { label: "Daybed", description: "Daybed, नीचा frame, तीन upholstered side जो backrest और armrest का काम करती हैं और दीवार के साथ bolster कुशन" },
|
|
38
|
+
"crib": { label: "बच्चे का Crib", description: "लकड़ी का बच्चे का crib, लंबवत slatted side, छोटा fitted गद्दा और अंदर रखे मुलायम खिलौने" },
|
|
39
|
+
"futon": { label: "Futon", description: "परिवर्तनीय futon, folding metal frame पर पतला गद्देदार गद्दा जो sofa से बिस्तर में बदलता है" },
|
|
40
|
+
"hammock": { label: "Hammock", description: "बुना हुआ रस्सी का hammock दो supports के बीच लटकाया हुआ, कोमलता से झुकता है आकर्षक curve के साथ और हर सिरे पर रंगीन tassels" },
|
|
41
|
+
|
|
42
|
+
// -------------------- Storage --------------------
|
|
43
|
+
"bookshelf": { label: "Bookshelf", description: "ऊँची स्वतंत्र bookshelf, कई क्षैतिज shelves, लकड़ी की sides और साफ़-सुथरी रखी किताबों की पंक्तियाँ" },
|
|
44
|
+
"wardrobe": { label: "Wardrobe", description: "बड़ी double-door wardrobe, पूरी लंबाई का hanging section, दराज़ों का bank और सजावटी paneled दरवाज़े" },
|
|
45
|
+
"dresser": { label: "Dresser", description: "लकड़ी का dresser, चौड़ी top, दो स्तंभों में छह गहरी दराज़ें, brass pull handles और छोटी tapered टाँगें" },
|
|
46
|
+
"cabinet": { label: "Cabinet", description: "Storage cabinet, paneled दरवाज़े, अंदर समायोज्य shelves और brass hardware" },
|
|
47
|
+
"chest": { label: "Storage Chest", description: "मौसम से पका हुआ लकड़ी का storage chest, iron banding, hinged गुम्बदाकार ढक्कन और सामने एक भारी clasp latch" },
|
|
48
|
+
"trunk": { label: "Steamer Trunk", description: "विंटेज steamer trunk, leather straps, brass corners, travel stickers और latched ढक्कन जो tray inserts प्रकट करता है" },
|
|
49
|
+
"filing-cabinet": { label: "Filing Cabinet", description: "चार-दराज़ वाला metal filing cabinet, हर दराज़ पर label slots, recessed pull handles और ऊपर key lock" },
|
|
50
|
+
"tv-stand": { label: "TV Stand", description: "नीचा entertainment TV stand, खुली shelves, glass-fronted cabinet दरवाज़े और cable pass-throughs" },
|
|
51
|
+
"display-case": { label: "Display Case", description: "ऊँचा काँच का display case, अंदर lighting, glass shelves और lockable framed दरवाज़ा" },
|
|
52
|
+
"hutch": { label: "China Hutch", description: "दो-हिस्सों वाला china hutch, glass-fronted ऊपरी cabinet किनारे पर plates दिखाता हुआ और दराज़ों और दरवाज़ों के साथ buffet base" },
|
|
53
|
+
"toy-chest": { label: "Toy Chest", description: "रंगा हुआ लकड़ी का toy chest, ख़ुश decals, soft-close hinged ढक्कन और sides पर जमा हुए stickers" },
|
|
54
|
+
|
|
55
|
+
// -------------------- Lighting --------------------
|
|
56
|
+
"floor-lamp": { label: "Floor Lamp", description: "ऊँचा floor lamp, पतला metal stand, weighted base, pull-chain switch और top पर drum कपड़े का shade" },
|
|
57
|
+
"table-lamp": { label: "Table Lamp", description: "क्लासिक table lamp, ceramic base, pleated कपड़े का shade और एक छोटा pull-chain switch" },
|
|
58
|
+
"desk-lamp": { label: "Desk Lamp", description: "Articulating desk lamp, समायोज्य arm, hinged head और एक छोटा cone-आकार का metal shade" },
|
|
59
|
+
"chandelier": { label: "Chandelier", description: "भव्य crystal chandelier, tiered cascading crystals, घुमावदार सुनहरी arms और कई flame-आकार के बल्ब" },
|
|
60
|
+
"pendant-light": { label: "Pendant Light", description: "आधुनिक pendant light लंबी cord से लटकती हुई, minimalist metal या काँच के shade के साथ" },
|
|
61
|
+
"sconce": { label: "Wall Sconce", description: "दीवार पर लगा sconce, सजावटी backplate, घुमावदार arm और ऊपर की ओर इशारा करता कपड़े या काँच का shade" },
|
|
62
|
+
"lantern": { label: "लालटेन", description: "क्लासिक लालटेन, metal frame, काँच के panels, अंदर मोमबत्ती या टिमटिमाता बल्ब और top पर carrying ring" },
|
|
63
|
+
"candelabra": { label: "Candelabra", description: "अलंकृत silver candelabra, कई घुमावदार branching arms हर एक लंबी taper मोमबत्ती धारण करता है" },
|
|
64
|
+
"neon-sign": { label: "Neon Sign", description: "चमकता neon sign, मुड़े हुए काँच के tubes cursive अक्षरों या retro icon के आकार में, दीवार पर रंगीन रोशनी डालते हुए" },
|
|
65
|
+
|
|
66
|
+
// -------------------- Kitchen & Dining --------------------
|
|
67
|
+
"kitchen-island": { label: "Kitchen Island", description: "स्वतंत्र kitchen island, मोटी butcher-block top, नीचे cabinet storage, bar stool overhang और ऊपर एक rack" },
|
|
68
|
+
"bar-counter": { label: "Bar Counter", description: "घर का bar counter, polished लकड़ी की top, brass footrail, backlit काँच की shelving और पीछे प्रदर्शित बोतलों की पंक्तियाँ" },
|
|
69
|
+
"bar-stool": { label: "Bar Stool", description: "ऊँचा bar stool, गोल घूमने वाली सीट, footrest ring, metal frame और एक वैकल्पिक नीची backrest" },
|
|
70
|
+
"pot-rack": { label: "Pot Rack", description: "ऊपर लटका pot rack, wrought-iron frame, S-hooks पर लटके pots और pans और top पर मसालों के लिए shelving" },
|
|
71
|
+
"spice-rack": { label: "Spice Rack", description: "दीवार पर लगा spice rack, छोटे labelled काँच के jars की पंक्तियाँ, लकड़ी की shelves और एक ख़ुशनुमा अव्यवस्थित आकर्षण" },
|
|
72
|
+
"buffet": { label: "Buffet", description: "लंबा dining-room buffet, serving platters के लिए सपाट top, linens के लिए दराज़ें और नीचे dishware के लिए cabinet दरवाज़े" },
|
|
73
|
+
|
|
74
|
+
// -------------------- Outdoor --------------------
|
|
75
|
+
"patio-chair": { label: "Patio Chair", description: "Outdoor patio chair, weather-resistant बुनी हुई wicker सीट, aluminum frame और एक weatherproof कुशन" },
|
|
76
|
+
"adirondack-chair": { label: "Adirondack Chair", description: "क्लासिक लकड़ी की Adirondack कुर्सी, ढलवाँ slatted पीठ, चौड़ी सपाट armrests और एक सीट जो धीरे-धीरे पीछे झुकती है" },
|
|
77
|
+
"porch-swing": { label: "Porch Swing", description: "लकड़ी की porch swing छत से चेन से लटकी हुई, slatted सीट और रंगीन outdoor कुशन की एक पंक्ति" },
|
|
78
|
+
"gazebo": { label: "Gazebo", description: "स्वतंत्र outdoor gazebo, peaked shingled छत, छह खुले लकड़ी के स्तंभ, railings और उठा हुआ लकड़ी का फ़र्श" },
|
|
79
|
+
"bistro-set": { label: "Bistro Set", description: "कॉम्पैक्ट outdoor bistro set, गोल wrought-iron table और दो मेल खाती कुर्सियाँ glossy weather-resistant finish में" },
|
|
80
|
+
"sun-lounger": { label: "Sun Lounger", description: "Pool-side sun lounger, समायोज्य reclining पीठ, सफ़ेद vinyl straps और एक मेल खाता side table" },
|
|
81
|
+
"fire-pit": { label: "Fire Pit", description: "गोल outdoor fire pit bowl, खुरदुरा-iron बाहरी हिस्सा, टिमटिमाती लपटें और सुरक्षात्मक mesh screen के नीचे चमकते अंगारे" },
|
|
82
|
+
|
|
83
|
+
// -------------------- Decorative --------------------
|
|
84
|
+
"mirror": { label: "Mirror", description: "बड़ा दीवार का mirror, अलंकृत gilded frame, carved scrollwork और काँच में थोड़ी पुरानी silvering" },
|
|
85
|
+
"rug": { label: "क़ालीन", description: "बड़ा pattern वाला क़ालीन, गहरे बुने motifs, tasseled सिरे और मुलायम plush pile" },
|
|
86
|
+
"vase": { label: "फूलदान", description: "ऊँचा ceramic फूलदान, गोल बदन, संकरी गर्दन, glazed finish और अंदर रखा फूलों का ताज़ा गुलदस्ता" },
|
|
87
|
+
"grandfather-clock": { label: "Grandfather Clock", description: "ऊँची लकड़ी की grandfather clock, glass pendulum दरवाज़ा, brass clock face, roman अंक और एक chime mechanism" },
|
|
88
|
+
"wall-art": { label: "Framed दीवार Art", description: "बड़ी framed कलाकृति gilded या minimalist frame में, gallery-शैली का matte border और एक केंद्रीय painting" },
|
|
89
|
+
"pillow": { label: "Throw तकिया", description: "सजावटी throw तकिया, pattern वाला cover, piped किनारे, plush भरा हुआ और छुपा हुआ zipper" },
|
|
90
|
+
"curtains": { label: "पर्दे", description: "पूरी लंबाई के पर्दे, मोटा draping कपड़ा, pleated tops metal रॉड से लटके हुए और हर तरफ़ tie-backs" },
|
|
91
|
+
"sculpture": { label: "मूर्ति", description: "Pedestal पर अमूर्त मूर्ति, bronze या marble में बहते कार्बनिक रूप जो कई कोणों से रोशनी पकड़ते हैं" },
|
|
92
|
+
|
|
93
|
+
// -------------------- Bath --------------------
|
|
94
|
+
"bathtub": { label: "Bathtub", description: "स्वतंत्र clawfoot bathtub, मुड़ा हुआ rim, polished सफ़ेद enamel अंदरूनी हिस्सा और चार अलंकृत cast-iron पैर" },
|
|
95
|
+
"shower": { label: "Walk-In Shower", description: "Walk-in shower, frameless काँच के panels, tiled दीवारें, rainfall showerhead और एक linear floor drain" },
|
|
96
|
+
"toilet": { label: "Toilet", description: "मानक सफ़ेद ceramic toilet, अंडाकार bowl, लम्बी सीट और chrome flush handle के साथ tank" },
|
|
97
|
+
"sink-vanity": { label: "Sink Vanity", description: "बाथरूम sink vanity, पत्थर का countertop, undermount basin, ऊपर चौड़ा mirror और नीचे paneled cabinet दरवाज़े" },
|
|
98
|
+
"towel-rack": { label: "Towel Rack", description: "दीवार पर लगा heated towel rack, कई क्षैतिज bars और हर bar पर लटकती मुलायम मुड़ी हुई तौलिये" },
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export default map
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Seating
|
|
5
|
+
"sofa": { label: "ソファ", description: "ふっくらとしたクッションの背もたれと座面、低いアームレスト、ニュートラルな色調の張り地を持つ三人掛けソファ" },
|
|
6
|
+
"sectional-sofa": { label: "セクショナル・ソファ", description: "深い座面、柔らかなクッション、シェーズ部分、収納やリクライニング機構を備えたL字型セクショナルソファ" },
|
|
7
|
+
"loveseat": { label: "ラブシート", description: "丸みを帯びたアーム、タフテッドの背もたれ、テーパー状の木製脚を持つコンパクトな二人掛けラブシート" },
|
|
8
|
+
"armchair": { label: "アームチェア", description: "高い背もたれパッド、湾曲したアームレスト、4本の細い木製脚を持つ張り布のアームチェア" },
|
|
9
|
+
"recliner": { label: "リクライナー", description: "プルレバー、伸びるフットレスト、厚い革張り、リクライニングする背もたれを持つパッド付きリクライナーチェア" },
|
|
10
|
+
"office-chair": { label: "オフィスチェア", description: "メッシュバック、調整可能なアームレスト、ガス昇降、5点キャスターベースを持つエルゴノミック・オフィスチェア" },
|
|
11
|
+
"rocking-chair": { label: "ロッキングチェア", description: "湾曲したロッカー、編み込み籐の背もたれ、座面クッションを持つ木製ロッキングチェア" },
|
|
12
|
+
"throne": { label: "玉座", description: "そびえ立つ彫刻が施された背もたれ、金箔の縁取り、宝石のアクセント、ふかふかのベルベットクッションを持つ豪華な王の玉座" },
|
|
13
|
+
"bean-bag": { label: "ビーズクッション", description: "柔らかな布張りで、体に沿って形を変える枕のように柔らかな大きめのビーズクッションチェア" },
|
|
14
|
+
"stool": { label: "スツール", description: "丸い木製の座面、4本の広がったロクロ脚、使い込まれた快適な風合いを持つシンプルな背もたれなしスツール" },
|
|
15
|
+
"bench": { label: "ベンチ", description: "平らな座面、開いたスラットの背もたれ、丈夫な板状の脚を持つ長い木製ベンチ" },
|
|
16
|
+
"chaise-lounge": { label: "シェーズ・ロング", description: "傾斜したヘッドレスト、細長い張り布の座面、ロクロ加工の木製脚を持つエレガントなシェーズ・ロング" },
|
|
17
|
+
"dining-chair": { label: "ダイニングチェア", description: "高いスラットの背もたれ、張り布の座面クッション、テーパー状の木製脚を持つフォーマルなダイニングチェア" },
|
|
18
|
+
|
|
19
|
+
// Tables
|
|
20
|
+
"dining-table": { label: "ダイニングテーブル", description: "磨かれた木製天板、太い架台ベース、6〜8人用の席を持つ大きな長方形のダイニングテーブル" },
|
|
21
|
+
"coffee-table": { label: "コーヒーテーブル", description: "ガラスまたは木製の天板、クリーンでミニマリストな脚、雑誌用の下棚を持つ低い長方形のコーヒーテーブル" },
|
|
22
|
+
"side-table": { label: "サイドテーブル", description: "丸い天板、引き出し1つ、細いテーパー脚を持つ小ぶりなサイドテーブル" },
|
|
23
|
+
"console-table": { label: "コンソールテーブル", description: "長く細い天板、繊細な脚、エプロンに沿った装飾的な渦巻き模様を持つ細いコンソールテーブル" },
|
|
24
|
+
"desk": { label: "デスク", description: "平らな作業面、側面の引き出しバンク、背面のケーブル管理用切り抜きを持つライティングデスク" },
|
|
25
|
+
"workbench": { label: "ワークベンチ", description: "厚いブッチャーブロック天板、ペグボードの背面パネル、片端に固定されたバイスを持つ重作業用ワークベンチ" },
|
|
26
|
+
"vanity-table": { label: "バニティテーブル", description: "幅広の三面鏡、左右に小さな引き出し、下にクッション付きベンチが収まるドレッシングバニティ" },
|
|
27
|
+
"nightstand": { label: "ナイトスタンド", description: "引き出し1つ、開いた下段、ランプを置けるトップ面を持つ小さなベッドサイドナイトスタンド" },
|
|
28
|
+
"picnic-table": { label: "ピクニックテーブル", description: "板の天板、付属のベンチ席、屋外で風化した仕上げを持つクラシックな木製ピクニックテーブル" },
|
|
29
|
+
|
|
30
|
+
// Beds
|
|
31
|
+
"bed-single": { label: "シングルベッド", description: "パッド入りのヘッドボード、すっきりしたフィットシーツ、足元に折りたたまれたスローブランケットを備えた狭いシングルベッド" },
|
|
32
|
+
"bed-queen": { label: "クイーンベッド", description: "高い張り布のヘッドボード、層状の枕、パリッとした掛け布団、足元のランナーを備えたクイーンサイズのベッド" },
|
|
33
|
+
"bed-king": { label: "キングベッド", description: "タフテッドのヘッドボード、複数のふかふかの枕、パリッとした白いリネン、厚いキルトの掛け布団を備えた壮大なキングサイズベッド" },
|
|
34
|
+
"bunk-bed": { label: "二段ベッド", description: "2段重ねのマットレス、サイドラダー、安全レール、子ども向けの寝具を備えた頑丈な木製の二段ベッド" },
|
|
35
|
+
"canopy-bed": { label: "天蓋付きベッド", description: "高い彫刻入りの柱、布の天蓋、各角から流れるカーテンを備えた4本柱の天蓋付きベッド" },
|
|
36
|
+
"four-poster-bed": { label: "4本柱ベッド", description: "各角から飾りなく立ち上がるロクロ加工の木製柱が、ヘッドボードの彫刻プロファイルと調和する4本柱ベッド" },
|
|
37
|
+
"daybed": { label: "デイベッド", description: "低いフレーム、背もたれとアームレストを兼ねる張り布の3面、壁沿いのボルスタークッションを備えたデイベッド" },
|
|
38
|
+
"crib": { label: "ベビーベッド", description: "縦のスラット側面、小さなフィットマットレス、内に詰め込まれた柔らかなぬいぐるみを備えた木製ベビーベッド" },
|
|
39
|
+
"futon": { label: "布団/フトン", description: "ソファからベッドに変わる折りたたみ金属フレームの上に薄いパッドマットレスを備えたコンバーチブル布団" },
|
|
40
|
+
"hammock": { label: "ハンモック", description: "2つの支柱の間に吊るされ、優雅にたわみ、両端にカラフルな房が付いた編み込みロープのハンモック" },
|
|
41
|
+
|
|
42
|
+
// Storage
|
|
43
|
+
"bookshelf": { label: "本棚", description: "複数の水平棚、木製の側板、整然と積まれた本の列を持つ背の高い自立式本棚" },
|
|
44
|
+
"wardrobe": { label: "ワードローブ", description: "全長のハンギングセクション、引き出しバンク、装飾パネル扉を持つ大きな両開きワードローブ" },
|
|
45
|
+
"dresser": { label: "ドレッサー", description: "幅広のトップ、2列の深い引き出し6個、真鍮プル取っ手、短いテーパー脚を持つ木製ドレッサー" },
|
|
46
|
+
"cabinet": { label: "キャビネット", description: "パネル扉、内部の調整可能な棚、真鍮金物を備えた収納キャビネット" },
|
|
47
|
+
"chest": { label: "収納チェスト", description: "鉄バンド、ヒンジ付きドーム蓋、前面の重いラッチを備えた風化した木製収納チェスト" },
|
|
48
|
+
"trunk": { label: "スチーマートランク", description: "革ストラップ、真鍮の角、旅行ステッカー、トレイを内蔵したラッチ付き蓋を備えたヴィンテージのスチーマートランク" },
|
|
49
|
+
"filing-cabinet": { label: "ファイリングキャビネット", description: "各引き出しのラベルスロット、埋め込まれたプル取っ手、上部のキーロックを備えた4段引き出しの金属製ファイリングキャビネット" },
|
|
50
|
+
"tv-stand": { label: "テレビスタンド", description: "オープンシェルフ、ガラス前面のキャビネット扉、ケーブル通過孔を持つ低いエンターテイメント用テレビスタンド" },
|
|
51
|
+
"display-case": { label: "ディスプレイケース", description: "内部照明、ガラス棚、施錠可能なフレーム扉を持つ背の高いガラス製ディスプレイケース" },
|
|
52
|
+
"hutch": { label: "チャイナハッチ", description: "縦並びの皿が見えるガラス前面の上段キャビネットと、引き出しと扉のあるビュッフェの下段からなる二段式のチャイナハッチ" },
|
|
53
|
+
"toy-chest": { label: "おもちゃ箱", description: "陽気なデカール、ソフトクローズの蓋、側面に貼られたステッカーを備えたペイントされた木製のおもちゃ箱" },
|
|
54
|
+
|
|
55
|
+
// Lighting
|
|
56
|
+
"floor-lamp": { label: "フロアランプ", description: "細い金属スタンド、重みのあるベース、プルチェーンスイッチ、上部のドラム型布シェードを持つ背の高いフロアランプ" },
|
|
57
|
+
"table-lamp": { label: "テーブルランプ", description: "陶器ベース、プリーツ布シェード、小さなプルチェーンスイッチを持つクラシックなテーブルランプ" },
|
|
58
|
+
"desk-lamp": { label: "デスクランプ", description: "可動アーム、ヒンジ付きヘッド、小さな円錐金属シェードを持つ関節式デスクランプ" },
|
|
59
|
+
"chandelier": { label: "シャンデリア", description: "段々のクリスタル滝、湾曲した金色のアーム、複数の炎型電球を持つ壮大なクリスタルシャンデリア" },
|
|
60
|
+
"pendant-light": { label: "ペンダントライト", description: "長いコードからミニマリストな金属またはガラスのシェードが吊るされたモダンなペンダントライト" },
|
|
61
|
+
"sconce": { label: "ウォールスコンス", description: "装飾的なバックプレート、湾曲したアーム、上向きの布またはガラスシェードを持つ壁掛けスコンス" },
|
|
62
|
+
"lantern": { label: "ランタン", description: "金属フレーム、ガラスパネル、内部のキャンドルまたは点滅する電球、上部の運搬リングを持つクラシックなランタン" },
|
|
63
|
+
"candelabra": { label: "燭台", description: "複数の湾曲した枝分かれするアームがそれぞれ高いテーパーキャンドルを持つ華やかな銀の燭台" },
|
|
64
|
+
"neon-sign": { label: "ネオンサイン", description: "筆記体の文字またはレトロアイコンに曲げられたガラス管が、壁に色付きの光を投げかける輝くネオンサイン" },
|
|
65
|
+
|
|
66
|
+
// Kitchen & Dining
|
|
67
|
+
"kitchen-island": { label: "キッチンアイランド", description: "厚いブッチャーブロック天板、下のキャビネット収納、バースツールのオーバーハング、上部のラックを持つ自立式キッチンアイランド" },
|
|
68
|
+
"bar-counter": { label: "バーカウンター", description: "磨かれた木製天板、真鍮のフットレール、バックライト付きガラス棚、後ろに並ぶボトルの列を持つホームバーカウンター" },
|
|
69
|
+
"bar-stool": { label: "バースツール", description: "回転する丸い座面、フットレスト輪、金属フレーム、低い背もたれ(オプション)を持つ高いバースツール" },
|
|
70
|
+
"pot-rack": { label: "ポットラック", description: "錬鉄のフレーム、Sフックでぶら下がる鍋とフライパン、上のスパイス棚を持つ天井からのハンギングポットラック" },
|
|
71
|
+
"spice-rack": { label: "スパイスラック", description: "ラベル付きの小さなガラス瓶の列、木製棚、陽気で雑然とした魅力を持つ壁掛けスパイスラック" },
|
|
72
|
+
"buffet": { label: "ビュッフェ", description: "サービング皿用の平らな天板、リネン用の引き出し、食器用キャビネット扉を持つ長いダイニングルーム用ビュッフェ" },
|
|
73
|
+
|
|
74
|
+
// Outdoor
|
|
75
|
+
"patio-chair": { label: "パティオチェア", description: "耐候性の編み込み籐の座面、アルミフレーム、防水クッションを持つ屋外パティオチェア" },
|
|
76
|
+
"adirondack-chair": { label: "アディロンダックチェア", description: "傾斜したスラット背もたれ、広く平らなアームレスト、緩やかに後ろへすくう座面を持つクラシックな木製アディロンダックチェア" },
|
|
77
|
+
"porch-swing": { label: "ポーチスイング", description: "天井からチェーンで吊るされた、スラット座面とカラフルな屋外クッションの列を備えた木製ポーチスイング" },
|
|
78
|
+
"gazebo": { label: "ガゼボ", description: "尖った瓦屋根、6本の開いた木の柱、手すり、上げ床を持つ自立式屋外ガゼボ" },
|
|
79
|
+
"bistro-set": { label: "ビストロセット", description: "丸い錬鉄テーブルとお揃いの椅子2脚、艶のある耐候性仕上げを備えたコンパクトな屋外ビストロセット" },
|
|
80
|
+
"sun-lounger": { label: "サンラウンジャー", description: "調整可能なリクライニング背もたれ、白いビニールストラップ、揃いのサイドテーブルを持つプールサイドのサンラウンジャー" },
|
|
81
|
+
"fire-pit": { label: "ファイアピット", description: "粗い鉄の外装、揺らめく炎、保護メッシュスクリーンの下で輝く残り火を持つ丸い屋外ファイアピット" },
|
|
82
|
+
|
|
83
|
+
// Decorative
|
|
84
|
+
"mirror": { label: "鏡", description: "華麗な金箔のフレーム、彫刻された渦巻き、ガラスにわずかに古びた銀メッキを持つ大きな壁掛け鏡" },
|
|
85
|
+
"rug": { label: "ラグ", description: "複雑な織りの模様、房状の端、柔らかなふかふかのパイルを持つ大きな模様入りラグ" },
|
|
86
|
+
"vase": { label: "花瓶", description: "丸い胴、細い首、艶のある仕上げ、内部に活けられた新鮮な花束を持つ高い陶器の花瓶" },
|
|
87
|
+
"grandfather-clock": { label: "グランドファーザークロック", description: "ガラスの振り子扉、真鍮の文字盤、ローマ数字、チャイム機構を持つ高い木製のグランドファーザークロック" },
|
|
88
|
+
"wall-art": { label: "額装ウォールアート", description: "金箔またはミニマリストのフレーム、ギャラリースタイルのマットボーダー、1点の焦点絵画を持つ大きな額装作品" },
|
|
89
|
+
"pillow": { label: "スローピロー", description: "模様入りカバー、パイピングエッジ、ふっくらとした詰め物、隠しジッパー閉じを持つ装飾用スローピロー" },
|
|
90
|
+
"curtains": { label: "カーテン", description: "厚いドレープ生地、金属ロッドから吊り下がるプリーツ上部、両側のタイバックを持つフルレングスのカーテン" },
|
|
91
|
+
"sculpture": { label: "彫刻", description: "ブロンズまたは大理石でできた、複数の角度から光を捉える流れるような有機的形状の抽象彫刻が台座に置かれている" },
|
|
92
|
+
|
|
93
|
+
// Bath
|
|
94
|
+
"bathtub": { label: "バスタブ", description: "丸まった縁、磨かれた白いエナメル内部、4本の華麗な鋳鉄脚を持つ自立式クローフットバスタブ" },
|
|
95
|
+
"shower": { label: "ウォークインシャワー", description: "フレームレスのガラスパネル、タイル張りの壁、レインフォール式シャワーヘッド、リニアフロアドレインを持つウォークインシャワー" },
|
|
96
|
+
"toilet": { label: "トイレ", description: "楕円形の便器、長楕円の便座、クロームの洗浄ハンドル付きタンクを持つ標準的な白い陶器のトイレ" },
|
|
97
|
+
"sink-vanity": { label: "シンク・バニティ", description: "石のカウンタートップ、アンダーマウントの洗面台、上部の幅広い鏡、下のパネル扉キャビネットを備えた洗面台バニティ" },
|
|
98
|
+
"towel-rack": { label: "タオルラック", description: "複数の水平バーと、各バーに掛けられたふかふかの折りたたみタオルを備えた壁掛けの加熱タオルラック" },
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export default map
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Seating
|
|
5
|
+
"sofa": { label: "소파", description: "푹신한 쿠션 등받이와 좌석, 낮은 팔걸이, 중성 톤 인테리어를 갖춘 3인용 소파입니다" },
|
|
6
|
+
"sectional-sofa": { label: "섹셔널 소파", description: "깊은 좌석, 부드러운 쿠션, 셰이즈 끝부분, 숨겨진 수납이나 리클라이너 메커니즘을 갖춘 L자형 섹셔널 소파입니다" },
|
|
7
|
+
"loveseat": { label: "러브시트", description: "롤 암, 터프트 등받이, 가는 우드 다리를 갖춘 콤팩트한 2인용 러브시트입니다" },
|
|
8
|
+
"armchair": { label: "안락의자", description: "키 큰 패딩 등받이, 곡선형 팔걸이, 네 개의 가는 나무 다리를 갖춘 인테리어 안락의자입니다" },
|
|
9
|
+
"recliner": { label: "리클라이너", description: "당김 레버, 펴지는 발 받침, 두꺼운 가죽 인테리어, 기울어진 등받이를 갖춘 패딩 리클라이너입니다" },
|
|
10
|
+
"office-chair": { label: "사무용 의자", description: "메시 등받이, 조절 가능한 팔걸이, 가스 리프트 높이, 5점 캐스터 베이스를 갖춘 인체공학적 사무용 의자입니다" },
|
|
11
|
+
"rocking-chair": { label: "흔들의자", description: "곡선 흔들이, 등나무 등받이, 패딩 좌석 쿠션을 갖춘 나무 흔들의자입니다" },
|
|
12
|
+
"throne": { label: "왕좌", description: "우뚝 솟은 조각 등받이, 도금 트림, 보석 액센트, 풍성한 벨벳 쿠션을 갖춘 화려한 왕좌입니다" },
|
|
13
|
+
"bean-bag": { label: "빈백", description: "부드러운 패브릭 외피와 몸을 감싸는 베개 같은 형태의 큼직한 빈백 의자입니다" },
|
|
14
|
+
"stool": { label: "스툴", description: "둥근 나무 좌석, 네 개의 펼쳐진 다리, 사용감 있는 편안한 멋을 가진 등받이 없는 단순한 스툴입니다" },
|
|
15
|
+
"bench": { label: "벤치", description: "평평한 좌석, 슬랫 등받이, 튼튼한 판자 다리를 가진 긴 나무 벤치입니다" },
|
|
16
|
+
"chaise-lounge": { label: "셰이즈 라운지", description: "기울어진 헤드레스트, 길게 늘어진 좌석, 우드 다리를 가진 우아한 셰이즈 라운지입니다" },
|
|
17
|
+
"dining-chair": { label: "다이닝 체어", description: "높은 슬랫 등받이, 좌석 쿠션, 가는 나무 다리를 가진 격식 있는 다이닝 체어입니다" },
|
|
18
|
+
|
|
19
|
+
// Tables
|
|
20
|
+
"dining-table": { label: "다이닝 테이블", description: "광택이 흐르는 나무 상판, 두꺼운 트레슬 베이스, 6~8명용 큰 직사각형 다이닝 테이블입니다" },
|
|
21
|
+
"coffee-table": { label: "커피 테이블", description: "유리 또는 나무 상판, 미니멀한 다리, 잡지를 둘 수 있는 하단 선반을 가진 낮은 직사각형 커피 테이블입니다" },
|
|
22
|
+
"side-table": { label: "사이드 테이블", description: "둥근 상판, 단일 서랍, 가는 다리를 가진 작은 사이드 테이블입니다" },
|
|
23
|
+
"console-table": { label: "콘솔 테이블", description: "길고 슬림한 상판, 섬세한 다리, 에이프런을 따라 장식 스크롤이 있는 좁은 콘솔 테이블입니다" },
|
|
24
|
+
"desk": { label: "책상", description: "평평한 작업 표면, 측면 서랍 뱅크, 뒷면의 케이블 정리 컷아웃을 갖춘 책상입니다" },
|
|
25
|
+
"workbench": { label: "작업대", description: "두꺼운 도마 상판, 뒷면 페그보드 패널, 한쪽에 클램프된 바이스를 갖춘 헤비듀티 작업대입니다" },
|
|
26
|
+
"vanity-table": { label: "화장대", description: "넓은 삼각 거울, 양쪽의 작은 서랍, 아래 숨겨진 쿠션 벤치를 갖춘 드레싱 화장대입니다" },
|
|
27
|
+
"nightstand": { label: "협탁", description: "단일 서랍, 열린 하단 선반, 램프를 둘 수 있는 상단 표면을 가진 작은 침대 옆 협탁입니다" },
|
|
28
|
+
"picnic-table": { label: "피크닉 테이블", description: "판자 상판, 부착된 벤치 좌석, 풍화된 야외 마감의 클래식한 나무 피크닉 테이블입니다" },
|
|
29
|
+
|
|
30
|
+
// Beds
|
|
31
|
+
"bed-single": { label: "싱글 침대", description: "패딩 헤드보드, 깔끔한 시트, 발치에 접힌 담요를 갖춘 좁은 싱글 침대입니다" },
|
|
32
|
+
"bed-queen": { label: "퀸 침대", description: "키 큰 인테리어 헤드보드, 겹친 베개, 깔끔한 듀벳, 발치 러너를 갖춘 퀸 사이즈 침대입니다" },
|
|
33
|
+
"bed-king": { label: "킹 침대", description: "터프트 헤드보드, 다수의 풍성한 베개, 깔끔한 흰색 침구, 두꺼운 누빔 듀벳을 갖춘 웅장한 킹 사이즈 침대입니다" },
|
|
34
|
+
"bunk-bed": { label: "이층 침대", description: "두 개의 매트리스가 쌓인 견고한 나무 이층 침대로, 측면 사다리, 안전 레일, 키즈용 침구를 갖췄습니다" },
|
|
35
|
+
"canopy-bed": { label: "캐노피 침대", description: "키 큰 조각 기둥, 위에 드리운 패브릭 캐노피, 각 모서리의 흐르는 커튼을 갖춘 사주식 캐노피 침대입니다" },
|
|
36
|
+
"four-poster-bed": { label: "사주식 침대", description: "각 모서리에 우드 컬럼이 솟은 사주식 침대로, 조각된 헤드보드 프로필과 어울립니다" },
|
|
37
|
+
"daybed": { label: "데이베드", description: "낮은 프레임, 등받이와 팔걸이 역할을 하는 세 개의 인테리어 측면, 벽을 따라 놓인 볼스터 쿠션을 갖춘 데이베드입니다" },
|
|
38
|
+
"crib": { label: "아기 침대", description: "수직 슬랫 측면, 작은 맞춤형 매트리스, 안에 놓인 부드러운 봉제 인형이 있는 나무 아기 침대입니다" },
|
|
39
|
+
"futon": { label: "후톤", description: "접이식 금속 프레임 위 슬림한 패딩 매트리스가 소파에서 침대로 변형되는 컨버터블 후톤입니다" },
|
|
40
|
+
"hammock": { label: "해먹", description: "두 지지대 사이에 매달린 밧줄 해먹으로, 부드러운 곡선과 양 끝의 화려한 술이 매력적입니다" },
|
|
41
|
+
|
|
42
|
+
// Storage
|
|
43
|
+
"bookshelf": { label: "책장", description: "여러 수평 선반, 나무 측면, 깔끔하게 쌓인 책들을 가진 키 큰 독립형 책장입니다" },
|
|
44
|
+
"wardrobe": { label: "옷장", description: "전체 길이 행잉 섹션, 서랍 뱅크, 장식 패널 도어를 갖춘 큰 양쪽 도어 옷장입니다" },
|
|
45
|
+
"dresser": { label: "서랍장", description: "넓은 상판, 두 줄로 된 6개의 깊은 서랍, 황동 손잡이, 짧은 가는 다리를 가진 나무 서랍장입니다" },
|
|
46
|
+
"cabinet": { label: "캐비닛", description: "패널 도어, 내부 조절 선반, 황동 하드웨어를 갖춘 수납 캐비닛입니다" },
|
|
47
|
+
"chest": { label: "수납 체스트", description: "철 띠, 경첩이 달린 돔형 뚜껑, 정면의 무거운 걸쇠를 갖춘 풍화된 나무 수납 체스트입니다" },
|
|
48
|
+
"trunk": { label: "스티머 트렁크", description: "가죽 끈, 황동 모서리, 여행 스티커, 트레이 인서트가 드러나는 걸쇠 뚜껑을 갖춘 빈티지 스티머 트렁크입니다" },
|
|
49
|
+
"filing-cabinet": { label: "파일링 캐비닛", description: "각 서랍의 라벨 슬롯, 들어간 손잡이, 상단의 키 잠금장치를 갖춘 4단 금속 파일링 캐비닛입니다" },
|
|
50
|
+
"tv-stand": { label: "TV 스탠드", description: "오픈 선반, 유리문 캐비닛, 케이블 통과구를 갖춘 낮은 엔터테인먼트 TV 스탠드입니다" },
|
|
51
|
+
"display-case": { label: "디스플레이 케이스", description: "내부 조명, 유리 선반, 잠금 가능한 프레임 도어를 갖춘 키 큰 유리 디스플레이 케이스입니다" },
|
|
52
|
+
"hutch": { label: "차이나 허치", description: "접시를 모서리로 보여주는 유리문 상부 캐비닛과 서랍과 도어가 있는 뷔페 베이스로 구성된 2부 차이나 허치입니다" },
|
|
53
|
+
"toy-chest": { label: "장난감 상자", description: "쾌활한 데칼, 부드럽게 닫히는 경첩 뚜껑, 측면에 쌓인 스티커가 있는 페인트칠된 나무 장난감 상자입니다" },
|
|
54
|
+
|
|
55
|
+
// Lighting
|
|
56
|
+
"floor-lamp": { label: "플로어 램프", description: "가는 금속 스탠드, 무게가 실린 베이스, 풀 체인 스위치, 상단 드럼 패브릭 갓을 가진 키 큰 플로어 램프입니다" },
|
|
57
|
+
"table-lamp": { label: "테이블 램프", description: "세라믹 베이스, 주름 패브릭 갓, 작은 풀 체인 스위치를 갖춘 클래식한 테이블 램프입니다" },
|
|
58
|
+
"desk-lamp": { label: "데스크 램프", description: "조절 가능한 암, 경첩 헤드, 작은 원뿔형 금속 갓을 가진 관절식 데스크 램프입니다" },
|
|
59
|
+
"chandelier": { label: "샹들리에", description: "층층이 쏟아지는 크리스털, 곡선의 황금 암, 여러 화염 모양 전구를 가진 웅장한 크리스털 샹들리에입니다" },
|
|
60
|
+
"pendant-light": { label: "펜던트 조명", description: "긴 코드에 매달린 미니멀한 금속 또는 유리 갓의 모던한 펜던트 조명입니다" },
|
|
61
|
+
"sconce": { label: "벽면 조명", description: "장식 백플레이트, 곡선 암, 위쪽을 향한 패브릭 또는 유리 갓을 가진 벽면 조명입니다" },
|
|
62
|
+
"lantern": { label: "랜턴", description: "금속 프레임, 유리 패널, 안의 양초나 깜빡이는 전구, 상단의 운반 고리를 가진 클래식한 랜턴입니다" },
|
|
63
|
+
"candelabra": { label: "촛대", description: "각각 키 큰 양초를 든 여러 곡선 분기 암을 가진 화려한 은제 촛대입니다" },
|
|
64
|
+
"neon-sign": { label: "네온 사인", description: "필기체 글자나 레트로 아이콘으로 휘어진 유리 튜브가 벽에 색이 있는 빛을 비추는 빛나는 네온 사인입니다" },
|
|
65
|
+
|
|
66
|
+
// Kitchen & Dining
|
|
67
|
+
"kitchen-island": { label: "키친 아일랜드", description: "두꺼운 도마 상판, 아래 캐비닛 수납, 바 스툴 오버행, 위쪽 랙을 갖춘 독립형 키친 아일랜드입니다" },
|
|
68
|
+
"bar-counter": { label: "바 카운터", description: "광택 나무 상판, 황동 발 레일, 백라이트 유리 선반, 뒤에 진열된 병들이 늘어선 홈 바 카운터입니다" },
|
|
69
|
+
"bar-stool": { label: "바 스툴", description: "회전하는 둥근 좌석, 발판 링, 금속 프레임, 선택적 낮은 등받이를 가진 키 큰 바 스툴입니다" },
|
|
70
|
+
"pot-rack": { label: "냄비 걸이", description: "단철 프레임, 냄비와 팬을 매다는 S자 후크, 위쪽 향신료 선반을 갖춘 천장 매달림 냄비 걸이입니다" },
|
|
71
|
+
"spice-rack": { label: "향신료 선반", description: "라벨이 붙은 작은 유리병들, 나무 선반, 쾌활하게 어수선한 매력의 벽면 향신료 선반입니다" },
|
|
72
|
+
"buffet": { label: "뷔페", description: "서빙 플래터를 위한 평평한 상판, 식탁보용 서랍, 식기용 캐비닛 도어를 갖춘 긴 다이닝 룸 뷔페입니다" },
|
|
73
|
+
|
|
74
|
+
// Outdoor
|
|
75
|
+
"patio-chair": { label: "파티오 의자", description: "내후성 등나무 좌석, 알루미늄 프레임, 방수 쿠션을 갖춘 야외 파티오 의자입니다" },
|
|
76
|
+
"adirondack-chair": { label: "애디론댁 체어", description: "기울어진 슬랫 등받이, 넓고 평평한 팔걸이, 부드럽게 뒤로 떨어지는 좌석을 가진 클래식 나무 애디론댁 체어입니다" },
|
|
77
|
+
"porch-swing": { label: "포치 스윙", description: "천장에서 사슬로 매달린 나무 포치 스윙으로, 슬랫 좌석과 다채로운 야외 쿠션이 줄지어 있습니다" },
|
|
78
|
+
"gazebo": { label: "가제보", description: "뾰족한 슁글 지붕, 여섯 개의 열린 우드 컬럼, 난간, 높여진 나무 바닥을 가진 독립형 야외 가제보입니다" },
|
|
79
|
+
"bistro-set": { label: "비스트로 세트", description: "둥근 단철 테이블과 두 개의 어울리는 의자가 광택 내후성 마감으로 된 콤팩트한 야외 비스트로 세트입니다" },
|
|
80
|
+
"sun-lounger": { label: "선 라운저", description: "조절 가능한 리클라이닝 등받이, 흰색 비닐 스트랩, 어울리는 사이드 테이블을 갖춘 풀사이드 선 라운저입니다" },
|
|
81
|
+
"fire-pit": { label: "파이어 핏", description: "거친 철 외관, 깜빡이는 불꽃, 보호 메시 스크린 아래 빛나는 잉걸불을 가진 둥근 야외 파이어 핏 보울입니다" },
|
|
82
|
+
|
|
83
|
+
// Decorative
|
|
84
|
+
"mirror": { label: "거울", description: "도금 프레임, 조각된 스크롤, 약간 낡은 은 도금이 있는 큰 벽 거울입니다" },
|
|
85
|
+
"rug": { label: "러그", description: "복잡한 직조 모티프, 술 달린 끝, 부드러운 풍성한 파일을 가진 큰 패턴 면적 러그입니다" },
|
|
86
|
+
"vase": { label: "꽃병", description: "둥근 몸체, 좁은 목, 유약 마감, 안에 신선한 꽃다발이 있는 키 큰 세라믹 꽃병입니다" },
|
|
87
|
+
"grandfather-clock": { label: "그랜드파더 시계", description: "유리 진자 도어, 황동 시계 면, 로마 숫자, 차임 메커니즘을 갖춘 키 큰 나무 그랜드파더 시계입니다" },
|
|
88
|
+
"wall-art": { label: "프레임 벽 예술품", description: "도금 또는 미니멀한 프레임에 갤러리 스타일 매트 보더와 단일 초점 그림이 있는 큰 액자 예술품입니다" },
|
|
89
|
+
"pillow": { label: "쿠션", description: "패턴 커버, 파이프 가장자리, 풍성한 충전재, 보이지 않는 지퍼 잠금을 갖춘 장식용 쿠션입니다" },
|
|
90
|
+
"curtains": { label: "커튼", description: "두꺼운 드레이프 패브릭, 금속 봉에 매달린 주름진 상단, 양쪽의 타이백을 가진 풀 길이 커튼입니다" },
|
|
91
|
+
"sculpture": { label: "조각상", description: "여러 각도에서 빛을 받는 청동이나 대리석의 흐르는 유기적 형태를 받침대 위에 둔 추상 조각입니다" },
|
|
92
|
+
|
|
93
|
+
// Bath
|
|
94
|
+
"bathtub": { label: "욕조", description: "롤 림, 광택 흰색 에나멜 내부, 네 개의 화려한 주철 발을 가진 독립형 클로풋 욕조입니다" },
|
|
95
|
+
"shower": { label: "워크인 샤워", description: "프레임 없는 유리 패널, 타일 벽, 레인폴 샤워 헤드, 선형 바닥 배수구를 갖춘 워크인 샤워입니다" },
|
|
96
|
+
"toilet": { label: "변기", description: "타원형 보울, 길쭉한 시트, 크롬 플러시 핸들이 있는 탱크의 표준 흰색 세라믹 변기입니다" },
|
|
97
|
+
"sink-vanity": { label: "세면대 화장대", description: "스톤 카운터탑, 언더마운트 베이슨, 위쪽의 넓은 거울, 아래 패널 캐비닛 도어를 가진 욕실 세면대 화장대입니다" },
|
|
98
|
+
"towel-rack": { label: "수건걸이", description: "여러 수평 바와 각 바에 걸린 풍성한 접힌 수건이 있는 벽면 가열식 수건걸이입니다" },
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export default map
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Seating
|
|
5
|
+
"sofa": { label: "Sofá", description: "Sofá de três lugares com encosto e assento estofados, braços baixos e estofado em tom neutro" },
|
|
6
|
+
"sectional-sofa": { label: "Sofá Modular", description: "Sofá modular em L com assentos profundos, almofadas macias, chaise na ponta e mecanismos ocultos de armazenamento ou reclinação" },
|
|
7
|
+
"loveseat": { label: "Sofá Namoradeira", description: "Namoradeira compacta de dois lugares com braços rolados, encosto capitonê e pés de madeira afilados" },
|
|
8
|
+
"armchair": { label: "Poltrona", description: "Poltrona estofada com encosto alto acolchoado, braços curvos e quatro pés finos de madeira" },
|
|
9
|
+
"recliner": { label: "Poltrona Reclinável", description: "Poltrona reclinável acolchoada com alavanca, apoio para os pés, estofado de couro espesso e encosto reclinado" },
|
|
10
|
+
"office-chair": { label: "Cadeira de Escritório", description: "Cadeira de escritório ergonômica com encosto em tela, braços ajustáveis, regulagem a gás e base com cinco rodízios" },
|
|
11
|
+
"rocking-chair": { label: "Cadeira de Balanço", description: "Cadeira de balanço de madeira com balanços curvos, encosto em palhinha trançada e almofada estofada no assento" },
|
|
12
|
+
"throne": { label: "Trono", description: "Trono real ornamentado com encosto alto entalhado, ornamentos dourados, detalhes em pedraria e almofada de veludo" },
|
|
13
|
+
"bean-bag": { label: "Pufe Bean Bag", description: "Bean bag enorme e desleixado, com tecido macio por fora e formato fofo que se molda ao corpo" },
|
|
14
|
+
"stool": { label: "Banqueta", description: "Banqueta simples sem encosto, com assento redondo de madeira, quatro pés torneados abertos e pátina confortável" },
|
|
15
|
+
"bench": { label: "Banco", description: "Banco comprido de madeira com assento plano, encosto vazado em ripas e pés robustos em pranchas" },
|
|
16
|
+
"chaise-lounge": { label: "Chaise Longue", description: "Chaise longue elegante com apoio de cabeça inclinado, assento estofado alongado e pés torneados de madeira" },
|
|
17
|
+
"dining-chair": { label: "Cadeira de Jantar", description: "Cadeira formal de jantar com encosto alto vazado em ripas, almofada estofada no assento e pés afilados de madeira" },
|
|
18
|
+
|
|
19
|
+
// Tables
|
|
20
|
+
"dining-table": { label: "Mesa de Jantar", description: "Mesa de jantar grande retangular com tampo polido de madeira, base em cavalete grossa e lugar para seis a oito pessoas" },
|
|
21
|
+
"coffee-table": { label: "Mesa de Centro", description: "Mesa de centro retangular baixa com tampo de vidro ou madeira, pés minimalistas e prateleira inferior para revistas" },
|
|
22
|
+
"side-table": { label: "Mesa Lateral", description: "Mesa lateral pequena com tampo redondo, uma gaveta e pés afilados delgados" },
|
|
23
|
+
"console-table": { label: "Aparador", description: "Aparador estreito com tampo longo e fino, pés delicados e detalhes decorativos no friso" },
|
|
24
|
+
"desk": { label: "Escrivaninha", description: "Escrivaninha com superfície plana de trabalho, gaveteiro lateral e passagem de cabos atrás" },
|
|
25
|
+
"workbench": { label: "Bancada de Trabalho", description: "Bancada robusta com tampo grosso de açougue, painel de pegboard atrás e morsa fixada na borda" },
|
|
26
|
+
"vanity-table": { label: "Penteadeira", description: "Penteadeira com espelho amplo de três faces, gavetinhas de cada lado e banqueta acolchoada embaixo" },
|
|
27
|
+
"nightstand": { label: "Criado-Mudo", description: "Criado-mudo pequeno com uma gaveta, prateleira inferior aberta e tampo pronto para abajur" },
|
|
28
|
+
"picnic-table": { label: "Mesa de Piquenique", description: "Clássica mesa de piquenique de madeira com tampo em pranchas, bancos acoplados e acabamento envelhecido" },
|
|
29
|
+
|
|
30
|
+
// Beds
|
|
31
|
+
"bed-single": { label: "Cama de Solteiro", description: "Cama de solteiro estreita com cabeceira acolchoada, lençol bem ajustado e manta dobrada aos pés" },
|
|
32
|
+
"bed-queen": { label: "Cama Queen", description: "Cama queen com cabeceira alta estofada, várias almofadas, edredom impecável e cobre-pés atravessado na ponta" },
|
|
33
|
+
"bed-king": { label: "Cama King", description: "Imponente cama king com cabeceira capitonê, várias almofadas fofas, roupa de cama branca e impecável e edredom acolchoado grosso" },
|
|
34
|
+
"bunk-bed": { label: "Beliche", description: "Beliche robusto de madeira com dois colchões empilhados, escada lateral, grades de proteção e roupa de cama infantil combinando" },
|
|
35
|
+
"canopy-bed": { label: "Cama com Dossel", description: "Cama com dossel de quatro postes, postes esculpidos, dossel de tecido sobre a cama e cortinas fluindo em cada canto" },
|
|
36
|
+
"four-poster-bed": { label: "Cama de Quatro Postes", description: "Cama de quatro postes com colunas de madeira torneadas em cada canto, sobindo discretamente para combinar com o perfil entalhado da cabeceira" },
|
|
37
|
+
"daybed": { label: "Daybed", description: "Daybed com estrutura baixa, três lados estofados servindo de encosto e braços e almofadas-rolo encostadas na parede" },
|
|
38
|
+
"crib": { label: "Berço de Bebê", description: "Berço de bebê de madeira com laterais ripadas verticais, colchãozinho ajustado e pelúcias colocadas dentro" },
|
|
39
|
+
"futon": { label: "Futon", description: "Futon conversível com colchão fino acolchoado sobre estrutura metálica dobrável, que vira de sofá em cama" },
|
|
40
|
+
"hammock": { label: "Rede", description: "Rede trançada de corda pendurada entre dois apoios, com curva convidativa e franjas coloridas em cada ponta" },
|
|
41
|
+
|
|
42
|
+
// Storage
|
|
43
|
+
"bookshelf": { label: "Estante de Livros", description: "Estante alta independente com várias prateleiras horizontais, laterais de madeira e fileiras de livros bem arrumados" },
|
|
44
|
+
"wardrobe": { label: "Guarda-roupa", description: "Guarda-roupa grande de duas portas com cabide de comprimento total, gaveteiro e portas decorativas almofadadas" },
|
|
45
|
+
"dresser": { label: "Cômoda", description: "Cômoda de madeira com tampo largo, seis gavetas profundas em duas colunas, puxadores de latão e pés baixos afilados" },
|
|
46
|
+
"cabinet": { label: "Armário", description: "Armário de armazenagem com portas almofadadas, prateleiras internas ajustáveis e ferragens em latão" },
|
|
47
|
+
"chest": { label: "Baú", description: "Baú de madeira envelhecida com cintas de ferro, tampa abaulada com dobradiça e travamento pesado na frente" },
|
|
48
|
+
"trunk": { label: "Baú de Viagem", description: "Baú de viagem vintage com correias de couro, cantoneiras de latão, adesivos de viagem e tampa que revela bandejas internas" },
|
|
49
|
+
"filing-cabinet": { label: "Arquivo de Aço", description: "Arquivo metálico de quatro gavetas com porta-etiquetas em cada gaveta, puxadores embutidos e fechadura no topo" },
|
|
50
|
+
"tv-stand": { label: "Rack para TV", description: "Rack baixo para TV com prateleiras abertas, portas de armário com vidro e passagens de cabos" },
|
|
51
|
+
"display-case": { label: "Vitrine de Exposição", description: "Vitrine alta de vidro com iluminação interna, prateleiras de vidro e porta com fechadura" },
|
|
52
|
+
"hutch": { label: "Cristaleira", description: "Cristaleira em duas partes, com armário superior envidraçado mostrando pratos em pé e base de buffet com gavetas e portas" },
|
|
53
|
+
"toy-chest": { label: "Baú de Brinquedos", description: "Baú de brinquedos de madeira pintada com decalques alegres, tampa com dobradiça soft-close e adesivos acumulados nas laterais" },
|
|
54
|
+
|
|
55
|
+
// Lighting
|
|
56
|
+
"floor-lamp": { label: "Luminária de Chão", description: "Luminária de chão alta com haste fina de metal, base contrapeso, interruptor de cordão e cúpula de tecido em forma de tambor no topo" },
|
|
57
|
+
"table-lamp": { label: "Abajur", description: "Abajur clássico com base de cerâmica, cúpula de tecido pregueada e pequeno interruptor de cordão" },
|
|
58
|
+
"desk-lamp": { label: "Luminária de Mesa", description: "Luminária de mesa articulada com braço ajustável, cabeçote articulado e cúpula metálica em formato de cone" },
|
|
59
|
+
"chandelier": { label: "Lustre", description: "Imponente lustre de cristal com cristais escalonados em cascata, braços dourados curvos e várias lâmpadas em forma de chama" },
|
|
60
|
+
"pendant-light": { label: "Pendente", description: "Pendente moderno suspenso por um longo cabo, com cúpula minimalista de metal ou vidro" },
|
|
61
|
+
"sconce": { label: "Arandela de Parede", description: "Arandela de parede com base decorativa, braço curvo e cúpula de tecido ou vidro voltada para cima" },
|
|
62
|
+
"lantern": { label: "Lanterna", description: "Lanterna clássica com armação metálica, painéis de vidro, vela ou lâmpada bruxuleante por dentro e alça no topo" },
|
|
63
|
+
"candelabra": { label: "Candelabro", description: "Candelabro de prata ornado com vários braços curvos ramificados, cada um sustentando uma vela longa" },
|
|
64
|
+
"neon-sign": { label: "Letreiro de Neon", description: "Letreiro de neon brilhante com tubos de vidro dobrados em letras cursivas ou ícone retrô, projetando luz colorida na parede" },
|
|
65
|
+
|
|
66
|
+
// Kitchen & Dining
|
|
67
|
+
"kitchen-island": { label: "Ilha de Cozinha", description: "Ilha de cozinha independente com tampo grosso de açougue, armários embaixo, vão para banquetas e suporte por cima" },
|
|
68
|
+
"bar-counter": { label: "Balcão de Bar", description: "Balcão de bar doméstico com tampo polido de madeira, apoio de pé em latão, prateleiras de vidro iluminadas e fileiras de garrafas expostas atrás" },
|
|
69
|
+
"bar-stool": { label: "Banqueta de Bar", description: "Banqueta alta de bar com assento redondo giratório, anel de apoio para os pés, estrutura metálica e encosto baixo opcional" },
|
|
70
|
+
"pot-rack": { label: "Suporte para Panelas", description: "Suporte para panelas suspenso com armação de ferro forjado, ganchos em S segurando panelas e prateleiras de tempero por cima" },
|
|
71
|
+
"spice-rack": { label: "Porta-Temperos", description: "Porta-temperos de parede com fileiras de pequenos potes de vidro etiquetados, prateleiras de madeira e charme caseiro alegre" },
|
|
72
|
+
"buffet": { label: "Buffet", description: "Buffet comprido de sala de jantar com tampo plano para travessas, gavetas para roupa de mesa e portas para a louça" },
|
|
73
|
+
|
|
74
|
+
// Outdoor
|
|
75
|
+
"patio-chair": { label: "Cadeira de Pátio", description: "Cadeira de pátio para área externa com assento de vime trançado resistente ao tempo, estrutura de alumínio e almofada à prova d'água" },
|
|
76
|
+
"adirondack-chair": { label: "Cadeira Adirondack", description: "Cadeira Adirondack clássica de madeira com encosto em ripas inclinadas, braços largos e planos e assento que se inclina suavemente para trás" },
|
|
77
|
+
"porch-swing": { label: "Balanço de Varanda", description: "Balanço de madeira para varanda suspenso por correntes do teto, com assento ripado e fileira de almofadas externas coloridas" },
|
|
78
|
+
"gazebo": { label: "Gazebo", description: "Gazebo de área externa independente com telhado pontudo de telhas, seis colunas abertas de madeira, parapeitos e piso elevado de madeira" },
|
|
79
|
+
"bistro-set": { label: "Conjunto Bistrô", description: "Conjunto bistrô de área externa compacto com mesa redonda de ferro forjado e duas cadeiras combinando, em acabamento brilhante resistente ao tempo" },
|
|
80
|
+
"sun-lounger": { label: "Espreguiçadeira", description: "Espreguiçadeira para piscina com encosto reclinável ajustável, tiras de vinil branco e mesinha lateral combinando" },
|
|
81
|
+
"fire-pit": { label: "Fogueira", description: "Brasília circular de fogueira para área externa com exterior de ferro rústico, chamas dançantes e brasas brilhando sob uma tela de proteção" },
|
|
82
|
+
|
|
83
|
+
// Decorative
|
|
84
|
+
"mirror": { label: "Espelho", description: "Espelho de parede grande com moldura dourada ornamentada, detalhes esculpidos e prateado levemente envelhecido no vidro" },
|
|
85
|
+
"rug": { label: "Tapete", description: "Tapete grande estampado com motivos tecidos intricados, franjas nas pontas e pelo macio e fofo" },
|
|
86
|
+
"vase": { label: "Vaso", description: "Vaso alto de cerâmica com corpo arredondado, gargalo estreito, acabamento esmaltado e buquê fresco arranjado dentro" },
|
|
87
|
+
"grandfather-clock": { label: "Relógio de Pêndulo", description: "Relógio de pêndulo alto de madeira com porta de vidro, mostrador de latão, algarismos romanos e mecanismo de carrilhão" },
|
|
88
|
+
"wall-art": { label: "Quadro Decorativo", description: "Obra de arte grande emoldurada com moldura dourada ou minimalista, paspatur estilo galeria e uma pintura focal" },
|
|
89
|
+
"pillow": { label: "Almofada Decorativa", description: "Almofada decorativa com capa estampada, vivos nas bordas, enchimento fofo e zíper invisível" },
|
|
90
|
+
"curtains": { label: "Cortinas", description: "Cortinas de comprimento total com tecido grosso, topos pregueados pendurados em barra de metal e prendedores nas laterais" },
|
|
91
|
+
"sculpture": { label: "Escultura", description: "Escultura abstrata sobre pedestal com formas orgânicas fluidas em bronze ou mármore captando a luz de vários ângulos" },
|
|
92
|
+
|
|
93
|
+
// Bath
|
|
94
|
+
"bathtub": { label: "Banheira", description: "Banheira de pé tipo clawfoot com borda rolada, interior em esmalte branco polido e quatro pés ornamentados de ferro fundido" },
|
|
95
|
+
"shower": { label: "Box de Banheiro", description: "Box de banheiro com painéis de vidro sem moldura, paredes revestidas, ducha de chuveiro de teto e ralo linear no piso" },
|
|
96
|
+
"toilet": { label: "Vaso Sanitário", description: "Vaso sanitário de cerâmica branca padrão com bacia oval, assento alongado e caixa acoplada com acionador cromado" },
|
|
97
|
+
"sink-vanity": { label: "Gabinete de Pia", description: "Gabinete de pia de banheiro com bancada em pedra, cuba sob o tampo, espelho largo acima e portas almofadadas embaixo" },
|
|
98
|
+
"towel-rack": { label: "Toalheiro", description: "Toalheiro aquecido de parede com várias barras horizontais e toalhas fofas dobradas penduradas em cada barra" },
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export default map
|