Skip to content

Commit

Permalink
Change Examples to Infinitives (#1550)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImenaOphelia authored Oct 30, 2024
1 parent c4b2d3d commit 66309bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions ext/js/language/language-descriptors.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const languageDescriptors = [
iso: 'de',
iso639_3: 'deu',
name: 'German',
exampleText: 'gelesen',
exampleText: 'lesen',
textPreprocessors: {
...capitalizationPreprocessors,
eszettPreprocessor,
Expand Down Expand Up @@ -142,7 +142,7 @@ const languageDescriptors = [
iso: 'grc',
iso639_3: 'grc',
name: 'Ancient Greek',
exampleText: 'γράφω',
exampleText: 'γράφω', /* 'to write' */
textPreprocessors: {
...capitalizationPreprocessors,
removeAlphabeticDiacritics,
Expand All @@ -165,7 +165,7 @@ const languageDescriptors = [
iso: 'id',
iso639_3: 'ind',
name: 'Indonesian',
exampleText: 'membaca',
exampleText: 'baca',
textPreprocessors: capitalizationPreprocessors,
},
{
Expand All @@ -182,7 +182,7 @@ const languageDescriptors = [
iso: 'la',
iso639_3: 'lat',
name: 'Latin',
exampleText: 'legere',
exampleText: 'legō',
textPreprocessors: {
...capitalizationPreprocessors,
removeAlphabeticDiacritics,
Expand Down Expand Up @@ -275,7 +275,7 @@ const languageDescriptors = [
iso: 'ro',
iso639_3: 'ron',
name: 'Romanian',
exampleText: 'citit',
exampleText: 'citi',
textPreprocessors: {
...capitalizationPreprocessors,
removeAlphabeticDiacritics,
Expand Down Expand Up @@ -307,7 +307,7 @@ const languageDescriptors = [
iso: 'sh',
iso639_3: 'hbs',
name: 'Serbo-Croatian',
exampleText: 'čitaše',
exampleText: 'čìtati',
textPreprocessors: {
...capitalizationPreprocessors,
removeSerboCroatianAccentMarks,
Expand All @@ -317,7 +317,7 @@ const languageDescriptors = [
iso: 'sq',
iso639_3: 'sqi',
name: 'Albanian',
exampleText: 'ndihmojme',
exampleText: 'ndihmoj', /* 'to help' */
textPreprocessors: capitalizationPreprocessors,
languageTransforms: albanianTransforms,
},
Expand Down Expand Up @@ -349,14 +349,14 @@ const languageDescriptors = [
iso: 'tr',
iso639_3: 'tur',
name: 'Turkish',
exampleText: 'okuyor',
exampleText: 'okumak',
textPreprocessors: capitalizationPreprocessors,
},
{
iso: 'uk',
iso639_3: 'ukr',
name: 'Ukrainian',
exampleText: 'читаєте',
exampleText: 'читати',
textPreprocessors: capitalizationPreprocessors,
},
{
Expand Down

0 comments on commit 66309bc

Please sign in to comment.