Quote:
Originally Posted by Depletion
This worked great, thanks.  And another thanks for your metadata FAQ, I didn't like how ponyfictionarchive.com was using "Complete" when everything else in my library uses the status "Completed". I added
Code:
replace_metadata:
Complete=>Completed
In Progress=>In-Progress
Fixed it quite nicely. I've done similar in the past but needed a reminder.
|
I'm glad it helped. But you might consider instead:
Code:
replace_metadata:
status=>^Complete$=>Completed
status=>^In Progress$=>In-Progress
What you have now will effect the words 'Complete' and 'In Progress' if they appear in other metadata, too. Like the title. And the
^$ are so that if they someday change it to 'Completed' themselves you don't end up with 'Completedd'.