Hi,
The usage of ID's in Kentico has some history and Kentico is moving more and more towards the usage GUID columns. Apparently that's not been done (yet) in this case.
If your values don't match with other environments and you really need to define this category you could try using a macro like:
{% GlobalObjects.Categories.Where("CategoryName='CodeNameOfTheCategory'").IDs |(identity)GlobalAdministrator%}
This will select the Category object ID, not sure why its called IDs (sounds plural).
Remember though to apply some sort of caching to this repeater since this macros isn't very efficient and perhaps check if the category is found.
Hope this points you in the right direction.
Greets,
David