On the other hand, the corpus also contains "Chinese" (I assume Mandarin; I haven't checked), which I don't think even the most enthusiastic pan-Europeans are trying to claim yet.
Admittedly I don't know the current state of the politics of Basque but when I lived in France its use was not encouraged in the Basque region.
That certainly is the case when you start killing people for that cause (https://en.wikipedia.org/wiki/Basque_conflict)
“The European Language Grid fosters Language Technologies FOR Europe built IN Europe, tailored to our languages and cultures and to our societal and economical demands, benefitting the European citizen, society, innovation and industry.”
⇒ it is European (language grid), not (European language) grid.
https://live.european-language-grid.eu/catalogue/#/resource/...
https://live.european-language-grid.eu/catalogue/#/resource/...
Since when strict eBNF grammars are useful for natural language processing?
They have their uses in natural language generation, where you may want to output some data in a way that's more readable to humans, and in various specialized query languages. For example, in some tasks you may prefer a voice command system that has more flexibility than mere keywords, where the instructions are phrases matching the users' language (you might want the same product to support many languages) but the system needs to understand only a very limited subset of language that can be expressed with a strict grammar - mainly because its ability to do stuff is also limited to what that subset can express. And this provides reliability - you can verify that the limited set of expressions that the system can understand get understood properly and those who aren't clear get rejected. This is bad for some use cases and good for others; picking a 'best effort' most likely interpretation (which many state of art methods do now) might be desirable or completely unacceptable depending on your use case.
The benefit of a strict grammar over (for example) NN transformer architectures for NLG and NLU is that it's relatively straightforward to map the structures of that grammar to the structured data that your non-NLP code is using for the business logic, you can have a clear and debuggable 1-to-1 mapping for the semantics of these phrases.