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

Add newish annotation strings so they can be translated #1373

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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
42 changes: 27 additions & 15 deletions iNaturalist/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,8 @@
<string name="annotation_name">Annotation Name</string>
<!-- Annotation value for when no annotation has been chosen -->
<string name="none">None</string>
<!-- Describes state of a plant at the time of observation, e.g. flowering, fruiting, etc. -->
<string name="annotation_name_plant_phenology">Plant Phenology</string>
<!-- Phenological state of flowers on a plant -->
<string name="annotation_name_flowers_and_fruits">Flowers and Fruits</string>
<!-- Describes life stage at the time of observation, e.g. juvenile, adult -->
<string name="annotation_name_life_stage">Life Stage</string>
<!-- Noun, describes sex of the organism -->
Expand All @@ -643,16 +643,18 @@
<string name="annotation_name_alive_or_dead">Alive or Dead</string>
<!-- Attribute that describes what kind of evidence of an organism's presence was recorded in this observation -->
<string name="annotation_name_evidence_of_presence">Evidence of Presence</string>
<!-- Attribute that describes the phenological state of the leaves on a plant -->
<string name="annotation_name_leaves">Leaves</string>
<!-- Attribute that describes whether the observed organism is part of an established population or something more like a waif or escaped pet -->
<string name="annotation_name_established">Established</string>
<!-- Adjective, having open flowers -->
<string name="annotation_value_flowering">Flowering</string>
<!-- Adjective, having fruit -->
<string name="annotation_value_fruiting">Fruiting</string>
<string name="annotation_value_flowers">Flowers</string>
<!-- Adjective, having fruit or seeds -->
<string name="annotation_value_fruit_or_seeds">Fruit or Seeds</string>
<!-- Adjective, having unopened flowers -->
<string name="annotation_value_budding">Budding</string>
<!-- Adjective, having unopened flowers -->
<string name="annotation_value_flower_budding">Flower Budding</string>
<string name="annotation_value_flower_buds">Flower Buds</string>
<!-- Observation presents no evidence of flowering phenology -->
<string name="annotation_value_no_evidence_of_flowering">No Evidence of Flowering</string>
<string name="annotation_value_no_flowers_or_fruits">No Flowers or Fruits</string>
<!-- Adjective describing the life stage where an individual can reproduce -->
<string name="annotation_value_adult">Adult</string>
<!-- Adjective describing the odonate life stage between nymph and adult -->
Expand All @@ -676,18 +678,28 @@
<string name="annotation_value_dead">Dead</string>
<!-- Value for when the value of the attribute cannot be determined -->
<string name="annotation_value_cannot_be_determined">Cannot Be Determined</string>
<!-- Evidence of Presence value when the observation depicts the organism itself and not some kind of sign the organism left behind -->
<!-- "Evidence of Presence" value when the observation depicts the organism itself and not some kind of sign the organism left behind -->
<string name="annotation_value_organism">Organism</string>
<!-- Evidence of Presence value when for bird feathers -->
<!-- "Evidence of Presence" value when for bird feathers -->
<string name="annotation_value_feather">Feather</string>
<!-- Evidence of Presence value when for fecal remains -->
<!-- "Evidence of Presence" value when for fecal remains -->
<string name="annotation_value_scat">Scat</string>
<!-- Evidence of Presence value for impressions in the ground or snow -->
<!-- "Evidence of Presence" value for impressions in the ground or snow -->
<string name="annotation_value_track">Track</string>
<!-- Evidence of Presence value when for bones -->
<!-- "Evidence of Presence" value when for bones -->
<string name="annotation_value_bone">Bone</string>
<!-- Evidence of Presence value when for discarded reptile skins and arthropod exoskeletons -->
<!-- "Evidence of Presence" value when for discarded reptile skins and arthropod exoskeletons -->
<string name="annotation_value_molt">Molt</string>
<!-- "Leaves" value when for leaf buds that are opening -->
<string name="annotation_value_breaking_leaf_buds">Breaking Leaf Buds</string>
<!-- "Leaves" value when for green leaves -->
<string name="annotation_value_green_leaves">Green Leaves</string>
<!-- "Leaves" value when for leaves with colors other than green, e.g. dying leaves in autumn -->
<string name="annotation_value_colored_leaves">Colored Leaves</string>
<!-- "Leaves" value when there are no living leaves -->
<string name="annotation_value_no_live_leaves">No Live Leaves</string>
<!-- "Established" value when the organism is not established, e.g. an escaped pet. See https://www.inaturalist.org/blog/91460-piloting-an-establishment-annotation-with-amphibians-and-reptiles -->
<string name="annotation_value_not_established">Not Established</string>
<!-- Text for a label for a list of projects the viewer has joined -->
<string name="joined_projects_all_caps">JOINED</string>
<string name="nearby_projects_all_caps">NEARBY</string>
Expand Down
Loading