I’m trying to change my Bulletin Ghost Theme to Spanish, I’m not running my own server. I’m using Ghost Pro.
I can’t by defalut change it to es, I have this code from the Ghost documents, and I’ve created a folder named locales where it’s stored all done with Visual Studio Code
The thing is I downloaded casper from github, not bulletin and I’m not running my own server so GhostPro doesn’t detect any changes
I don’t know anything about code nor github, would love someone to help me out. Thanks!
You need to modify the Bulletin theme repository(GitHub - TryGhost/Bulletin: A newsletter theme for Ghost), not Casper.
After you’ve done following the translation guide. Just compile the theme, and upload it to your web.
Refer to GitHub - TryGhost/Bulletin: A newsletter theme for Ghost for how to compile it.
Where to upload it? And how to compile?
It’s showing I need a debugging json extension, that’s not the programming language, right?
And Thanks, highly appreciated
Where should I add this?
<a href="#/portal/signup" data-portal="signup">{{t "Subscribe"}}</a>
{{! output when Ghost Admin is set to "en" for English }}
<a href="#/portal/signup" data-portal="signup">Subscribe</a>
{{! output when Ghost Admin is set to "es" for Spanish }}
<a href="#/portal/signup" data-portal="signup">Suscríbete</a>
Where to upload it? And how to compile?
The way how to do it is available in the Bulletin theme link I referred above.
Where should I add this?
You should add {{t "Subscribe"}} into all the literal text inside your theme.
e.g. next page, previous page, subscribe, login, etc.