2 Commits

  1. 45
      shop.yaml

45
shop.yaml

@ -82,7 +82,7 @@ const:
variety_store: variety_store:
sign: fas:shopping-bag sign: fas:shopping-bag
bakery: bakery:
sign: fas:birthday-cake
sign: fas:bread-slice
confectionery: confectionery:
sign: fas:birthday-cake sign: fas:birthday-cake
pastry: pastry:
@ -92,13 +92,13 @@ const:
motorcycle: motorcycle:
sign: fas:motorcycle sign: fas:motorcycle
boutique: boutique:
sign: '👚'
sign: fas:shirt
clothes: clothes:
sign: '👚'
sign: fas:shirt
fabric: fabric:
sign: '' sign: ''
fashion: fashion:
sign: '👚'
sign: fas:shirt
leather: leather:
sign: '👚' sign: '👚'
sewing: sewing:
@ -110,27 +110,27 @@ const:
sea_food: sea_food:
sign: fas:fish sign: fas:fish
butcher: butcher:
sign: fas:utensils
sign: fas:cow
cheese: cheese:
sign: fas:utensils
sign: fas:cheese
chocolate: chocolate:
sign: fas:utensils
sign: fas:cookie
deli: deli:
sign: fas:utensils sign: fas:utensils
dairy: dairy:
sign: fas:utensils
sign: fas:cheese
farm: farm:
sign: fas:utensils
sign: fas:wheat-awn
greengrocer: greengrocer:
sign: fas:utensils
sign: fas:carrot
pasta: pasta:
sign: fas:utensils
sign: fas:bowl-food
spices: spices:
sign: fas:utensils
sign: fas:pepper-hot
coffee: coffee:
sign: fas:coffee sign: fas:coffee
tea: tea:
sign: fas:coffee
sign: fas:mug-hot
convenience: convenience:
sign: fas:shopping-basket sign: fas:shopping-basket
department_store: department_store:
@ -166,7 +166,7 @@ const:
shoes: shoes:
sign: fas:shoe-prints sign: fas:shoe-prints
travel_agency: travel_agency:
sign: '🧳'
sign: fas:plane
supermarket: supermarket:
sign: fas:shopping-cart sign: fas:shopping-cart
watches: watches:
@ -249,6 +249,8 @@ const:
sign: '' sign: ''
mobile_phone: mobile_phone:
sign: fas:mobile-alt sign: fas:mobile-alt
health_food:
sign: fas:apple-whole
clothes: clothes:
- women - women
- men - men
@ -280,14 +282,21 @@ const:
- denim - denim
filter: filter:
shop: shop:
name: '{{ trans(''filter:type'') }}'
name: |-
{{ trans("filter:type") }}
type: select type: select
show_default: 'true'
values: '{% set list = [] %}{% for k, v in const.shops %}<option value="{{ k }}">{% set list = list|merge([ k ]) %}{{ tagTrans(''shop'', k) }}</option>{% endfor %}<option weight=''1'' value=''other'' query=''nwr[shop][shop!~"^(|.*;)({{ list|join(''|'') }})(|;.*)$"]''>{{ trans(''other'') }}</option>'
show_default: true
values: |-
{% set list = [] %}
{% for k, v in const.shops %}
<option value="{{ k }}">{% set list = list|merge([ k ]) %}{{ tagTrans("shop", k) }}</option>
{% endfor %}
<option weight="1" value="other" query="nwr[shop][shop!~"^(|.*;)({{ list|join("|") }})(|;.*)$"]">{{ trans("other") }}</option>
sort: natsort sort: natsort
op: has op: has
clothes: clothes:
name: '{{ keyTrans(''clothes'') }}'
name: |-
{{ keyTrans("clothes") }}
type: select type: select
values: |- values: |-
{% set list = [] %} {% set list = [] %}

Loading…
Cancel
Save