@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,307 @@
|
|
|
1
|
+
import type { LocaleCatalogMap } from "./types.js"
|
|
2
|
+
|
|
3
|
+
const map: LocaleCatalogMap = {
|
|
4
|
+
// Makeup
|
|
5
|
+
"makeup-natural": { label: "טבעי", description: "מייקאפ עדין של ללא-מייקאפ" },
|
|
6
|
+
"makeup-glamour": { label: "זוהר", description: "מראה גלאם מלא ומלוטש" },
|
|
7
|
+
"makeup-smoky": { label: "עין מעושנת", description: "מייקאפ עיניים כהה ודרמטי" },
|
|
8
|
+
"makeup-bold-lips": { label: "שפתיים נועזות", description: "שפתון אדום או כהה חזק" },
|
|
9
|
+
"makeup-editorial": { label: "אדיטוריאלי", description: "מייקאפ אופנה אוונגרדי" },
|
|
10
|
+
"makeup-goth": { label: "גות'", description: "אסתטיקה גות' כהה" },
|
|
11
|
+
"makeup-dewy": { label: "Dewy זוהר", description: "פוקוס על עור רענן זוהר" },
|
|
12
|
+
|
|
13
|
+
// Eyewear
|
|
14
|
+
"eyewear-sunglasses": { label: "משקפי שמש", description: "משקפי שמש כהים כלליים" },
|
|
15
|
+
"eyewear-aviators": { label: "Aviators", description: "משקפי שמש Aviator קלאסיים" },
|
|
16
|
+
"eyewear-cat-eye": { label: "Cat-Eye", description: "מסגרות Cat-Eye וינטג'" },
|
|
17
|
+
"eyewear-round": { label: "עגולים / John Lennon", description: "משקפיים עגולים עם מסגרת תיל" },
|
|
18
|
+
"eyewear-fashion": { label: "משקפי אופנה", description: "מסגרות מעצבים נועזות" },
|
|
19
|
+
"eyewear-sport": { label: "משקפי ספורט", description: "משקפי ספורט סביב הראש" },
|
|
20
|
+
|
|
21
|
+
// Headwear
|
|
22
|
+
"headwear-beanie": { label: "כובע גרב", description: "כובע גרב סרוג" },
|
|
23
|
+
"headwear-baseball-cap": { label: "כובע בייסבול", description: "כובע עם מצחייה מעוקלת" },
|
|
24
|
+
"headwear-fedora": { label: "Fedora", description: "Fedora עם שוליים" },
|
|
25
|
+
"headwear-sun-hat": { label: "כובע שמש", description: "כובע שמש עם שוליים רחבים" },
|
|
26
|
+
"headwear-headband": { label: "סרט ראש", description: "סרט ראש לשיער" },
|
|
27
|
+
"headwear-bandana": { label: "בנדנה", description: "בנדנה קשורה סביב הראש" },
|
|
28
|
+
"headwear-hood": { label: "ברדס", description: "ברדס מורם" },
|
|
29
|
+
"headwear-crown": { label: "כתר", description: "כתר מלכותי או דקורטיבי" },
|
|
30
|
+
"headwear-helmet": { label: "קסדה", description: "קסדת מגן" },
|
|
31
|
+
"headwear-veil": { label: "צעיף", description: "צעיף נופל על הפנים/השיער" },
|
|
32
|
+
"headwear-bucket-hat": { label: "כובע דלי", description: "כובע דלי קז'ואל עם שוליים רכים" },
|
|
33
|
+
"headwear-beret": { label: "ברט", description: "ברט צרפתי עגול ורך" },
|
|
34
|
+
"headwear-turban": { label: "טורבן", description: "טורבן עטוף סביב הראש, תרבותי / אופנתי" },
|
|
35
|
+
"headwear-fascinator": { label: "Fascinator", description: "כיסוי ראש דקורטיבי קטן בסגנון חתונה מלכותית" },
|
|
36
|
+
"headwear-bowler": { label: "כובע בוקסר", description: "כובע bowler/derby עם כתר עגול" },
|
|
37
|
+
"headwear-cowboy-hat": { label: "כובע קאובוי", description: "כובע קאובוי מערבי עם שוליים רחבים" },
|
|
38
|
+
|
|
39
|
+
// Hair Cut
|
|
40
|
+
"cut-pixie": { label: "Pixie", description: "תספורת pixie קצרה ומקוצרת" },
|
|
41
|
+
"cut-buzz-cut": { label: "Buzz Cut", description: "Buzz cut קצר מאוד" },
|
|
42
|
+
"cut-crew-cut": { label: "Crew Cut", description: "Crew cut קלאסי קצר ומדורג" },
|
|
43
|
+
"cut-shaved": { label: "מגולח", description: "מגולח לחלוטין" },
|
|
44
|
+
"cut-undercut": { label: "Undercut", description: "צדדים קצרים, חלק עליון ארוך יותר" },
|
|
45
|
+
"cut-faux-hawk": { label: "Faux Hawk", description: "פס מרכזי מורם, צדדים מדורגים" },
|
|
46
|
+
"cut-mohawk": { label: "Mohawk", description: "צדדים מגולחים, פס מרכזי גבוה" },
|
|
47
|
+
"cut-pompadour": { label: "Pompadour", description: "סחוף מעלה ולאחור, נפח בחזית" },
|
|
48
|
+
"cut-short": { label: "קצר", description: "תספורת קצרה כללית" },
|
|
49
|
+
"cut-short-curly": { label: "תלתלים קצרים", description: "צורת תלתלים מדורגת קצרה" },
|
|
50
|
+
|
|
51
|
+
"cut-micro-bob": { label: "Micro Bob", description: "בוב באורך אוזניים קצר מאוד" },
|
|
52
|
+
"cut-french-bob": { label: "Bob צרפתי", description: "בוב באורך לסת חד, לעתים עם פוני" },
|
|
53
|
+
"cut-bob": { label: "Bob", description: "תספורת bob באורך סנטר" },
|
|
54
|
+
"cut-lob": { label: "Lob", description: "Bob ארוך, באורך עצם הבריח" },
|
|
55
|
+
|
|
56
|
+
"cut-mullet": { label: "Mullet", description: "קצר מלמעלה ובצדדים, ארוך מאחור" },
|
|
57
|
+
"cut-wolf-cut": { label: "Wolf Cut", description: "Mullet מדורג עם שכבות פרועות" },
|
|
58
|
+
|
|
59
|
+
"cut-bangs": { label: "פוני קצוץ", description: "פוני ישר על המצח" },
|
|
60
|
+
"cut-curtain-bangs": { label: "Curtain Bangs", description: "פוני עם פסיק מרכזי הממסגר את הפנים" },
|
|
61
|
+
"cut-wispy-bangs": { label: "Wispy Bangs", description: "פוני דק, ויספי, מאוורר" },
|
|
62
|
+
"cut-side-swept": { label: "Side-Swept", description: "נופל על הפנים מעל עין אחת" },
|
|
63
|
+
|
|
64
|
+
"cut-slicked-back": { label: "מסורק לאחור", description: "משוך ישר לאחור, מלוטש" },
|
|
65
|
+
"cut-bardot-tendrils": { label: "תלתלי Bardot", description: "אסוף לאחור עם פסים ממסגרי פנים" },
|
|
66
|
+
"cut-ponytail": { label: "קוקו (נמוך)", description: "קוקו נמוך אסוף לאחור" },
|
|
67
|
+
"cut-high-ponytail": { label: "קוקו גבוה", description: "קוקו קשור גבוה על הראש" },
|
|
68
|
+
"cut-half-up": { label: "חצי-מעלה חצי-מטה", description: "חלק עליון אסוף, השאר זורם למטה" },
|
|
69
|
+
"cut-bun": { label: "פקעת", description: "פקעת קלאסית נמוכה או באמצע" },
|
|
70
|
+
"cut-top-knot": { label: "Top Knot", description: "פקעת קשורה גבוה על הראש" },
|
|
71
|
+
"cut-space-buns": { label: "Space Buns", description: "שתי פקעות סימטריות בכל צד" },
|
|
72
|
+
|
|
73
|
+
"cut-braids": { label: "צמות", description: "מספר צמות רפויות ארוגות" },
|
|
74
|
+
"cut-single-braid": { label: "צמה יחידה", description: "צמה אחת ארוכה במורד הגב" },
|
|
75
|
+
"cut-two-braids": { label: "שתי צמות", description: "צמות פיגטייל בכל צד" },
|
|
76
|
+
"cut-french-braid": { label: "צמה צרפתית", description: "ארוגה שטוחה כנגד הקרקפת" },
|
|
77
|
+
"cut-dutch-braid": { label: "צמה הולנדית", description: "צמה צרפתית הפוכה ומורמת" },
|
|
78
|
+
"cut-fishtail-braid": { label: "צמת זנב דג", description: "אריגה דקה בשני סלילים" },
|
|
79
|
+
"cut-box-braids": { label: "Box Braids", description: "צמות ייחודיות מחולקות" },
|
|
80
|
+
"cut-crown-braid": { label: "צמת כתר", description: "צמה עטופה סביב הראש" },
|
|
81
|
+
"cut-cornrows": { label: "Cornrows", description: "דפוס Cornrow צמות" },
|
|
82
|
+
|
|
83
|
+
"cut-dreadlocks": { label: "Dreadlocks", description: "Locs מקובצים דמויי חבל" },
|
|
84
|
+
"cut-sisterlocks": { label: "Sisterlocks", description: "Micro-locs דקים ומסודרים" },
|
|
85
|
+
|
|
86
|
+
// Hair State
|
|
87
|
+
"hair-wet": { label: "רטוב", description: "שיער ספוג, נצמד למים" },
|
|
88
|
+
"hair-damp": { label: "לח", description: "שיער לח טרי-מהשטיפה" },
|
|
89
|
+
"hair-messy": { label: "מבולגן", description: "פרוע, לא מסודר" },
|
|
90
|
+
"hair-tousled": { label: "מבולבל", description: "מעט מבולגן בקלילות, חי-בו" },
|
|
91
|
+
"hair-bedhead": { label: "Bedhead", description: "צד שטוח של חדש-להתעורר" },
|
|
92
|
+
"hair-windswept": { label: "מנושף רוח", description: "מונשף רוח, שיער בתנועה" },
|
|
93
|
+
"hair-voluminous": { label: "מלא נפח", description: "גדול, נפוח עם נפח" },
|
|
94
|
+
"hair-sleek": { label: "חלק", description: "ישר חלק כזכוכית" },
|
|
95
|
+
"hair-frizzy": { label: "מקופץ", description: "הילה של תלתלים" },
|
|
96
|
+
"hair-strands-on-face": { label: "פסים על הפנים", description: "פסים רפויים על פני הפנים" },
|
|
97
|
+
"hair-tucked-behind-ear": { label: "מאחורי האוזן", description: "דחוף מאחורי אוזן אחת" },
|
|
98
|
+
"hair-flowing": { label: "זורם", description: "תנועה זורמת ארוכה" },
|
|
99
|
+
|
|
100
|
+
// Hair Treatment
|
|
101
|
+
"treatment-babylights": { label: "Babylights", description: "Highlights עדינים במיוחד" },
|
|
102
|
+
"treatment-balayage": { label: "Balayage", description: "Highlights צבועים ביד" },
|
|
103
|
+
"treatment-ombre": { label: "Ombré", description: "Gradient משורשים כהים לקצוות בהירים" },
|
|
104
|
+
"treatment-sombre": { label: "Sombré", description: "Ombré רך ועדין" },
|
|
105
|
+
"treatment-highlights": { label: "Highlights", description: "Highlights קלאסיים בנייר" },
|
|
106
|
+
"treatment-lowlights": { label: "Lowlights", description: "פסי גוון כהים יותר" },
|
|
107
|
+
"treatment-rooted": { label: "מושרש", description: "מראה צמיחת שורש גלויה" },
|
|
108
|
+
|
|
109
|
+
// Jewelry
|
|
110
|
+
"jewelry-subtle": { label: "עדין", description: "תכשיטים מינימליים, עדינים" },
|
|
111
|
+
"jewelry-statement": { label: "הצהרה", description: "פריט תכשיט הצהרה נועז" },
|
|
112
|
+
"jewelry-gold": { label: "זהב", description: "שרשרת + עגילי זהב" },
|
|
113
|
+
"jewelry-silver": { label: "כסף", description: "שרשרת + עגילי כסף" },
|
|
114
|
+
"jewelry-layered": { label: "בשכבות", description: "שרשראות / chains בשכבות" },
|
|
115
|
+
"jewelry-pearl": { label: "פנינה", description: "שרשרת / עגילי פנינה" },
|
|
116
|
+
"jewelry-chunky": { label: "Chunky", description: "Chains וטבעות עבים" },
|
|
117
|
+
"jewelry-smart-watch": { label: "שעון חכם", description: "שעון חכם מודרני על שורש כף יד" },
|
|
118
|
+
"jewelry-choker-leather": { label: "Choker עור", description: "Choker עור שחור צמוד לגרון" },
|
|
119
|
+
"jewelry-choker-velvet": { label: "Choker קטיפה", description: "Choker סרט קטיפה, מהודר ווינטג'" },
|
|
120
|
+
"jewelry-choker-chain": { label: "Choker שרשרת", description: "Choker שרשרת מתכת דקה" },
|
|
121
|
+
"jewelry-stud-earrings": { label: "עגילי Stud", description: "עגילי stud קטנים ופשוטים" },
|
|
122
|
+
"jewelry-hoop-earrings": { label: "עגילי חישוק", description: "חישוקי זהב או כסף" },
|
|
123
|
+
"jewelry-ear-cuff": { label: "Ear Cuff", description: "Cuff פיסולי המטפס על הסחוס" },
|
|
124
|
+
"jewelry-septum-ring": { label: "טבעת Septum", description: "טבעת אף septum" },
|
|
125
|
+
"jewelry-body-chain": { label: "שרשרת גוף", description: "שרשרת מתכת דקה על פני הגוף" },
|
|
126
|
+
|
|
127
|
+
// Nails
|
|
128
|
+
"nails-polished": { label: "מבריקים", description: "ציפורניים מבריקים שקופים או נוד" },
|
|
129
|
+
"nails-red": { label: "אדום", description: "לק ציפורניים אדום בהיר" },
|
|
130
|
+
"nails-dark": { label: "כהה", description: "ציפורניים כהים / שחורים" },
|
|
131
|
+
"nails-long-acrylic": { label: "אקריל ארוך", description: "ציפורניים אקריל ארוכים" },
|
|
132
|
+
"nails-french": { label: "French Tips", description: "מניקור French קלאסי" },
|
|
133
|
+
|
|
134
|
+
// Face Paint
|
|
135
|
+
"face-paint-subtle": { label: "צבע גוף עדין", description: "מבטאי צבע גוף / פנים עדינים" },
|
|
136
|
+
"face-paint-dramatic": { label: "צבע פנים דרמטי", description: "צבע פנים אמנותי נועז" },
|
|
137
|
+
"face-paint-costume": { label: "צבע תחפושת", description: "צבע cosplay / תיאטרלי" },
|
|
138
|
+
"face-paint-tribal": { label: "סימני שבט", description: "סימני פנים בהשפעה שבטית" },
|
|
139
|
+
"face-paint-warpaint": { label: "צבע מלחמה", description: "פסי צבע מלחמה לוחמני" },
|
|
140
|
+
|
|
141
|
+
// Fabric (clothing)
|
|
142
|
+
"fabric-silk": { label: "משי", description: "בגדי משי חלקים ומבריקים" },
|
|
143
|
+
"fabric-cotton": { label: "כותנה", description: "כותנה רכה מאט" },
|
|
144
|
+
"fabric-denim": { label: "ג'ינס", description: "ג'ינס אינדיגו כבד" },
|
|
145
|
+
"fabric-leather": { label: "עור", description: "עור עשיר וגמיש" },
|
|
146
|
+
"fabric-velvet": { label: "קטיפה", description: "קטיפה רכה" },
|
|
147
|
+
"fabric-satin": { label: "סאטן", description: "סאטן מבריק" },
|
|
148
|
+
"fabric-lace": { label: "תחרה", description: "תחרה עדינה עם דוגמאות" },
|
|
149
|
+
"fabric-wool": { label: "צמר", description: "צמר ארוג חמים" },
|
|
150
|
+
"fabric-linen": { label: "פשתן", description: "פשתן טבעי עם טקסטורה" },
|
|
151
|
+
"fabric-tweed": { label: "Tweed", description: "Tweed כפרי ארוג" },
|
|
152
|
+
"fabric-cashmere": { label: "קשמיר", description: "קשמיר רך מפואר" },
|
|
153
|
+
"fabric-chiffon": { label: "שיפון", description: "שיפון שקוף זורם" },
|
|
154
|
+
"fabric-fur": { label: "פרווה", description: "פרווה עבה ורכה" },
|
|
155
|
+
"fabric-sequins": { label: "פייטים", description: "בד פייטים מנצנץ" },
|
|
156
|
+
"fabric-latex": { label: "לטקס", description: "לטקס מבריק" },
|
|
157
|
+
|
|
158
|
+
// Outfit
|
|
159
|
+
"outfit-school-uniform": { label: "מדי בית ספר", description: "סט מדי בית ספר קלאסי" },
|
|
160
|
+
"outfit-business-suit": { label: "חליפה עסקית", description: "חליפה עסקית דו-חלקית מהוקצעת" },
|
|
161
|
+
"outfit-tuxedo": { label: "טוקסידו", description: "טוקסידו של עניבת חתונה שחורה" },
|
|
162
|
+
"outfit-evening-gown": { label: "שמלת ערב", description: "שמלה פורמלית באורך רצפה" },
|
|
163
|
+
"outfit-wedding-dress": { label: "שמלת חתונה", description: "שמלת חתונה לבנה" },
|
|
164
|
+
"outfit-cocktail-dress": { label: "שמלת קוקטייל", description: "שמלת קוקטייל באורך ברך" },
|
|
165
|
+
"outfit-lab-coat": { label: "חלוק מעבדה", description: "חלוק מעבדה רפואי לבן" },
|
|
166
|
+
"outfit-scrubs": { label: "סקרבס רפואיים", description: "סקרבס רפואיים בצבע אחיד" },
|
|
167
|
+
"outfit-military": { label: "מדי צבא", description: "מדי צבא בצבע ירוק זית" },
|
|
168
|
+
"outfit-lifeguard": { label: "תלבושת מציל", description: "חולצה ומכנסיים אדומים של מציל" },
|
|
169
|
+
"outfit-athleisure": { label: "סט Athleisure", description: "חולצה ומכנסיים תואמים של athleisure" },
|
|
170
|
+
"outfit-tracksuit": { label: "חליפת אימון", description: "חליפת אימון דו-חלקית עם רוכסן בחזית" },
|
|
171
|
+
"outfit-bikini": { label: "ביקיני", description: "בגד ים דו-חלקי" },
|
|
172
|
+
"outfit-one-piece-swim": { label: "בגד ים שלם", description: "בגד ים שלם מוצמד" },
|
|
173
|
+
"outfit-lingerie": { label: "סט לבני נשים", description: "סט לבני נשים תואם" },
|
|
174
|
+
"outfit-pajamas": { label: "פיג'מה", description: "סט פיג'מה כותנה רך" },
|
|
175
|
+
"outfit-bathrobe": { label: "חלוק רחצה", description: "חלוק רחצה רך מבד מגבת" },
|
|
176
|
+
"outfit-kimono": { label: "קימונו", description: "קימונו יפני מסורתי" },
|
|
177
|
+
"outfit-ballerina": { label: "בלרינה", description: "תלבושת בלרינה קלאסית" },
|
|
178
|
+
"outfit-flapper": { label: "Flapper של שנות ה-1920", description: "שמלת flapper מחורזת" },
|
|
179
|
+
"outfit-goth": { label: "גות'", description: "גות' כהה מלא: תחרה שחורה, עור, איפור כהה, שרשראות" },
|
|
180
|
+
"outfit-emo": { label: "Emo", description: "Emo מתחילת שנות ה-2000: ג'ינס סקיני, חולצת להקה, שיער צבוע, אייליינר" },
|
|
181
|
+
"outfit-streetwear": { label: "Streetwear", description: "Streetwear מודרני: הודי, מכנסיים רפויים, סניקרס, כובע דלי" },
|
|
182
|
+
"outfit-cyberpunk": { label: "Cyberpunk", description: "Cyberpunk מואר ניאון: tech wear, אקצנטי LED, שכבות רשת" },
|
|
183
|
+
"outfit-cottagecore": { label: "Cottagecore", description: "אסתטיקה כפרית של ביתן: שמלת prairie, סינר, סלסילה" },
|
|
184
|
+
"outfit-dark-academia": { label: "Dark Academia", description: "מלומד tweed-Oxford: בלייזר, אפודה, נעלי oxford" },
|
|
185
|
+
"outfit-anime-cosplay": { label: "Anime Cosplay", description: "תחפושת על פי דמות אנימה מוכרת" },
|
|
186
|
+
"outfit-nurse": { label: "אחות", description: "סקרבס רפואיים, סטטוסקופ, lanyard עם תעודה" },
|
|
187
|
+
"outfit-pirate": { label: "פיראט", description: "תחפושת פיראט: כובע tricorn, חגורת בד, חולצה עם מלמלה, מגפיים" },
|
|
188
|
+
"outfit-fairy": { label: "פיה", description: "פיית פנטזיה: כנפיים שקופות, כתר פרחים, שמלה אתרית" },
|
|
189
|
+
"outfit-mermaid": { label: "בת ים", description: "בת ים פנטזיה: זנב/חצאית מקושקשים, חלק עליון מצדפים" },
|
|
190
|
+
|
|
191
|
+
// Top
|
|
192
|
+
"top-tshirt": { label: "טי-שירט", description: "טי-שירט פשוט עם צווארון עגול" },
|
|
193
|
+
"top-tank": { label: "גופייה", description: "גופייה עם צווארון מסקופ" },
|
|
194
|
+
"top-crop-top": { label: "Crop Top", description: "מקוצר מעל אמצע הגוף" },
|
|
195
|
+
"top-hoodie": { label: "הודי", description: "הודי pullover" },
|
|
196
|
+
"top-sweater": { label: "סוודר", description: "סוודר pullover סרוג" },
|
|
197
|
+
"top-turtleneck": { label: "צווארון גולף", description: "צווארון גולף גבוה" },
|
|
198
|
+
"top-blouse": { label: "חולצת blouse", description: "חולצה מהודרת זורמת" },
|
|
199
|
+
"top-button-down": { label: "Button-Down", description: "חולצה מכופתרת מהוקצעת" },
|
|
200
|
+
"top-polo": { label: "פולו", description: "חולצת פולו עם שרוולים קצרים" },
|
|
201
|
+
"top-tube-top": { label: "Tube Top", description: "Tube top ללא רצועות" },
|
|
202
|
+
"top-camisole": { label: "Camisole", description: "Camisole סאטן דק" },
|
|
203
|
+
"top-corset": { label: "מחוך", description: "מחוך מובנה" },
|
|
204
|
+
"top-bra-top": { label: "Bra Top", description: "Top בסגנון חזייה החושף את אמצע הגוף" },
|
|
205
|
+
"top-sports-bra": { label: "חזיית ספורט", description: "חזיית ספורט אתלטית" },
|
|
206
|
+
"top-bikini-top": { label: "חלק עליון של ביקיני", description: "חלק עליון של ביקיני משולש" },
|
|
207
|
+
"top-bodysuit": { label: "בגד גוף", description: "בגד גוף חלק אחד מוצמד לפלג גוף עליון" },
|
|
208
|
+
"top-leotard": { label: "Leotard", description: "Top מוצמד בסגנון מחול עם שרוולים" },
|
|
209
|
+
"top-mesh-top": { label: "Top רשת", description: "Top מבד רשת שקוף" },
|
|
210
|
+
"top-sheer-top": { label: "Top שקוף", description: "Top מבד שקוף" },
|
|
211
|
+
"top-bandeau": { label: "Bandeau", description: "Top צינור ללא רצועות" },
|
|
212
|
+
|
|
213
|
+
// Bottom
|
|
214
|
+
"bottom-jeans": { label: "ג'ינס", description: "ג'ינס כחול קלאסי" },
|
|
215
|
+
"bottom-skinny-jeans": { label: "ג'ינס סקיני", description: "ג'ינס בגזרה הדוקה" },
|
|
216
|
+
"bottom-wide-leg-jeans": { label: "ג'ינס Wide-Leg", description: "ג'ינס Wide-leg רפוי" },
|
|
217
|
+
"bottom-mom-jeans": { label: "Mom Jeans", description: "Mom jeans בגזרה גבוהה" },
|
|
218
|
+
"bottom-low-rise-jeans": { label: "ג'ינס נמוך", description: "ג'ינס בגזרה נמוכה" },
|
|
219
|
+
"bottom-chinos": { label: "צ'ינוס", description: "מכנסי צ'ינו מהוקצעים" },
|
|
220
|
+
"bottom-trousers": { label: "מכנסיים מחויטים", description: "מכנסיים מחויטים מגוהצים" },
|
|
221
|
+
"bottom-cargo": { label: "מכנסי דגמ\"ח", description: "מכנסי דגמ\"ח עם כיסים" },
|
|
222
|
+
"bottom-leggings": { label: "טייצים", description: "טייצים מוצמדים" },
|
|
223
|
+
"bottom-sweatpants": { label: "מכנסי טרנינג", description: "מכנסי טרנינג רפויים" },
|
|
224
|
+
"bottom-shorts": { label: "מכנסיים קצרים", description: "מכנסיים קצרים באורך אמצע ירך" },
|
|
225
|
+
"bottom-denim-shorts": { label: "מכנסיים קצרים מג'ינס", description: "מכנסיים קצרים מג'ינס" },
|
|
226
|
+
"bottom-mini-skirt": { label: "חצאית מיני", description: "חצאית מיני מעל הברך" },
|
|
227
|
+
"bottom-pleated-skirt": { label: "חצאית קפלים", description: "חצאית קפלים באורך אמצע ירך" },
|
|
228
|
+
"bottom-midi-skirt": { label: "חצאית מידי", description: "חצאית מידי באורך שוק" },
|
|
229
|
+
"bottom-maxi-skirt": { label: "חצאית מקסי", description: "חצאית מקסי באורך רצפה" },
|
|
230
|
+
"bottom-overalls": { label: "אוברול", description: "אוברול ג'ינס / dungarees" },
|
|
231
|
+
"bottom-culottes": { label: "Culottes", description: "מכנסיים קצוצים רחבי-רגליים, באורך אמצע שוק" },
|
|
232
|
+
"bottom-palazzo-pants": { label: "מכנסי Palazzo", description: "מכנסיים זורמים רחבי-רגליים" },
|
|
233
|
+
"bottom-harem-pants": { label: "מכנסי Harem", description: "מכנסיים רפויים עם מפשעה נמוכה" },
|
|
234
|
+
"bottom-bike-shorts": { label: "מכנסי אופניים", description: "מכנסיים קצרים מוצמדים מליקרה באורך אמצע ירך" },
|
|
235
|
+
|
|
236
|
+
// Outerwear
|
|
237
|
+
"outerwear-leather-jacket": { label: "ז'קט עור", description: "ז'קט עור בגזרה צמודה" },
|
|
238
|
+
"outerwear-denim-jacket": { label: "ז'קט ג'ינס", description: "ז'קט ג'ינס קלאסי" },
|
|
239
|
+
"outerwear-bomber": { label: "Bomber", description: "ז'קט bomber סאטן" },
|
|
240
|
+
"outerwear-blazer": { label: "בלייזר", description: "בלייזר מחויט" },
|
|
241
|
+
"outerwear-trench": { label: "מעיל Trench", description: "מעיל trench חגור" },
|
|
242
|
+
"outerwear-overcoat": { label: "מעיל צמר", description: "מעיל צמר ארוך" },
|
|
243
|
+
"outerwear-puffer": { label: "מעיל פוף", description: "מעיל פוף מבולח" },
|
|
244
|
+
"outerwear-parka": { label: "פארקה", description: "פארקה עם ברדס וחיתוך פרווה" },
|
|
245
|
+
"outerwear-cardigan": { label: "קרדיגן", description: "קרדיגן סרוג עם פתח קדמי" },
|
|
246
|
+
"outerwear-vest": { label: "אפודה", description: "אפודה מחויטת" },
|
|
247
|
+
"outerwear-kimono-robe": { label: "חלוק קימונו", description: "חלוק קימונו זורם" },
|
|
248
|
+
"outerwear-varsity": { label: "ז'קט Varsity", description: "ז'קט Letterman varsity" },
|
|
249
|
+
"outerwear-fur-coat": { label: "מעיל פרווה", description: "מעיל פרווה רך" },
|
|
250
|
+
|
|
251
|
+
// Legwear
|
|
252
|
+
"legwear-bare": { label: "רגליים חשופות", description: "רגליים חשופות, ללא גרביונים" },
|
|
253
|
+
"legwear-sheer-tights": { label: "גרביונים שקופים", description: "גרביונים שקופים בצבע נוד" },
|
|
254
|
+
"legwear-opaque-tights": { label: "גרביונים אטומים", description: "גרביונים אטומים מלאים" },
|
|
255
|
+
"legwear-fishnets": { label: "גרבי רשת", description: "גרבי רשת יהלומים" },
|
|
256
|
+
"legwear-thigh-highs": { label: "גרבי שוק עד ירך", description: "גרבי שוק עד ירך" },
|
|
257
|
+
"legwear-lace-top-stockings": { label: "גרבי תחרה עליונה", description: "גרבי שוק עד ירך עם תחרה למעלה" },
|
|
258
|
+
"legwear-knee-highs": { label: "גרבי ברך", description: "גרבי ברך גבוהים" },
|
|
259
|
+
"legwear-crew-socks": { label: "גרביים בינוניים", description: "גרבי crew באורך אמצע שוק" },
|
|
260
|
+
"legwear-ankle-socks": { label: "גרבי קרסול", description: "גרבי קרסול נמוכים" },
|
|
261
|
+
"legwear-leg-warmers": { label: "מחממי רגליים", description: "מחממי רגליים סרוגים" },
|
|
262
|
+
|
|
263
|
+
// Footwear
|
|
264
|
+
"footwear-sneakers": { label: "סניקרס", description: "סניקרס low-top" },
|
|
265
|
+
"footwear-high-tops": { label: "סניקרס High-Top", description: "סניקרס high-top קנבס" },
|
|
266
|
+
"footwear-running-shoes": { label: "נעלי ריצה", description: "נעלי ריצה אתלטיות" },
|
|
267
|
+
"footwear-stilettos": { label: "עקבים סטילטו", description: "עקבים סטילטו מחודדים" },
|
|
268
|
+
"footwear-block-heels": { label: "עקב Block", description: "נעלי עקב block עבים" },
|
|
269
|
+
"footwear-platforms": { label: "נעלי פלטפורמה", description: "סוליות פלטפורמה גבוהות" },
|
|
270
|
+
"footwear-ankle-boots": { label: "מגפי קרסול", description: "מגפי קרסול צמודים" },
|
|
271
|
+
"footwear-knee-boots": { label: "מגפי ברך", description: "מגפי ברך גבוהים" },
|
|
272
|
+
"footwear-thigh-high-boots": { label: "מגפיים עד ירך", description: "מגפיים עד הירך" },
|
|
273
|
+
"footwear-combat-boots": { label: "מגפי קומבט", description: "מגפי קומבט שרוכים" },
|
|
274
|
+
"footwear-chelsea-boots": { label: "מגפי Chelsea", description: "מגפי Chelsea slip-on" },
|
|
275
|
+
"footwear-cowboy-boots": { label: "מגפי קאובוי", description: "מגפי קאובוי מחודדים" },
|
|
276
|
+
"footwear-loafers": { label: "Loafers", description: "Penny Loafers מלוטשים" },
|
|
277
|
+
"footwear-oxfords": { label: "Oxfords", description: "Oxfords עור עם שרוכים" },
|
|
278
|
+
"footwear-sandals": { label: "סנדלים", description: "סנדלים שטוחים עם רצועות" },
|
|
279
|
+
"footwear-mules": { label: "Mules", description: "Mules slip-on ללא גב" },
|
|
280
|
+
"footwear-flip-flops": { label: "כפכפים", description: "כפכפי גומי קז'ואל" },
|
|
281
|
+
"footwear-ballet-flats": { label: "Ballet Flats", description: "Ballet flats slip-on" },
|
|
282
|
+
"footwear-barefoot": { label: "יחף", description: "ללא נעליים — יחף" },
|
|
283
|
+
"footwear-crocs": { label: "Crocs", description: "כפכפי שרף צבעוניים, קז'ואל" },
|
|
284
|
+
"footwear-birkenstocks": { label: "Birkenstocks", description: "סנדלים עם מדרס שעם" },
|
|
285
|
+
"footwear-doc-martens": { label: "Doc Martens", description: "מגפי קומבט עור עבים" },
|
|
286
|
+
"footwear-converse": { label: "Converse", description: "סניקרס high-top קנבס, Chuck Taylor קלאסי" },
|
|
287
|
+
"footwear-vans": { label: "Vans", description: "סניקרס סקייטרים slip-on או low-top" },
|
|
288
|
+
"footwear-espadrilles": { label: "Espadrilles", description: "נעל קיץ קנבס עם סוליית יוטה ארוגה" },
|
|
289
|
+
|
|
290
|
+
// Wardrobe State
|
|
291
|
+
"state-oversized": { label: "Oversized", description: "גזרה רפויה ו-oversized" },
|
|
292
|
+
"state-fitted": { label: "מוצמד", description: "צללית מוצמדת לגוף" },
|
|
293
|
+
"state-cropped": { label: "מקוצר", description: "Top מקוצר באמצע הגוף" },
|
|
294
|
+
"state-sheer": { label: "שקוף", description: "בד שקוף-למחצה" },
|
|
295
|
+
"state-wet": { label: "רטוב", description: "ספוג, נצמד למים" },
|
|
296
|
+
"state-ripped": { label: "קרוע", description: "קרוע ומשופשף" },
|
|
297
|
+
"state-distressed": { label: "מיושן", description: "בלוי, דהוי, מבולה ממזג אוויר" },
|
|
298
|
+
"state-vintage": { label: "וינטג'", description: "אופי בלוי וינטג'" },
|
|
299
|
+
"state-tucked-in": { label: "תחוב פנימה", description: "Top תחוב לתוך התחתון" },
|
|
300
|
+
"state-half-tucked": { label: "תחוב למחצה", description: "תחוב מקדימה, רפוי מאחור" },
|
|
301
|
+
"state-off-shoulder": { label: "ללא כתף", description: "מוחלק מכתף אחת" },
|
|
302
|
+
"state-unbuttoned": { label: "פתוח", description: "פתוח / לא מכופתר" },
|
|
303
|
+
"state-rolled-sleeves": { label: "שרוולים מגולגלים", description: "שרוולים מגולגלים עד האמה" },
|
|
304
|
+
"state-layered": { label: "בשכבות", description: "מספר שכבות מוערמות" },
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export default map
|