Firstly, are Umbraco dictionary Items cached? If they are, how do you change the cache settings?
Secondly, is there any way in which we can regenerate list of existing dictionary items with a new prefix?
For example, if I have dictionary items with the following names
Dic_one
Dic_two
Dic_three
Dic_four
Now I need to add a prefix, such as UK_
, and I need to copy the respective Umbraco dictionary items without losing their previous values:
UK_Dic_one
UK_Dic_two
UK_Dic_three
UK_Dic_four
How could I add this prefix, while still keeping the rest of the values in the dictionary?