error compiling for board Arduino uno

I got an error please help
error
exit status 1
variable 'weekString' must be const in order to be put into read-only section by means of 'attribute((progmem))'

Sounds like you need

const byte weekString = somevalue;

at the top of your sketch?