diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values-es/arrays.xml | 18 | ||||
-rw-r--r-- | app/src/main/res/values/arrays.xml | 17 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app/src/main/res/values-es/arrays.xml b/app/src/main/res/values-es/arrays.xml index 045e125f..731330b2 100644 --- a/app/src/main/res/values-es/arrays.xml +++ b/app/src/main/res/values-es/arrays.xml @@ -1,3 +1,21 @@ <?xml version="1.0" encoding="utf-8"?> <resources> + <!-- Keep the order the same as the TYPE_ constants in VPNProfile --> + <string-array name="verb_to_be"> + <item>soy</item> + <item>estás</item> + <item>está</item> + <item>estamos</item> + <item>estáis</item> + <item>están</item> + </string-array> + + <string-array name="personal_pronouns"> + <item>Yo</item> + <item>Tú</item> + <item>Él</item> + <item>Nosotros</item> + <item>Vosotros</item> + <item>Ellos</item> + </string-array> </resources> diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 66f07a87..3c960442 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -1,4 +1,21 @@ <?xml version="1.0" encoding="utf-8"?> <resources> <!-- Keep the order the same as the TYPE_ constants in VPNProfile --> + <string-array name="verb_to_be"> + <item>am</item> + <item>are</item> + <item>is</item> + <item>are</item> + <item>are</item> + <item>are</item> + </string-array> + + <string-array name="personal_pronouns"> + <item>I</item> + <item>You</item> + <item>He</item> + <item>We</item> + <item>You</item> + <item>They</item> + </string-array> </resources> |