Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added infrastructure for Italian #313

Merged
merged 1 commit into from
May 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,18 @@ languages:
les élèves peuvent aller pour trouver ces informations. Les auteurs de leçons
peuvent aussi insérer des liens vers les définitions des termes utilisés dans leurs
leçons, et ce, en plusieurs langages.
- key: it
name: Italiano
title: Glossario
blurb: >
`glosario` è un glossario open source dei termini usati nella scienza dei dati
(_data science_), disponibile online e anche come libreria sia in
[R](https://github.com/carpentries/glosario-r) che in [Python](https://github.com/carpentries/glosario-py).
Aggiungendo i termini del glossario ai metadati delle lezioni, gli autori possono indicare
cosa insegneranno nella lezione, ciò gli studenti devono sapere prima di iniziare e
dove possono trovare tali informazioni.
Gli autori possono anche usare le funzioni della libreria per inserire collegamenti ipertestuali
ai termini e alle definizioni nella lezione in una qualsiasi tra le diverse lingue.
- key: ko
name: 한국어
title: 용어 사전
Expand Down
5 changes: 5 additions & 0 deletions it.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
permalink: /it/
layout: glossary-ltr
---
{% include glossary.html %}
2 changes: 1 addition & 1 deletion utils/check-glossary.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Keys for entries and definitions.
ENTRY_REQUIRED_KEYS = {'slug'}
ENTRY_OPTIONAL_KEYS = {'ref'}
ENTRY_LANGUAGE_KEYS = {'af', 'am', 'ar', 'bn', 'de', 'en', 'es', 'fr', 'he', 'ja', 'nl', 'pt', 'zu'}
ENTRY_LANGUAGE_KEYS = {'af', 'am', 'ar', 'bn', 'de', 'en', 'es', 'fr', 'he', 'it', 'ja', 'nl', 'pt', 'zu'}
ENTRY_KEYS = ENTRY_REQUIRED_KEYS | \
ENTRY_OPTIONAL_KEYS | \
ENTRY_LANGUAGE_KEYS
Expand Down