What is the best practice to store constant values that hardly will ever be changed during application life-cycle?
For example there are constant messages to show on UI (and you know exactly application will never be localized) or category-ids that are hard-coded in the database.
It takes too much time to put everything in config. Is it normal to have static constant classes to keep such constants all together? Or may be you should put such values into project resources?
Thank you in advance!