Values from radio button options

When using radio options like in the example below:

options:
      design: Design
      architecture: Architecture
      photography: Photography
      3d: 3D
      web-design: Web Design

I see the values stored in the .txt content file are like web-design

Is there any way to store the actual value (e.g. “Web Design”) or retrieve it in some way — so to render the more “human friendly” string?

For now I have changed the name of the options in my blueprint as in:

Web Design: Web Design

But I doubt that this is ideal…

Three options:

  • Category map
  • get options from blueprint
  • Translation variables

For the first two, see How to get label for multiselect input value in template? - #2 by texnixe

The third one is an option for multilang sites

Thanks! I think for now I will keep the structure:

Product Manager: Product Manager

Since I’m not using it for anything else than rendering the string in the front-end.

I will consider the other options provided once this approach above becomes problematic, but for now that seems to work.