| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "polylang/language-switcher", |
| 5 |
"version": "3.8", |
| 6 |
"title": "Language Switcher", |
| 7 |
"category": "widgets", |
| 8 |
"description": "Language switcher to insert in content or as a widget.", |
| 9 |
"example": {}, |
| 10 |
"attributes": { |
| 11 |
"dropdown": { |
| 12 |
"type": "boolean", |
| 13 |
"default": 0 |
| 14 |
}, |
| 15 |
"show_names": { |
| 16 |
"type": "boolean", |
| 17 |
"default": 1 |
| 18 |
}, |
| 19 |
"show_flags": { |
| 20 |
"type": "boolean", |
| 21 |
"default": 0 |
| 22 |
}, |
| 23 |
"force_home": { |
| 24 |
"type": "boolean", |
| 25 |
"default": 0 |
| 26 |
}, |
| 27 |
"hide_current": { |
| 28 |
"type": "boolean", |
| 29 |
"default": 0 |
| 30 |
}, |
| 31 |
"hide_if_no_translation": { |
| 32 |
"type": "boolean", |
| 33 |
"default": 0 |
| 34 |
}, |
| 35 |
"className": { |
| 36 |
"type": "string", |
| 37 |
"default": "" |
| 38 |
} |
| 39 |
}, |
| 40 |
"textdomain": "polylang", |
| 41 |
"editorScript": "pll_blocks" |
| 42 |
} |
| 43 |
|