Skip to content

Commit 8dad758

Browse files
committed
Update version of data contracts with necessary fields
1 parent 3af7f7a commit 8dad758

8 files changed

Lines changed: 1066 additions & 18 deletions

File tree

app/src/main/assets/data-contracts/de.yaml

Lines changed: 492 additions & 2 deletions
Large diffs are not rendered by default.
Lines changed: 81 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1-
numbers:
2-
singular: plural
1+
# Database column mappings that are read by Scribe applications to structure how data is displayed to the user.
2+
# Includes interface titles and the order that values should be presented (chronological or alphabetical).
3+
4+
# MARK: Noun Gender
5+
6+
# A map of which columns in the nouns table depict its gender.
37
genders:
48
canonical: []
59
feminines: []
610
masculines: []
711
commons: []
812
neuters: []
13+
14+
# MARK: Plural
15+
16+
# Key-value pairs that link the key of a noun singular to its plural for the Plural command.
17+
numbers:
18+
singular: plural
19+
20+
# MARK: Conjugate
21+
22+
# Map of verb tenses to their conjugations for the Conjugate command.
23+
# Sections provide meta tense selections if there is more than one tense included.
924
conjugations:
1025
1:
1126
sectionTitle: Present
@@ -15,77 +30,141 @@ conjugations:
1530
tenseForms:
1631
I/you/plural: simplePresent
1732
he/she/it: simplePresentThirdPersonSingular
33+
1834
2:
1935
tenseTitle: Pr. Perfect
2036
tenseForms:
2137
I/you/plural: "[have] pastParticiple"
2238
he/she/it: "[has] pastParticiple"
39+
2340
3:
2441
tenseTitle: Pr. Continuous
2542
tenseForms:
2643
I: "[am] presentParticiple"
2744
you/plural: "[are] presentParticiple"
2845
he/she/it: "[is] presentParticiple"
46+
2947
4:
3048
tenseTitle: Pr. Perf. Continuous
3149
tenseForms:
3250
I/you/plural: "[have been] presentParticiple"
3351
he/she/it: "[has been] presentParticiple"
52+
3453
2:
3554
sectionTitle: Past
3655
tenses:
3756
1:
3857
tenseTitle: Past Simple
3958
tenseForms:
4059
all: simplePast
60+
4161
2:
4262
tenseTitle: Past Perfect
4363
tenseForms:
4464
all: "[had] pastParticiple"
65+
4566
3:
4667
tenseTitle: Past Continuous
4768
tenseForms:
4869
I/he/she/it: "[was] presentParticiple"
4970
you/plural: "[were] presentParticiple"
71+
5072
4:
5173
tenseTitle: Past Perf. Continuous
5274
tenseForms:
5375
all: "[had been] presentParticiple"
76+
5477
3:
5578
sectionTitle: Future
5679
tenses:
5780
1:
5881
tenseTitle: Fut. Simple
5982
tenseForms:
6083
all: "[will] infinitive"
84+
6185
2:
6286
tenseTitle: Fut. Perfect
6387
tenseForms:
6488
all: "[will have] pastParticiple"
89+
6590
3:
6691
tenseTitle: Fut. Continuous
6792
tenseForms:
6893
all: "[will be] presentParticiple"
94+
6995
4:
7096
tenseTitle: Fut. Perf. Continuous
7197
tenseForms:
7298
all: "[will have been] presentParticiple"
99+
73100
4:
74101
sectionTitle: Conditional
75102
tenses:
76103
1:
77104
tenseTitle: Cond. Simple
78105
tenseForms:
79106
all: "[would] infinitive"
107+
80108
2:
81109
tenseTitle: Cond. Perfect
82110
tenseForms:
83111
all: "[would have] pastParticiple"
112+
84113
3:
85114
tenseTitle: Cond. Continuous
86115
tenseForms:
87116
all: "[would be] presentParticiple"
117+
88118
4:
89119
tenseTitle: Cond. Perf. Continuous
90120
tenseForms:
91121
all: "[would have been] presentParticiple"
122+
123+
# MARK: Translate
124+
125+
# Map of interface titles to display for the Translate command.
126+
# Needed database columns are the same across languages (descriptions are labels for values).
127+
# Note: Descriptions for article and pronoun translations are their genders.
128+
translations:
129+
wordType:
130+
sectionTitle: Select translation word type
131+
132+
adjective:
133+
displayValue: adjective
134+
sectionTitle: Select adjective translation
135+
136+
adverb:
137+
displayValue: adverb
138+
sectionTitle: Select adverb translation
139+
140+
article:
141+
displayValue: article
142+
sectionTitle: Select article translation
143+
144+
conjunction:
145+
displayValue: conjunction
146+
sectionTitle: Select conjunction translation
147+
148+
noun:
149+
displayValue: noun
150+
sectionTitle: Select noun translation
151+
152+
postposition:
153+
displayValue: postposition
154+
sectionTitle: Select postposition translation
155+
156+
preposition:
157+
displayValue: preposition
158+
sectionTitle: Select preposition translation
159+
160+
proper_noun:
161+
displayValue: proper noun
162+
sectionTitle: Select proper noun translation
163+
164+
pronoun:
165+
displayValue: pronoun
166+
sectionTitle: Select pronoun translation
167+
168+
verb:
169+
displayValue: verb
170+
sectionTitle: Select verb infinitive

app/src/main/assets/data-contracts/es.yaml

Lines changed: 69 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
1-
numbers:
2-
feminineSingular: femininePlural
3-
masculineSingular: masculinePlural
1+
# Database column mappings that are read by Scribe applications to structure how data is displayed to the user.
2+
# Includes interface titles and the order that values should be presented (chronological or alphabetical).
3+
4+
# MARK: Noun Gender
5+
6+
# A map of which columns in the nouns table depict its gender.
47
genders:
58
canonical: []
69
feminines: [feminineSingular]
710
masculines: [masculineSingular]
811
commons: []
912
neuters: []
13+
14+
# MARK: Plural
15+
16+
# Key-value pairs that link the key of a noun singular to its plural for the Plural command.
17+
numbers:
18+
feminineSingular: femininePlural
19+
masculineSingular: masculinePlural
20+
21+
# MARK: Conjugate
22+
23+
# Map of verb tenses to their conjugations for the Conjugate command.
24+
# Sections provide meta tense selections if there is more than one tense included.
1025
conjugations:
1126
1:
1227
sectionTitle: Presente
@@ -20,6 +35,7 @@ conjugations:
2035
nosotros: indicativePresentSecondPersonPlural
2136
vosotros: indicativePresentThirdPersonSingular
2237
ellos/ellas/Uds.: indicativePresentThirdPersonPlural
38+
2339
2:
2440
sectionTitle: Pretérito
2541
tenses:
@@ -32,6 +48,7 @@ conjugations:
3248
nosotros: preteriteSecondPersonPlural
3349
vosotros: preteriteThirdPersonSingular
3450
ellos/ellas/Uds.: preteriteThirdPersonPlural
51+
3552
3:
3653
sectionTitle: Imperfecto
3754
tenses:
@@ -44,3 +61,52 @@ conjugations:
4461
nosotros: pastImperfectSecondPersonPlural
4562
vosotros: pastImperfectThirdPersonSingular
4663
ellos/ellas/Uds.: pastImperfectThirdPersonPlural
64+
65+
# MARK: Translate
66+
67+
# Map of interface titles to display for the Translate command.
68+
# Needed database columns are the same across languages (descriptions are labels for values).
69+
# Note: Descriptions for article and pronoun translations are their genders.
70+
translations:
71+
wordType:
72+
sectionTitle: Seleccione el tipo de traducción
73+
74+
adjective:
75+
displayValue: adjetivo
76+
sectionTitle: Seleccione traducción de adjetivo
77+
78+
adverb:
79+
displayValue: adverbio
80+
sectionTitle: Seleccione traducción de adverbio
81+
82+
article:
83+
displayValue: artículo
84+
sectionTitle: Seleccione traducción de artículo
85+
86+
conjunction:
87+
displayValue: conjunción
88+
sectionTitle: Seleccione traducción de conjunción
89+
90+
noun:
91+
displayValue: sustantivo
92+
sectionTitle: Seleccione traducción de sustantivo
93+
94+
postposition:
95+
displayValue: posposición
96+
sectionTitle: Seleccione traducción de posposición
97+
98+
preposition:
99+
displayValue: preposición
100+
sectionTitle: Seleccione traducción de preposición
101+
102+
proper_noun:
103+
displayValue: nombre propio
104+
sectionTitle: Seleccione traducción de nombre propio
105+
106+
pronoun:
107+
displayValue: pronombre
108+
sectionTitle: Seleccione traducción de pronombre
109+
110+
verb:
111+
displayValue: verbo
112+
sectionTitle: Seleccionar verbo infinitivo

app/src/main/assets/data-contracts/fr.yaml

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1-
numbers:
2-
singular: plural
1+
# Database column mappings that are read by Scribe applications to structure how data is displayed to the user.
2+
# Includes interface titles and the order that values should be presented (chronological or alphabetical).
3+
4+
# MARK: Noun Gender
5+
6+
# A map of which columns in the nouns table depict its gender.
37
genders:
48
canonical: [gender]
59
feminines: []
610
masculines: []
711
commons: []
812
neuters: []
13+
14+
# MARK: Plural
15+
16+
# Key-value pairs that link the key of a noun singular to its plural for the Plural command.
17+
numbers:
18+
singular: plural
19+
20+
# MARK: Conjugate
21+
22+
# Map of verb tenses to their conjugations for the Conjugate command.
23+
# Sections provide meta tense selections if there is more than one tense included.
924
conjugations:
1025
1:
1126
sectionTitle: Présent
@@ -19,6 +34,7 @@ conjugations:
1934
nous: indicativePresentSecondPersonPlural
2035
vous: indicativePresentThirdPersonSingular
2136
ils/elles: indicativePresentThirdPersonPlural
37+
2238
2:
2339
sectionTitle: Passé simple
2440
tenses:
@@ -31,6 +47,7 @@ conjugations:
3147
nous: indicativePreteriteSecondPersonPlural
3248
vous: indicativePreteriteThirdPersonSingular
3349
ils/elles: indicativePreteriteThirdPersonPlural
50+
3451
3:
3552
sectionTitle: Imparfait
3653
tenses:
@@ -43,6 +60,7 @@ conjugations:
4360
nous: indicativeImperfectSecondPersonPlural
4461
vous: indicativeImperfectThirdPersonSingular
4562
ils/elles: indicativeImperfectThirdPersonPlural
63+
4664
4:
4765
sectionTitle: Futur
4866
tenses:
@@ -55,3 +73,52 @@ conjugations:
5573
nous: indicativeSimpleFutureSecondPersonPlural
5674
vous: indicativeSimpleFutureThirdPersonSingular
5775
ils/elles: indicativeSimpleFutureThirdPersonPlural
76+
77+
# MARK: Translate
78+
79+
# Map of interface titles to display for the Translate command.
80+
# Needed database columns are the same across languages (descriptions are labels for values).
81+
# Note: Descriptions for article and pronoun translations are their genders.
82+
translations:
83+
wordType:
84+
sectionTitle: Sélectionnez le type à traduire
85+
86+
adjective:
87+
displayValue: adjectif
88+
sectionTitle: Sélectionner la traduction de l'adjectif
89+
90+
adverb:
91+
displayValue: adverbe
92+
sectionTitle: Sélectionner la traduction de l'adverbe
93+
94+
article:
95+
displayValue: article
96+
sectionTitle: Sélectionner la traduction de l'article
97+
98+
conjunction:
99+
displayValue: conjonction
100+
sectionTitle: Sélectionner la traduction de conjonction
101+
102+
noun:
103+
displayValue: nom
104+
sectionTitle: Sélectionner la traduction du nom
105+
106+
postposition:
107+
displayValue: postposition
108+
sectionTitle: Sélectionnez la traduction de la postposition
109+
110+
preposition:
111+
displayValue: préposition
112+
sectionTitle: Sélectionnez la traduction de la préposition
113+
114+
proper_noun:
115+
displayValue: nom propre
116+
sectionTitle: Sélectionnez la traduction du nom propre
117+
118+
pronoun:
119+
displayValue: pronom
120+
sectionTitle: Sélectionner la traduction des pronoms
121+
122+
verb:
123+
displayValue: verbe
124+
sectionTitle: Sélectionnez l'infinitif du verbe

0 commit comments

Comments
 (0)