# configuration/strings/walk.strings.ts

> 17 lines of code and 17 definitions.

Tree: Site tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/tree#file-configuration-strings-walk-strings-ts
Source text: https://banes-lab.com/assets/sources/source.a09ce1d56d151636c7d1c1f4f94d80dab47a8fbd360be98614801174b6de995a.generated.txt

## Definitions

- `WALK_MISSING` (lexical_declaration, line 1, exported)
- `VIEW_FULL_WALK_TITLE` (lexical_declaration, line 3, exported)
- `WALK_HINT` (lexical_declaration, line 5, exported)
- `DEPTH_LABEL` (lexical_declaration, line 7, exported)
- `LOCATION_RELATION` (lexical_declaration, line 9, exported)
- `DEPTH_RELATION` (lexical_declaration, line 11, exported)
- `SEVERITY_RELATION` (lexical_declaration, line 13, exported)
- `STEP_LABEL` (lexical_declaration, line 15, exported)
- `OF_STEPS_LABEL` (lexical_declaration, line 17, exported)
- `PREVIOUS_STEP_LABEL` (lexical_declaration, line 19, exported)
- `NEXT_STEP_LABEL` (lexical_declaration, line 21, exported)
- `STEPS_LABEL` (lexical_declaration, line 23, exported)
- `SOURCE_MISSING` (lexical_declaration, line 25, exported)
- `SOURCE_LOADING` (lexical_declaration, line 27, exported)
- `SOURCE_SERVED_LEAD` (lexical_declaration, line 29, exported)
- `DEFINITION_CITED_LEAD` (lexical_declaration, line 31, exported)
- `DEFINITION_MISSING` (lexical_declaration, line 33, exported)

## Source

```typescript
export const WALK_MISSING = "The walk for this node is not available.";

export const VIEW_FULL_WALK_TITLE = "View the walk in full";

export const WALK_HINT = "Select a cell to read what it is.";

export const DEPTH_LABEL = "depth ";

export const LOCATION_RELATION = "location";

export const DEPTH_RELATION = "depth";

export const SEVERITY_RELATION = "severity";

export const STEP_LABEL = "Step";

export const OF_STEPS_LABEL = " of ";

export const PREVIOUS_STEP_LABEL = "← previous";

export const NEXT_STEP_LABEL = "next →";

export const STEPS_LABEL = " steps";

export const SOURCE_MISSING = "The source for this file is not available.";

export const SOURCE_LOADING = "Loading the source.";

export const SOURCE_SERVED_LEAD = "The source is served as text at ";

export const DEFINITION_CITED_LEAD = "The cited definition is at ";

export const DEFINITION_MISSING = "The cited definition is not in the derived tree.";
```
