-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathen.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 436 should actually have 3 columns, instead of 2 in line 435.
2810 lines (2808 loc) · 169 KB
/
Copy pathen.csv
File metadata and controls
2810 lines (2808 loc) · 169 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
key_name,en,comment
ACCELERATOR,Accelerator,
ACCELERATOR_ADMIN,Accelerator Admin,
ACCELERATOR_CONSOLE,Accelerator Console,
ACCELERATOR_PROJECTS,Accelerator Projects,
ACCELERATOR_WELCOME_ALT,Two people maintaining seedlings in a nursery,
ACCELERATOR_WELCOME_CONTENT,Terraware will serve as your source of information for the Terraformation accelerator program. Review your To Do list below to see the tasks you need to review and complete before their due dates. See all of your tasks for the current phase by clicking Deliverables in the left menu.,
ACCELERATOR_WELCOME_HEADER,Welcome to the Accelerator Program!,
ACCEPT,Accept,
ACCEPT_AND_NEXT,Accept & Next,
ACCEPTED,Accepted,
ACCESSION,Accession,
ACCESSION_BY_STATUS,Accession by Status,
ACCESSION_DETAIL,Accession Detail,
ACCESSION_DETAILS,Accession Details,
ACCESSION_HISTORY,Accession History,
ACCESSION_ID,Accession ID,
ACCESSION_NUMBER_CHECKED_IN,Accession {0} was successfully checked in!,
ACCESSIONS,Accessions,
ACCESSIONS_CARD_DESCRIPTION,Collect seeds and then record and view your accessions. Seed accessions can be viewed and analyzed by seed bank.,
ACCESSIONS_IMPORT_COMPLETE,Accessions data import complete!,
ACCESSIONS_ONBOARDING_SEEDBANKS_MSG,Define storage locations assigned to seed accessions,
ACCESSIONS_ONBOARDING_SPECIES_MSG,Define a list of species used in your seed inventory,
ACCESSIONS_TO_BE_CHECKED_IN,There are {0} accessions to check in.,
ACCOUNT,Account,User access to website or application typically by entering a username and password (noun)
ACCUMULATION_RATE,Accumulation Rate,
ACCUMULATION_RATE_UNITS,Accumulation Rate (tCO2/ha/yr),
ACHIEVED,Achieved,
ACHIEVEMENT,Achievement,Column header for a single achievement in the exported CSV
ACHIEVEMENTS,Achievements,
ACTION,Action,
ACTIVE,Active,
ACTIVE_ACCESSIONS,Active Accessions,
ACTIVE_GROWTH,Active Growth,
ACTIVE_GROWTH_QUANTITY,Active Growth Quantity,
ACTIVE_GROWTH_QUANTITY_AFTER,Active Growth Quantity (After),
ACTIVE_GROWTH_QUANTITY_BEFORE,Active Growth Quantity (Before),
ACTIVE_GROWTH_QUANTITY_CANNOT_BE_LESS_THAN_ZERO,Active Growth quantity cannot be less than 0,
ACTIVE_GROWTH_QUANTITY_REMAINING,Active Growth Quantity ({0} remaining),
ACTIVE_GROWTH_QUANTITY_REQUIRED,Active Growth Quantity *,
ACTIVITY_DELETED,Activity Deleted,
ACTIVITY_LOG,Activity Log,
ACTIVITY_PUBLISHED,Activity published,
ACTIVITY_TYPE,Activity Type,
ACTUAL,Actual,
AD_HOC,Ad Hoc,
AD_HOC_NUMBER_OF_LIVE_PLANTS_PER_SPECIES_TOOLTIP,Number of Live Plants per Species shows the number of observed plants per species recorded as live. Plants recorded which species are unknown are not included.,
AD_HOC_OBSERVATIONS_EMPTY_STATE_MESSAGE_1,There are currently no ad hoc plot observations.,
AD_HOC_OBSERVATIONS_EMPTY_STATE_MESSAGE_2,Observations using ad hoc plots for Plant Monitoring can be recorded through Ad Hoc Plot Observations in the mobile app.,
AD_HOC_PLANT_MONITORING,Ad Hoc Plant Monitoring,
AD_HOC_PLOT_LIVE_PLANTS_TOOLTIP,Live Plants is the number of observed plants recorded as live.,
AD_HOC_PLOT_PLANT_DENSITY_TOOLTIP,Plant Density (plants per hectare) is calculated based on the number of observed plants.,
AD_HOC_PLOT_SPECIES_TOOLTIP,Species is the number of species represented by all of the observed plants.,
AD_HOC_PLOT_TOTAL_PLANTS_TOOLTIP,"Total Plants is the number of all observed plants, including plants recorded as live and dead.",
AD_HOC_PLOTS,Ad Hoc Plots,
ADD,Add,
ADD_A_NURSERY,Add a Nursery,
ADD_A_PLANTING_SITE,Add a Planting Site,
ADD_A_PLANTING_SITE_SUBTITLE,Where do your plants take root? Set up your planting site so you can keep track of your plants’ progress.,
ADD_A_PROJECT,Add a Project,
ADD_A_SEED_BANK,Add a Seed Bank,
ADD_A_SPECIES,Add a Species,
ADD_A_VIABILITY_TEST,Add a Viability Test,
ADD_ACTIVITY,Add Activity,
ADD_ACTIVITY_FOR_PROJECT,Add Activity for {0},
ADD_ADDRESS,Add Address,
ADD_AN_ACCESSION,Add an Accession,
ADD_BATCH,Add Batch,
ADD_DATE,Add Date,
ADD_DOCUMENT,Add Document,
ADD_FUNDING_ENTITY,Add Funding Entity,
ADD_GPS_COORDINATES,Add GPS Coordinates,
ADD_INDICATOR,Add Indicator,
ADD_INVENTORY,Add Inventory,
ADD_INVENTORY_DESCRIPTION,"Add inventory from a new source. To add inventory from an existing seed accession, go to Accessions and withdraw from an accession entry.",
ADD_INVENTORY_MANUALLY_DESCRIPTION,"Enter species, quantities, and other relevant information using our inventory form.",
ADD_MANUALLY,Add Manually,
ADD_METRIC,Add Metric,
ADD_MODULE,Add Module,
ADD_NEW_ORGANIZATION_FOOTNOTE,You can edit this information later.,
ADD_NOTES,Add Notes,
ADD_NURSERIES,Add Nurseries,
ADD_NURSERY,Add Nursery,
ADD_NURSERY_SUBTITLE,How do you manage your seedlings? Set up your nursery so you can keep track of your seedlings’ growth.,
ADD_OBSERVATION,Add Observation,
ADD_ORGANIZATION,Add Organization,
ADD_PEOPLE,Add People,
ADD_PEOPLE_ONBOARDING_DESCRIPTION,Invite people to your organization who will use Terraware. You can always add more people in Settings.,
ADD_PERSON,Add Person,
ADD_PERSON_DESC,Fill out this page to add a person to the organization.,
ADD_PHOTO,Add Photo...,
ADD_PHOTOS,Add Photos,
ADD_PHOTOS_DESCRIPTION,Take a photo (or photos) of the batches that will be planted at the selected substratum. Be sure to include the entire withdrawal in the photo(s).,
ADD_PHOTOS_DESCRIPTION_OPTIONAL,Take an optional photo (or photos) of the batches.,
ADD_PLANT_SITE_DESCRIPTION,Add Plant and Site Description,
ADD_PLANTING_DATE,Add Planting Date,
ADD_PLANTING_SEASON,Add Planting Season,
ADD_PLANTING_SITE,Add Planting Site,
ADD_PLANTING_SITE_DETAILED_SITE,"Select if the site is relatively large, with multiple strata (vegetation layers) and growing conditions. Planting sites with more than one vegetation layer will have multiple strata.",
ADD_PLANTING_SITE_SIMPLE_SITE,"Select if the planting site is relatively small, with a single stratum.",
ADD_PLANTING_SITE_TITLE,Select Planting Site Type,
ADD_PROJECT,Add Project,
ADD_PROJECT_SUBTITLE,Organize your data by projects.,
ADD_PROPOSED_PROJECT_BOUNDARY,Add Proposed Project Boundary,
ADD_QUANTITY,Add Quantity,
ADD_SEED_BANK,Add Seed Bank,
ADD_SEED_BANK_SUBTITLE,How do you process and store your seeds? Set up your seed bank so you can keep track of where your seeds are stored.,
ADD_SEED_BANKS,Add Seed Banks,
ADD_SPECIES,Add Species,
ADD_SPECIES_MANUALLY_DESCRIPTION,"Enter scientific name and other optional fields manually, one species at a time.",
ADD_SPECIES_ONBOARDING_DESCRIPTION,Manage species that your organization collects and plants.,
ADD_SPECIES_TO_PROJECT,Add Species to Project,
ADD_STANDARD_METRIC,Add Standard Metric,
ADD_STANDARD_METRIC_CONFIRMATION,You are about to add a standard metric that will be added to ALL projects. Are you sure you want this metric to be added to all projects?,
ADD_SUB_LOCATION,Add Sub-Location,
ADD_SUBSET_WEIGHT_AND_COUNT,Add Subset Weight And Count,
ADD_TEST,Add Test,
ADD_TO_MAP,Add to Map,
ADD_TO_PROJECT,Add to Project,
ADD_VIABILITY,Add Viability,
ADD_VIABILITY_TEST,Add Viability Test,
ADD_YOUR_FIRST_ACTIVITY,Add your first Activity,
ADDED,Added,
ADDED_SPECIES,Added Species,
ADDED_SPECIES_TOOLTIP,Species to be included in survival rate calculations that are not from Withdrawals,
ADDING_STRATUM_BOUNDARIES,Adding Stratum Boundaries,
ADDING_STRATUM_BOUNDARIES_INSTRUCTIONS_DESCRIPTION,This video shows how to use the slice {0} tool to create polygons within the site boundaries for strata.,
ADDING_SUBSTRATUM_BOUNDARIES,Adding Substratum Boundaries,
ADDING_SUBSTRATUM_BOUNDARIES_INSTRUCTIONS_DESCRIPTION,This video shows how to use the slice {0} tool to create substratum shapes (polygons) within the strata.,
ADDITIONAL_COMMENTS,Additional Comments,
ADDITIONAL_NURSERY_NOTES,Additional Nursery Notes,
ADDITIONAL_PLANTING_SITES_NOTES,Additional Planting Site Notes,
ADDITIONAL_RESOURCES,Additional Resources,
ADDITIONAL_SPECIES_DATA,Additional Species Data (Internal Use Only),
ADMIN,Admin,
ADMIN_INFO,"An admin can do the above as well as edit the organization profile, manage users in the organization, and manage seed banks.",
AGAR,Agar,
AGAR_PETRI_DISH,Agar Petri Dish,
AGE,Age,
AGE_MONTHS,Age (month),
AGE_VALUE_1_MONTH,1 Month,
AGE_VALUE_LESS_THAN_1_MONTH,<1 Month,
AGE_VALUE_MONTHS,{0} Months,
AGE_YEARS,Age (yr),
AGROFORESTRY,Agroforestry,
ALL,All,
ALL_ACCESSIONS_CHECKED_IN,All accessions were successfully checked in!,
ALL_MODULES,All Modules,
ALL_OBSERVATIONS,All Observations,
ALL_PLANTING_SEASONS,All Planting Seasons,
ALL_PLANTING_SITES,All Planting Sites,
ALL_PROJECT_ZONES,All Project Zones,
ALL_PROJECTS,All Projects,
ALL_SECTIONS,All Sections,
ALL_SITES,All Sites,
ALL_SPECIES,All Species,
ALL_VARIABLES,All Variables,
ALLOCATED,Allocated,
ALLOCATED_FOR_TARGET,Allocated for Target,
ALLOCATED_FOR_TARGET_TOOLTIP,Percentage of the total species target that has been allocated.,
ALLOCATED_TOOLTIP,Number of plants of this species the nursery has planned to fulfill.,
ALREADY_INVITED_PERSON_ERROR,It looks like you have already added or invited this person. Please enter a unique email address or go to the existing person’s profile.,
ALREADY_WITHDRAWN,Already Withdrawn,
AMOUNT_EST_COUNT,Amount (Est. Count),
AMOUNT_REMAINING,Amount ({0} remaining),
ANIMAL_DAMAGE,Animal Damage,
ANNUAL,Annual,
ANSWER_APPROVED,Answer Approved,
ANSWERS_UPDATE_NEEDED,Answers Update Needed,
APPLICANTS,Applicants,
APPLICATION,Application,
APPLICATION_ERROR_NO_PROJECT_BOUNDARY,Error: No project boundary drawn,
APPLICATION_FOR_PROJECT,Application for {0},
APPLICATION_INSTRUCTIONS,Start by completing the Pre-screen. Then answer more in-depth questions about your project and upload any necessary documents in the Application. Each section of the Application will be available to view after your pre-screen has been approved.,
APPLICATION_LIST,Application List,
APPLICATION_PRESCREEN,Application Pre-screen,
APPLICATION_PRESCREEN_FAILURE_SUBTITLE,"Your Pre-screen is complete, but you do not qualify because the following criteria wasn’t met:",
APPLICATION_PRESCREEN_FAILURE_TITLE,Your Pre-screen does NOT qualify.,
APPLICATION_PRESCREEN_SUCCESS_SUBTITLE,"Your Pre-screen is complete, and you qualify to proceed to the next step, Application.",
APPLICATION_PRESCREEN_SUCCESS_TITLE,Success! Your Pre-screen qualifies.,
APPLICATION_SITE_BOUNDARY,Application Site Boundary,
APPLICATION_STATUS,Application Status,
APPLICATION_STEP_APPLICATION_DESCRIPTION,"For the full Accelerator Program Application, you will answer general questions about your project as well as forest restoration, community impact, financial and legal questions.",
APPLICATION_STEP_APPLICATION_NAME,Application,
APPLICATION_STEP_DUEDILIGENCE_DESCRIPTION,"If your Application moves forward, we will request more documents from you about your project to confirm your proposed project’s eligibility.",
APPLICATION_STEP_DUEDILIGENCE_NAME,Due Diligence,
APPLICATION_STEP_PRESCREEN_DESCRIPTION,Draw your proposed project site map and complete the Pre-screen questions to determine if you qualify for our Accelerator Program.,
APPLICATION_STEP_PRESCREEN_NAME,Pre-screen,
APPLICATION_SUBMIT_SUCCESS,Success! Your Application has been submitted.,
APPLICATION_SUBMIT_SUCCESS_BODY,"Thank you for submitting an application to the Seed to Forest Accelerator. We have received your application and it is under review.
You can review your submitted responses and the status of your application in this account.",
APPLICATIONS,Applications,
APPLY,Apply,
APPLY_RESULT,Apply Result,
APPLY_RESULT_QUESTION,Do you want to apply this result to the accession?,
APPLY_TO_ACCELERATOR,Apply to Accelerator,
APPLY_TO_ACCELERATOR_DESCRIPTION,Apply to our Seed to Forest Accelerator! Find out more {0} or click the button below to apply.,
APPROVE,Approve,
APPROVE_DELIVERABLE,Approve Deliverable,
APPROVED,Approved,
APPROX_SYMBOL,~,
ARE_YOU_SURE,Are you sure?,
ARE_YOU_SURE_DELETE,Are you sure you want to delete?,
ARE_YOU_SURE_DELETE_PLANTING_DATE,Are you sure you want to delete this Planting Date?,
ARE_YOU_SURE_DELETE_TARGET,Are you sure you want to delete this species target?,
AREA,Area,
AREA_HA,Area (ha),
AREA_NOT_OBSERVED,Area not observed,
AS_OF_X,as of {0},
ASSIGN,Assign,
ASSIGN_NEW_OWNER,Assign New Owner,
ASSIGN_NEW_OWNER_DESC,"In order to remove the current owner, you must assign a new owner.",
ASSIGN_OWNER,Assign Owner,
ASSIGN_OWNER_ELLIPSIS,Assign Owner...,
ASSIGN_STRATA,Assign Strata,
ASSIGNED,Assigned,
ASSIGNED_NUMBER_OF_LIVE_PLANTS_PER_SPECIES_TOOLTIP,Number of Live Plants per Species shows the number of observed plants per species recorded as live. Plants recorded as pre-existing or which species are unknown are not included.,
ASSIGNED_PLOT_OBSERVATION,Assigned Plot Observation,
ASSIGNED_PLOT_OBSERVATION_TOOLTIP,Select an Assigned Plot Observation to view the Observation data in the map.,
ATTACH_IMAGES_OR_VIDEOS,Attach Image(s) or Video(s),
ATTACHMENT_DESCRIPTION,Attach up to {0} files. Each file has a maximum size of {1}MB.,
ATTACHMENT_LIMIT_REACHED,Attachment Limit Reached,
ATTACHMENT_LIMIT_REACHED_MESSAGE,You may only upload {0} attachments.,
ATTACHMENTS,Attachments,
AUTO_CALCULATED,Auto Calculated,Indicator type whose value comes from Terraware tracking data
AUTO_CALCULATED_INDICATORS,Auto Calculated Indicators,
AVAILABLE,available,
AVAILABLE_TITLE,Available,
AVAILABLE_TO_SCHEDULE,Available to Schedule,
AVAILABLE_TO_SCHEDULE_TOOLTIP,"Number of plants of this species allocated by the nursery minus the number of plants scheduled in Planting Dates, including this date.",
AVERAGE_PROJECT_STRATA_SURVIVAL_RATE,Average Project Strata Survival Rate,
AVERAGE_STRATA_SURVIVAL_RATE,Average Strata Survival Rate,
AVERAGE_WOOD_DENSITY,Average Wood Density (kb/m3),
AWAITING_CHECK_IN,Awaiting Check-In,
AWAITING_PROCESSING,Awaiting Processing,
BACK,Back,
BACK_TO_TERRAWARE,Back to Terraware,
BAG_ID,Bag ID,
BASELINE,Baseline,
BATCH,Batch,
BATCH_DETAILS,Batch Details,
BATCH_HISTORY_TYPE_DETAILS_EDITED,Details Edited,
BATCH_HISTORY_TYPE_INCOMING_WITHDRAWAL,Incoming Withdrawal,
BATCH_HISTORY_TYPE_OUTGOING_WITHDRAWAL,Outgoing Withdrawal,
BATCH_HISTORY_TYPE_PHOTO_CREATED,Photo Created,
BATCH_HISTORY_TYPE_PHOTO_DELETED,Photo Deleted,
BATCH_HISTORY_TYPE_QUANTITY_EDITED,Quantity Edited,
BATCH_HISTORY_TYPE_STATUS_CHANGED,Status Changed,
BATCH_NUMBER,Batch Number,
BATCH_WITHDRAW_SUCCESS,{0} {1} for a total of {2} {3} withdrawn.,
BATCHES,Batches,
BATCHES_AT,Batches at {0},
BATCHES_COLUMN_TOOLTIP,Empty batches are not counted in this column.,
BATCHES_OF,Batches of {0},
BATCHES_PLURAL,batches,
BATCHES_SELECTED,Batches Selected,
BATCHES_SINGULAR,batch,
BEST_MONTHS_FOR_OBSERVATIONS,Best Months for Observations,
BEST_MONTHS_FOR_OBSERVATIONS_INSTRUCTIONS,These would be the seasons when it makes the most sense from the standpoint of your team’s capacity and also takes into account environmental factors such as the absence of snow and ability to easily identify planting survival. Please select all months that apply.,
BEST_MONTHS_FOR_OBSERVATIONS_VALIDATION_ERROR,Please select at least one month.,
BI_ANNUAL,Bi-Annual,
BIODIVERSITY,Biodiversity,
BIOMASS_EMPTY_STATE_MESSAGE_1,There are currently no ad hoc plot Observations.,
BIOMASS_EMPTY_STATE_MESSAGE_2,Observations for Biomass Monitoring can be recorded through Ad Hoc Plot Observations in the mobile app.,
BIOMASS_MONITORING,Biomass Monitoring,
BIOMASS_NUMBER_OF_LIVE_PLANTS_PER_SPECIES_TOOLTIP,Number of Live Plants per Species shows the number of observed species of trees and shrubs recorded as live.,
BIOMASS_OBSERVATION_FILENAME_PREFIX,Biomass-Observation,Included as part of the filename for data files with biomass observation data. Should not include whitespace.
BIOMASS_PLOT_DEAD_PLANTS_TOOLTIP,Dead Plants is the number of observed trees and shrubs recorded as dead. It does not include plants recorded in the quadrats or other additional invasive or threatened species.,
BIOMASS_PLOT_LIVE_PLANTS_TOOLTIP,Live Plants is the number of observed trees and shrubs recorded as live. It does not include plants recorded in the quadrats or other additional invasive or threatened species.,
BIOMASS_PLOT_LOCATION_TOOLTIP,Plot Location shows the coordinates of the southwest corner of the plot.,
BIOMASS_PLOT_SPECIES_TOOLTIP,Species is the number of species represented by the observed trees and shrubs. It does not include plants recorded in the quadrats or other additional invasive or threatened species.,
BIOMASS_PLOT_TOTAL_PLANTS_TOOLTIP,"Total Plants is the number of all observed trees and shrubs, including live and dead trees and shrubs. It does not include plants recorded in the quadrats or other additional invasive or threatened species.",
BOOLEAN_TRUE,true,
BOTANICAL_COUNTRY,Botanical Country,
BOUNDARIES,Boundaries,
BOUNDARIES_AND_STRATA,Boundaries and Strata,
BUDGET_DOCUMENT_XLS,Budget Document (.XLS),
BUDGET_NARRATIVE_SUMMARY,Budget Narrative Summary,
BUDGET_NARRATIVE_SUMMARY_INSTRUCTIONS,"Provide a high level narrative of your budget-to-actuals, noting any major discrepancies and listing any contributors. (One-half page maximum.)",
BUDGET_NARRATIVE_SUMMARY_REQUIRED,Budget Narrative Summary *,
BUG_REPORT,Bug Report,
BUG_REPORT_DESCRIPTION,Let us know about an issue you encountered while using Terraware.,
BUG_REPORT_INSTRUCTIONS,Provide a detailed description of the issue you encountered. (Where did the issue occur? What did you do before encountering the issue? What were you expecting to happen?),
BY,By,
BY_ACCESSION,By Accession,
BY_BATCH,By Batch,
BY_INITIAL_PLANTING_DENSITY,by initial planting density,
BY_NURSERY,By Nursery,
BY_PLANTING_SEASON_TARGETS,by planting season targets,
BY_SPECIES,By Species,
BY_TARGET_PLANT_DENSITY,by target plant density,
CALCULATED_PLANT_DENSITY_FROM_WITHDRAWALS,Calculated Plant Density from Withdrawals,
CALCULATED_PLANT_DENSITY_FROM_WITHDRAWALS_TOOLTIP,"To use the calculated plant density from planting Withdrawals, check the box. To override this data, manually enter a value in the Plant Density fields to the left.",
CANCEL_DATA_CHECK,Cancel Data Check,
CANCEL_SPECIES_CHECK,Cancel Species Check,
CANCEL_SPECIES_CHECK_MESSAGE,You are about to cancel Species Check. All changes will be discarded. Are you sure?,
CANNOT_BE_CALCULATED,Cannot be calculated,
CANNOT_DELETE_APPLICATION_PROJECT,This project cannot be deleted because an application to our accelerator program has been started for this project.,
CANNOT_EDIT,Cannot Edit,
CANNOT_REMOVE,Cannot Remove,
CANNOT_REMOVE_MSG,You cannot remove yourself because there is no one else in the organization. Would you like to delete the organization instead?,
CANNOT_REMOVE_TF_CONTACT,Terraformation contacts cannot be removed from an organization.,
CANNOT_SAVE_UNTIL_PAGE_IS_FULLY_LOADED,Cannot save until page is fully loaded.,
CAPTION,Caption,
CARBON,Carbon,
CARBON_CERTIFICATIONS,Carbon Certifications,
CARBON_DATA,Carbon Data,
CARBON_ELIGIBILITY,Carbon Eligibility,
CATALYTIC_CHECKBOX,Terraformation’s support has been catalytic in securing additional funding or partnerships for our work.,
CATALYTIC_DETAIL,Catalytic Funding,
CATALYTIC_DETAIL_INSTRUCTIONS,Please state whether Terraformation’s support has been catalytic in securing additional funding or partnerships for your work. Provide detail where possible. (One-quarter page maximum.),
CATEGORIES,Categories,
CATEGORY,Category,
CERTIFICATION,Certification,
CHALLENGE,Challenge,
CHALLENGES,Challenges and Setbacks,
CHALLENGES_AND_MITIGATION_PLAN,Challenges and Mitigation Plan,
CHALLENGES_INSTRUCTIONS,"Terraformation believes that the learnings from challenges and failures are often where the greatest growth happens, and sharing these challenges can have a positive global benefit. Please list any challenges or setbacks you experienced during the reporting period. What is the impact of these challenges, and what are the ways in which these setbacks can be overcome in the current project? What would you want to do differently in a future project? (One page maximum.)",
CHALLENGES_REQUIRED,Challenges and Setbacks *,
CHANGE,Change,
CHANGE_ACTIVE_GROWTH_STATUS,Change Active Growth Status,
CHANGE_DEFAULT_WEIGHT_SYSTEM,You can change your default weight system from {0},
CHANGE_GERMINATION_ESTABLISHMENT_STATUS,Change Germination/Establishment Status,
CHANGE_HARDENING_OFF_STATUS,Change Hardening Off Status,
CHANGE_HISTORY,Change History,
CHANGE_TO,Change to {0},
CHANGED,Changed,
CHANGES,Changes,
CHANGES_SAVED,Changes Saved!,
CHECK_DATA,Check Data,
CHECK_DATA_DESCRIPTION,"You can run a database check to compare your species information with what’s stored in the GBIF Database. This will flag entries if the scientific name of your species is spelled wrong, or is missing from the database. This could take a few minutes, and you can’t cancel it once it starts.",
CHECK_DATE,Check Date,
CHECK_DATE_REQUIRED,Check Date *,
CHECK_IN,Check In,
CHECK_IN_ALL,Check In All,
CHECK_IN_ALL_CONFIRM,Are you sure you want to check in all accessions? This action cannot be undone.,
CHECK_IN_MESSAGE,New accessions have been dropped off at the seed bank. Please review and check them in.,\
CHECK_THAT_ALL_REQUIRED_QUESTIONS_ARE_FILLED_OUT_BEFORE_SUBMITTING,Check that all required questions are filled out before submitting,
CHECKED_IN,Checked In!,
CHECKIN_ACCESSIONS,Check In Accessions,
CHECKING_DATA,"Running database check. Please wait, this may take a few minutes...",
CHEMICAL,Chemical,
CHOOSE_FILES,Choose Files...,
CITATION,Citation,
CITY,City,
CLAIMED,Claimed,
CLEAR_ALL_FILTERS,Clear All Filters,
CLICK_UP,ClickUp,
CLICK_UP_LINK,ClickUp Link,
CLIMATE,Climate,
CLIMATE_IMPACT,Climate Impact,
CLOSE,Close,
CLOSE_AND_EDIT,Close and Edit,
CLOSE_PLANTING_SEASON,Close Planting Season,
CLOSE_PLANTING_SEASON_CONFIRM,You are about to close {0}. Closing will mark the season as closed and prevent further changes. This action cannot be undone.,
CLOSE_SEASON,Close Season,
CLOSED,Closed,
COLLECTED_FROM,Collected from,
COLLECTING_SITE,Collecting Site,
COLLECTION_SITE,Collection Site Name,
COLLECTION_SOURCE,Plant Source Type,
COLLECTION_TIME,Collection Time,
COLLECTION_TIME_REQUIRED,Collection Time *,
COLLECTOR,Collector,
COLLECTORS,Collectors,
COLOR,Color,
COMMENTS,Comments,
COMMON,Common,
COMMON_INDICATOR,Common Indicator,
COMMON_INDICATOR_SAVED,Common Indicator Saved,
COMMON_INDICATORS,Common Indicators,
COMMON_NAME,Common Name,
COMMON_QUESTION,Common?,
COMMUNITY,Community,
COMPLETE,Complete,
COMPLETE_REPORTS,Complete Reports,
COMPLETE_REPORTS_SUBTITLE,Your reports are ready to be completed and submitted to Terraformation:,
COMPLETED,Completed,
COMPLETED_ENDED,Completed (Ended),
COMPLETED_ON,completed on,
COMPLIANCE,Compliance,
COMPONENT,Component,
CONDITIONAL,Conditional,
CONFIRM,Confirm,
CONFIRM_WITHDRAWAL,Confirm Withdrawal,
CONSERVATION_CATEGORY,IUCN Red List Category,
CONTACT_TYPE,Contact Type,
CONTACT_US,Contact Us,
CONTACT_US_DESCRIPTION,Let us know about your experience with Terraware and inquire about additional support for you or your organization.,
CONTACT_US_INSTRUCTIONS,Your feedback is very important to us. Please let us know about your experience with Terraware and how we can help you and your organization get the most out of Terraware.,
CONTAMINATION,Contamination,
CONTENT_AND_MATERIALS,Content and Materials,
CONTENTS,Contents,
CONTINUE,Continue,
CONTINUE_AND_RESET_STATUS,Continue and Reset Status,
CONTINUE_APPLICATION,Continue Application,
CONTINUE_TO_APPLICATION,Continue to Application,
CONTRIBUTOR,Contributor,
CONTRIBUTOR_INFO,"A contributor can add data entries for seeds, manage nursery inventory except planting withdrawals, view withdrawals, manage nursery reassignments and visualize a planting site’s plantings on a geographical map.",
CONVERTED_VALUE_INFO,This value is auto-calculated for informational purposes.,
COOKIES,Cookies,
COOKIES_ACCEPT,Accept Cookies,
COOKIES_DECLINE,Decline Cookies,
COOKIES_DESCRIPTION,Terraware uses performance cookies to analyze and improve the quality of the site and enhance your user experience.,
COOKIES_LEARN_MORE,Learn more about our cookie policy.,
COPY_PREVIOUS_SEASON,Copy previous season,
COPY_PREVIOUS_SEASON_TOOLTIP,Select a previously created season that has the species that you want to use for the new season.,
COPYING_SPECIES_ACROSS_SUBSTRATUM,"Copying {0} species across {1} substrata, with all targets set to 0",
COUNT,Count,
COUNTRY,Country,
COUNTRY_ONLY,Country Only,
COUNTRY_REQUIRED,Country *,
COVER_PHOTO,Cover Photo,
COVERAGE,Coverage,
COVERED,Covered,
CREATE,Create,
CREATE_NEW_ORGANIZATION,Create New Organization,
CREATE_NEW_PROJECT,Create New Project,
CREATE_ORGANIZATION,Create Organization,
CREATE_ORGANIZATION_QUESTION_LOCATION_TYPES,Does your organization manage any of the following? Check all that apply.,
CREATE_ORGANIZATION_QUESTION_ORGANIZATION_TYPE,Which of the following best describes your organization?,
CREATE_SEASON,Create Season,
CREATE_SPECIES_LIST,Create Species List,
CREATE_VIRTUAL_PLOT,Create Virtual Plot,
CREATE_VIRTUAL_WALKTHROUGH,Create Virtual Walkthrough,
CREATE_VIRTUAL_WALKTHROUGH_DESCRIPTION,Upload a video to be used for a Virtual Walkthrough. Once the Virtual Walkthrough is processed it will appear in the map. Processing may take up to 12 hours.,
CREATE_VIRTUAL_WALKTHROUGH_STEP2_DESCRIPTION,"The selected video will be used for a Virtual Walkthrough. Once the Virtual Walkthrough is processed, it will appear in the map. Processing may take up to 12 hours.",
CREATED,Created,
CREATED_ON,Created on,
CROWN_DIAMETER_CM,Crown Diameter (cm),
CSV_FILE,CSV file,
CT,ct,
CULTIVATED,Cultivated,
CULTIVATED_EX_SITU,Cultivated (Ex Situ),
CULTIVATED_EX_SITU_DESCRIPTION,"Plants that have been grown in a nursery, seed production area, or other propagation facility.",
CUMULATIVE_PROGRESS,Cumulative Progress,
CUMULATIVE_PROGRESS_TOOLTIP,"For cumulative indicators, the total progress since the start of the project is displayed. To view the quarterly progress (quarterly actual), expand this section."
CUMULATIVE_TARGET,Cumulative Target,
CURRENT_NEXT_OBSERVATION,Current/Next Observation,
CURRENT_TIMELINE,Current Timeline,
CURRENT_VIEW,Current View,
CUSTOMIZE_COLUMNS,Customize Columns...,
CUSTOMIZE_TABLE_COLUMNS,Customize table columns,
CUSTOMIZE_TABLE_COLUMNS_DESCRIPTION,Select columns you want to add. Deselect columns you want to remove.,
CUT_TEST,Cut Test,
DASHBOARD,Dashboard,
DASHBOARD_HEADER_TEXT,The data on this dashboard is based on a sample of {0} hectares from the {1} observation., {1} date of the last observation in short format (e.g. July 2023)
DASHBOARD_HEADER_TEXT_SINGLE_OBSERVATION,Observation data on this dashboard is based on a sample of {0} from the {1} for this planting site.,
DASHBOARD_HEADER_TEXT_V2,Observation data on this dashboard is based on a sample of {0} from observations between {1} through {2}.,
DASHBOARD_MESSAGE,Your seeds dashboard will automatically populate with data as you add accessions.,
DASHBOARD_MESSAGE_TITLE,Add Accessions to See Data,
DASHBOARD_NO_PLANTING_SITES_DESCRIPTION_ADMIN,This dashboard displays data from your plant tracking and monitoring activities. Add at least one planting site to start tracking where your seedlings are planted and to see the data in this dashboard.,
DASHBOARD_NO_PLANTING_SITES_DESCRIPTION_NON_ADMIN,This dashboard displays data from your plant tracking and monitoring activities. A planting site is needed but has not yet been added. Please reach out to an administrator in your organization for assistance.,
DASHBOARD_NO_PLANTING_SITES_TITLE_ADMIN,"To view data in this dashboard, add a planting site",
DASHBOARD_NO_PLANTING_SITES_TITLE_NON_ADMIN,"To view data in this dashboard, your organization needs a planting site",
DATA_CHECK_COMPLETED,Database check complete. No errors were found!,
DATA_CHECK_WITH_PROBLEMS,Database check complete. {0} potential errors were found.,
DATA_IMPORT_FAILED,Data import failed,
DATA_IMPORT_ROW_MESSAGE,Row {0}: {1},{0} is a number referring to a row in a spreadsheet file; {1} is an error message related to the row.
DATA_IS_NOT_YET_AVAILABLE,Data is not yet available,
DATABASE_CHECK,Database Check,
DATABASE_CHECK_NO_ERRORS,Database Check found no errors.,
DATE,Date,
DATE_ADDED,Date Added,
DATE_ADDED_REQUIRED,Date Added *,
DATE_MUST_BE_FUTURE,Date must be in the future,
DATE_OBSERVATION,{0} Observation,
DATE_OBSERVED,Date Observed,The date on which an observation was conducted.
DATE_OBSERVED_TOOLTIP,Date Observed is the date on which the Observation was completed.,
DATE_OF_LAST_OBSERVATION,Date of Last Observation,
DATE_RANGE,{0} - {1},"{0} is the start date and {1} is the end date, both in YYYY-MM-DD format."
DATE_REQUIRED,Date *,
DATE_SUBMITTED,Date Submitted,
DATE_UPDATED,Date Updated,
DATE_UPLOADED,Date Uploaded,
DBH_CM,DBH (cm),
DEAD,Dead,
DEAD_PLANTS,Dead Plants,
DEAD_PLANTS_OBSERVED,Dead Plants Observed,
DEAL_NAME,Deal Name,
DECLINE,Decline,
DEFAULT_LANGUAGE_SELECTED,Default language: {0},
DEFINITION,Definition,
DELETE,Delete,
DELETE_ACCESSION,Delete Accession,
DELETE_ACCESSION_MESSAGE,You’re about to delete accession {0}.,
DELETE_ACCOUNT,Delete Account,
DELETE_ACCOUNT_CONFIRMATION,Are you sure you want to delete your account? This cannot be undone.,
DELETE_ACCOUNT_ERROR,There was an error deleting your account.,
DELETE_ACTIVITY,Delete Activity,
DELETE_ACTIVITY_CONFIRM,Are you sure you want to delete this activity? All activity data will be removed.,
DELETE_CONFIRMATION_MODAL_MAIN_TEXT,Are you sure you want to delete the species?,
DELETE_FUNDING_ENTITY,Delete Funding Entity,
DELETE_FUNDING_ENTITY_FUNDERS_MESSAGE,All Funders associated with this Funding Entity will be deleted.,
DELETE_FUNDING_ENTITY_MESSAGE,You’re about to delete {0}.,
DELETE_OBSERVATION_ACTIVITY_PHOTO_MESSAGE,"You are about to make changes to photos and videos associated with an Observation in {0} for {1}.
Are you sure you want to make these changes?",
DELETE_OBSERVATION_PHOTO_MESSAGE,This photo will also be removed from the linked observation. This action cannot be undone.,
DELETE_OBSERVATION_PHOTO_TITLE,Remove Photo from Observation,
DELETE_ORGANIZATION,Delete Organization,
DELETE_ORGANIZATION_MSG,Are you sure you want to delete {0}?,
DELETE_PLANTING_DATE,Delete Planting Date,
DELETE_PLANTING_DATE_CONFIRM,You are about to delete this Planting Date. Withdrawal requests that were sent to the nursery for this date will be removed.,
DELETE_PLANTING_DATE_WITHDRAWALS_RECORDED,"Planting withdrawals have already been recorded for this date. Before deleting this Planting Date, you can find the related planting withdrawals in the Withdrawals table and undo them, if necessary.",
DELETE_PLANTING_SEASON,Delete Planting Season,
DELETE_PLANTING_SEASON_CONFIRM,You are about to delete {0}. Deleting the season will permanently remove all goals and dates but planting withdrawals will remain intact. This action cannot be undone.,
DELETE_PLANTING_SITE,Delete Planting Site,
DELETE_PLANTING_SITE_CONTACT_US,Please [contact us] to delete the planting site.,
DELETE_PLANTING_SITE_IN_USE_MESSAGE,Planting site {0} has plantings allocated.,
DELETE_PLANTING_SITE_MESSAGE,You’re about to delete planting site {0}.,
DELETE_PROJECT,Delete Project,
DELETE_PROJECT_CONFIRM,Are you sure you want to delete this project? All project categorization will be removed.,
DELETE_SEASON,Delete Season,
DELETE_SEEDLINGS_BATCHES,Delete Seedlings Batches,
DELETE_SEEDLINGS_BATCHES_MSG,"Deleting batches without withdrawals will completely delete them. Deleting batches with withdrawals will set their remaining quantities to 0, remove those quantities from the inventory, and mark the batches as empty. Past withdrawals will continue to appear in the withdrawal history.",
DELETE_SPECIES,Delete Species,
DELETE_SPECIES_TARGET,Delete Species Target,
DELETE_SPECIES_TARGET_CONFIRM,"You are about to delete the species {0} as a target for this substratum. The quantity will be removed from total planting goal for this season, and the nursery will be notified to adjust allocated plants, as needed.",
DELETE_STATISTICS,Delete Statistics,
DELETE_VIABILITY_TEST,Delete Viability Test,
DELETE_VIABILITY_TEST_MESSAGE,You’re about to delete viability test {0}.,
DELETED_SPECIES,<deleted species>,
DELIVERABLE_APPROVED,Deliverable Approved,
DELIVERABLE_CATEGORY,Category: {0},"Shows the deliverable document's category name, example Category: Legal"
DELIVERABLE_ID,Deliverable ID,
DELIVERABLE_NAME,Deliverable Name,
DELIVERABLE_PROJECT,Project: {0},"Shows the project name associated with the deliverable document, example Project: Andromeda"
DELIVERABLE_STATUS_CHANGE_CONFIRMATION_1,Submitting a document after a deliverable has been reviewed will reset the deliverable status.,
DELIVERABLE_STATUS_CHANGE_CONFIRMATION_2,Are you sure you still want to submit a document?,
DELIVERABLE_STATUS_UPDATED,Deliverable Status Updated,
DELIVERABLE_SUBMITTED,Deliverable Submitted,
DELIVERABLE_SUBMITTED_FOR_APPROVAL,Deliverable Submitted for Approval,
DELIVERABLE_UPDATE_NEEDED,Deliverable Update Needed,
DELIVERABLE_UPDATE_REQUESTED,Deliverable Update Requested,
DELIVERABLES,Deliverables,
DELIVERABLES_IMPORT_COMPLETE,Deliverables data import complete!,
DENSITY,Density,
DENSITY_COMFORTABLE,Density - Comfortable,
DENSITY_COMPACT,Density - Compact,
DENSITY_ROOMY,Density - Roomy,
DESCRIBE_ORGANIZATION_TYPE_DETAILS,Describe your organization,
DESCRIPTION_KNOWLEDGE_BASE,Learn how to use Terraware and find answers to your questions about Terraware features.,
DESCRIPTION_KNOWLEDGE_BASE_WITH_LINK,Learn how to use Terraware and find answers to your questions about Terraware features in the {0}.,
DESCRIPTION_NOTES,Description/Notes,
DESCRIPTION_REQUIRED,Description *,
DESTINATION,Destination,
DESTINATION_REQUIRED,Destination *,
DETAILED_SITE,Detailed Site,
DETAILS,Details,
DEV_SERVER_ERROR,Server unavailable (may be restarting with new code changes). Reload?,
DIAMETER_AT_BREAST_HEIGHT,Diameter at Breast Height (DBH) at Maturity (cm),
DIAMETER_CM,Diameter (cm),
DIFFICULT_ACCESSIBILITY,Difficult Accessibility,
DISAGGREGATION,Disaggregation,
DISMISS,Dismiss,
DO_NOT_USE,Do Not Use,
DOC_PRODUCER,Doc Producer,
DOCUMENT,Document,
DOCUMENT_DETAILS,Edit Document Details,
DOCUMENT_LIMIT_REACHED,Document Limit Reached,
DOCUMENT_LIMIT_REACHED_MESSAGE,You may only upload {0} documents. Talk to your Terraformation representative if you would like to upload more.,
DOCUMENT_NAME,Document Name,
DOCUMENT_STATUS,Document Status,
DOCUMENT_TEMPLATE,Document Template,
DOCUMENTS,Documents,
DOCUMENTS_ADD_CARD_INSTRUCTIONS,You have no documents yet. Start by adding one below.,
DOCUMENTS_ADD_CARD_TITLE,Add a Document,
DOCUMENTS_ADD_FORM_DOC_NAME,Document Name,
DOCUMENTS_ADD_FORM_DOC_OWNER,Document Owner,
DOCUMENTS_ADD_FORM_DOCUMENT_TEMPLATE,Document Template,
DONE,Done,
DONT_SHOW_AGAIN,Don't Show Again,
DOWNLOAD,Download,
DOWNLOAD_CSV_TEMPLATE,Download a CSV template here.,
DOWNLOAD_FOR_ANDROID,Download for Android,
DOWNLOAD_FOR_IOS,Download for iOS,
DOWNLOAD_REPORT_DESCRIPTION,You are about to download this table as a spreadsheet (CSV file). Name your spreadsheet below.,
DOWNLOAD_SPECIES_SUBMISSION_SNAPSHOT,Download List (.csv) at Time of Approval,
DOWNLOAD_TEMPLATE,Download a template here.,
DOWNLOAD_THE_CSV_TEMPLATE,Download the CSV template.,
DOWNLOAD_THE_TERRAWARE_MOBILE_APP,Download the Terraware Mobile App,
DOWNLOAD_THE_TERRAWARE_MOBILE_APP_DESCRIPTION,"Get the mobile app to take advantage of Seed Collection, Nursery Management, and Plant Monitoring features you can use with more flexibility beyond your desktop!",
DRAFT,Draft,
DRAFT_PLANTING_SITES,Draft Planting Sites,
DRAW_BOUNDARY_WITHIN_MAP,Draw the boundary within a map,
DRAW_PROPOSED_PROJECT_BOUNDARY,Draw Proposed Project Boundary,
DRONE_FLIGHT,Drone Flight,
DROPBOX,Dropbox,
DROPBOX_PATH,Dropbox Path,
DRYING,Drying,
DUE,Due: {0},
DUE_DATE,Due date,
DUE_DATE_PREFIX, Due Date: {0},
DUPLICATED_ACCESSION_NUMBER,We found {0} duplicated accession numbers:,
DUPLICATED_INVENTORY,We found {0} duplicated inventory:,
DUPLICATED_SPECIES,We found {0} duplicated species:,
ECOLOGICAL_ROLE_KNOWN,Ecological Role Known,
ECOLOGICAL_ROLE_KNOWN_TOOLTIP,"List ecological roles such as functional group of the species, ecosystem services provided, role as keystone species, etc.",
ECOSYSTEM_BOREAL_FOREST_TAIGA,Boreal forests/Taiga,
ECOSYSTEM_DESERT_XERIC_SHRUBLAND,Deserts and xeric shrublands,
ECOSYSTEM_FLOODED_GRASSLAND_SAVANNA,Pastizal y sabana inundados,
ECOSYSTEM_MANGROVE,Mangroves,
ECOSYSTEM_MEDITERRANEAN_FOREST,"Mediterranean forests, woodlands and scrubs",
ECOSYSTEM_MONTANE_GRASSLAND_SHRUBLAND,Montane grasslands and shrublands,
ECOSYSTEM_TEMPERATE_BROADLEAF_MIXED_FOREST,Temperate broad leaf and mixed forests,
ECOSYSTEM_TEMPERATE_CONIFEROUS_FOREST,Temperate coniferous forest,
ECOSYSTEM_TEMPERATE_GRASSLAND_SAVANNA_SHRUBLAND,"Temperate grasslands, savannas and shrublands",
ECOSYSTEM_TROPICAL_CONIFEROUS_FOREST,Tropical and subtropical coniferous forests,
ECOSYSTEM_TROPICAL_DRY_BROADLEAF_FOREST,Tropical and subtropical dry broad leaf forests,
ECOSYSTEM_TROPICAL_GRASSLAND_SAVANNA_SHRUBLAND,"Tropical and subtropical grasslands, savannas and shrublands",
ECOSYSTEM_TROPICAL_MOIST_BROADLEAF_FOREST,Tropical and subtropical moist broad leaf forests,
ECOSYSTEM_TUNDRA,Tundra,
ECOSYSTEM_TYPE,Ecosystem Type,
EDIT_ACCESSION,Edit Accession,
EDIT_ACCESSION_DETAIL,Edit Accession Detail,
EDIT_ACCOUNT,Edit Account,
EDIT_ACTIVITY,Edit Activity,
EDIT_BATCH_DETAILS,Edit Batch Details,
EDIT_COMMON_INDICATOR,Edit Common Indicator,
EDIT_COMMON_INDICATOR_CONFIRMATION,Edits to this common indicator will be applied across ALL projects. Are you sure you want these updates to apply to all projects?,
EDIT_DOCUMENT_DETAILS,Edit Document Details,
EDIT_FEEDBACK,Edit Feedback,
EDIT_FUNDING_ENTITY,Edit Funding Entity,
EDIT_FUNDING_ENTITY_DESC,Edit the Funding Entity and associated projects,
EDIT_LOCATION,Edit Location,
EDIT_MODULES,Edit Modules,
EDIT_NOTES,Edit Notes,
EDIT_NURSERY,Edit Nursery,
EDIT_OBSERVATION_DATA,Edit Observation Data,
EDIT_ORGANIZATION,Edit Organization,
EDIT_PERMANENT_PLOTS,Edit Permanent Plots,
EDIT_PERSON,Edit Person,
EDIT_PHOTOS_AND_VIDEOS,Edit Photos & Videos,
EDIT_PLANTING_SEASON,Edit Planting Season,
EDIT_PLANTING_SITE,Edit Planting Site,
EDIT_PROJECT,Edit Project,
EDIT_QUANTITY,Edit Quantity,
EDIT_QUANTITY_DISABLED,"Quantity may not be edited when the status is ""Used Up"".",
EDIT_SCORES,Edit Scores,
EDIT_SEED_BANK,Edit Seed Bank,
EDIT_SETTINGS,Edit Settings,
EDIT_SPECIES,Edit Species,
EDIT_STANDARD_METRIC,Edit Standard Metric,
EDIT_STANDARD_METRIC_CONFIRMATION,Edits to this standard metric will be applied across ALL projects. Are you sure you want these updates to apply to all projects?,
EDIT_STATUS,Edit Status,
EDIT_SURVIVAL_RATE_SETTINGS_FOR,Edit Survival Rate Settings for {0},
EDIT_TEMPORARY_PLOTS,Edit Temporary Plots,
EDIT_VIABILITY,Edit Viability,
EDIT_VIABILITY_TEST,Edit Viability Test,
EDIT_VOTES,Edit Votes,
EDITABLE_TABLE_ADD_ROW,Add Row,
EDITABLE_TABLE_ADD_TABLE,Add Table,
EDITABLE_TABLE_REMOVE_TABLE,Remove Table,
EDITED_BY,Edited By,
EDITING_ACTIVITY_FOR_PROJECT,Editing Activity for {0},
EDITING_SPECIES_DATA_FOR_ORGANIZATION,Editing Species Data for {0},
EDITING_SPECIES_DATA_FOR_ORGANIZATION_WARNING,You are editing species data for {0}. Any changes you make here will be reflected in their database immediately.,
ELECTRICAL_LINES,Electrical Lines,
ELEVATION,Elevation,
ELIGIBLE_AREA,Eligible Area,
ELIGIBLE_AREA_DESCRIPTION,Maximum land area that will meet Verra requirements for Project Area.,
ELIGIBLE_AREA_HA,Eligible Area (ha),
ELIGIBLE_LAND,Eligible Land,
EMAIL,Email,
EMAIL_ALREADY_EXISTS,This email already exists.,
EMAIL_REQUIRED,Email *,
EMAIL_REQUIREMENT_TERRAFORMATION,Email address must include @terraformation.com,
EMPTY_BATCH,Empty Batch,
EMPTY_BATCHES_AFTER_WITHDRAW,"One or more batches are now empty and will not appear in the batch tables. To see empty batches, click on the table filter and check ""Show Empty Batches.""",
END,End,
END_DATE,End Date,
END_DATE_ERROR,End Date must be later than Start Date,
END_DATE_REQUIRED,End Date *,
END_DRYING_REMINDER,End-Drying Reminder,
END_DRYING_REMINDER_OFF,End-drying Reminder Off,
END_OBSERVATION,End Observation,
END_OBSERVATION_MODAL_MESSAGE,Ending an observation when there are no observed or partially observed plots will result in skewed summary data.,
END_OBSERVATION_MODAL_QUESTION,Are you sure you want to end the {0} observation early?,
END_OF_PROJECT_TARGET,End of Project Target,
END_TIME,End Time,
ENDANGERED,Endangered,
ENDED,ended,
ENTER_LOCATION,Enter Location,
ENTER_SUBSET_WEIGHT_AND_COUNT,"Enter Subset Weight and Count ratio to determine approximate seed count when withdrawing by weight from a count quantity. (Conversely, the ratio will determine approximate remaining quantity when withdrawing by count from a weight quantity.) These fields are useful when counting tiny seeds is not practical and only required if you intend to withdraw from this accession to a nursery.",
ENTRIES,Entries,
ERROR, Error,
ERROR_BATCH_SEED_COUNT,Transfers must include at least 1 seed,
ERROR_LOAD_SUB_LOCATIONS,Unable to load sub locations for facility,
ERROR_PROJECT_NAME_CONFLICT,This project name is already in use in the organization.,
ERROR_PROJECT_SELECT,This project is not eligible to be selected.,
ERROR_SUPPORT_NOTIFIED,An error occurred: Our support team has been notified and is working on fixing the issue.,
EST_READY_DATE,Est. Ready Date,
EST_TOTAL_PLANTS_PLANT_DENSITY_AREA,Est. Total Plants (Plant Density × Area), Estimated Total Plants
ESTIMATED_BUDGET,Estimated Budget,
ESTIMATED_READY_DATE,Estimated Ready Date,
EVENT,Event,
EVENT_ADDED,{0} added,
EVENT_CALL_DESCRIPTION_1,"Clicking ""{0}"" will open up a browser window to join a Google Meet video call.",
EVENT_CALL_DESCRIPTION_2,For this {0} you will need:,{0} is an event type such as Workshop
EVENT_CALL_REQUIREMENTS_INTERNET,An internet connection on your device - broadband wired or wireless (3G or 4G/LTE),
EVENT_CALL_REQUIREMENTS_SPEAKERS_MIC,"Speakers and a microphone – built-in, USB plug-in, or wireless Bluetooth",
EVENT_CALL_REQUIREMENTS_WEBCAM,"A webcam or HD webcam - built-in, USB plug-in",
EVENT_CREATED,{0} created,
EVENT_DELETED,{0} deleted,
EVENT_DETAILS,Event Details,
EVENT_NAME_RECORDING,{0} Recording,
EVENT_NAME_SLIDES,{0} Slides,
EVENT_RECORDED_SESSION_DESCRIPTION_1,"Watch this Recorded Session at any time. You can watch the session more than once, as needed.",
EVENT_RECORDED_SESSION_REQUIREMENTS_SPEAKERS,"Speakers or headset - built-in, USB plug-in, or wireless Bluetooth",
EVENTS,Events,
EXCEEDS_AVAILABLE_X,Exceeds available ({0}),
EXCEEDS_READY_TO_PLANT,Exceeds Ready to Plant ({0}),
EXCEEDS_READY_TO_PLANT,Total withdrawn ({0}) across all substrata exceeds Ready to Plant ({1}) in this batch,
EXCEEDS_TARGET,Exceeds target,
EXCLUSION_AREAS,Exclusion Areas,
EXISTING_PROJECT_ACCESSIONS_BODY,"There are accessions that have already been added to an existing project. If you select those accessions here, you will replace the project with {0} (rather than create an additional association).",
EXISTING_PROJECT_ACCESSIONS_TITLE,Existing Project with Accessions,
EXISTING_PROJECT_BATCHES_BODY,"There are batches that have already been added to an existing project. If you select those batches here, you will replace the project with {0} (rather than create an additional association).",
EXISTING_PROJECT_BATCHES_TITLE,Existing Project with Batches,
EXISTING_PROJECT_PLANTING_SITES_BODY,"There are planting sites that have already been added to an existing project. If you select those planting sites here, you will replace the project with {0} (rather than create an additional association).",
EXISTING_PROJECT_PLANTING_SITES_TITLE,Existing Project with Planting Sites,
EXISTING_SPECIES_MSG,“{0}” is already in your species list.,
EXIT,Exit,
EXIT_APPLICATION,Exit Application,
EXITING_PERMANENT_PLOTS,Exiting Permanent Plots,
EXITING_TEMPORARY_PLOTS,Exiting Temporary Plots,
EXPAND,Expand,
EXPANSION_POTENTIAL,Expansion Potential,
EXPANSION_POTENTIAL_DESCRIPTION,"Eligible land not yet secured with agreements, but believe can be secured.",
EXPANSION_POTENTIAL_HA,Expansion Potential (ha),
EXPORT,Export,
EXPORT_BIOMASS_MONITORING_DETAILS_CSV,Export Biomass Monitoring Details (CSV),
EXPORT_CSV,Export CSV,Menu option that downloads the report as a zip of CSV files
EXPORT_DATA,Export Data,
EXPORT_LOCATIONS,Export Locations,
EXPORT_LOCATIONS_DISABLED_TOOLTIP,Plot locations are determined at the start of the observation,
EXPORT_PROJECT_BOUNDARY,Export Project Boundary,
EXPORT_RECORDS,Export Records,
EXPORT_RESULTS,Export Results,Menu option to export the results of an observation
EXTERNAL_PROJECT_LINKS,External Project Links,
FACILITY,Facility,
FACILITY_BUILD_COMPLETION_DATE,Build Completion Date,
FACILITY_BUILD_COMPLETION_DATE_INVALID,Must be between build start and operation start dates.,
FACILITY_BUILD_COMPLETION_DATE_REQUIRED,Build Completion Date *,
FACILITY_BUILD_START_DATE,Build Start Date,
FACILITY_BUILD_START_DATE_INVALID,Must be on or before build completed date and operation start dates.,
FACILITY_BUILD_START_DATE_REQUIRED,Build Start Date *,
FACILITY_OPERATION_START_DATE,Operation Start Date,
FACILITY_OPERATION_START_DATE_INVALID,Must be on or after build start and build completed dates.,
FACILITY_OPERATION_START_DATE_REQUIRED,Operation Start Date *,
FAILED_PRESCREEN,Failed Pre-screen,
FAMILY,Family,
FAST_GROWTH,Fast Growth,
FAVORABLE_WEATHER,Favorable Weather,
FEATURE_AVAILABLE_ON_DESKTOP,This feature is only available from the desktop application.,
FEATURE_REQUEST,Feature Request,
FEATURE_REQUEST_DESCRIPTION,Let us know about ideas you have for new capabilities in Terraware.,
FEATURE_REQUEST_INSTRUCTIONS,Provide details about a new feature or modifications to an existing feature. (What use cases or problems will the new feature or changes address?),
FEEDBACK,Feedback,
FEEDBACK_SHARED_WITH_PROJECT,Feedback (shared with project),
FERN,Fern,
FIELD,Field,Column header naming the report field in a key/value CSV
FIELD_NOTES,Field Notes,
FIFTY_TO_SEVENTY_FIVE_PERCENT,50% to 75%,
FILE_NAME,File Name,
FILE_NAMING,File Naming,Describes a piece of text that is used when naming new files; this isn't just the name of a particular file.
FILE_TOO_LARGE,File {0} too large. Maximum size is {1}MB.,
FILTER,Filter,
FILTER_BY_PROJECT,Filter by Project,
FILTER_SHOW_EMPTY_BATCHES,Show Empty Batches,
FILTER_SHOW_EMPTY_NURSERIES,Show Nurseries with no Inventory,
FILTER_SHOW_EMPTY_SPECIES,Show Species with no Inventory,
FILTERED,filtered,Used as part of a filename
FILTERS,Filters,
FILTERS_APPLIED,Filters Applied,
FINAL_QTY,Final Qty,
FINANCE,Finance,
FINANCIAL_SUMMARIES,Financial Summaries,
FINANCIAL_VIABILITY,Financial Viability,
FIND_OUT_MORE_ABOUT_ACCELERATOR_AND_APPLY,Find out more about Terraformation’s Seed to Forest Accelerator {0} and apply!,
FINISH,Finish,
FIRE,Fire,
FIRST_ADD_PLANTING_SITE,"To view the dashboard, you need to have a planting site.",
FIRST_NAME,First Name,
FIX_HIGHLIGHTED_FIELDS,Fix the highlighted fields below.,
FLAG,Flag,
FOOTNOTE_WAIT_FOR_INVITATION_1,"Not interested in creating your own organization, or expecting an invitation to an existing organization?",
FOOTNOTE_WAIT_FOR_INVITATION_2,Don’t worry. You’ll receive an email when an admin from your organization adds you to the organization in Terraware.,
FOR_A_FULL_OVERVIEW,"For a full overview of all of our software, visit the [Software Page] on our website.",
FOR_LAB_AND_NURSERY_GERMINATION,For Lab and Nursery Germination,
FOR_LAB_GERMINATION,For Lab Germination,
FOR_NURSERY_GERMINATION,For Nursery Germination,
FORB,Forb,
FORESTRY,Forestry,
FREEZER,Freezer,
FREEZER_1,Freezer 1,
FREEZER_2,Freezer 2,
FREEZER_3,Freezer 3,
FREQUENCY_OF_REPORTING,Frequency of Reporting,
FRESH,Fresh,
FROM,From,
FROM_GIS_DATABASE,(from GIS Database),
FROM_NURSERY,From: Nursery,
FROM_NURSERY_REQUIRED,From: Nursery *,
FROM_SUBSTRATUM,From: Substratum,
FUNDER,Funder,
FUNDER_ADDED,Funder Added,
FUNDER_DISCLAIMER_CHECKBOX,"By checking this box, I acknowledge that I have read and understood the Terraware Platform Disclaimer for Funders.",
FUNDER_DISCLAIMER_REVIEW,Review the Terraware Platform Disclaimer for Funders,
FUNDER_DISCLAIMER_TITLE,Terraware Platform Disclaimer for Funders,
FUNDER_NAME,Funder Name,
FUNDER_PORTAL,Funder Portal,
FUNDER_REPORT_LAST_PUBLISHED,Funder Report was last published on {0},
FUNDER_REPORT_PREVIEW_WARNING,You are previewing this report as it will appear to Funders in the Funder Portal. Internal-only indicators and notes are hidden.,
FUNDERS,Funders,
FUNDERS_DELETED,Funders Deleted,
FUNDING_ENTITIES,Funding Entities,
FUNDING_ENTITY,Funding Entity,
FUNDING_ENTITY_NAME,Funding Entity Name,
FUNGUS,Fungus,
FUNGUS_DISEASE,Fungus/Disease,
G,g,
G_GRAMS,g (grams),
GDRIVE,GDrive,
GDRIVE_LINK,GDrive Link,
GENERAL,General,
GENERIC_ERROR,An error occurred,
GENUS,Genus,
GEOMETRY_CHANGED_WARNING_MESSAGE,The geometry of this site changed on {0}. The data shown here represents the latest observation data from {1} and may no longer be representative of the planting site.,
GERMINATED,Germinated,
GERMINATION_ESTABLISHMENT,Germination/Establishment,
GERMINATION_ESTABLISHMENT_QUANTITY,Germination/Establishment Quantity,
GERMINATION_ESTABLISHMENT_QUANTITY_AFTER,Germination/Establishment Quantity (After),
GERMINATION_ESTABLISHMENT_QUANTITY_BEFORE,Germination/Establishment Quantity (Before),
GERMINATION_ESTABLISHMENT_QUANTITY_CANNOT_BE_LESS_THAN_ZERO,Germination/Establishment quantity cannot be less than 0,
GERMINATION_ESTABLISHMENT_QUANTITY_REMAINING,Germination/Establishment Quantity ({0} remaining),
GERMINATION_ESTABLISHMENT_QUANTITY_REQUIRED,Germination/Establishment Quantity *,
GERMINATION_ESTABLISHMENT_RATE,Germination/Establishment Rate,
GERMINATION_ESTABLISHMENT_STARTED_DATE,Germination/Establishment Started Date,
GET_STARTED,Get Started,
GET_STARTED_SUBTITLE,"To get started, add people to your organization and add the species of the seeds and plants that your organization manages.",
GIS,GIS,
GIS_REPORT,GIS Report,
GIS_REPORT_LINK,GIS Report Link,
GLOBAL_ROLE_ACCELERATOR_ADMIN,Accelerator Admin,
GLOBAL_ROLE_READ_ONLY,Read Only,
GLOBAL_ROLE_SUPER_ADMIN,Super-Admin,
GLOBAL_ROLE_TF_EXPERT,TF Expert,
GO_TO,Go to {0},
GO_TO_NURSERIES,Go to Nurseries,
GO_TO_PLANTING_SITES,Go to Planting Sites,
GO_TO_PROFILE,Go to Profile,
GO_TO_SEED_BANKS,Go to Seed Banks,
GO_TO_SPECIES,Go to Species,
GOT_IT,Got It!,
GPS_COORDINATES,GPS Coordinates,
GPX_FILE,GPX file,
GRAMINOID,Graminoid,
GRAMS,Grams,
GRAZING,Grazing
GREATER_THAN_SEVENTY_FIVE_PERCENT,> 75%,
GROWTH_FORM,Growth Form,
HARDENING_OFF,Hardening Off,
HARDENING_OFF_QUANTITY,Hardening Off Quantity,
HARDENING_OFF_QUANTITY_AFTER,Hardening Off Quantity (After),
HARDENING_OFF_QUANTITY_BEFORE,Hardening Off Quantity (Before),
HARDENING_OFF_QUANTITY_CANNOT_BE_LESS_THAN_ZERO,Hardening Off quantity cannot be less than 0,
HARDENING_OFF_QUANTITY_REMAINING,Hardening Off Quantity ({0} remaining),
HARDENING_OFF_QUANTITY_REQUIRED,Hardening Off Quantity *,
HAS_CHANGED,has changed,
HECTARES,Hectares,
HECTARES_PLANTED,Hectares Planted,
HEIGHT_AT_MATURITY,Height at Maturity (cm),
HEIGHT_M,Height (m),
HELP_SUPPORT,Help & Support,
HERB,Herb,A growth form of a plant
HERBACEOUS_ABUNDANCE_PERCENT,Herbaceous Abundance (%),
HERBACEOUS_ABUNDANCE_SQUARE_COUNT,Herbaceous Abundance (square count),
HERBACEOUS_COVER_PERCENT,Herbaceous Cover %,
HERE,here,
HIDE_ALL,Hide All,
HIDE_ON_MAP,Hide on map,
HIGH,High,
HIGHEST,Highest,
HIGHLIGHTED_ACTIVITY,Highlighted Activity,
HIGHLIGHTS,Highlights,
HISTORY,History,
HOME,Home,
HOW_TO_RECORD_A_GREAT_VIDEO,How to record a great video:,
HUBSPOT,HubSpot,
HUBSPOT_LINK,HubSpot Link,
I_AM_THE_ONLY_PERSON,I am the only person,
ID,ID,
IGNORE,Ignore,
IMAGE_UPDATED,Image updated,
IMPERIAL,Imperial,
IMPERIAL_OZ_LB,"Imperial (oz, lb)",
IMPORT,Import,
IMPORT_ACCESSIONS,Import Accessions,
IMPORT_ACCESSIONS_ALT_TITLE,Already have a seed accession database?,
IMPORT_ACCESSIONS_DESC,Browse or drag and drop a CSV with accessions.,
IMPORT_ACCESSIONS_WITH_TEMPLATE,Import accessions using our CSV template.,
IMPORT_INVENTORY,Import Inventory,
IMPORT_INVENTORY_ALT_TITLE,Already have an inventory database?,
IMPORT_INVENTORY_DESC,Browse or drag and drop a CSV with inventory data.,
IMPORT_INVENTORY_DESCRIPTION,"Upload a CSV with species, quantities, and other fields.",
IMPORT_INVENTORY_WITH_TEMPLATE,Import inventory using our CSV template.,
IMPORT_SPECIES,Import Species,
IMPORT_SPECIES_DESCRIPTION,Upload a CSV with scientific names and other optional fields.,
IMPORT_SPECIES_LIST,Import Species List,
IMPORT_SPECIES_LIST_DESC,Browse or drag and drop a CSV with scientific names and other optional fields.,
IMPORTING_ACCESSIONS,Importing accessions... this may take a few minutes.,
IMPORTING_DELIVERABLES,Importing deliverables...this may take a few minutes.,
IMPORTING_INVENTORY,Importing inventory...this may take a few minutes.,
IMPORTING_MODULES,Importing modules...this may take a few minutes.,
IMPORTING_SPECIES,Importing species...this may take a few minutes.,
IN_PROGRESS,In Progress,
IN_REVIEW,In Review,
IN_STORAGE,In Storage,
INCLUDE_EMPTY_FIELDS,Include empty fields,
INCOMPLETE,Incomplete,
INCORRECT_EMAIL_FORMAT,Incorrect email format.,
INDICATOR_CLASS,Indicator Class,"Whether an indicator is lifetime cumulative, yearly cumulative or not cumulative"
INDICATOR_LEVEL,Indicator Level,
INDICATOR_NAME,Indicator Name,
INDICATOR_NOT_VISIBLE_TO_FUNDER,Indicator Not Visible to Funder,
INDICATOR_OVERWRITTEN_ORIGINAL_VALUE,Overwritten - original: {0},
INDICATOR_STATUS_DESCRIPTION_ARCHIVED,Outcome achieved already,
INDICATOR_STATUS_DESCRIPTION_ON_TRACK,Outcome on-track to be achieved within the expected timeframe,
INDICATOR_STATUS_DESCRIPTION_UNLIKELY,Outcome unlikely to be achieved in the expected timeframe,
INDICATOR_TYPE,Indicator Type,
INDICATOR_TYPE_ACTIVITY,Activity,
INDICATOR_TYPE_GOAL,Goal,
INDICATOR_TYPE_IMPACT,Impact,
INDICATOR_TYPE_OUTCOME,Outcome,
INDICATOR_TYPE_OUTPUT,Output,
INDICATOR_TYPE_PROCESS,Process,
INDICATOR_VISIBLE_TO_FUNDER,Indicator Visible to Funder,
INDICATORS,Indicators,
INFRASTRUCTURE,Infrastructure,
INITIAL_PLANTING_DENSITY,Initial Planting Density,
INITIAL_PLANTING_DENSITY_TOOLTIP,Initial planting density for stratum (plants per hectare).,
INSTANCES,Instances,
INSTRUCTIONS,Instructions:,
INSUFFICIENT_DATA,Insufficient Data,
INTERMEDIATE,Intermediate,
INTERMEDIATE_COOL_TEMPERATURE_SENSITIVE,Intermediate - Cool Temperature Sensitive,
INTERMEDIATE_PARTIAL_DESICCATION_TOLERANT,Intermediate - Partial Desiccation Tolerant,
INTERMEDIATE_SHORT_LIVED,Intermediate - Short Lived,
INTERNAL_COMMENT,Internal Comment,
INTERNAL_COMMENTS,Internal Comments,
INTERNAL_INTERESTS,Internal Interests,
INTERNAL_LEADS,Internal Leads,
INTERNAL_LEADS_TOOLTIP,The selected Project Lead and Restoration Lead will be designated the Terraformation Contact role. Terraformation Contacts have access to Projects' Organization in Terraware and receive notifications about Projects' activities in Terraware.,
INTERNAL_ONLY,Internal only,
INTRODUCED,Introduced,
INVALID_DATE,Invalid date,
INVALID_EDITOR,This report is being edited by another user,
INVALID_USER_SELECT_DELETE,Invalid user; please select a user or delete before saving,
INVALID_VALUE,Invalid Value,
INVASIVE,Invasive,
INVASIVE_AND_THREATENED_SPECIES,Invasive & Threatened Species,
INVASIVE_AND_THREATENED_SPECIES_INSTRUCTIONS,Click on a value in the tables to edit it. Go to Photos & Videos to edit photo captions.,
INVENTORY,Inventory,
INVENTORY_IMPORT_COMPLETE,Inventory data import complete!,
INVENTORY_ONBOARDING_NURSERIES_MSG,Define nurseries assigned to seedlings inventory,
INVENTORY_ONBOARDING_SPECIES_MSG,Define a list of species used in your seedlings inventory,
INVENTORY_PLANNING,Inventory Planning,
INVENTORY_PLANNING_ALLOCATED_TOOLTIP,Number of plants of this species planned to fulfill targets within the Planting Seasons.,
INVENTORY_PLANNING_AVAILABLE_TOOLTIP,Number of seedlings of this species that are in the Hardening Off and Ready to Plant growth phases.,
INVENTORY_PLANNING_DESCRIPTION,Allocate inventory for Planting Season species targets.,
INVENTORY_PLANNING_TARGET_TOOLTIP,Number of plants of this species set as targets within the Planting Seasons.,
INVENTORY_WITHDRAWALS,Inventory Withdrawals,Used as part of a filename
INVESTMENT_COMMITTEE_VOTES,Investment Committee Votes,
INVITATION_PENDING,Invitation Pending,
INVITE_FUNDER,Invite Funder,
INVITE_FUNDER_DESCRIPTION,Provide an email address to invite a Funder to the Funder Portal under this Funding Entity. An invitation email to create an account will be sent to the email address. First Name and Last Name will be provided by the account holder.,
INVITED,Invited,
IS_CUMULATIVE,Is Cumulative?,
IS_DECIMAL,Is Decimal,
IS_THERE_WATER_IN_THIS_PLOT,Is there water in this plot?,
ISSUE,Issue,
IUCN_CRITICALLY_ENDANGERED,Critically Endangered (CR),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_DATA_DEFICIENT,Data Deficient (DD),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_ENDANGERED,Endangered (EN),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_EXTINCT,Extinct (EX),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_EXTINCT_IN_THE_WILD,Extinct in the Wild (EW),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_LEAST_CONCERN,Least Concern (LC),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_NEAR_THREATENED,Near Threatened (NT),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_NOT_EVALUATED,Not Evaluated (NE),IUCN conservation category. Keep the two-letter code as is; only translate the description.
IUCN_VULNERABLE,Vulnerable (VU),IUCN conservation category. Keep the two-letter code as is; only translate the description.
JOIN,Join,
JOIN_EVENT_NAME,Join {0},
JUST_SAVED,Just saved
JUSTIFICATION,Justification,
KEEP_ORIGINAL,Keep Original,
KEY,Key,
KEY_LESSONS,Key Lessons Learned,
KEY_LESSONS_INSTRUCTIONS,"Provide details of key lessons learned during the project reporting period, including both positive and negative unintended consequences if applicable. (One-half page maximum.)",