data sources: update label to match chrono (#51586)

This commit is contained in:
Frédéric Péters 2021-03-02 16:14:04 +01:00
parent 9ee7c496a8
commit 1592e1aa17
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ def collect_agenda_data(publisher):
agenda_data.append({'text': agenda['text'], 'url': agenda['api']['datetimes_url']})
elif agenda['kind'] in ['meetings', 'virtual']:
agenda_data.append(
{'text': _('%s - Slot types') % agenda['text'], 'url': agenda['api']['meetings_url']}
{'text': _('%s - Meeting types') % agenda['text'], 'url': agenda['api']['meetings_url']}
)
# get also meeting types
mt_url = chrono_url(publisher, 'api/agenda/%s/meetings/' % agenda['id'])